  :root {
    --navy: #1F3A5F;
    --navy-deep: #14243B;
    --gold: #C9A227;
    --gold-light: #E2BC4A;
    --surface-0: #F3F4F6;
    --surface-1: #F8F9FB;
    --surface-2: #FFFFFF;
    --border: #E7E9EE;
    --border-strong: #D5D9E0;
    --text-primary: #14243B;
    --text-secondary: #5B6472;
    --text-muted: #606A79;
    --success: #1E7D4F;
    --success-bg: #E7F5EE;
    --brand-surface: #1F3A5F;
    --on-brand: #FFFFFF;
    --on-brand-muted: rgba(255,255,255,0.72);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --shadow-sm: 0 4px 14px rgba(20,36,59,0.08);
    --shadow-md: 0 16px 34px rgba(20,36,59,0.14);
    color-scheme: light;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--surface-2);
    color: var(--text-primary);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; }
  .container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
  }
  section { padding: 72px 0; }
  @media (min-width: 768px) { section { padding: 104px 0; } }

  h1, h2, h3, h4 { font-weight: 700; margin: 0; letter-spacing: -0.01em; }
  p { margin: 0; }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
  }

  .section-head { max-width: 640px; margin: 0 0 48px; }
  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .section-head h2 { font-size: clamp(26px, 4vw, 38px); }
  .section-head p { margin-top: 14px; font-size: 17px; color: var(--text-secondary); }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 26px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
    white-space: nowrap;
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary {
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    color: var(--navy-deep);
    box-shadow: 0 10px 24px rgba(201,162,39,0.35);
  }
  .btn-primary:hover { box-shadow: 0 14px 30px rgba(201,162,39,0.45); }
  .btn-outline-light {
    background: transparent;
    color: var(--on-brand);
    border-color: rgba(255,255,255,0.35);
  }
  .btn-outline-light:hover { border-color: rgba(255,255,255,0.7); }
  .btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--border-strong);
  }
  .btn-outline:hover { border-color: var(--navy); }
  .btn-block { width: 100%; }

  /* ---------- Header ---------- */
  header.site {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--surface-2) 88%, transparent);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
  }
  .nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
  }
  .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .brand img { width: 36px; height: 36px; border-radius: 10px; }
  .brand span { font-size: 19px; font-weight: 700; color: var(--text-primary); }
  .brand span em { font-style: normal; color: var(--gold); }
  nav.links { display: none; align-items: center; gap: 30px; }
  nav.links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
  }
  nav.links a:hover { color: var(--text-primary); }
  .nav-cta { display: none; }
  .nav-toggle {
    display: inline-flex;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--border-strong);
    background: none;
    cursor: pointer;
  }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ""; display: block; width: 18px; height: 2px; background: var(--text-primary); position: relative; transition: .2s;
  }
  .nav-toggle span::before { position: absolute; top: -6px; }
  .nav-toggle span::after { position: absolute; top: 6px; }
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 20px 20px;
    border-top: 1px solid var(--border);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    padding: 12px 4px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu .btn { margin-top: 12px; }

  @media (min-width: 900px) {
    nav.links { display: flex; }
    .nav-cta { display: inline-flex; }
    .nav-toggle { display: none; }
  }

  /* ---------- Hero ---------- */
  .hero {
    background:
      radial-gradient(900px 500px at 85% -10%, rgba(201,162,39,0.16), transparent 60%),
      linear-gradient(180deg, var(--brand-surface), var(--navy-deep));
    color: var(--on-brand);
    padding: 64px 0 80px;
  }
  @media (min-width: 768px) { .hero { padding: 96px 0 110px; } }
  .hero-grid {
    display: grid;
    gap: 48px;
    align-items: center;
  }
  @media (min-width: 980px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 40px; } }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    color: var(--on-brand-muted);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(32px, 5.4vw, 54px);
    line-height: 1.08;
    color: var(--on-brand);
  }
  .hero h1 .accent { color: var(--gold-light); }
  .hero p.lead {
    margin-top: 22px;
    font-size: 18px;
    color: var(--on-brand-muted);
    max-width: 540px;
  }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
  .hero-trust {
    margin-top: 22px;
    font-size: 13px;
    color: var(--on-brand-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
  }
  .hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
  .hero-trust svg { width: 14px; height: 14px; color: var(--gold-light); flex: none; }

  .hero-badges-row {
    margin-top: 44px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    opacity: 0.85;
  }
  .tech-chip {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--on-brand-muted);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 7px 12px;
    border-radius: 8px;
    letter-spacing: 0.01em;
  }

  /* ---------- Hero mockup ---------- */
  .mock {
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-md);
    color: var(--text-primary);
    position: relative;
  }
  .mock::before {
    content: "";
    position: absolute;
    inset: -14px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: calc(var(--radius-lg) + 14px);
    pointer-events: none;
  }
  .mock-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
  .mock-title { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
  .mock-pill { font-size: 11.5px; font-weight: 700; color: var(--success); background: var(--success-bg); padding: 4px 10px; border-radius: 999px; }

  .chat-bubble {
    background: var(--surface-0);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
  }
  .chat-bubble strong { color: var(--text-primary); }
  .chat-bubble.mic { display: flex; gap: 10px; align-items: flex-start; }
  .chat-bubble.mic svg { width: 18px; height: 18px; flex: none; color: var(--gold); margin-top: 1px; }
  .chat-bubble.ai {
    background: var(--brand-surface);
    color: var(--on-brand-muted);
  }
  .chat-bubble.ai strong { color: var(--on-brand); }

  .mock-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
  .mock-stat { background: var(--surface-0); border-radius: var(--radius-sm); padding: 12px 14px; }
  .mock-stat .num { font-size: 20px; font-weight: 700; color: var(--navy); }
  .mock-stat .lbl { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

  .mock-bars { display: flex; align-items: flex-end; gap: 6px; height: 44px; margin-top: 14px; }
  .mock-bars i { flex: 1; background: var(--gold); border-radius: 4px 4px 0 0; opacity: .85; display: block; }
  .mock-bars i:nth-child(1){height:35%;background:var(--border-strong);}
  .mock-bars i:nth-child(2){height:55%;background:var(--border-strong);}
  .mock-bars i:nth-child(3){height:40%;background:var(--navy);}
  .mock-bars i:nth-child(4){height:70%;background:var(--navy);}
  .mock-bars i:nth-child(5){height:60%;background:var(--gold);}
  .mock-bars i:nth-child(6){height:88%;background:var(--gold);}

  /* ---------- Pain cards ---------- */
  .grid-4 { display: grid; gap: 18px; grid-template-columns: 1fr; }
  @media (min-width: 640px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

  .pain-card {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 26px 22px;
  }
  .pain-card .mark { font-size: 26px; margin-bottom: 14px; display: block; }
  .pain-card h3 { font-size: 16.5px; color: var(--text-primary); margin-bottom: 8px; }
  .pain-card p { font-size: 14.5px; color: var(--text-secondary); }

  /* ---------- How it works ---------- */
  .steps { display: grid; gap: 26px; grid-template-columns: 1fr; counter-reset: step; }
  @media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
  .step { position: relative; padding-top: 8px; }
  .step .step-num {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--brand-surface);
    color: var(--gold-light);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 18px;
    margin-bottom: 18px;
  }
  .step h3 { font-size: 18px; margin-bottom: 8px; }
  .step p { color: var(--text-secondary); font-size: 15px; }

  .video-placeholder { margin-top: 56px; }
  .video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    max-width: 720px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--brand-surface), var(--navy-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    overflow: hidden;
  }
  .video-badge {
    position: absolute; top: 16px; left: 16px;
    background: rgba(255,255,255,0.12);
    color: var(--on-brand-muted);
    font-size: 12px; font-weight: 700;
    padding: 6px 12px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
  }
  .video-play {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy-deep);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 24px rgba(201,162,39,0.35);
  }
  .video-play svg { width: 26px; height: 26px; margin-left: 3px; }
  .video-caption {
    position: absolute; bottom: 18px; left: 0; right: 0;
    text-align: center;
    color: var(--on-brand-muted);
    font-size: 13.5px;
    font-weight: 600;
  }

  /* ---------- Feature blocks ---------- */
  .feature-block {
    display: grid;
    gap: 32px;
    align-items: center;
    padding: 36px 0;
    border-top: 1px solid var(--border);
  }
  .feature-block:first-of-type { border-top: none; }
  @media (min-width: 860px) { .feature-block { grid-template-columns: 1fr 1fr; gap: 56px; } }
  @media (min-width: 860px) {
    .feature-block.reverse .feature-copy { order: 2; }
    .feature-block.reverse .feature-visual { order: 1; }
  }

  .feature-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--success-bg);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .feature-icon svg { width: 26px; height: 26px; color: var(--navy); }
  .feature-copy h3 { font-size: clamp(21px, 3vw, 26px); margin-bottom: 12px; }
  .feature-copy p.desc { color: var(--text-secondary); font-size: 16px; margin-bottom: 18px; }
  .feature-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  .feature-list li { display: flex; gap: 10px; font-size: 15px; color: var(--text-primary); }
  .feature-list svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 2px; }

  .feature-visual {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-sm);
  }
  .fv-line { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--border-strong); font-size: 14px; }
  .fv-line:last-child { border-bottom: none; }
  .fv-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); flex: none; }
  .fv-dot.on { background: var(--success); }
  .fv-dot.warn { background: var(--gold); }

  /* ---------- Sync diagram ---------- */
  .sync-wrap {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
  }
  .sync-node {
    background: var(--surface-2);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
  }
  .sync-arrow { color: var(--gold); font-size: 20px; }
  .sync-center {
    background: var(--brand-surface);
    color: var(--on-brand);
    border: none;
  }

  /* ---------- Two sides (navy) ---------- */
  .two-sides {
    background: linear-gradient(180deg, var(--navy-deep), var(--brand-surface));
    color: var(--on-brand);
  }
  .two-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
  @media (min-width: 860px) { .two-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
  .side-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
  }
  .side-card .tag {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--gold-light);
    background: rgba(226,188,74,0.12);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
  }
  .side-card h3 { font-size: 22px; margin-bottom: 12px; color: var(--on-brand); }
  .side-card p { color: var(--on-brand-muted); font-size: 15px; margin-bottom: 16px; }
  .side-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  .side-card li { display: flex; gap: 10px; font-size: 14.5px; color: var(--on-brand-muted); }
  .side-card svg { width: 17px; height: 17px; color: var(--gold-light); flex: none; margin-top: 2px; }

  /* ---------- Trust grid ---------- */
  .grid-3 { display: grid; gap: 18px; grid-template-columns: 1fr; }
  @media (min-width: 640px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
  .trust-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 22px;
    box-shadow: var(--shadow-sm);
  }
  .trust-card .feature-icon { margin-bottom: 14px; width: 44px; height: 44px; border-radius: 12px; }
  .trust-card .feature-icon svg { width: 22px; height: 22px; }
  .trust-card h3 { font-size: 16px; margin-bottom: 8px; }
  .trust-card p { font-size: 14px; color: var(--text-secondary); }

  /* ---------- Social proof ---------- */
  .proof-wrap {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
  }
  .proof-wrap h3 { font-size: 22px; margin-bottom: 10px; }
  .proof-wrap p { color: var(--text-secondary); font-size: 15.5px; max-width: 560px; margin: 0 auto 28px; }
  .proof-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
  .proof-chip {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--surface-2);
    border: 1px solid var(--border-strong);
    padding: 8px 14px;
    border-radius: 999px;
  }

  /* ---------- Pricing ---------- */
  .grid-plans { display: grid; gap: 20px; grid-template-columns: 1fr; }
  @media (min-width: 700px) { .grid-plans { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .grid-plans { grid-template-columns: repeat(4, 1fr); } }
  .plan-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
  }
  .plan-card.featured {
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
    position: relative;
  }
  .plan-card.featured .plan-flag {
    position: absolute; top: -13px; left: 24px;
    background: var(--gold); color: var(--navy-deep);
    font-size: 11.5px; font-weight: 700;
    padding: 4px 10px; border-radius: 999px;
  }
  .plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--text-muted); margin-bottom: 10px; }
  .plan-price { font-size: 26px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
  .plan-price small { font-size: 13px; font-weight: 500; color: var(--text-muted); }
  .plan-scope { font-size: 14px; color: var(--text-secondary); margin-bottom: 22px; }
  .plan-card ul { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .plan-card li { display: flex; gap: 9px; font-size: 14px; color: var(--text-primary); }
  .plan-card svg { width: 16px; height: 16px; color: var(--success); flex: none; margin-top: 2px; }

  .pricing-note {
    margin-top: 26px;
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    background: var(--surface-0);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
  }
  .pricing-note strong { color: var(--text-primary); }

  /* ---------- FAQ ---------- */
  .faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 780px; margin: 0 auto; }
  .faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface-2);
    overflow: hidden;
  }
  .faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
  }
  .faq-q .plus { width: 22px; height: 22px; flex: none; position: relative; }
  .faq-q .plus::before, .faq-q .plus::after {
    content: ""; position: absolute; background: var(--navy); border-radius: 2px;
  }
  .faq-q .plus::before { width: 14px; height: 2px; top: 10px; left: 4px; }
  .faq-q .plus::after { width: 2px; height: 14px; top: 4px; left: 10px; transition: transform .2s ease; }
  .faq-item.open .faq-q .plus::after { transform: rotate(90deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .faq-a p { padding: 0 20px 20px; font-size: 14.5px; color: var(--text-secondary); }
  .faq-item.open .faq-a { max-height: 240px; }

  /* ---------- Waitlist / CTA final ---------- */
  .cta-final {
    background: radial-gradient(700px 400px at 50% 0%, rgba(201,162,39,0.18), transparent 60%), linear-gradient(180deg, var(--brand-surface), var(--navy-deep));
    color: var(--on-brand);
    text-align: center;
  }
  .cta-final h2 { font-size: clamp(26px, 4.4vw, 42px); color: var(--on-brand); max-width: 720px; margin: 0 auto; }
  .cta-final p { margin-top: 16px; color: var(--on-brand-muted); font-size: 17px; }

  .waitlist-card {
    max-width: 560px;
    margin: 40px auto 0;
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    text-align: left;
    color: var(--text-primary);
  }
  .waitlist-card h3 { font-size: 18px; margin-bottom: 4px; }
  .waitlist-card .sub { font-size: 13.5px; color: var(--text-muted); margin-bottom: 20px; }
  .form-row { display: grid; gap: 12px; margin-bottom: 12px; }
  @media (min-width: 500px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
  .field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
  .field input, .field select {
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-strong);
    background: var(--surface-1);
    color: var(--text-primary);
  }
  .field input:focus, .field select:focus { outline: none; border-color: var(--navy); }
  .form-fineprint { font-size: 12px; color: var(--text-muted); margin-top: 14px; text-align: center; }
  .form-fineprint a { color: var(--text-secondary); }
  .form-error {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--danger, #C13B3B);
    background: var(--dangerBg, #FBEBEB);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    margin-bottom: 14px;
  }
  .form-success { display: none; text-align: center; padding: 10px 0; }
  .form-success.show { display: block; }
  .form-success .check {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--success-bg); color: var(--success);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
  }
  .form-success h3 { color: var(--text-primary); }
  .form-success p { color: var(--text-secondary); font-size: 14px; margin-top: 6px; }
  .waitlist-form.hide { display: none; }

  /* ---------- Footer ---------- */
  footer.site {
    background: var(--navy-deep);
    color: var(--on-brand-muted);
    padding: 56px 0 28px;
  }
  .footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
  @media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
  .footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
  .footer-brand img { width: 32px; height: 32px; border-radius: 9px; }
  .footer-brand span { font-size: 17px; font-weight: 700; color: var(--on-brand); }
  .footer-brand span em { font-style: normal; color: var(--gold-light); }
  footer.site .tagline { font-size: 14px; max-width: 320px; }
  footer.site h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--on-brand); margin-bottom: 16px; }
  footer.site ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  footer.site a { font-size: 14px; color: var(--on-brand-muted); text-decoration: none; }
  footer.site a:hover { color: var(--on-brand); }
  .footer-bottom {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    font-size: 13px;
  }

  .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
