:root {
    /* Brand */
    --brand-primary: #6B5BFF;
    --brand-primary-light: #8A7DFF;
    --brand-accent: #EC6FB8;
    --brand-gradient: linear-gradient(135deg, #6B5BFF 0%, #EC6FB8 100%);
    --brand-gradient-soft: linear-gradient(135deg, rgba(107,91,255,0.18) 0%, rgba(236,111,184,0.18) 100%);

    /* Personality colors */
    --p-friend: linear-gradient(135deg, #8A7DFF, #EC6FB8);
    --p-coach: linear-gradient(135deg, #7DA8FF, #8A7DFF);
    --p-fun: linear-gradient(135deg, #8FE0CE, #B3A8FF);
    --p-sage: linear-gradient(135deg, #3FA0A8, #7FC9D0);

    /* Mood */
    --m-great: #7DD3C0;
    --m-good: #B4D77A;
    --m-okay: #F5C97A;
    --m-bad: #F5A66B;

    /* Type */
    --font-display: 'Nunito', system-ui, sans-serif;
    --font-serif: 'Fraunces', Georgia, serif;
    --font-mono: ui-monospace, "SF Mono", Menlo, monospace;
  }

  /* DARK theme tokens */
  :root, [data-theme="dark"] {
    --bg-page: #0F0F1A;
    --bg-card: #1A1A2E;
    --bg-card-elev: #22223B;
    --surface-alt: rgba(255,255,255,0.04);
    --text-primary: #F0F0FF;
    --text-secondary: #AAABCC;
    --text-muted: #6B6B8A;
    --border: rgba(255,255,255,0.08);
    --border-strong: rgba(255,255,255,0.14);
    --shadow-card: 0 20px 50px -20px rgba(0,0,0,0.5);
    --nav-bg: rgba(15,15,26,0.72);
    --hero-glow-1: rgba(107,91,255,0.32);
    --hero-glow-2: rgba(236,111,184,0.22);
  }
  /* LIGHT theme tokens */
  [data-theme="light"] {
    --bg-page: #FAFAFC;
    --bg-card: #FFFFFF;
    --bg-card-elev: #F4F4F8;
    --surface-alt: #F0EFFA;
    --text-primary: #1A1A2E;
    --text-secondary: #5A5A7A;
    --text-muted: #9A9AB0;
    --border: #ECECF2;
    --border-strong: #DCDCE8;
    --shadow-card: 0 20px 50px -25px rgba(107,91,255,0.18);
    --nav-bg: rgba(250,250,252,0.82);
    --hero-glow-1: rgba(107,91,255,0.16);
    --hero-glow-2: rgba(236,111,184,0.14);
  }

  * { box-sizing: border-box; }
  html, body { margin:0; padding:0; }
  html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 80px; }
  body {
    font-family: var(--font-display);
    background: var(--bg-page);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
    overflow-x: clip;
  }
  a { color: inherit; text-decoration: none; }

  /* Hide initial content until React mounts */
  #root:empty::before {
    content:""; position:fixed; inset:0; background:var(--bg-page); z-index:9999;
  }

  /* === Layout === */
  .container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

  /* === Nav === */
  .nav-wrap {
    position: sticky; top: 0; z-index: 50;
    background: var(--nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  }
  .nav-wrap.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 10px 28px -18px rgba(0,0,0,0.4);
  }

  /* === Scroll-to-top FAB === */
  .scroll-top {
    position: fixed; right: 22px; bottom: 22px; z-index: 60;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--brand-gradient);
    color: white; border: 0;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 14px 28px -10px rgba(107,91,255,0.55), 0 0 0 1px rgba(255,255,255,0.05) inset;
    cursor: pointer;
    opacity: 0; transform: translateY(12px) scale(0.9);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, box-shadow .2s ease;
  }
  .scroll-top.visible {
    opacity: 1; transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .scroll-top:hover {
    box-shadow: 0 18px 36px -10px rgba(107,91,255,0.7), 0 0 0 1px rgba(255,255,255,0.05) inset;
    transform: translateY(-2px) scale(1);
  }
  @media (max-width: 520px) {
    .scroll-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
  }
  .nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
  .nav-brand { display: flex; align-items: center; gap: 10px; }
  .nav-wordmark { font-weight: 900; font-size: 22px; letter-spacing: -0.02em; line-height: 1; }
  .nav-wordmark .lumy { color: var(--text-primary); }
  .nav-wordmark .nax {
    background: var(--brand-gradient);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .nav-links { display: flex; gap: 30px; font-size: 14.5px; font-weight: 600; color: var(--text-secondary); }
  .nav-links a:hover { color: var(--text-primary); }
  .nav-right { display: flex; gap: 12px; align-items: center; }

  .pill-toggle {
    display: inline-flex; align-items: center; padding: 3px;
    background: var(--surface-alt); border: 1px solid var(--border);
    border-radius: 999px; font-size: 12px; font-weight: 700;
  }
  .pill-toggle button {
    border: 0; background: transparent; color: var(--text-secondary);
    padding: 5px 11px; border-radius: 999px; cursor: pointer; font: inherit;
    transition: all .15s ease;
  }
  .pill-toggle button.on {
    background: var(--brand-gradient); color: white;
  }
  .icon-btn {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--border); background: var(--surface-alt);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); cursor: pointer;
  }
  .icon-btn:hover { color: var(--text-primary); }
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 20px; border-radius: 12px; font-weight: 700; font-size: 14.5px;
    cursor: pointer; border: 0; transition: transform .15s, box-shadow .2s, filter .15s;
    text-decoration: none;
  }
  .btn-primary { background: var(--brand-gradient); color: white; box-shadow: 0 8px 22px -8px rgba(107,91,255,0.6); }
  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -8px rgba(107,91,255,0.7); }
  .btn-ghost { background: var(--surface-alt); color: var(--text-primary); border: 1px solid var(--border); }
  .btn-ghost:hover { border-color: var(--border-strong); }

  /* === Hero === */
  .hero { position: relative; padding: 80px 0 60px; overflow: hidden; }
  .hero-bg-orb {
    position: absolute; pointer-events: none; border-radius: 50%;
    filter: blur(80px); z-index: 0;
  }
  .hero-bg-orb.a { width: 520px; height: 520px; background: var(--hero-glow-1); top: -120px; left: -100px; }
  .hero-bg-orb.b { width: 480px; height: 480px; background: var(--hero-glow-2); top: 120px; right: -120px; }
  .hero-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 14px; border-radius: 999px;
    background: var(--surface-alt); border: 1px solid var(--border);
    font-size: 12.5px; font-weight: 700; color: var(--text-secondary);
    letter-spacing: 0.02em;
  }
  .eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-accent); box-shadow: 0 0 12px var(--brand-accent); }
  .hero h1 {
    font-size: clamp(40px, 5.4vw, 72px); line-height: 1.02; letter-spacing: -0.035em;
    font-weight: 900; margin: 22px 0 24px; text-wrap: balance;
  }
  .hero h1 .grad {
    background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .hero h1 .serif { font-family: var(--font-serif); font-weight: 500; font-style: italic; letter-spacing: -0.02em; }
  .hero-sub {
    font-size: 18px; line-height: 1.55; color: var(--text-secondary);
    max-width: 540px; margin: 0 0 32px; font-weight: 500;
  }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
  .store-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 12px 22px 12px 18px; border-radius: 14px;
    background: var(--text-primary); color: var(--bg-page);
    font-weight: 700; transition: transform .15s, box-shadow .2s;
  }
  .store-btn:hover { transform: translateY(-1px); }
  .store-btn .store-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; white-space: nowrap; }
  .store-btn .store-text small { font-size: 10.5px; font-weight: 600; opacity: 0.7; letter-spacing: 0.04em; }
  .store-btn .store-text span { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; }
  .store-btn.alt { background: var(--surface-alt); color: var(--text-primary); border: 1px solid var(--border); }

  .hero-microline {
    margin-top: 26px; display: flex; gap: 18px; flex-wrap: wrap;
    font-size: 13px; color: var(--text-muted); font-weight: 600;
  }
  .hero-microline span { display: inline-flex; gap: 6px; align-items: center; }
  .hero-microline svg { color: var(--brand-accent); }

  /* Trust row */
  .trust-row {
    margin-top: 36px; display: flex; align-items: center; gap: 18px;
    padding: 14px 18px; border-radius: 16px; background: var(--surface-alt); border: 1px solid var(--border);
    max-width: 460px;
  }
  .avatar-stack { display: flex; }
  .avatar-stack .av {
    width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--bg-page);
    margin-left: -10px; overflow: hidden; flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    object-fit: cover;
  }
  .avatar-stack .av:first-child { margin-left: 0; }
  .trust-text { font-size: 13.5px; font-weight: 600; color: var(--text-secondary); line-height: 1.4; }
  .trust-text b { color: var(--text-primary); }

  /* === Phone — generic chrome === */
  .phone-stage {
    position: relative; display: flex; justify-content: center; align-items: center;
    min-height: 600px;
    overflow: hidden;
  }
  .phone-glow {
    position: absolute; width: 540px; height: 540px; border-radius: 50%;
    background: radial-gradient(circle, rgba(107,91,255,0.35), transparent 65%);
    filter: blur(30px); z-index: 0;
  }
  .phone {
    position: relative; z-index: 1;
    width: 380px; height: 780px;
    background: #0B0B1A;
    border-radius: 52px;
    padding: 12px;
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.06) inset,
      0 1px 0 rgba(255,255,255,0.12) inset,
      0 40px 80px -20px rgba(0,0,0,0.7),
      0 0 0 1px rgba(0,0,0,0.5);
  }
  .phone .notch {
    position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 26px; background: #000; border-radius: 14px;
    z-index: 3;
  }
  .phone .screen {
    width: 100%; height: 100%;
    background: #0F0F1A;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
  }
  .phone-statusbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 28px 6px; font-size: 13px; font-weight: 700; color: #F0F0FF;
  }
  .phone-statusbar .right { display: flex; gap: 5px; align-items: center; opacity: 0.85; }

  /* === Sections === */
  .section { padding: 100px 0; position: relative; }
  .section-eyebrow {
    text-transform: uppercase; letter-spacing: 0.14em;
    font-size: 12px; font-weight: 800; color: var(--brand-primary);
    margin-bottom: 14px;
  }
  [data-theme="light"] .section-eyebrow { color: #5037D6; }
  .section h2 {
    font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.03em;
    font-weight: 900; margin: 0 0 16px; text-wrap: balance;
  }
  .section h2 .serif { font-family: var(--font-serif); font-weight: 500; font-style: italic; letter-spacing: -0.015em; }
  .section h2 .grad {
    background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .section-lede {
    font-size: 18px; color: var(--text-secondary); max-width: 640px; line-height: 1.55;
    font-weight: 500;
  }

  /* === "What it does" big band === */
  .does-band {
    padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, transparent, var(--surface-alt) 60%, transparent);
  }
  .does-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  }
  .does-cell { padding: 10px 0; }
  .does-cell .verb {
    font-family: var(--font-serif); font-style: italic; font-weight: 500;
    font-size: clamp(28px, 3vw, 40px); line-height: 1.05; letter-spacing: -0.02em;
    background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
    margin-bottom: 8px;
  }
  .does-cell .verb-meta {
    font-size: 14px; color: var(--text-secondary); font-weight: 500; line-height: 1.45;
  }

  /* === Feature split === */
  .feat { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 60px 0; }
  .feat.reverse { grid-template-columns: 1fr 1fr; }
  .feat.reverse .feat-copy { order: 2; }
  .feat .feat-copy h3 {
    font-size: clamp(28px, 3vw, 40px); line-height: 1.05; letter-spacing: -0.025em;
    font-weight: 800; margin: 14px 0 16px; text-wrap: balance;
  }
  .feat .feat-copy p { font-size: 17px; color: var(--text-secondary); line-height: 1.6; margin: 0 0 22px; }
  .feat .feat-copy .tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px; border-radius: 999px;
    background: var(--brand-gradient-soft); border: 1px solid rgba(107,91,255,0.25);
    font-size: 12px; font-weight: 800; color: var(--brand-primary-light); letter-spacing: 0.04em; text-transform: uppercase;
  }
  [data-theme="light"] .feat .feat-copy .tag { color: #5037D6; border-color: rgba(107,91,255,0.3); }
  .feat ul.bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
  .feat ul.bullets li {
    display: flex; gap: 12px; font-size: 15px; color: var(--text-primary); font-weight: 500;
  }
  .feat ul.bullets li .check {
    flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
    background: var(--brand-gradient); display: flex; align-items: center; justify-content: center;
    color: white;
  }
  .feat ul.bullets li b { font-weight: 800; }
  .feat ul.bullets li span.muted { color: var(--text-secondary); font-weight: 500; }

  /* === Personalities === */
  .personas-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px;
  }
  .persona-card {
    position: relative; padding: 28px 22px 24px;
    border-radius: 22px; background: var(--bg-card); border: 1px solid var(--border);
    overflow: hidden; min-height: 260px;
    display: flex; flex-direction: column;
    transition: transform .25s ease, border-color .2s;
  }
  .persona-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
  .persona-card .p-glow {
    position: absolute; top: -60px; right: -60px; width: 180px; height: 180px; border-radius: 50%;
    filter: blur(30px); opacity: 0.55;
  }
  .persona-card .avatar {
    position: relative; z-index: 1;
    width: 56px; height: 56px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .persona-card .avatar svg { color: white; }
  .persona-card .pname { font-size: 20px; font-weight: 900; letter-spacing: -0.01em; margin: 0 0 4px; position: relative; z-index: 1; }
  .persona-card .ptier {
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text-muted); margin-bottom: 12px; position: relative; z-index: 1;
  }
  .persona-card .ptier.pro { color: var(--brand-accent); }
  .persona-card .ptier.prem { color: var(--brand-primary-light); }
  .persona-card .pdesc { font-size: 14px; color: var(--text-secondary); line-height: 1.5; position: relative; z-index: 1; margin: 0; }
  .persona-card .pquote {
    margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border);
    font-family: var(--font-serif); font-style: italic; font-size: 14px; color: var(--text-primary);
    position: relative; z-index: 1;
  }

  /* === How it works === */
  .steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px;
    position: relative;
  }
  .step {
    position: relative; padding: 32px 26px; border-radius: 22px;
    background: var(--bg-card); border: 1px solid var(--border);
  }
  .step-num {
    font-family: var(--font-serif); font-style: italic; font-size: 56px; font-weight: 400;
    line-height: 1; background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
    margin-bottom: 16px;
  }
  .step h4 { font-size: 19px; font-weight: 800; margin: 0 0 8px; letter-spacing: -0.01em; }
  .step p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.55; margin: 0; }

  /* === Pricing === */
  .price-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px;
    align-items: stretch;
  }
  .price-card {
    position: relative; padding: 32px 28px;
    border-radius: 24px; background: var(--bg-card); border: 1px solid var(--border);
    display: flex; flex-direction: column;
  }
  .price-card.featured {
    border-color: transparent;
    background:
      linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
      var(--brand-gradient) border-box;
    border: 1.5px solid transparent;
    box-shadow: 0 30px 60px -30px rgba(107,91,255,0.4);
    transform: translateY(-6px);
  }
  .price-card .pop-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    padding: 6px 14px; border-radius: 999px; font-size: 11.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
    background: var(--brand-gradient); color: white;
    white-space: nowrap;
  }
  .price-tier {
    font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text-muted);
  }
  .price-name { font-size: 26px; font-weight: 900; margin: 8px 0 4px; letter-spacing: -0.02em; }
  .price-tag {
    margin: 18px 0 22px; display: flex; align-items: baseline; gap: 6px;
  }
  .price-tag .num { font-size: 44px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
  .price-tag .per { color: var(--text-muted); font-size: 14px; font-weight: 600; white-space: nowrap; }
  .price-features { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; flex: 1; }
  .price-features li {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 14px; color: var(--text-primary); line-height: 1.45;
  }
  .price-features li svg { flex-shrink: 0; margin-top: 2px; color: var(--brand-primary-light); }
  .price-features li.muted { color: var(--text-muted); }
  .price-features li.muted svg { color: var(--text-muted); opacity: 0.5; }
  .price-card .price-cta { width: 100%; }

  /* === Proactive timeline === */
  .timeline {
    position: relative; margin-top: 48px;
    padding: 30px; border-radius: 24px;
    background: var(--bg-card); border: 1px solid var(--border);
    overflow: hidden;
  }
  .timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .tl-card {
    padding: 18px; border-radius: 16px;
    background: var(--surface-alt); border: 1px solid var(--border);
  }
  .tl-card .tl-time {
    font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.05em;
    margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
  }
  .tl-card .tl-time .dotc { width: 6px; height: 6px; border-radius: 50%; }
  .tl-card .tl-title { font-size: 14px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.005em; }
  .tl-card .tl-msg { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

  /* === FAQ === */
  .faq-list { margin-top: 36px; display: grid; gap: 10px; }
  .faq-item {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
    overflow: hidden; transition: border-color .2s;
  }
  .faq-item[open] { border-color: var(--border-strong); }
  .faq-q {
    padding: 20px 24px; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 700; font-size: 16px; color: var(--text-primary);
  }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-q .ico {
    width: 28px; height: 28px; border-radius: 50%; background: var(--surface-alt);
    display: flex; align-items: center; justify-content: center; transition: transform .25s, background .2s;
  }
  .faq-item[open] .faq-q .ico { transform: rotate(45deg); background: var(--brand-gradient); color: white; }
  .faq-a {
    padding: 0 24px 22px; font-size: 15px; color: var(--text-secondary); line-height: 1.6;
  }

  /* === CTA banner === */
  .cta-banner {
    margin-top: 80px; padding: 60px 56px; border-radius: 28px; position: relative; overflow: hidden;
    background:
      radial-gradient(circle at 20% 30%, rgba(107,91,255,0.55), transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(236,111,184,0.45), transparent 55%),
      #1A1A2E;
    border: 1px solid rgba(255,255,255,0.08);
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  }
  [data-theme="light"] .cta-banner {
    background:
      radial-gradient(circle at 20% 30%, rgba(107,91,255,0.18), transparent 55%),
      radial-gradient(circle at 80% 70%, rgba(236,111,184,0.16), transparent 60%),
      #FFFFFF;
    border-color: var(--border-strong);
  }
  .cta-banner h2 { color: #F0F0FF; margin: 0 0 14px; }
  [data-theme="light"] .cta-banner h2 { color: #1A1A2E; }
  .cta-banner p { color: rgba(240,240,255,0.7); margin: 0 0 28px; font-size: 17px; line-height: 1.55; }
  [data-theme="light"] .cta-banner p { color: var(--text-secondary); }

  /* === Footer === */
  footer { padding: 60px 0 40px; border-top: 1px solid var(--border); margin-top: 80px; }
  .footer-grid {
    display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px;
  }
  .footer-brand p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; margin: 14px 0 0; max-width: 320px; }
  .footer-col h5 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin: 0 0 16px; }
  .footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
  .footer-col a { font-size: 14px; color: var(--text-secondary); font-weight: 500; }
  .footer-col a:hover { color: var(--text-primary); }
  .footer-bottom {
    margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
    font-size: 12.5px; color: var(--text-muted);
  }
  .footer-bottom .legal-pills { display: flex; gap: 16px; flex-wrap: wrap; }

  /* === Responsive === */
  @media (max-width: 1080px) {
    .container { padding: 0 24px; }
    .hero { padding: 60px 0 40px; }
    .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
  }
  @media (max-width: 960px) {
    .nav { height: 64px; }
    .nav-links { display: none; }
    .nav-right .btn-primary { padding: 9px 14px; font-size: 13px; }
    .hero-grid, .feat, .does-grid, .personas-grid, .price-grid, .steps, .footer-grid, .cta-banner, .timeline-grid { grid-template-columns: 1fr !important; }
    .feat { gap: 36px !important; padding: 30px 0; }
    .feat.reverse .feat-copy { order: 0; }
    .hero { padding: 36px 0 16px; }
    .section { padding: 56px 0; }
    .price-card.featured { transform: none; }
    .phone-stage { min-height: 520px; }
    .phone { transform: scale(0.92); }
    .does-grid { gap: 24px; }
    .does-cell .verb { font-size: 32px !important; }
    .cta-banner { padding: 40px 28px !important; }
    .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 36px 24px; }
    .footer-brand { grid-column: 1 / -1; }
  }
  @media (max-width: 720px) {
    .container { padding: 0 20px; }
    .does-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 18px; }
    .personas-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }
    .timeline { padding: 18px; }
    .nav-wordmark { font-size: 19px; }
    .hero h1 { letter-spacing: -0.025em; }
    .section h2 { font-size: clamp(28px, 6vw, 40px) !important; }
    .does-cell .verb { font-size: 26px !important; }
    .price-card { padding: 26px 22px; }
    .price-tag .num { font-size: 38px; }
    .cta-banner h2 { font-size: clamp(26px, 6vw, 36px) !important; }
    .footer-bottom { font-size: 11.5px; }
  }
  @media (max-width: 520px) {
    .container { padding: 0 16px; }
    .does-grid { grid-template-columns: 1fr !important; }
    .personas-grid { grid-template-columns: 1fr !important; }
    .nav { gap: 8px; }
    .nav-right { gap: 6px; }
    .nav-right .pill-toggle button { padding: 5px 9px; font-size: 11px; }
    .nav-right .icon-btn { width: 32px; height: 32px; }
    .nav-right .btn-primary { padding: 8px 12px; font-size: 12.5px; }
    .nav-wordmark { font-size: 18px; }
    .hero-cta { gap: 8px; }
    .store-btn { padding: 10px 16px 10px 14px; }
    .store-btn .store-text span { font-size: 14px; }
    .store-btn svg { width: 18px !important; height: 18px !important; }
    .trust-row { padding: 12px 14px; gap: 12px; }
    .avatar-stack .av { width: 30px; height: 30px; }
    .phone { transform: scale(0.85); transform-origin: center top; }
    .phone-stage { min-height: 460px; }
    .feat .feat-copy h3 { font-size: 26px !important; }
    .feat .feat-copy p { font-size: 15px; }
    .price-tag .num { font-size: 32px; }
    .price-features li { font-size: 13.5px; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  }