:root {
  --brand-blue: #1F3FFF;
  --brand-blue-bright: #3454FF;
  --brand-yellow: #F0E000;
  --brand-yellow-soft: #FFF04A;
  --bg: #000000;
  --surface: #08080C;
  --surface-2: #111118;
  --panel: var(--surface);
  --panel-2: var(--surface-2);
  --text: #FFFFFF;
  --muted: rgba(255,255,255,0.68);
  --soft: rgba(255,255,255,0.11);
  --soft-2: rgba(255,255,255,0.18);
  --green: #34ffc8;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0,0,0,0.45);
  --grad: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue) 42%, var(--brand-yellow) 58%, var(--brand-yellow) 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(31,63,255,0.28), transparent 30%),
    radial-gradient(circle at 82% 8%, rgba(240,224,0,0.12), transparent 24%),
    radial-gradient(circle at 50% 44%, rgba(31,63,255,0.12), transparent 34%),
    #000000;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 75%);
  opacity: 0.55;
  z-index: -1;
}

a { color: inherit; }
strong { color: #ffffff; }
.container { width: min(100% - 40px, var(--max)); margin: 0 auto; }
.gradient-text {
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(0,0,0,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 74px;
  gap: 16px;
}
.nav > .brand { justify-self: start; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  text-decoration: none;
}
.brand-logo {
  display: block;
  width: 44px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(31,63,255,0.32));
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  grid-column: 2;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.btn, .btn:visited, .nav-cta, .nav-links a.nav-cta, .btn-primary, .btn-secondary {
  background: var(--brand-blue);
  color: #ffffff;
  border: none;
  box-shadow: 0 14px 34px rgba(31,63,255,0.24);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--soft-2);
  color: #ffffff;
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
  gap: 8px;
}
.btn:hover, .btn:focus, .btn:visited,
.btn-primary:hover, .btn-primary:focus, .btn-primary:visited,
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:visited,
.nav-cta:hover, .nav-cta:focus, .nav-cta:visited,
.nav-links a.nav-cta:hover, .nav-links a.nav-cta:focus, .nav-links a.nav-cta:visited {
  color: #ffffff;
}
.btn:hover, .btn:focus, .nav-cta:hover, .nav-cta:focus {
  transform: translateY(-1px);
  background: var(--brand-blue-bright);
  opacity: .98;
}

.hero {
  padding: 86px 0 72px;
  position: relative;
}
.hero-inner {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
.hero-logo {
  display: block;
  width: min(420px, 86vw);
  height: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 24px rgba(31,63,255,0.32));
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(31,63,255,0.22);
  border: 1px solid rgba(240,224,0,0.28);
  color: rgba(255,255,255,0.86);
  font-size: .86rem;
  font-weight: 800;
  margin-bottom: 24px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-yellow);
  box-shadow: 0 0 18px rgba(240,224,0,0.7);
}
h1 {
  font-size: clamp(3.15rem, 8vw, 7.8rem);
  line-height: .92;
  letter-spacing: -0.06em;
  margin: 0 0 24px;
}
.hero-lead {
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  line-height: 1.72;
  max-width: 780px;
  margin: 0 auto 30px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 44px;
}

