    /* ── Reset & Base ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:        #07050f;
      --bg-card:   #110d22;
      --bg-card2:  #160f2a;
      --purple:    #7c3aed;
      --purple-lt: #a855f7;
      --gold:      #f59e0b;
      --gold-lt:   #fcd34d;
      --text:      #f0eafa;
      --muted:     #9d8cbf;
      --radius:    16px;
      --max:       1100px;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ── Nav ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 18px 0;
      background: rgba(7, 5, 15, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(124, 58, 237, 0.15);
    }

    nav .inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .nav-orb {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, #c084fc, #7c3aed 60%, #3b0764);
      box-shadow: 0 0 12px rgba(168, 85, 247, 0.6);
      animation: pulse 3s ease-in-out infinite;
    }

    .nav-cta {
      background: var(--purple);
      color: #fff;
      padding: 10px 20px;
      border-radius: 100px;
      font-size: 0.875rem;
      font-weight: 600;
      transition: background 0.2s, transform 0.15s;
    }
    .nav-cta:hover { background: var(--purple-lt); transform: translateY(-1px); }

    /* ── Hero ── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 24px 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(124, 58, 237, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-orb {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 30%, #e879f9, #7c3aed 50%, #2e1065);
      box-shadow:
        0 0 40px rgba(168, 85, 247, 0.5),
        0 0 80px rgba(124, 58, 237, 0.3),
        0 0 120px rgba(124, 58, 237, 0.15);
      margin: 0 auto 32px;
      animation: float 4s ease-in-out infinite, pulse 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-12px); }
    }

    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 40px rgba(168,85,247,0.5), 0 0 80px rgba(124,58,237,0.3); }
      50%       { box-shadow: 0 0 60px rgba(168,85,247,0.7), 0 0 120px rgba(124,58,237,0.45); }
    }

    .hero-eyebrow {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(245, 158, 11, 0.1);
      border: 1px solid rgba(245, 158, 11, 0.3);
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 24px;
    }

    .hero h1 {
      font-size: clamp(2.4rem, 6vw, 4.5rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .hero h1 em {
      font-style: normal;
      background: linear-gradient(135deg, #c084fc, #f59e0b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      color: var(--muted);
      max-width: 560px;
      margin: 0 auto 48px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
    }

    .btn-store {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 24px;
      border-radius: var(--radius);
      font-size: 0.9rem;
      font-weight: 600;
      transition: transform 0.15s, box-shadow 0.2s;
      border: 1px solid rgba(255,255,255,0.12);
    }
    .btn-store:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }

    .btn-store.apple {
      background: rgba(255,255,255,0.08);
      color: var(--text);
    }
    .btn-store.google {
      background: rgba(255,255,255,0.05);
      color: var(--text);
    }

    .btn-store svg {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
    }

    .btn-store .store-label { text-align: left; }
    .btn-store .store-label span { display: block; font-size: 0.7rem; font-weight: 400; opacity: 0.65; }
    .btn-store .store-label strong { display: block; font-size: 0.95rem; }

    .hero-note {
      margin-top: 20px;
      font-size: 0.8rem;
      color: var(--muted);
    }

    /* ── Section Common ── */
    section { padding: 100px 0; }
    .section-eyebrow {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--purple-lt);
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -0.025em;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-sub {
      color: var(--muted);
      font-size: 1.05rem;
      max-width: 520px;
    }

    /* ── How It Works ── */
    .how { background: var(--bg-card); }

    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 32px;
      margin-top: 64px;
    }

    .step {
      text-align: center;
      padding: 40px 24px;
      border-radius: var(--radius);
      background: var(--bg);
      border: 1px solid rgba(124, 58, 237, 0.2);
      position: relative;
      transition: border-color 0.2s, transform 0.2s;
    }
    .step:hover { border-color: rgba(124, 58, 237, 0.5); transform: translateY(-4px); }

    .step-num {
      position: absolute;
      top: -18px;
      left: 50%;
      transform: translateX(-50%);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--purple);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      font-weight: 700;
      box-shadow: 0 0 16px rgba(124,58,237,0.5);
    }

    .step-icon {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .step h3 {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .step p { color: var(--muted); font-size: 0.95rem; }

    /* ── Features ── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 64px;
    }

    .feature-card {
      padding: 32px;
      border-radius: var(--radius);
      background: var(--bg-card2);
      border: 1px solid rgba(124, 58, 237, 0.15);
      transition: border-color 0.2s, transform 0.2s;
    }
    .feature-card:hover { border-color: rgba(168, 85, 247, 0.4); transform: translateY(-3px); }

    .feature-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(124, 58, 237, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
    }

    .feature-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .feature-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

    /* ── Themes ── */
    .themes-section { background: var(--bg-card); }

    .themes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 56px;
    }

    .theme-card {
      padding: 32px 24px;
      border-radius: var(--radius);
      text-align: center;
      border: 1px solid transparent;
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: default;
    }
    .theme-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }

    .theme-card.fantasy  { background: linear-gradient(145deg, #1e1035, #2d1b69); border-color: rgba(139,92,246,0.3); }
    .theme-card.scifi    { background: linear-gradient(145deg, #0c1a2e, #0e3a5c); border-color: rgba(56,189,248,0.3); }
    .theme-card.bedtime  { background: linear-gradient(145deg, #1a0f2e, #2d1052); border-color: rgba(196,136,247,0.3); }
    .theme-card.adventure{ background: linear-gradient(145deg, #1a1200, #3d2800); border-color: rgba(245,158,11,0.3); }

    .theme-emoji { font-size: 2.5rem; margin-bottom: 14px; }
    .theme-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
    .theme-card p { font-size: 0.85rem; color: var(--muted); }

    /* ── Story Preview ── */
    .preview-box {
      max-width: 680px;
      margin: 56px auto 0;
      background: var(--bg-card2);
      border: 1px solid rgba(124, 58, 237, 0.25);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    }

    .preview-header {
      background: rgba(124, 58, 237, 0.15);
      padding: 16px 24px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid rgba(124,58,237,0.2);
    }

    .preview-orb {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, #e879f9, #7c3aed);
      animation: pulse 3s ease-in-out infinite;
    }

    .preview-header span { font-size: 0.85rem; font-weight: 600; opacity: 0.8; }

    .preview-body { padding: 32px; }

    .preview-text {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--text);
      margin-bottom: 28px;
    }

    .preview-text .highlight {
      color: var(--gold-lt);
      font-weight: 600;
    }

    .preview-choices {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .choice-btn {
      padding: 14px 20px;
      border-radius: 12px;
      border: 1px solid rgba(124, 58, 237, 0.4);
      background: rgba(124, 58, 237, 0.1);
      color: var(--text);
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      text-align: left;
      transition: background 0.2s, border-color 0.2s;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .choice-btn:hover { background: rgba(124,58,237,0.25); border-color: rgba(168,85,247,0.6); }
    .choice-btn .mic-icon { font-size: 0.9rem; opacity: 0.6; }

    /* ── CTA / Waitlist ── */
    .cta-section {
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(124,58,237,0.2) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-section .section-title { margin: 0 auto 16px; }
    .cta-section .section-sub { margin: 0 auto 40px; }

    .waitlist-form {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      max-width: 480px;
      margin: 0 auto;
    }

    .waitlist-form input {
      flex: 1;
      min-width: 220px;
      padding: 14px 20px;
      border-radius: 100px;
      border: 1px solid rgba(124,58,237,0.4);
      background: rgba(255,255,255,0.05);
      color: var(--text);
      font-size: 0.95rem;
      outline: none;
      transition: border-color 0.2s;
    }
    .waitlist-form input:focus { border-color: var(--purple-lt); }
    .waitlist-form input::placeholder { color: var(--muted); }

    .waitlist-form button {
      padding: 14px 28px;
      border-radius: 100px;
      border: none;
      background: var(--purple);
      color: #fff;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }
    .waitlist-form button:hover { background: var(--purple-lt); transform: translateY(-1px); }

    .waitlist-success {
      display: none;
      margin-top: 16px;
      color: var(--gold-lt);
      font-size: 0.95rem;
      font-weight: 500;
    }

    .cta-stores {
      margin-top: 32px;
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ── Trust Bar ── */
    .trust-bar {
      padding: 40px 0;
      background: var(--bg-card);
      border-top: 1px solid rgba(124,58,237,0.1);
      border-bottom: 1px solid rgba(124,58,237,0.1);
    }

    .trust-items {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      justify-content: center;
      align-items: center;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.875rem;
      color: var(--muted);
      font-weight: 500;
    }

    .trust-item span.icon {
      font-size: 1.1rem;
      color: var(--gold);
    }

    /* ── Footer ── */
    footer {
      padding: 48px 0 32px;
      text-align: center;
      color: var(--muted);
      font-size: 0.85rem;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 24px;
    }

    .footer-orb {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, #c084fc, #7c3aed 60%, #3b0764);
    }

    .footer-links {
      display: flex;
      gap: 24px;
      justify-content: center;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 0.85rem;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--text); }

    /* ── Responsive ── */
    @media (max-width: 600px) {
      .nav-cta { display: none; }
      .steps { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: 1fr; }
      .themes-grid { grid-template-columns: 1fr 1fr; }
      .preview-body { padding: 20px; }
    }

    @media (max-width: 400px) {
      .themes-grid { grid-template-columns: 1fr; }
    }
