/* ============ TOKENS ============ */
  :root{
    --bg-base:#14161A;
    --bg-deep:#0F1114;
    --bg-card:#1E2126;
    --border:#242830;
    --text-primary:#EAEAEA;
    --text-muted:#8A8F98;
    --accent:#FF5A1F;
    --accent-ink:#14161A;
    --success:#3FB68B;
    --gold:#D4AF37;
    --font-display:'Bebas Neue', 'Arial Narrow', sans-serif;
    --font-body:'Hanken Grotesk', system-ui, sans-serif;
    --font-signature:'Caveat', cursive;
    --radius-card:12px;
    --radius-btn:8px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --topbar-h: 54px;
    --toggle-h: 74px;
  }
  @media (min-width:768px){ :root{ --topbar-h:60px; } }

  *,*::before,*::after{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; scroll-padding-top: calc(var(--topbar-h) + var(--toggle-h) + 12px); }
  body{
    margin:0;
    background:var(--bg-base);
    color:var(--text-primary);
    font-family:var(--font-body);
    font-size:16px;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
  }
  img{ max-width:100%; display:block; }
  a{ color:inherit; }
  button{ font-family:inherit; }
  ul{ margin:0; padding:0; }
  h1,h2,h3{ margin:0; font-family:var(--font-display); font-weight:400; line-height:1.08; letter-spacing:0.01em; }
  p{ margin:0; }

  .sr-only{
    position:absolute; width:1px; height:1px; padding:0; margin:-1px;
    overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
  }
  .skip-link{
    position:absolute; left:12px; top:-60px;
    background:var(--accent); color:var(--accent-ink);
    padding:10px 16px; border-radius:var(--radius-btn);
    font-family:var(--font-body); font-weight:700; text-decoration:none;
    z-index:1000; transition:top .2s var(--ease);
  }
  .skip-link:focus{ top:12px; }

  :focus-visible{ outline:2px solid var(--accent); outline-offset:3px; border-radius:4px; }

  .container{ max-width:1100px; margin-inline:auto; padding-inline:20px; }
  @media (min-width:640px){ .container{ padding-inline:32px; } }

  .section{ padding-block:64px; position:relative; }
  @media (min-width:900px){ .section{ padding-block:96px; } }
  .section--card-bg{ background:var(--bg-card); }

  .kicker{
    display:inline-block; font-family:var(--font-body); font-weight:700;
    text-transform:uppercase; letter-spacing:0.12em; font-size:12.5px;
    color:var(--accent); margin-bottom:12px;
  }
  .h2{ font-size:32px; color:var(--text-primary); }
  @media (min-width:768px){ .h2{ font-size:42px; } }
  .subhead{ color:var(--text-muted); font-size:16px; max-width:62ch; }
  @media (min-width:768px){ .subhead{ font-size:18px; } }
  .body-text{ color:var(--text-primary); font-size:16px; max-width:66ch; }
  @media (min-width:768px){ .body-text{ font-size:18px; } }
  .muted{ color:var(--text-muted); }
  .accent{ color:var(--accent); }

  .section-head{ margin-bottom:36px; max-width:70ch; }
  @media (min-width:900px){ .section-head{ margin-bottom:48px; } }

  /* ============ TEXTURE HELPERS ============ */
  .blueprint-grid{
    position:absolute; inset:0; pointer-events:none; z-index:0;
    background-image:
      linear-gradient(rgba(234,234,234,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(234,234,234,0.05) 1px, transparent 1px);
    background-size:42px 42px;
    -webkit-mask-image:linear-gradient(to bottom, black, transparent 85%);
    mask-image:linear-gradient(to bottom, black, transparent 85%);
  }
  .divider-brushed{
    height:2px; border:0; margin:0;
    background:
      repeating-linear-gradient(100deg, rgba(234,234,234,0.07) 0px, rgba(234,234,234,0.02) 1px, transparent 2px, transparent 4px),
      linear-gradient(90deg, transparent, rgba(234,234,234,0.18), transparent);
  }

  /* ============ BUTTONS ============ */
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    font-family:var(--font-display); letter-spacing:0.04em;
    font-size:16px; line-height:1; text-decoration:none; cursor:pointer;
    border-radius:var(--radius-btn); border:1px solid transparent;
    padding:16px 28px; min-height:48px;
    transition:transform .15s var(--ease), filter .15s var(--ease), background-color .15s var(--ease);
  }
  .btn--primary{ background:var(--accent); color:var(--accent-ink); }
  .btn--primary:hover{ filter:brightness(1.08); transform:translateY(-1px); }
  .btn--primary:active{ transform:translateY(0); }
  .btn--small{ padding:10px 18px; min-height:40px; font-size:14px; }
  .btn--ghost{
    background:transparent; color:var(--text-primary);
    border-color:transparent; text-decoration:underline;
    text-underline-offset:4px; font-family:var(--font-body); font-weight:700;
    padding:8px 4px; min-height:44px;
  }
  .btn--ghost:hover{ color:var(--accent); }
  .btn--block{ width:100%; }

  .pill{
    display:inline-block; line-height:1.5;
    background:var(--bg-card); color:var(--text-primary);
    border-left:3px solid var(--accent);
    border-radius:8px; padding:10px 16px; font-size:14px;
  }
  .pill--pulse-once{ animation:pillPulse 1.4s ease-out 1.1s 1; }
  @keyframes pillPulse{
    0%{ box-shadow:0 0 0 0 rgba(255,90,31,0.35); }
    100%{ box-shadow:0 0 0 10px rgba(255,90,31,0); }
  }
  @media (prefers-reduced-motion: reduce){ .pill--pulse-once{ animation:none; } }

  /* ============ REVEALS ============ */
  .reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
  .reveal.is-visible{ opacity:1; transform:translateY(0); }
  .reveal-stagger.is-visible > *{ transition-delay:calc(var(--i,0) * 80ms); }
  @media (prefers-reduced-motion: reduce){
    .reveal{ opacity:1; transform:none; transition:none; }
    html{ scroll-behavior:auto; }
  }

  /* ============ TOP BAR ============ */
  .topbar{
    position:sticky; top:0; z-index:100;
    height:var(--topbar-h);
    background:rgba(20,22,26,0.92);
    backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
    border-bottom:1px solid var(--border);
  }
  .topbar__inner{
    max-width:1100px; margin-inline:auto; padding-inline:20px;
    height:100%; display:flex; align-items:center; justify-content:space-between;
  }
  @media (min-width:640px){ .topbar__inner{ padding-inline:32px; } }
  .wordmark{
    font-family:var(--font-display); font-size:20px; letter-spacing:0.06em;
    text-decoration:none; color:var(--text-primary); white-space:nowrap;
  }
  .wordmark__glyph{ color:var(--accent); padding-inline:2px; }
  .topbar__nav{ display:flex; align-items:center; gap:20px; }
  .nav-link{ display:none; text-decoration:none; color:var(--text-muted); font-size:14px; font-weight:700; transition:color .15s; }
  .nav-link:hover{ color:var(--text-primary); }
  @media (min-width:768px){ .nav-link{ display:inline-block; } }

  /* ============ VERTICAL TOGGLE ============ */
  .toggle-wrap{
    position:sticky; top:var(--topbar-h); z-index:90;
    background:rgba(20,22,26,0.96);
    backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
    border-bottom:1px solid var(--border);
    padding:12px 0 10px;
  }
  .toggle-wrap.is-released{ position:relative; top:auto; }
  .toggle{
    display:flex; gap:4px; max-width:1100px; margin:0 auto; padding-inline:12px;
    background:var(--bg-card); border:1px solid var(--border); border-radius:999px;
    padding:4px;
  }
  @media (min-width:640px){ .toggle{ margin-inline:auto; max-width:560px; } }
  .toggle button{
    flex:1; appearance:none; background:transparent; border:0; cursor:pointer;
    font-family:var(--font-display); letter-spacing:0.03em;
    font-size:13px; color:var(--text-muted);
    padding:10px 6px; min-height:44px; border-radius:999px;
    transition:background-color .18s var(--ease), color .18s var(--ease);
    white-space:nowrap;
  }
  @media (min-width:400px){ .toggle button{ font-size:15px; } }
  .toggle button:hover{ color:var(--text-primary); }
  .toggle button[aria-selected="true"]{ background:var(--accent); color:var(--accent-ink); }
  .toggle-label{
    text-align:center; color:var(--text-muted); font-size:13px;
    max-width:1100px; margin:10px auto 0; padding-inline:20px;
  }
  @media (min-width:768px){ .toggle-label{ font-size:14px; } }
  @media (max-width:767px){
    /* phones: keep the caption for screen readers but reclaim the vertical space */
    .toggle-label{
      position:absolute; width:1px; height:1px; margin:-1px; padding:0;
      overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
    }
    .toggle-wrap{ padding:10px 0; }
  }

  /* ============ HERO ============ */
  .hero{ overflow:hidden; }
  .hero__grid{
    position:relative; z-index:1;
    display:grid; gap:40px;
  }
  @media (min-width:960px){
    .hero__grid{ grid-template-columns:1.35fr 1fr; align-items:center; gap:56px; }
  }
  .eyebrow{
    font-family:var(--font-body); font-weight:700; text-transform:uppercase;
    letter-spacing:0.14em; font-size:13px; color:var(--accent); margin-bottom:16px;
  }
  .hero__h1{ font-size:38px; color:var(--text-primary); margin-bottom:14px; }
  @media (min-width:640px){ .hero__h1{ font-size:48px; } }
  @media (min-width:960px){ .hero__h1{ font-size:66px; } }
  .hero__h1 .num{ color:var(--accent); }
  .hero__secondary{ color:var(--text-muted); font-size:16px; margin-bottom:22px; max-width:52ch; }
  .hero__support{ font-family:var(--font-body); font-weight:700; font-size:19px; margin-bottom:8px; }
  @media (min-width:768px){ .hero__support{ font-size:22px; } }
  .hero__subsupport{ font-style:italic; color:var(--text-muted); font-size:16px; margin-bottom:22px; }
  @media (min-width:768px){ .hero__subsupport{ font-size:17px; } }
  .hero__proof{ margin-bottom:26px; }
  .hero__ctas{ display:flex; flex-direction:column; gap:14px; align-items:flex-start; }
  .hero__micro{ color:var(--text-muted); font-size:13px; margin-top:14px; }

  .phone-teaser{ max-width:320px; margin-inline:auto; }
  @media (min-width:960px){ .phone-teaser{ margin-inline:0; margin-left:auto; } }
  .phone-teaser__caption{ text-align:center; color:var(--text-muted); font-size:13px; margin-top:10px; }

  /* ============ PHONE MOCKUP ============ */
  .phone{
    background:var(--bg-card); border:1px solid var(--border); border-radius:32px;
    padding:10px; box-shadow:0 30px 60px -30px rgba(0,0,0,0.6);
  }
  .phone__notch{ width:60px; height:5px; border-radius:4px; background:var(--border); margin:6px auto 8px; }
  .phone__screen{
    background:var(--bg-deep); border-radius:22px; padding:16px 14px;
    min-height:280px; display:flex; flex-direction:column; gap:10px;
  }
  .phone__status{
    display:flex; align-items:center; gap:8px; font-size:12.5px; color:#F87171;
    background:rgba(248,113,113,0.08); border:1px solid rgba(248,113,113,0.25);
    border-radius:8px; padding:8px 10px; margin-bottom:4px;
    transition:background-color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  }
  /* the missed call "lands" — brief shake + red flare while the MISSED CALL beat holds */
  .phone__status.is-hit{
    background:rgba(248,113,113,0.16); border-color:rgba(248,113,113,0.55);
    box-shadow:0 0 0 3px rgba(248,113,113,0.12);
    animation:missedShake .5s var(--ease) 1;
  }
  @keyframes missedShake{
    0%,100%{ transform:translateX(0); }
    15%{ transform:translateX(-5px); }
    30%{ transform:translateX(5px); }
    45%{ transform:translateX(-4px); }
    60%{ transform:translateX(4px); }
    75%{ transform:translateX(-2px); }
  }
  @media (prefers-reduced-motion: reduce){ .phone__status.is-hit{ animation:none; } }
  .phone__thread{ display:flex; flex-direction:column; gap:8px; flex:1; }

  .bubble{
    max-width:82%; padding:10px 13px; border-radius:16px; font-size:13.5px; line-height:1.45;
    position:relative;
  }
  .bubble--system{ align-self:flex-start; background:var(--bg-card); color:var(--text-primary); border-bottom-left-radius:4px; }
  .bubble--lead{ align-self:flex-end; background:var(--accent); color:var(--accent-ink); border-bottom-right-radius:4px; }
  .bubble--final{ box-shadow:0 0 0 1px var(--success) inset; }
  .bubble__tag{
    display:inline-block; font-size:10px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase;
    color:var(--accent); margin-bottom:4px;
  }
  .bubble__check{ color:var(--success); font-weight:700; margin-left:4px; }
  .bubble__time{ display:block; font-size:10.5px; color:var(--text-muted); margin-top:4px; }
  .bubble--typing{ display:flex; align-items:center; gap:4px; padding:12px 14px; align-self:flex-start; }
  .bubble--typing span{
    width:6px; height:6px; border-radius:50%; background:var(--text-muted);
    animation:typingDot 1.2s infinite ease-in-out;
  }
  .bubble--typing span:nth-child(2){ animation-delay:.15s; }
  .bubble--typing span:nth-child(3){ animation-delay:.3s; }
  @keyframes typingDot{ 0%,60%,100%{ opacity:.3; transform:translateY(0); } 30%{ opacity:1; transform:translateY(-3px); } }
  @media (prefers-reduced-motion: reduce){ .bubble--typing span{ animation:none; opacity:.6; } }

  /* ============ DEMO SECTION ============ */
  .demo__wrap{ display:grid; gap:32px; position:relative; z-index:1; }
  @media (min-width:960px){ .demo__wrap{ grid-template-columns:380px 1fr; align-items:start; } }
  .demo__phone-col{ max-width:380px; margin-inline:auto; width:100%; }
  @media (min-width:960px){ .demo__phone-col{ margin-inline:0; } }
  .demo__replay{
    display:flex; justify-content:center; margin-top:14px;
  }
  .replay-btn{
    background:transparent; border:1px solid var(--border); color:var(--text-primary);
    border-radius:999px; padding:10px 18px; font-size:14px; font-weight:700; cursor:pointer;
    min-height:44px; transition:border-color .15s, color .15s;
  }
  .replay-btn:hover{ border-color:var(--accent); color:var(--accent); }

  .annotation-rail{ display:none; flex-direction:column; gap:26px; padding-top:20px; }
  @media (min-width:960px){ .annotation-rail{ display:flex; } }
  .annotation{ display:flex; gap:14px; align-items:flex-start; }
  .annotation__dot{
    flex:none; width:10px; height:10px; border-radius:50%; margin-top:6px;
    background:var(--border); border:2px solid var(--border); transition:background-color .3s, border-color .3s;
  }
  .annotation.is-active .annotation__dot{ background:var(--accent); border-color:var(--accent); }
  .annotation__label{ font-family:var(--font-body); font-weight:700; text-transform:uppercase; letter-spacing:0.08em; font-size:12.5px; color:var(--text-muted); }
  .annotation.is-active .annotation__label{ color:var(--text-primary); }
  .annotation__desc{ color:var(--text-muted); font-size:13.5px; margin-top:2px; }

  .mobile-summary{ color:var(--text-muted); font-size:13.5px; text-align:center; margin-top:16px; line-height:1.6; }
  @media (min-width:960px){ .mobile-summary{ display:none; } }

  .demo-cta-card{
    margin-top:28px; background:var(--bg-card); border:1px dashed var(--accent);
    border-radius:var(--radius-card); padding:20px;
  }
  .demo-cta-card p{ margin:0 0 6px; }
  .demo-cta-card .muted{ font-size:14px; }

  /* ============ LEAK SECTION ============ */
  .leak__grid{ display:grid; gap:32px; }
  @media (min-width:900px){ .leak__grid{ grid-template-columns:1fr 1fr; gap:56px; align-items:start; } }
  .leak__scenario{ order:2; }
  .leak__stack{ order:1; }
  @media (min-width:900px){ .leak__scenario{ order:1; } .leak__stack{ order:2; } }
  .scenario-quote{
    font-style:italic; color:var(--text-primary); font-size:18px; line-height:1.65;
    border-left:3px solid var(--border); padding-left:18px;
  }
  .cost-stack{ display:flex; flex-direction:column; gap:18px; }
  .cost-item{ background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-card); padding:18px 20px; }
  .cost-item__value{ font-family:var(--font-display); color:var(--accent); font-size:30px; line-height:1; }
  @media (min-width:768px){ .cost-item__value{ font-size:36px; } }
  .cost-item__label{ color:var(--text-muted); font-size:14px; margin-top:6px; }
  .leak__kicker-line{ margin-top:22px; font-weight:700; font-size:17px; }

  /* ============ PROOF BAND ============ */
  .proof-grid{ display:grid; gap:28px; text-align:center; }
  @media (min-width:768px){ .proof-grid{ grid-template-columns:repeat(3,1fr); gap:24px; text-align:left; } }
  .stat-block{ padding:8px 0; }
  .stat-block__num{ font-family:var(--font-display); color:var(--accent); font-size:52px; line-height:1; }
  .stat-block__claim{ color:var(--text-primary); font-size:16px; margin-top:10px; }
  .stat-block__attr{ color:var(--text-muted); font-size:12.5px; margin-top:10px; }
  .proof-bridge{ text-align:center; color:var(--text-primary); font-size:18px; max-width:70ch; margin:44px auto 0; }
  @media (min-width:768px){ .proof-bridge{ font-size:20px; } }

  /* ============ HOW IT WORKS ============ */
  .steps{ position:relative; display:grid; gap:36px; }
  @media (min-width:900px){ .steps{ grid-template-columns:repeat(3,1fr); gap:28px; } }
  .steps-connector{
    display:none; position:absolute; top:34px; left:8%; right:8%; height:2px;
    background:var(--border); z-index:0;
  }
  @media (min-width:900px){ .steps-connector{ display:block; } }
  .steps-connector__pulse{
    position:absolute; top:-3px; left:0; width:8px; height:8px; border-radius:50%;
    background:var(--accent); transition:left 1.1s var(--ease);
  }
  .step{ position:relative; z-index:1; }
  .step__num{
    font-family:var(--font-display); font-size:44px; color:transparent;
    -webkit-text-stroke:1.5px var(--border); text-stroke:1.5px var(--border);
    margin-bottom:10px;
  }
  .step__title{ font-weight:700; font-size:18px; margin-bottom:8px; }
  .step__desc{ color:var(--text-muted); font-size:15px; }
  .steps-footer{ margin-top:40px; text-align:center; color:var(--text-muted); font-size:15px; max-width:60ch; margin-inline:auto; }

  /* ============ OFFER ============ */
  .offer-grid{ display:grid; gap:24px; }
  @media (min-width:900px){ .offer-grid{ grid-template-columns:repeat(3,1fr); align-items:stretch; } }
  .offer-card{
    background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-card);
    padding:28px 24px; display:flex; flex-direction:column;
  }
  .offer-card--featured{ border-color:var(--accent); border-top-width:3px; position:relative; transform:none; }
  @media (min-width:900px){ .offer-card--featured{ transform:translateY(-10px); } }
  .offer-card__tag{
    align-self:flex-start; background:var(--accent); color:var(--accent-ink);
    font-size:11px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase;
    border-radius:999px; padding:4px 12px; margin-bottom:12px;
  }
  .offer-card__name{ font-family:var(--font-display); font-size:24px; margin-bottom:4px; }
  .offer-card__sub{ color:var(--text-muted); font-size:14px; margin-bottom:18px; }
  .offer-card__list{ list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:22px; flex:1; }
  .offer-card__list li{ display:flex; gap:10px; font-size:14.5px; color:var(--text-primary); }
  .offer-card__list li::before{ content:'✓'; color:var(--accent); font-weight:700; flex:none; }
  .offer-card__price{ font-family:var(--font-display); font-size:26px; color:var(--text-primary); margin-top:auto; }
  .offer-card__price span{ display:block; font-family:var(--font-body); color:var(--text-muted); font-size:13px; margin-top:4px; }
  .offer-anchor{ text-align:center; color:var(--text-primary); font-size:17px; max-width:66ch; margin:40px auto 6px; }
  .offer-micro{ text-align:center; color:var(--text-muted); font-size:13px; }

  /* ============ FOUNDER ============ */
  .founder__grid{ display:grid; gap:32px; }
  @media (min-width:860px){ .founder__grid{ grid-template-columns:220px 1fr; gap:48px; align-items:start; } }
  .founder__mark-col{ text-align:center; }
  .founder__disc{
    width:180px; height:180px; border-radius:50%; margin-inline:auto;
    background:var(--bg-card); border:2px solid var(--accent);
    display:flex; align-items:center; justify-content:center;
    font-family:var(--font-display); font-size:56px; color:var(--text-primary);
    overflow:hidden;
  }
  @media (min-width:960px){ .founder__disc{ width:200px; height:200px; } }
  .founder__disc img{
    width:100%; height:100%; object-fit:cover; object-position:center 30%; display:block;
  }
  .founder__sig{ font-family:var(--font-signature); font-size:30px; color:var(--accent); margin-top:14px; }
  .founder__body p{ margin-bottom:16px; font-size:16px; color:var(--text-primary); }
  @media (min-width:768px){ .founder__body p{ font-size:17px; } }
  .founder__pills{ display:flex; flex-direction:column; gap:10px; margin-top:20px; }
  .founder__pill{ display:flex; gap:10px; font-size:14.5px; color:var(--text-primary); }
  .founder__pill::before{ content:'✓'; color:var(--accent); font-weight:700; }

  /* ============ HONESTY / FAQ ============ */
  .faq-list{ display:flex; flex-direction:column; gap:14px; }
  .faq-item{ border:1px solid var(--border); border-radius:var(--radius-card); background:var(--bg-card); overflow:hidden; }
  .faq-item__q{
    width:100%; text-align:left; background:transparent; border:0; color:var(--text-primary);
    font-weight:700; font-size:16px; padding:18px 20px; cursor:pointer;
    display:flex; justify-content:space-between; align-items:center; gap:12px; min-height:48px;
  }
  .faq-item__icon{ color:var(--accent); font-size:20px; flex:none; transition:transform .2s var(--ease); }
  .faq-item[data-open="true"] .faq-item__icon{ transform:rotate(45deg); }
  .faq-item__a{
    padding:0 20px; max-height:0; overflow:hidden; color:var(--text-muted); font-size:15px;
    transition:max-height .3s var(--ease), padding .3s var(--ease);
  }
  .faq-item[data-open="true"] .faq-item__a{ padding:0 20px 20px; max-height:400px; }

  /* ============ GUARANTEE ============ */
  .guarantee-card{
    background:var(--bg-card); border:1px solid var(--accent); border-radius:var(--radius-card);
    padding:36px 26px; text-align:center; max-width:760px; margin-inline:auto;
  }
  @media (min-width:768px){ .guarantee-card{ padding:48px 56px; } }
  .guarantee-card .h2{ margin-bottom:16px; }
  .guarantee-card .body-text{ margin-inline:auto; margin-bottom:20px; }
  .guarantee-cohort{ font-weight:700; font-size:16px; margin-bottom:24px; max-width:60ch; margin-inline:auto; }

  /* ============ FINAL CTA ============ */
  .final-cta{ text-align:center; }
  .final-cta__inner{ position:relative; z-index:1; }
  .final-cta .h2{ max-width:16ch; margin-inline:auto; margin-bottom:16px; }
  .final-cta .subhead{ margin-inline:auto; margin-bottom:28px; }
  .final-cta__signoff{
    font-family:var(--font-display); color:var(--accent); letter-spacing:0.1em;
    font-size:20px; margin-top:22px;
  }

  /* ============ FORM ============ */
  .form-card{
    background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-card);
    padding:28px 24px; max-width:520px; margin-inline:auto;
  }
  .form-field{ margin-bottom:16px; }
  .form-field label{ display:block; font-size:13.5px; font-weight:700; color:var(--text-primary); margin-bottom:6px; }
  .form-field input, .form-field select{
    width:100%; background:var(--bg-deep); border:1px solid var(--border); color:var(--text-primary);
    border-radius:var(--radius-btn); padding:13px 14px; font-size:16px; font-family:var(--font-body);
    min-height:48px;
  }
  .form-field input:focus, .form-field select:focus{ border-color:var(--accent); }
  .form-field input::placeholder{ color:var(--text-muted); }
  .trade-picker{ display:flex; gap:6px; flex-wrap:wrap; }
  .trade-picker button{
    flex:1 1 calc(50% - 6px); min-width:110px; min-height:44px;
    background:var(--bg-deep); border:1px solid var(--border); color:var(--text-muted);
    border-radius:var(--radius-btn); font-size:13px; font-weight:700; cursor:pointer;
    font-family:var(--font-body); transition:border-color .15s, color .15s, background-color .15s;
  }
  .trade-picker button[aria-pressed="true"]{ background:var(--accent); border-color:var(--accent); color:var(--accent-ink); }
  .form-micro{ color:var(--text-muted); font-size:13px; margin-top:12px; text-align:center; }
  .form-success{
    text-align:center; padding:20px 4px; display:none;
  }
  .form-success.is-visible{ display:block; }
  .form-success__check{ color:var(--success); font-size:36px; margin-bottom:10px; }
  .form-fields.is-hidden{ display:none; }
  .field-error{ color:#F87171; font-size:12.5px; margin-top:6px; display:none; }
  .field-error.is-visible{ display:block; }

  /* ============ FOOTER ============ */
  .site-footer{
    background:var(--bg-deep); border-top:1px solid var(--border);
    padding-block:40px; padding-bottom:calc(40px + 70px);
  }
  @media (min-width:768px){ .site-footer{ padding-bottom:40px; } }
  .footer__grid{ display:flex; flex-direction:column; gap:20px; text-align:center; }
  @media (min-width:640px){ .footer__grid{ flex-direction:row; justify-content:space-between; align-items:center; text-align:left; } }
  .footer__brand{ font-family:var(--font-display); font-size:18px; letter-spacing:0.04em; }
  .footer__tag{ color:var(--text-muted); font-size:13.5px; margin-top:4px; }
  .footer__signoff{ font-family:var(--font-display); color:var(--accent); letter-spacing:0.08em; font-size:18px; }
  .footer__fine{ color:var(--text-muted); font-size:12.5px; margin-top:24px; text-align:center; }
  .footer__fine a{ color:var(--text-muted); text-decoration:underline; }

  /* ============ STICKY MOBILE CTA ============ */
  .sticky-cta{
    position:fixed; left:0; right:0; bottom:0; z-index:80;
    background:rgba(20,22,26,0.96); border-top:1px solid var(--border);
    padding:10px 16px calc(10px + env(safe-area-inset-bottom));
    transform:translateY(100%); transition:transform .25s var(--ease);
  }
  .sticky-cta.is-visible{ transform:translateY(0); }
  @media (min-width:900px){ .sticky-cta{ display:none; } }
  .sticky-cta__btn{ width:100%; }

  @media (prefers-reduced-motion: reduce){
    *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
  }

  /* ============ CROSS-TRADE NAV (vertical pages) ============ */
  .trade-switch{ display:none; align-items:center; gap:12px; }
  @media (min-width:820px){ .trade-switch{ display:flex; } }
  .trade-switch a{ font-size:13px; font-weight:700; color:var(--text-muted); text-decoration:none; transition:color .15s; }
  .trade-switch a:hover{ color:var(--text-primary); }
  .trade-switch a[aria-current="page"]{ color:var(--accent); }
  .trade-switch__sep{ color:var(--border); font-size:12px; }

  .footer__trades{ display:flex; flex-wrap:wrap; gap:8px 14px; margin-top:18px; justify-content:center; }
  @media (min-width:640px){ .footer__trades{ justify-content:flex-start; } }
  .footer__trades a{ font-size:13px; font-weight:700; color:var(--text-muted); text-decoration:none; }
  .footer__trades a:hover{ color:var(--accent); }
  .footer__trades a[aria-current="page"]{ color:var(--text-primary); }

  /* ============ HOME: TRADE PICKER CARDS ============ */
  .home-hook{ max-width:60ch; }
  .trade-cards{ display:grid; gap:16px; grid-template-columns:1fr; margin-top:8px; }
  @media (min-width:560px){ .trade-cards{ grid-template-columns:1fr 1fr; } }
  .trade-card{
    display:flex; flex-direction:column; gap:6px;
    background:var(--bg-card); border:1px solid var(--border); border-left:3px solid var(--accent);
    border-radius:var(--radius-card); padding:22px; text-decoration:none; color:var(--text-primary);
    transition:border-color .15s var(--ease), transform .15s var(--ease);
  }
  .trade-card:hover{ border-color:var(--accent); transform:translateY(-2px); }
  .trade-card__name{ font-family:var(--font-display); font-size:26px; letter-spacing:0.02em; }
  .trade-card__hook{ color:var(--text-muted); font-size:14.5px; line-height:1.5; }
  .trade-card__go{ margin-top:6px; color:var(--accent); font-weight:700; font-size:14px; }
  .home-pick{ scroll-margin-top:80px; }
