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

    :root {
      --honey:        #f5c518;
      --honey-dim:    #c99e0e;
      --honey-glow:   rgba(245,197,24,0.15);
      --honey-glow-s: rgba(245,197,24,0.08);
      --black:        #080808;
      --surface:      #111111;
      --surface-2:    #181818;
      --surface-3:    #202020;
      --surface-4:    #252525;
      --border:       #2a2a2a;
      --border-light: #363636;
      --text:         #f0f0f0;
      --text-muted:   #888888;
      --text-dim:     #4a4a4a;
      --green:        #3ecf8e;
      --green-dim:    rgba(62,207,142,0.12);
      --blue:         #4f8ef7;
      --red:          #e5484d;
      --orange:       #e57900;
      --r-sm:  8px;
      --r-md:  14px;
      --r-lg:  22px;
      --r-xl:  32px;
      --r-max: 9999px;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 88px;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--black);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Subtle grain */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 0;
    }

    /* ── Utility ─────────────────────────────────────────────────────── */
    .z1 { position: relative; z-index: 1; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; } to { opacity: 1; }
    }
    @keyframes pulse {
      0%,100% { opacity:1; transform:scale(1); }
      50%      { opacity:.5; transform:scale(1.5); }
    }
    @keyframes spin { to { transform:rotate(360deg); } }
    @keyframes shimmer {
      0%   { background-position: -200% center; }
      100% { background-position:  200% center; }
    }
    @keyframes floatY {
      0%,100% { transform: translateY(0px); }
      50%      { transform: translateY(-8px); }
    }

    /* ── Nav ─────────────────────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      padding: 18px 48px;
      display: flex; align-items: center; justify-content: space-between;
      border-bottom: 1px solid transparent;
      transition: background .3s, border-color .3s, backdrop-filter .3s;
    }
    nav.scrolled {
      background: rgba(8,8,8,.88);
      border-color: var(--border);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }

    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none;
    }
    .nav-logo-img {
      height: 36px; width: auto; max-width: 160px;
      object-fit: contain; display: block;
    }
    .nav-logo-fallback { font-size: 22px; line-height: 1; display: none; }
    .nav-logo.no-img .nav-logo-img { display: none; }
    .nav-logo.no-img .nav-logo-fallback { display: block; }
    .nav-logo-text {
      font-family: 'Syne', sans-serif;
      font-weight: 800; font-size: 18px;
      color: var(--honey); letter-spacing: -.3px;
    }

    .nav-links {
      display: flex; align-items: center; gap: 32px; list-style: none;
    }
    .nav-links a {
      text-decoration: none; color: var(--text-muted);
      font-size: 14px; font-weight: 500;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--text); }

    .nav-cta {
      background: var(--honey) !important; color: #000 !important;
      padding: 9px 20px !important; border-radius: var(--r-sm) !important;
      font-weight: 700 !important; font-size: 13px !important;
      transition: opacity .2s !important;
    }
    .nav-cta:hover { opacity: .85 !important; }

    .nav-mobile-btn {
      display: none; background: none; border: none;
      color: var(--text); cursor: pointer; font-size: 22px; padding: 4px;
    }

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

    /* layered glow */
    .hero-glow {
      position: absolute;
      top: 35%; left: 50%;
      transform: translate(-50%, -50%);
      width: 900px; height: 600px;
      background: radial-gradient(ellipse at center, rgba(245,197,24,.10) 0%, transparent 68%);
      pointer-events: none;
    }
    .hero-glow-2 {
      position: absolute;
      top: 65%; left: 30%;
      width: 400px; height: 300px;
      background: radial-gradient(ellipse at center, rgba(62,207,142,.05) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--surface-2);
      border: 1px solid var(--border-light);
      border-radius: var(--r-max);
      padding: 6px 16px;
      font-size: 11px; font-weight: 600;
      color: var(--honey); letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 28px;
      animation: fadeUp .6s ease both;
    }
    .badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%; background: var(--honey);
      animation: pulse 2s ease infinite;
    }

    .hero h1 {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: clamp(40px, 7vw, 90px);
      line-height: 1.04;
      letter-spacing: -2.5px;
      max-width: 960px;
      margin-bottom: 10px;
      animation: fadeUp .6s .08s ease both;
    }
    .hero h1 .accent { color: var(--honey); }
    .hero h1 .accent-green { color: var(--green); }

    /* shimmer on keyword */
    .shimmer-text {
      background: linear-gradient(90deg, var(--honey) 25%, #fff 50%, var(--honey) 75%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 3s linear infinite;
    }

    .hero-sub {
      font-size: clamp(15px, 2.2vw, 19px);
      color: var(--text-muted);
      max-width: 580px;
      margin-bottom: 18px;
      font-weight: 300;
      line-height: 1.65;
      animation: fadeUp .6s .16s ease both;
    }

    .hero-keywords {
      display: flex; flex-wrap: wrap; gap: 8px;
      justify-content: center;
      margin-bottom: 42px;
      animation: fadeUp .6s .22s ease both;
    }
    .hero-kw {
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: var(--r-max);
      padding: 4px 12px;
      font-size: 12px; color: var(--text-muted);
      font-weight: 500;
    }

    /* ── Waitlist Form ──────────────────────────────────────────────────── */
    #waitlist-form-wrap {
      width: 100%; max-width: 490px;
      animation: fadeUp .6s .28s ease both;
    }

    .form-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 32px;
    }

    .form-card h2 {
      font-family: 'Syne', sans-serif;
      font-weight: 700; font-size: 17px; margin-bottom: 4px;
    }
    .form-card > p {
      color: var(--text-muted); font-size: 13px; margin-bottom: 22px;
    }

    .form-group { margin-bottom: 12px; }
    .form-group label {
      display: block; font-size: 11px; font-weight: 700;
      color: var(--text-muted); letter-spacing: .8px;
      text-transform: uppercase; margin-bottom: 6px;
    }
    .form-group input {
      width: 100%;
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      padding: 13px 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px; color: var(--text);
      outline: none;
      transition: border-color .2s, box-shadow .2s;
    }
    .form-group input::placeholder { color: var(--text-dim); }
    .form-group input:focus {
      border-color: var(--honey);
      box-shadow: 0 0 0 3px var(--honey-glow);
    }

    .submit-btn {
      width: 100%; margin-top: 6px;
      background: var(--honey); color: #000;
      border: none; border-radius: var(--r-sm);
      padding: 15px;
      font-family: 'Syne', sans-serif;
      font-size: 15px; font-weight: 700;
      cursor: pointer; letter-spacing: .2px;
      transition: opacity .2s, transform .1s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .submit-btn:hover:not(:disabled) { opacity: .88; }
    .submit-btn:active:not(:disabled) { transform: scale(.98); }
    .submit-btn:disabled { opacity: .5; cursor: not-allowed; }

    .form-msg {
      margin-top: 12px; padding: 11px 14px;
      border-radius: var(--r-sm); font-size: 13px; font-weight: 500;
      display: none;
    }
    .form-msg.success {
      background: rgba(62,207,142,.09);
      border: 1px solid rgba(62,207,142,.28);
      color: var(--green);
    }
    .form-msg.error {
      background: rgba(229,72,77,.09);
      border: 1px solid rgba(229,72,77,.28);
      color: var(--red);
    }
    .form-privacy {
      margin-top: 10px; font-size: 11px;
      color: var(--text-dim); text-align: center;
    }
    .form-privacy a { color: var(--text-muted); text-decoration: underline; }

    .spinner {
      width: 15px; height: 15px;
      border: 2px solid rgba(0,0,0,.25);
      border-top-color: #000;
      border-radius: 50%;
      animation: spin .6s linear infinite;
      display: none;
    }

    /* ── Social proof ──────────────────────────────────────────────────── */
    .hero-social {
      margin-top: 24px;
      display: flex; align-items: center; gap: 12px;
      animation: fadeUp .6s .36s ease both;
    }
    .avatar-stack { display: flex; }
    .avatar-stack span {
      width: 30px; height: 30px; border-radius: 50%;
      background: var(--surface-3);
      border: 2px solid var(--black);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; margin-left: -7px;
    }
    .avatar-stack span:first-child { margin-left: 0; }
    .hero-social p { font-size: 13px; color: var(--text-muted); }
    .hero-social strong { color: var(--honey); }

    /* ── Trust bar ─────────────────────────────────────────────────────── */
    .trust-bar {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--surface);
      padding: 20px 24px;
      display: flex; align-items: center; justify-content: center;
      flex-wrap: wrap; gap: 36px;
      position: relative; z-index: 1;
    }
    .trust-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; color: var(--text-muted); font-weight: 500;
    }
    .trust-item span:first-child { font-size: 17px; }

    /* ── Section common ────────────────────────────────────────────────── */
    section { position: relative; z-index: 1; }

    .section-label {
      text-align: center; font-size: 11px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--honey); margin-bottom: 14px;
    }
    .section-title {
      text-align: center;
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: clamp(28px, 4vw, 50px);
      letter-spacing: -1.2px; line-height: 1.08;
      margin-bottom: 16px;
    }
    .section-sub {
      text-align: center; color: var(--text-muted);
      font-size: 16px; max-width: 520px;
      margin: 0 auto 60px; line-height: 1.65;
    }

    /* ── Stats ─────────────────────────────────────────────────────────── */
    .stats {
      padding: 80px 24px;
      max-width: 900px; margin: 0 auto;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 2px;
      background: var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      border: 1px solid var(--border);
    }
    .stat-cell {
      background: var(--surface);
      padding: 32px 24px;
      text-align: center;
    }
    .stat-value {
      font-family: 'Syne', sans-serif;
      font-weight: 800; font-size: 36px;
      color: var(--honey); letter-spacing: -1px;
      margin-bottom: 4px;
    }
    .stat-label {
      font-size: 13px; color: var(--text-muted); font-weight: 500;
    }

    /* ── Features ──────────────────────────────────────────────────────── */
    .features {
      padding: 90px 24px;
      max-width: 1100px; margin: 0 auto;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
      gap: 18px;
    }

    .feat-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 30px;
      transition: border-color .3s, transform .25s, box-shadow .25s;
      position: relative; overflow: hidden;
    }
    .feat-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      opacity: 0; transition: opacity .3s;
    }
    .feat-card:hover {
      border-color: var(--border-light);
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(0,0,0,.35);
    }
    .feat-card:hover::before { opacity: 1; }

    .feat-card:nth-child(1)::before { background: var(--honey); }
    .feat-card:nth-child(2)::before { background: var(--green); }
    .feat-card:nth-child(3)::before { background: var(--blue); }
    .feat-card:nth-child(4)::before { background: var(--honey); }
    .feat-card:nth-child(5)::before { background: var(--orange); }
    .feat-card:nth-child(6)::before { background: var(--green); }

    /* featured card */
    .feat-card.feat-featured {
      grid-column: span 2;
      background: linear-gradient(135deg, rgba(245,197,24,.06) 0%, var(--surface) 60%);
      border-color: rgba(245,197,24,.2);
      display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
      align-items: center;
    }

    .feat-icon {
      width: 46px; height: 46px;
      border-radius: var(--r-sm);
      background: var(--surface-3);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 21px; margin-bottom: 18px;
    }

    .feat-card:nth-child(1) .feat-icon { border-color:rgba(245,197,24,.4); background:rgba(245,197,24,.07); }
    .feat-card:nth-child(2) .feat-icon { border-color:rgba(62,207,142,.4); background:rgba(62,207,142,.07); }
    .feat-card:nth-child(3) .feat-icon { border-color:rgba(79,142,247,.4); background:rgba(79,142,247,.07); }
    .feat-card:nth-child(4) .feat-icon { border-color:rgba(245,197,24,.4); background:rgba(245,197,24,.07); }
    .feat-card:nth-child(5) .feat-icon { border-color:rgba(229,121,0,.4);  background:rgba(229,121,0,.07); }
    .feat-card:nth-child(6) .feat-icon { border-color:rgba(62,207,142,.4); background:rgba(62,207,142,.07); }

    .feat-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700; font-size: 16px; margin-bottom: 7px;
    }
    .feat-desc {
      font-size: 14px; color: var(--text-muted); line-height: 1.65;
    }
    .feat-tag {
      display: inline-block; margin-top: 12px;
      background: var(--surface-3); border: 1px solid var(--border);
      border-radius: var(--r-max); padding: 3px 10px;
      font-size: 11px; color: var(--text-muted); font-weight: 600;
      letter-spacing: .5px; text-transform: uppercase;
    }

    /* ── How it works ──────────────────────────────────────────────────── */
    .how {
      padding: 90px 24px;
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .how-inner { max-width: 900px; margin: 0 auto; }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0;
      position: relative; margin-top: 56px;
    }

    .step {
      padding: 28px 24px;
      text-align: center; position: relative;
    }
    .step:not(:last-child)::after {
      content: '→';
      position: absolute; right: -12px; top: 50%;
      transform: translateY(-50%);
      color: var(--border-light); font-size: 20px;
    }

    .step-num {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--honey-glow-s);
      border: 1px solid rgba(245,197,24,.3);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Syne', sans-serif;
      font-weight: 800; font-size: 17px;
      color: var(--honey);
      margin: 0 auto 16px;
    }
    .step-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700; font-size: 15px; margin-bottom: 6px;
    }
    .step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

    /* ── Roles ─────────────────────────────────────────────────────────── */
    .roles { padding: 90px 24px; }
    .roles-inner { max-width: 1000px; margin: 0 auto; }

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

    .role-card {
      border-radius: var(--r-lg); padding: 28px;
      border: 1px solid var(--border);
      transition: transform .25s, box-shadow .25s;
    }
    .role-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 36px rgba(0,0,0,.3);
    }
    .role-card.parent  { background: rgba(245,197,24,.04); border-color: rgba(245,197,24,.18); }
    .role-card.partner { background: rgba(229,121,0,.04);  border-color: rgba(229,121,0,.18); }
    .role-card.child   { background: rgba(62,207,142,.04); border-color: rgba(62,207,142,.18); }

    .role-icon { font-size: 34px; margin-bottom: 14px; animation: floatY 4s ease infinite; }
    .role-card.partner .role-icon { animation-delay: -.8s; }
    .role-card.child   .role-icon { animation-delay: -1.6s; }

    .role-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 17px; margin-bottom: 6px; }
    .role-card.parent  .role-title { color: var(--honey); }
    .role-card.partner .role-title { color: var(--orange); }
    .role-card.child   .role-title { color: var(--green); }

    .role-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }

    .role-perks { list-style: none; display: flex; flex-direction: column; gap: 7px; }
    .role-perks li { font-size: 13px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 8px; }
    .role-perks li::before { content: '✓'; font-weight: 800; font-size: 11px; flex-shrink: 0; margin-top: 2px; }
    .role-card.parent  .role-perks li::before { color: var(--honey); }
    .role-card.partner .role-perks li::before { color: var(--orange); }
    .role-card.child   .role-perks li::before { color: var(--green); }

    /* ── FAQ ───────────────────────────────────────────────────────────── */
    .faq {
      padding: 90px 24px;
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .faq-inner { max-width: 720px; margin: 0 auto; }

    .faq-list { margin-top: 50px; display: flex; flex-direction: column; gap: 2px; }

    .faq-item {
      border-radius: var(--r-md);
      border: 1px solid var(--border);
      overflow: hidden;
    }

    .faq-q {
      width: 100%; background: none; border: none;
      padding: 18px 22px;
      display: flex; align-items: center; justify-content: space-between;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px; font-weight: 600;
      color: var(--text); text-align: left;
      transition: background .2s;
    }
    .faq-q:hover { background: var(--surface-2); }
    .faq-q .arrow {
      font-size: 18px; color: var(--text-muted);
      transition: transform .25s; flex-shrink: 0;
    }
    .faq-item.open .faq-q .arrow { transform: rotate(45deg); }
    .faq-item.open .faq-q { background: var(--surface-2); }

    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .3s ease, padding .3s ease;
      padding: 0 22px;
    }
    .faq-item.open .faq-a { max-height: 1200px; padding: 0 22px 18px; }
    .faq-a p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

    /* ── Testimonials ──────────────────────────────────────────────────── */
    .testimonials {
      padding: 90px 24px;
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .testimonials-inner { max-width: 1000px; margin: 0 auto; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 18px; margin-top: 56px;
    }
    .testi-card {
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 26px;
    }
    .testi-stars { color: var(--honey); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
    .testi-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 10px; }
    .testi-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--surface-3);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
    }
    .testi-name { font-size: 13px; font-weight: 700; }
    .testi-meta { font-size: 11px; color: var(--text-muted); }

    /* ── Bottom CTA ─────────────────────────────────────────────────────── */
    .bottom-cta {
      padding: 100px 24px; text-align: center;
    }
    .bottom-cta h2 {
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: clamp(28px, 4vw, 52px);
      letter-spacing: -1.2px; margin-bottom: 14px;
    }
    .bottom-cta h2 span { color: var(--honey); }
    .bottom-cta > p {
      color: var(--text-muted); font-size: 16px;
      max-width: 440px; margin: 0 auto 38px; line-height: 1.65;
    }

    .inline-form {
      display: flex; gap: 10px; max-width: 440px;
      margin: 0 auto; flex-wrap: wrap;
    }
    .inline-form input {
      flex: 1; min-width: 200px;
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      padding: 13px 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px; color: var(--text);
      outline: none; transition: border-color .2s;
    }
    .inline-form input:focus { border-color: var(--honey); }
    .inline-form input::placeholder { color: var(--text-dim); }
    .inline-form button {
      background: var(--honey); color: #000;
      border: none; border-radius: var(--r-sm);
      padding: 13px 24px;
      font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px;
      cursor: pointer; white-space: nowrap; transition: opacity .2s;
    }
    .inline-form button:hover { opacity: .88; }

    #bottom-msg {
      margin-top: 14px; font-size: 14px; min-height: 20px;
    }
    #bottom-msg.success { color: var(--green); }
    #bottom-msg.error   { color: var(--red); }

    /* ── Footer ─────────────────────────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--border);
      padding: 40px 48px;
      display: flex; flex-wrap: wrap;
      align-items: center; justify-content: space-between;
      gap: 20px; max-width: 1100px; margin: 0 auto;
    }

    .footer-logo {
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: 17px; color: var(--honey);
      text-decoration: none;
      display: flex; align-items: center; gap: 8px;
    }

    .footer-links {
      display: flex; gap: 28px; list-style: none;
    }
    .footer-links a {
      text-decoration: none; color: var(--text-muted);
      font-size: 13px; transition: color .2s;
    }
    .footer-links a:hover { color: var(--text); }

    .footer-copy {
      width: 100%; text-align: center;
      font-size: 12px; color: var(--text-dim);
      padding-top: 20px; border-top: 1px solid var(--border);
      margin-top: 10px;
    }

    /* ── Scroll animations ───────────────────────────────────────────── */
    .reveal {
      opacity: 0; transform: translateY(18px);
      transition: opacity .55s ease, transform .55s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── Responsive ─────────────────────────────────────────────────── */
    @media (max-width: 968px) {
      nav { padding: 16px 20px; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: 56px; left: 0; right: 0;
        background: rgba(8,8,8,.97);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 20px; gap: 18px; z-index: 199;
      }
      .nav-links.open li { text-align: center; }
      .nav-mobile-btn { display: block; }
      .hero { padding: 110px 20px 70px; }
      .hero h1 { letter-spacing: -1.5px; }
      .feat-card.feat-featured { grid-column: span 1; display: block; }
      .step:not(:last-child)::after { display: none; }
      .footer-links { gap: 16px; }
      footer { padding: 30px 20px; }
    }

    @media (max-width: 480px) {
      .hero-keywords { display: none; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .trust-bar { gap: 20px; }
    }

    /* Inner pages */
    .page-shell {
      padding: 110px 24px 90px;
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .page-hero { margin-bottom: 48px; text-align: center; }
    .page-hero h1 {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: clamp(28px, 4vw, 46px);
      letter-spacing: -1px;
      margin-bottom: 12px;
      line-height: 1.1;
    }
    .page-hero .lead {
      color: var(--text-muted);
      font-size: 16px;
      line-height: 1.65;
      max-width: 620px;
      margin: 0 auto;
    }

    /* About / screenshot gallery */
    .app-gallery {
      display: flex;
      flex-direction: column;
      gap: 56px;
      margin-top: 24px;
    }
    .app-shot {
      display: grid;
      gap: 24px;
      align-items: start;
    }
    @media (min-width: 900px) {
      .app-shot { grid-template-columns: minmax(280px, 420px) 1fr; }
    }
    .app-shot-frame {
      background: var(--surface);
      border: 1px dashed var(--border-light);
      border-radius: var(--r-lg);
      aspect-ratio: 390 / 844;
      max-width: 420px;
      width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .app-shot-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .app-shot-placeholder {
      color: var(--text-dim);
      font-size: 14px;
      text-align: center;
      padding: 24px;
      line-height: 1.5;
    }
    .app-shot-body h2 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 18px;
      margin-bottom: 10px;
    }
    .app-shot-body p {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.65;
    }

    /* Legal pages (privacy, terms) with shared nav */
    body.has-marketing-nav .doc-wrap {
      padding-top: 32px;
    }
    body.has-marketing-nav .legal-footer {
      border-top: 1px solid var(--border);
      padding: 32px 24px 48px;
      text-align: center;
      font-size: 13px;
      color: var(--text-dim);
      max-width: 760px;
      margin: 0 auto;
    }
    body.has-marketing-nav .legal-footer a {
      color: var(--text-muted);
      text-decoration: none;
      margin: 0 10px;
    }
    body.has-marketing-nav .legal-footer a:hover {
      color: var(--text);
    }
    body.has-marketing-nav .support-hero {
      padding-top: 100px;
    }