.mock-shell {
  width: min(100%, 760px);
  margin: 0 auto;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(31,63,255,0.70), rgba(240,224,0,0.28), rgba(255,255,255,0.08));
  box-shadow: 0 38px 110px rgba(0,0,0,0.5), 0 0 80px rgba(31,63,255,0.18);
}
.mock-app {
  border-radius: 27px;
  background: linear-gradient(180deg, rgba(16,17,26,0.96), rgba(5,5,9,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  text-align: left;
}
.mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  font-size: .82rem;
}
.traffic { display: flex; gap: 8px; }
.traffic span { width: 11px; height: 11px; border-radius: 50%; display: block; }
.traffic span:nth-child(1) { background: #ff5f57; }
.traffic span:nth-child(2) { background: #ffbd2e; }
.traffic span:nth-child(3) { background: #28c840; }
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ff7c7c;
  background: rgba(255,80,80,0.10);
  border: 1px solid rgba(255,80,80,0.24);
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 800;
}
.mock-body {
  display: grid;
  grid-template-columns: 1.3fr .8fr;
  gap: 16px;
  padding: 18px;
}
.preview {
  min-height: 270px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(31,63,255,0.18), rgba(240,224,0,0.06)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 44px),
    #080914;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.preview::before {
  content: "▶";
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-yellow);
  background: rgba(240,224,0,0.09);
  border: 1px solid rgba(240,224,0,0.28);
  position: absolute;
  left: calc(50% - 39px);
  top: calc(50% - 39px);
  font-size: 28px;
  text-indent: 4px;
}
.wave {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 28px;
  height: 48px;
  opacity: .85;
  background: linear-gradient(135deg, transparent 0 6%, var(--brand-yellow) 6% 9%, transparent 9% 14%, var(--brand-blue-bright) 14% 17%, transparent 17% 25%, var(--brand-yellow) 25% 28%, transparent 28% 35%, var(--brand-blue-bright) 35% 38%, transparent 38% 45%, var(--brand-yellow) 45% 48%, transparent 48% 55%, var(--brand-blue-bright) 55% 58%, transparent 58% 64%, var(--brand-yellow) 64% 67%, transparent 67%);
  clip-path: polygon(0 65%, 8% 42%, 16% 70%, 24% 36%, 32% 62%, 40% 30%, 48% 58%, 56% 40%, 64% 72%, 72% 35%, 80% 68%, 88% 45%, 100% 62%, 100% 100%, 0 100%);
}
.side-panel { display: flex; flex-direction: column; gap: 12px; }
.panel {
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px;
  min-height: 80px;
}
.panel h4 { margin: 0 0 8px; font-size: .83rem; color: rgba(255,255,255,.72); }
.mini-line { height: 12px; border-radius: 999px; background: rgba(255,255,255,.08); margin: 8px 0; }
.mini-line.accent { background: rgba(240,224,0,.24); }
.scene-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 18px 18px;
}
.scene-bar span {
  text-align: center;
  border-radius: 12px;
  padding: 11px 10px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.58);
  font-size: .82rem;
  font-weight: 750;
}
.scene-bar span:first-child {
  color: #001014;
  background: var(--grad);
  border-color: transparent;
}

.section { padding: 88px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 42px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--brand-yellow);
  margin-bottom: 16px;
  font-weight: 900;
}
h2 {
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
}
.section-head p, .section-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
  margin: 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.problem-copy h2 { text-align: left; }
