    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:       #080a12;
      --bg2:      #0d0f1a;
      --surface:  #13161f;
      --card:     #181c28;
      --border:   rgba(99,102,241,.16);
      --indigo:   #6366f1;
      --indigo-l: #818cf8;
      --orange:   #f97316;
      --green:    #22c55e;
      --text:     #f1f5f9;
      --muted:    #94a3b8;
      --dimmed:   #475569;
      --r:        14px;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg); color: var(--text);
      line-height: 1.6; overflow-x: hidden;
    }

    /* ── NAV ───────────────────────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 40px; height: 64px;
      background: rgba(8,10,18,.88); backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(99,102,241,.08);
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo img { width: 30px; height: 30px; border-radius: 8px; }
    .nav-logo span { font-weight: 700; font-size: 15px; color: var(--text); letter-spacing: -.3px; }
    .nav-pill {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(99,102,241,.12); border: 1px solid rgba(99,102,241,.3);
      color: var(--indigo-l); font-size: 12px; font-weight: 600;
      padding: 6px 14px; border-radius: 20px; text-decoration: none;
      transition: background .2s;
    }
    .nav-pill:hover { background: rgba(99,102,241,.22); }

    /* ── HERO ──────────────────────────────────────────────────────────── */
    .hero {
      padding: 96px 24px 0;
      position: relative; overflow: hidden;
    }
    .hero-glow {
      position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
      width: 1200px; height: 700px;
      background: radial-gradient(ellipse at center, rgba(99,102,241,.2) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-inner {
      position: relative; z-index: 1;
      max-width: 1200px; margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 0 64px;
      align-items: center;
      padding: 60px 0 0;
    }

    /* Left column */
    .hero-copy { display: flex; flex-direction: column; align-items: flex-start; }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      margin-bottom: 28px;
    }
    .eyebrow-tag {
      background: rgba(99,102,241,.12); border: 1px solid rgba(99,102,241,.3);
      color: var(--indigo-l); font-size: 11px; font-weight: 700;
      padding: 4px 10px; border-radius: 4px; letter-spacing: .8px; text-transform: uppercase;
    }
    .eyebrow-divider { color: var(--dimmed); }
    .eyebrow-text { font-size: 12px; color: var(--muted); }

    h1 {
      font-size: clamp(38px, 4.5vw, 66px);
      font-weight: 900; line-height: 1.06; letter-spacing: -2.5px;
      max-width: 700px; margin-bottom: 24px;
    }
    .grad {
      background: linear-gradient(135deg, #fff 20%, var(--indigo-l) 60%, var(--orange) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .hero-sub {
      font-size: clamp(15px, 1.6vw, 18px); color: var(--muted);
      max-width: 520px; margin-bottom: 36px; line-height: 1.65;
    }

    /* Inline email capture */
    .hero-form {
      display: flex; gap: 8px; flex-wrap: wrap;
      margin-bottom: 12px;
    }
    .hero-input {
      height: 52px; padding: 0 18px; border-radius: 10px;
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
      color: var(--text); font-size: 15px; font-family: inherit;
      width: 280px; outline: none; transition: border-color .2s, background .2s;
    }
    .hero-input::placeholder { color: var(--dimmed); }
    .hero-input:focus { border-color: var(--indigo); background: rgba(99,102,241,.07); }
    .hero-btn {
      height: 52px; padding: 0 26px; border-radius: 10px;
      background: var(--indigo); color: #fff; border: none;
      font-size: 15px; font-weight: 700; font-family: inherit;
      cursor: pointer; transition: all .2s;
      box-shadow: 0 0 28px rgba(99,102,241,.4);
      white-space: nowrap;
    }
    .hero-btn:hover { background: var(--indigo-l); transform: translateY(-1px); box-shadow: 0 4px 36px rgba(99,102,241,.55); }
    .hero-form-note { font-size: 12px; color: var(--dimmed); }
    .hero-form-note a { color: var(--muted); text-decoration: none; }
    .hero-form-note a:hover { color: var(--text); }

    /* Social proof below form */
    .hero-proof {
      display: flex; align-items: center; gap: 10px;
      margin-top: 24px;
    }
    .hp-avatars { display: flex; }
    .hp-avatar {
      width: 26px; height: 26px; border-radius: 50%;
      border: 2px solid var(--bg); margin-left: -7px;
      background: var(--card);
      display: flex; align-items: center; justify-content: center;
      font-size: 12px;
    }
    .hp-avatars .hp-avatar:first-child { margin-left: 0; }
    .hp-text { font-size: 12px; color: var(--muted); }
    .hp-text strong { color: var(--text); }

    /* Right column — mascot */
    .hero-mascot-wrap {
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }
    .mascot-glow {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: 340px; height: 340px;
      background: radial-gradient(ellipse at center, rgba(99,102,241,.28) 0%, transparent 65%);
      pointer-events: none; z-index: 0;
    }
    .mascot-img {
      position: relative; z-index: 1;
      width: 340px; height: 340px;
      object-fit: contain;
      filter: drop-shadow(0 16px 48px rgba(99,102,241,.35)) drop-shadow(0 0 80px rgba(99,102,241,.15));
      animation: float 4s ease-in-out infinite;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      25%       { transform: translateY(-12px) rotate(1.5deg); }
      75%       { transform: translateY(6px) rotate(-1deg); }
    }

    /* Screenshot section */
    .hero-screen-outer {
      position: relative; z-index: 1;
      max-width: 1200px; margin: 56px auto 0;
    }
    .hero-screen-glow {
      position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
      width: 75%; height: 160px;
      background: radial-gradient(ellipse at center, rgba(99,102,241,.3) 0%, transparent 70%);
      pointer-events: none; z-index: 0;
    }
    .hero-browser {
      position: relative; z-index: 1;
      background: #1a1d2a; border: 1px solid rgba(255,255,255,.1);
      border-radius: 12px; overflow: hidden;
      box-shadow: 0 32px 80px rgba(0,0,0,.65), 0 0 0 1px rgba(99,102,241,.12);
    }
    .hero-browser-bar {
      height: 36px; background: #13161f;
      display: flex; align-items: center; padding: 0 14px; gap: 6px;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .hb-dot { width: 11px; height: 11px; border-radius: 50%; }
    .hb-dot.r { background: #ff5f57; }
    .hb-dot.y { background: #febc2e; }
    .hb-dot.g { background: #28c840; }
    .hb-url {
      margin-left: 12px; flex: 1; background: rgba(255,255,255,.06);
      border-radius: 5px; height: 20px; max-width: 320px;
      display: flex; align-items: center; padding: 0 10px;
      font-size: 11px; font-family: 'JetBrains Mono', monospace; color: var(--dimmed);
    }
    .hero-browser img { display: block; width: 100%; }

    /* Stats strip */
    .hero-stats {
      display: flex; justify-content: center;
      background: var(--bg2); border: 1px solid var(--border);
      border-radius: 12px;
      max-width: 1200px; margin: 40px auto 80px;
      position: relative; z-index: 1;
    }
    .stat-item {
      flex: 1; min-width: 140px; text-align: center;
      padding: 18px 12px; border-right: 1px solid var(--border);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num { font-size: 24px; font-weight: 800; color: var(--text); letter-spacing: -1px; line-height: 1; }
    .stat-num .u { font-size: 15px; color: var(--indigo-l); }
    .stat-label { font-size: 10.5px; color: var(--dimmed); margin-top: 3px; letter-spacing: .5px; text-transform: uppercase; }

    /* ── SECTION BASE ──────────────────────────────────────────────────── */
    section { padding: 96px 24px; }
    .container { max-width: 1140px; margin: 0 auto; }
    .s-label {
      font-size: 11px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--indigo-l);
      margin-bottom: 10px; display: block;
    }
    .s-title {
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 800; letter-spacing: -1.5px; line-height: 1.12; margin-bottom: 14px;
    }
    .s-sub { font-size: 16px; color: var(--muted); max-width: 520px; line-height: 1.6; }

    /* ── PROBLEM ────────────────────────────────────────────────────────── */
    .problem { background: var(--bg2); }
    .problem-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 16px; margin-top: 48px;
    }
    .prob-card {
      background: rgba(239,68,68,.05); border: 1px solid rgba(239,68,68,.13);
      border-radius: var(--r); padding: 26px;
    }
    .prob-icon { font-size: 26px; margin-bottom: 12px; }
    .prob-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 7px; color: #fca5a5; }
    .prob-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
    .prob-solve {
      margin-top: 36px;
      background: rgba(99,102,241,.06); border: 1px solid rgba(99,102,241,.22);
      border-radius: var(--r); padding: 32px;
      display: flex; gap: 18px; align-items: flex-start;
    }
    .ps-icon { font-size: 28px; flex-shrink: 0; margin-top: 4px; }
    .prob-solve h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
    .prob-solve p { font-size: 14px; color: var(--muted); line-height: 1.65; }

    /* ── FEATURES ───────────────────────────────────────────────────────── */
    .feat-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 16px; margin-top: 48px;
    }
    .feat-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: var(--r); padding: 26px;
      transition: border-color .2s, transform .2s;
    }
    .feat-card:hover { border-color: rgba(99,102,241,.38); transform: translateY(-3px); }
    .feat-icon {
      width: 42px; height: 42px; border-radius: 10px;
      background: rgba(99,102,241,.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; margin-bottom: 14px;
    }
    .feat-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 7px; }
    .feat-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

    /* ── TESTIMONIALS ───────────────────────────────────────────────────── */
    .trust-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 16px; margin-top: 48px;
    }
    .trust-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: var(--r); padding: 26px;
    }
    .trust-stars { color: #fbbf24; font-size: 13px; margin-bottom: 12px; }
    .trust-card blockquote { font-size: 13px; color: var(--muted); line-height: 1.65; font-style: italic; margin-bottom: 16px; }
    .trust-author { font-size: 12px; font-weight: 700; color: var(--text); }
    .trust-role { font-size: 11px; color: var(--dimmed); margin-top: 2px; }

    /* ── WAITLIST ───────────────────────────────────────────────────────── */
    .waitlist-section { background: var(--bg2); position: relative; overflow: hidden; }
    .wl-glow {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: 800px; height: 400px;
      background: radial-gradient(ellipse, rgba(99,102,241,.14) 0%, transparent 65%);
      pointer-events: none;
    }
    .waitlist-inner {
      max-width: 720px; margin: 0 auto;
      position: relative; z-index: 1; text-align: center;
    }
    .wl-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.25);
      color: #fb923c; font-size: 11px; font-weight: 700;
      padding: 4px 12px; border-radius: 20px; margin-bottom: 20px;
      letter-spacing: .5px; text-transform: uppercase;
    }
    .waitlist-inner h2 {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 900; letter-spacing: -2px; line-height: 1.08;
      margin-bottom: 14px;
    }
    .waitlist-inner > p {
      font-size: 16px; color: var(--muted); line-height: 1.6;
      max-width: 500px; margin: 0 auto 36px;
    }
    .wl-counter {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      margin-bottom: 32px;
    }
    .wl-avatars { display: flex; }
    .wl-avatar {
      width: 28px; height: 28px; border-radius: 50%;
      border: 2px solid var(--bg2); margin-left: -8px;
      background: var(--card); display: flex; align-items: center; justify-content: center;
      font-size: 13px;
    }
    .wl-avatars .wl-avatar:first-child { margin-left: 0; }
    .wl-counter-text { font-size: 13px; color: var(--muted); }
    .wl-counter-text strong { color: var(--text); }

    .wl-form {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 16px; padding: 36px; text-align: left;
    }
    .wl-row { margin-bottom: 18px; }
    .wl-row label {
      display: block; font-size: 12px; font-weight: 600;
      color: var(--muted); margin-bottom: 7px; letter-spacing: .3px;
    }
    .req { color: var(--indigo-l); margin-left: 2px; }
    .wl-input, .wl-select {
      width: 100%; height: 46px; padding: 0 14px;
      background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
      border-radius: 8px; color: var(--text); font-size: 14px; font-family: inherit;
      outline: none; transition: border-color .2s, background .2s; appearance: none;
    }
    .wl-input::placeholder { color: var(--dimmed); }
    .wl-input:focus, .wl-select:focus { border-color: var(--indigo); background: rgba(99,102,241,.06); }
    .wl-select-wrap { position: relative; }
    .wl-select-wrap::after {
      content: '▾'; position: absolute; right: 12px; top: 50%;
      transform: translateY(-50%); color: var(--dimmed); font-size: 12px; pointer-events: none;
    }
    .wl-select option { background: #1a1d2a; color: var(--text); }
    .wl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .wl-submit {
      width: 100%; height: 52px; border-radius: 10px;
      background: var(--indigo); color: #fff; border: none;
      font-size: 15px; font-weight: 700; font-family: inherit;
      cursor: pointer; margin-top: 6px;
      transition: all .2s; box-shadow: 0 0 28px rgba(99,102,241,.35);
    }
    .wl-submit:hover { background: var(--indigo-l); box-shadow: 0 4px 40px rgba(99,102,241,.55); }
    .wl-privacy { text-align: center; margin-top: 14px; font-size: 12px; color: var(--dimmed); }
    .wl-privacy a { color: var(--muted); text-decoration: none; }

    .wl-success { display: none; text-align: center; padding: 40px 20px; }
    .wl-success .check { font-size: 52px; margin-bottom: 16px; }
    .wl-success h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
    .wl-success p { font-size: 14px; color: var(--muted); line-height: 1.6; }

    /* ── PRIVACY STRIP ──────────────────────────────────────────────────── */
    .priv-band {
      background: linear-gradient(135deg, rgba(99,102,241,.05) 0%, rgba(249,115,22,.03) 100%);
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    }
    .priv-inner {
      max-width: 1140px; margin: 0 auto; padding: 52px 24px;
      display: flex; gap: 48px; flex-wrap: wrap; align-items: flex-start;
    }
    .priv-item { display: flex; gap: 14px; flex: 1; min-width: 200px; }
    .pi-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
    .pi-title { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
    .pi-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

    /* ── FOOTER ─────────────────────────────────────────────────────────── */
    footer {
      background: var(--bg2); border-top: 1px solid rgba(255,255,255,.06);
      padding: 36px 24px;
    }
    .foot-inner {
      max-width: 1140px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    }
    .foot-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
    .foot-logo img { width: 22px; height: 22px; border-radius: 6px; }
    .foot-logo span { font-size: 13px; font-weight: 700; color: var(--muted); }
    .foot-links { display: flex; flex-wrap: wrap; gap: 12px 20px; }
    .foot-links a { font-size: 13px; color: var(--dimmed); text-decoration: none; transition: color .2s; }
    .foot-links a:hover { color: var(--muted); }
    .foot-copy { font-size: 12px; color: var(--dimmed); }
    @media (max-width: 700px) {
      .foot-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
      .foot-links { gap: 10px 16px; }
      .foot-copy { order: 3; }
    }

    /* ── RESPONSIVE ─────────────────────────────────────────────────────── */
    @media (max-width: 1000px) {
      .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 0 0;
      }
      .hero-copy { align-items: center; }
      .hero-mascot-wrap { order: -1; margin-bottom: 0; }
      .mascot-img { width: 200px; height: 200px; }
      .mascot-glow { width: 200px; height: 200px; }
      .hero-form { justify-content: center; }
      .hero-proof { justify-content: center; }
    }
    @media (max-width: 900px) {
      nav { padding: 0 20px; }
      .problem-grid { grid-template-columns: 1fr; }
      .feat-grid { grid-template-columns: 1fr 1fr; }
      .trust-grid { grid-template-columns: 1fr; }
      .wl-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      /* Nav */
      nav { padding: 0 16px; }
      .nav-logo span { font-size: 14px; }
      .nav-pill { font-size: 11px; padding: 5px 10px; }

      /* Hero copy */
      .hero { padding: 80px 16px 0; }
      .hero-inner { padding: 28px 0 0; gap: 0; }
      h1 { letter-spacing: -1.5px; }
      .mascot-img { width: 150px; height: 150px; }
      .mascot-glow { display: none; }

      /* Hero form */
      .hero-form { flex-direction: column; align-items: stretch; width: 100%; max-width: none; }
      .hero-input { width: 100%; min-width: 0; }
      .hero-btn { width: 100%; }

      /* Screenshot */
      .hero-screen-outer { margin-top: 28px; }
      .hero-stats { flex-direction: column; margin: 24px auto 48px; }
      .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
      .stat-item:last-child { border-bottom: none; }

      /* Sections */
      section { padding: 60px 16px; }
      .priv-inner { padding: 40px 16px; gap: 28px; }

      /* Waitlist form */
      .wl-form { padding: 20px 16px; }
      .feat-grid { grid-template-columns: 1fr; }
    }

    /* ── COOKIE BANNER ── */
    #cookie-banner {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
      background: #13161f; border-top: 1px solid rgba(99,102,241,.25);
      padding: 16px 24px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px; flex-wrap: wrap;
      box-shadow: 0 -8px 32px rgba(0,0,0,.4);
    }
    #cookie-banner p { font-size: 13px; color: #94a3b8; margin: 0; flex: 1; min-width: 220px; }
    #cookie-banner a { color: #818cf8; }
    .cb-btns { display: flex; gap: 8px; flex-shrink: 0; }
    .cb-accept {
      padding: 8px 18px; border-radius: 8px; border: none; cursor: pointer;
      background: #6366f1; color: #fff; font-size: 13px; font-weight: 600;
      font-family: inherit; transition: background .2s;
    }
    .cb-accept:hover { background: #818cf8; }
    .cb-decline {
      padding: 8px 18px; border-radius: 8px; cursor: pointer;
      background: transparent; color: #94a3b8; font-size: 13px; font-weight: 600;
      font-family: inherit; border: 1px solid rgba(255,255,255,.1); transition: all .2s;
    }
    .cb-decline:hover { border-color: rgba(255,255,255,.25); color: #f1f5f9; }
    @media (max-width: 600px) {
      #cookie-banner { flex-direction: column; align-items: flex-start; padding: 16px; }
      .cb-btns { width: 100%; }
      .cb-accept, .cb-decline { flex: 1; text-align: center; }
    }