.problem-list { display: grid; gap: 14px; }
.problem-item {
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.035);
  border-radius: 18px;
  padding: 18px;
  color: rgba(255,255,255,0.78);
}
.check {
  width: 24px; height: 24px; flex: 0 0 24px;
  border-radius: 50%;
  border: 1px solid rgba(240,224,0,.48);
  color: var(--brand-yellow);
  display: grid; place-items: center;
  font-size: 13px;
}
.cards-3, .apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card, .app-card, .use-card, .depth-card, .quote-card, .faq-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.feature-card::before, .app-card::before, .use-card::before, .depth-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(31,63,255,0.28), transparent 36%);
  opacity: .8;
  pointer-events: none;
}
.feature-card:nth-child(2)::before, .app-card:nth-child(2)::before { background: radial-gradient(circle at 20% 0%, rgba(240,224,0,0.12), transparent 36%); }
.feature-card:nth-child(3)::before, .app-card:nth-child(3)::before { background: radial-gradient(circle at 20% 0%, rgba(52,84,255,0.24), transparent 36%); }
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #000000;
  background: var(--brand-yellow);
  font-weight: 900;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.feature-card h3, .app-card h3, .use-card h3, .depth-card h3, .quote-card h3, .faq-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
}
.feature-card p, .app-card p, .use-card p, .depth-card p, .quote-card p, .faq-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}
.app-card {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: .78rem;
  font-weight: 850;
  border: 1px solid var(--brand-yellow);
  color: #000000;
  background: var(--brand-yellow);
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.mini-ui {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.35);
  padding: 14px;
  margin: 20px 0;
  position: relative;
  z-index: 1;
}
.mini-ui-screen {
  height: 104px;
  border-radius: 12px;
  border: 1px solid rgba(240,224,0,.22);
  background: linear-gradient(135deg, rgba(31,63,255,.18), rgba(240,224,0,.07)), #070812;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.48);
  font-weight: 900;
}
.mini-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.mini-buttons span { height: 28px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.06); }
.feature-depth, .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.depth-card ul, .feature-list {
  margin: 18px 0 0 20px;
  padding: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.9;
}
.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-hero {
  padding: 92px 0 70px;
}
.product-hero .hero-inner { text-align: left; margin: 0; max-width: 930px; }
.product-hero h1 { font-size: clamp(3rem, 7vw, 6.8rem); }
.product-hero .hero-lead { margin-left: 0; max-width: 820px; }
.product-hero .hero-actions { justify-content: flex-start; }
.kicker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.kicker {
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  border-radius: 18px;
  padding: 18px;
  color: rgba(255,255,255,.76);
}
.kicker strong { display: block; margin-bottom: 6px; }
.quote-grid, .faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cta-band {
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 20% 10%, rgba(31,63,255,.32), transparent 30%),
    radial-gradient(circle at 78% 20%, rgba(240,224,0,.13), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  padding: 52px;
  text-align: center;
  box-shadow: var(--shadow);
}
.hero-signup {
  max-width: 620px;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.form-shell {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 18px;
  background: rgba(0,0,0,.58);
  max-width: 430px;
  margin: 22px auto 0;
}
.mixup-custom-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.signup-success {
  margin: 0 auto 16px;
  max-width: 520px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(52,255,200,0.24);
  background: rgba(52,255,200,0.08);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.5;
}
.form-message {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.form-message-error {
  background: rgba(255, 80, 80, 0.10);
  border: 1px solid rgba(255, 80, 80, 0.25);
  color: #ffffff;
}
.form-message-info {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
}
.mixup-custom-form input[type="email"]:invalid:focus { border-color: rgba(255, 80, 80, 0.55); }
.mixup-custom-form input[type="email"] {
  width: 100%;
  background: #050505;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  height: 48px;
  padding: 0 16px;
  font-size: 15px;
  box-shadow: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.mixup-custom-form input[type="email"]::placeholder { color: rgba(255,255,255,0.48); }
.mixup-custom-form button {
  width: 100%;
  height: 48px;
  background: var(--brand-blue);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(31,63,255,0.24);
}
.mixup-custom-form button:hover, .mixup-custom-form button:focus {
  background: var(--brand-blue-bright);
  color: #ffffff;
}
.mixup-custom-form .cf-turnstile { display: flex; justify-content: center; }
.site-footer {
  padding: 54px 0 72px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,0.62);
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .6fr);
  gap: 28px;
}
.footer-grid h4 { color: #fff; margin: 0 0 12px; }
.footer-grid a { display: block; text-decoration: none; color: rgba(255,255,255,.62); margin: 9px 0; }
.footer-grid a:hover { color: #fff; }
.footer-grid a.btn, .footer-grid a.btn:hover, .footer-grid a.btn:focus, .footer-grid a.btn:visited {
  display: inline-flex;
  color: #ffffff;
}
.fine-print { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.07); }

@media (max-width: 980px) {
  .problem-grid, .feature-depth, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .cards-3, .apps-grid, .quote-grid, .faq-grid, .kicker-grid { grid-template-columns: 1fr; }
  .use-grid { grid-template-columns: repeat(2, 1fr); }
  .mock-body { grid-template-columns: 1fr; }
  .side-panel { display: none; }
  .scene-bar { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 66px 0; }
}
@media (max-width: 680px) {
  .brand-logo { width: 44px; }
  .container { width: min(100% - 28px, var(--max)); }
  .nav { display: flex; align-items: center; flex-direction: column; padding: 14px 0; }
  .nav-links { width: 100%; gap: 14px; justify-content: center; }
  .nav-cta { width: 100%; }
  .hero, .product-hero { padding: 58px 0 50px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .mock-top { flex-direction: column; align-items: flex-start; }
  .preview { min-height: 210px; }
  .use-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 30px 18px; border-radius: 24px; }
}
