/* ==========================================================================
   Long Range WiFi | bespoke identity (longrangewifi.com.au)
   "Carry the signal across the distance." Technical, precise, clean.
   Confident steel-blue + navy drench + a live signal-amber accent.
   Space Grotesk (engineered display) on a contrast axis with Inter (body).
   Centrepiece: a scroll-driven point-to-point link across the line of sight,
   two towers + a beam that establishes and holds. Distinct from the shared
   niche framework AND from the fallmonitoring teal/coral look.

   Superset note: this stylesheet keeps every class name the existing pages use
   (.hero .section .panel .feats .feat .steps .step .pains .pain .proof .stats
    .stat .compare .yoy .dash .tankcard .faq .cta .form .aside .foot .nav .btn
    .kicker .section__head .measure .reveal), so untouched spoke pages render
   correctly, while the rebuilt hero pages use the richer bespoke components.
   ========================================================================== */
:root{
  /* palette ---------------------------------------------------------------- */
  --bg:        oklch(0.985 0.006 240);     /* cool near-white, sky/air        */
  --bg-2:      oklch(0.965 0.010 240);
  --surface:   oklch(0.968 0.010 240);     /* faint panel                     */
  --surface-2: oklch(0.945 0.014 242);     /* second panel                    */
  --paper:     oklch(1 0 0);
  --ink:       oklch(0.26 0.035 250);      /* deep steel-navy text            */
  --ink-soft:  oklch(0.38 0.032 250);
  --muted:     oklch(0.50 0.028 250);      /* secondary text                  */
  --brand:     oklch(0.52 0.115 248);      /* confident steel-blue (CTA)      */
  --brand-ink: oklch(0.45 0.115 250);      /* darker steel for links/contrast */
  --brand-deep:oklch(0.27 0.072 256);      /* navy drench (dash/proof)        */
  --night:     oklch(0.205 0.055 258);     /* the link-stage night            */
  --night-2:   oklch(0.165 0.05 260);
  --accent:    oklch(0.74 0.165 62);       /* live signal amber               */
  --accent-ink:oklch(0.60 0.16 58);        /* amber for text on light         */
  --accent-deep:oklch(0.55 0.155 56);
  --signal:    oklch(0.80 0.16 78);        /* brighter beam highlight         */
  --line:      oklch(0.89 0.013 245);      /* hairlines                       */
  --on-brand:  oklch(0.98 0.008 240);      /* near-white on steel/navy        */
  --on-dark:   oklch(0.96 0.012 240);

  --font-display: "Exo 2", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", Menlo, monospace;

  --maxw: 1200px;
  --gutter: clamp(1.4rem, 6vw, 5.5rem);
  --space-section: clamp(4rem, 3rem + 5vw, 8rem);
  --radius: 16px; --radius-sm: 11px; --radius-lg: 24px;
  --shadow-sm: 0 1px 2px oklch(0.27 0.06 256 / .06), 0 8px 20px -12px oklch(0.27 0.07 256 / .22);
  --shadow: 0 2px 5px oklch(0.27 0.06 256 / .07), 0 26px 56px -22px oklch(0.27 0.08 256 / .34);
  --z-nav:200; --z-overlay:300;
  --ease: cubic-bezier(.16,1,.3,1);
}
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }
body{
  margin:0; background:var(--bg); color:var(--ink); font-family:var(--font-body);
  font-size:clamp(1.02rem,.98rem + .2vw,1.12rem); line-height:1.66;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img,svg{ max-width:100%; height:auto; display:block; }
a{ color:var(--brand-ink); text-underline-offset:.18em; text-decoration-thickness:.08em; }
a:hover{ color:var(--brand); }
strong{ font-weight:700; }
::selection{ background:oklch(0.74 0.165 62 / .28); }

h1,h2,h3,h4{ font-family:var(--font-display); font-weight:700; line-height:1.06;
  letter-spacing:-0.02em; text-wrap:balance; margin:0 0 .55em; color:var(--ink); }
h1{ font-size:clamp(2.4rem,1.6rem + 3.6vw,4.2rem); letter-spacing:-0.03em; }
h2{ font-size:clamp(1.8rem,1.3rem + 2vw,2.9rem); }
h3{ font-size:clamp(1.2rem,1.08rem + .55vw,1.46rem); letter-spacing:-0.012em; }
p{ margin:0 0 1.05rem; } p,li{ text-wrap:pretty; }
.lead{ font-size:clamp(1.12rem,1.02rem + .6vw,1.42rem); color:var(--ink-soft); max-width:60ch; line-height:1.55; }

.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter); }
.measure{ max-width:66ch; }
.skip{ position:absolute; left:-999px; top:0; z-index:var(--z-overlay); background:var(--ink); color:#fff; padding:.7rem 1rem; border-radius:0 0 8px 0; }
.skip:focus{ left:0; }
:where(a,button,input,textarea,summary):focus-visible{ outline:3px solid var(--accent); outline-offset:3px; border-radius:5px; }

/* ---------- buttons ----------------------------------------------------- */
.btn{ display:inline-flex; align-items:center; gap:.55rem; font-family:var(--font-display); font-weight:600; white-space:nowrap;
  font-size:1rem; line-height:1; padding:1rem 1.6rem; border-radius:999px; border:1.5px solid transparent; cursor:pointer;
  text-decoration:none; transition:transform .35s var(--ease), background-color .2s, box-shadow .35s, border-color .2s; }
.btn--primary{ background:var(--brand); color:var(--on-brand); box-shadow:0 10px 26px -12px oklch(0.52 0.115 248 / .7); }
.btn--primary:hover{ background:var(--brand-ink); color:var(--on-brand); transform:translateY(-2px); box-shadow:0 16px 36px -12px oklch(0.52 0.115 248 / .8); }
.btn--ghost{ background:transparent; color:var(--brand-ink); border-color:var(--line); }
.btn--ghost:hover{ border-color:var(--brand); color:var(--brand); transform:translateY(-2px); }
.btn--lg{ padding:1.15rem 2rem; font-size:1.08rem; }
.btn--on-dark{ background:var(--on-dark); color:var(--brand-deep); }
.btn--on-dark:hover{ background:#fff; color:var(--brand-deep); }
@media (prefers-reduced-motion: reduce){ .btn:hover{ transform:none; } }

/* ---------- header ------------------------------------------------------ */
.site{ position:sticky; top:0; z-index:var(--z-nav); background:oklch(0.985 0.006 240 / .82); backdrop-filter:saturate(1.4) blur(11px); border-bottom:1px solid transparent; transition:border-color .3s, background-color .3s; }
.site.is-stuck{ border-color:var(--line); }
.site__in{ display:flex; align-items:center; justify-content:space-between; min-height:74px; gap:1rem; }
.brand{ display:inline-flex; align-items:center; gap:.6rem; font-family:var(--font-display); font-weight:700; font-size:1.18rem; letter-spacing:-0.02em; color:var(--ink); text-decoration:none; }
.brand__mark{ width:30px; height:30px; flex:none; }
.nav{ display:flex; align-items:center; gap:1.7rem; }
.nav a:not(.btn){ font-family:var(--font-display); font-weight:500; font-size:.98rem; color:var(--ink-soft); text-decoration:none; }
.nav a:not(.btn):hover,.nav a[aria-current=page]{ color:var(--brand); }
.nav__toggle{ display:none; }
@media (max-width:780px){
  .nav__toggle{ display:inline-flex; align-items:center; gap:.5rem; background:none; border:1.5px solid var(--line); border-radius:10px; padding:.6rem .85rem; font-family:var(--font-display); font-weight:600; color:var(--ink); cursor:pointer; }
  .nav{ position:fixed; inset:74px 0 auto 0; flex-direction:column; align-items:stretch; gap:0; background:var(--bg); border-bottom:1px solid var(--line); padding:.5rem var(--gutter) 1.5rem; transform:translateY(-12px); opacity:0; pointer-events:none; transition:opacity .2s, transform .2s; }
  .nav[data-open="true"]{ transform:none; opacity:1; pointer-events:auto; }
  .nav a:not(.btn){ padding:1.05rem 0; border-bottom:1px solid var(--line); font-size:1.1rem; }
  .nav .btn{ margin-top:1.1rem; justify-content:center; }
}

/* ---------- hero -------------------------------------------------------- */
.hero{ position:relative; padding:clamp(3.5rem,2.5rem + 5vw,7rem) 0 clamp(3.5rem,2.5rem + 4vw,6rem); overflow:hidden; }
.hero::before{ content:""; position:absolute; inset:-30% -12% auto -12%; height:96%; z-index:-1;
  background:radial-gradient(58% 70% at 78% 14%, oklch(0.74 0.165 62 / .14), transparent 68%),
             radial-gradient(54% 64% at 6% 4%, oklch(0.52 0.115 248 / .16), transparent 64%); }
.hero__grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(2.5rem,1.5rem + 6vw,7rem); align-items:center; }
.kicker{ display:inline-flex; align-items:center; gap:.6rem; font-family:var(--font-display); font-weight:600; font-size:.9rem; letter-spacing:.01em; color:var(--brand-ink); margin-bottom:1.1rem; }
.kicker::before{ content:""; width:1.7rem; height:2px; background:var(--accent); flex:none; }
.hero h1{ margin-bottom:1.1rem; }
.hero h1 em{ font-style:normal; color:var(--brand); position:relative; white-space:nowrap; }
.hero .lead{ margin-bottom:1.9rem; max-width:38ch; }
.hero__cta{ display:flex; flex-wrap:wrap; gap:.85rem; align-items:center; }
.hero__note{ margin:1.6rem 0 0; font-size:.94rem; color:var(--muted); max-width:46ch; }
.hero__reassure{ margin-top:1.8rem; display:flex; flex-wrap:wrap; gap:.5rem 1.4rem; color:var(--muted); font-size:.95rem; font-weight:500; }
.hero__reassure span{ display:inline-flex; align-items:center; gap:.45rem; min-width:0; }
.hero__reassure svg{ width:17px; height:17px; color:var(--brand); flex:none; }
@media (max-width:880px){ .hero__grid{ grid-template-columns:1fr; } .hero__grid > *{ min-width:0; } .hero__fig{ order:-1; max-width:520px; margin-inline:auto; width:100%; } }

/* ---------- hero figure: a live link panel ------------------------------ */
.linkfig{ position:relative; }
.linkscape{ position:relative; background:linear-gradient(170deg, var(--night) 0%, var(--night-2) 100%); border-radius:var(--radius-lg);
  padding:clamp(1.3rem,1rem + 1.6vw,2rem); box-shadow:var(--shadow); color:var(--on-dark); overflow:hidden; }
.linkscape::before{ content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(40% 50% at 84% 12%, oklch(0.74 0.165 62 / .2), transparent 70%); }
.linkscape__bar{ position:relative; display:flex; align-items:center; gap:.5rem; margin-bottom:1rem; color:oklch(0.82 0.04 250); font-family:var(--font-mono); font-size:.78rem; letter-spacing:.02em; }
.linkscape__dot{ width:.6rem; height:.6rem; border-radius:50%; background:var(--accent); box-shadow:0 0 0 0 oklch(0.74 0.165 62 / .55); animation:pulse 2.4s var(--ease) infinite; flex:none; }
@keyframes pulse{ 0%{ box-shadow:0 0 0 0 oklch(0.74 0.165 62 / .55);} 70%{ box-shadow:0 0 0 9px oklch(0.74 0.165 62 / 0);} 100%{ box-shadow:0 0 0 0 oklch(0.74 0.165 62 / 0);} }
.linkscape__scene{ position:relative; width:100%; aspect-ratio:16/8.4; margin-bottom:1rem; }
.linkscape__scene svg{ width:100%; height:100%; display:block; }
.beam-dash{ stroke-dasharray:5 7; animation:beam 1.4s linear infinite; }
@keyframes beam{ to{ stroke-dashoffset:-24; } }
.spark{ animation:spark 2.6s var(--ease) infinite; }
@keyframes spark{ 0%{ offset-distance:0%; opacity:0;} 8%{opacity:1;} 92%{opacity:1;} 100%{ offset-distance:100%; opacity:0;} }
@media (prefers-reduced-motion: reduce){ .beam-dash,.spark,.linkscape__dot{ animation:none; } }
.linkscape__grid{ position:relative; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:.6rem; }
@media (max-width:420px){ .linkscape__grid{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
.metric{ background:oklch(1 0 0 / .07); border:1px solid oklch(1 0 0 / .12); border-radius:var(--radius-sm); padding:.85rem .9rem; min-width:0; }
.metric .lvl{ font-family:var(--font-display); font-weight:700; font-size:1.35rem; line-height:1; overflow-wrap:anywhere; }
.metric .lvl small{ font-size:.78rem; font-weight:600; color:oklch(0.82 0.04 250); }
.metric .nm{ font-size:.72rem; color:oklch(0.80 0.04 250); margin-top:.32rem; }
.metric .meter{ height:5px; border-radius:99px; background:oklch(1 0 0 / .15); margin-top:.5rem; overflow:hidden; }
.metric .meter i{ display:block; height:100%; border-radius:99px; background:var(--accent); }
.linkscape__alert{ position:relative; display:flex; gap:.55rem; align-items:center; margin-top:.85rem; background:oklch(0.74 0.165 62 / .15); border:1px solid oklch(0.74 0.165 62 / .4); color:oklch(0.93 0.06 72); border-radius:var(--radius-sm); padding:.6rem .8rem; font-size:.83rem; }
.linkscape__alert svg{ width:16px; height:16px; flex:none; }

/* ---------- sections / rhythm ------------------------------------------ */
.section{ padding:var(--space-section) 0; position:relative; }
.section--tight{ padding:clamp(2.5rem,2rem + 2vw,3.5rem) 0; }
.panel{ background:var(--surface); }
.section__head{ max-width:64ch; margin-bottom:clamp(2rem,1.2rem + 2vw,3.25rem); }
.section__head .kicker{ margin-bottom:.8rem; }
.section__head p{ color:var(--muted); font-size:1.12rem; }

/* problem rows */
.pains{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:clamp(1rem,1rem + 3vw,4rem); }
.pain{ padding:1.9rem 0; border-top:2px solid var(--line); min-width:0; }
.pain h3{ display:flex; gap:.65rem; align-items:baseline; margin-bottom:.45rem; overflow-wrap:break-word; }
.pain h3 .x{ color:var(--accent-deep); font-family:var(--font-mono); font-weight:700; flex:none; }
.pain p{ color:var(--muted); margin:0; }

/* feature cards */
.feats{ display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:clamp(1.25rem,1rem + 1.5vw,2rem); }
.feat{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:clamp(1.9rem,1.3rem + 2vw,2.7rem); box-shadow:var(--shadow-sm); min-width:0; transition:transform .35s var(--ease), box-shadow .35s, border-color .3s; }
.feat:hover{ transform:translateY(-3px); box-shadow:var(--shadow); border-color:oklch(0.52 0.115 248 / .35); }
.panel .feat{ background:var(--paper); }
.feat__ic{ width:44px; height:44px; color:var(--brand); margin-bottom:1rem; }
.feat h3{ margin-bottom:.45rem; overflow-wrap:break-word; }
.feat h3 a{ text-decoration:none; color:var(--ink); }
.feat h3 a:hover{ color:var(--brand); }
.feat p{ color:var(--muted); margin:0; }
.feat > div{ min-width:0; }

/* steps */
.steps{ counter-reset:step; display:grid; gap:clamp(1.25rem,2vw,2rem); grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); }
.step{ position:relative; padding-top:3rem; min-width:0; }
.step::before{ counter-increment:step; content:none; position:absolute; top:0; left:0; font-family:var(--font-mono); font-weight:700; font-size:.95rem; color:var(--on-brand); min-width:2.4rem; height:2.2rem; padding:0 .55rem; display:inline-grid; place-items:center; background:var(--brand); border-radius:9px; }
.step h3{ margin-bottom:.4rem; }
.step p{ color:var(--muted); margin:0; }

/* ---------- "dash" alias kept for any legacy markup -------------------- */
.dash{ background:var(--brand-deep); border-radius:var(--radius-lg); padding:clamp(1.5rem,1rem + 2vw,2.4rem); box-shadow:var(--shadow); color:var(--on-brand); }
.dash__bar{ display:flex; align-items:center; gap:.5rem; margin-bottom:1rem; color:oklch(0.85 0.03 250); font-family:var(--font-mono); font-size:.8rem; }
.dash__dot{ width:.7rem; height:.7rem; border-radius:50%; background:var(--accent); }
.dash__grid{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:.7rem; margin-bottom:.9rem; }
@media (max-width:400px){ .dash__grid{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
.tankcard{ background:oklch(1 0 0 / .06); border:1px solid oklch(1 0 0 / .12); border-radius:var(--radius-sm); padding:1.15rem; min-width:0; }
.tankcard .lvl{ font-family:var(--font-display); font-weight:700; font-size:1.5rem; line-height:1; overflow-wrap:anywhere; }
.tankcard .nm{ font-size:.74rem; color:oklch(0.82 0.03 250); margin-top:.3rem; }
.tankcard .meter{ height:6px; border-radius:99px; background:oklch(1 0 0 / .15); margin-top:.55rem; overflow:hidden; }
.tankcard .meter i{ display:block; height:100%; border-radius:99px; background:var(--accent); }
.dash__chart{ background:oklch(1 0 0 / .05); border-radius:var(--radius-sm); padding:.8rem; }
.dash__chart .cap{ font-size:.74rem; color:oklch(0.82 0.03 250); margin-bottom:.4rem; display:flex; justify-content:space-between; gap:.5rem; }
.dash__alert{ display:flex; gap:.55rem; align-items:center; margin-top:.85rem; background:oklch(0.74 0.165 62 / .15); border:1px solid oklch(0.74 0.165 62 / .4); color:oklch(0.93 0.06 72); border-radius:var(--radius-sm); padding:.6rem .8rem; font-size:.84rem; }

/* ---------- the scroll-driven link story (centrepiece) ----------------- */
.story{ background:var(--night); color:var(--on-dark); position:relative; }
.story::before{ content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:radial-gradient(42% 32% at 86% 6%, oklch(0.74 0.165 62 / .2), transparent 70%),
             radial-gradient(46% 36% at 8% 98%, oklch(0.52 0.115 248 / .34), transparent 70%); }
.story .wrap{ position:relative; z-index:1; }
.story__intro{ max-width:42ch; padding-bottom:clamp(1rem,2vw,2.5rem); }
.story__intro h2{ color:var(--on-dark); margin-bottom:.9rem; }
.story__intro p{ color:oklch(0.83 0.02 250); font-size:1.16rem; }
.story__intro .tag{ font-family:var(--font-display); font-weight:600; letter-spacing:.02em; color:var(--accent); font-size:.88rem; margin-bottom:1rem; display:inline-flex; gap:.5rem; align-items:center; }
.story__intro .tag svg{ width:16px; height:16px; flex:none; }

.story__cols{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(2rem,4vw,5rem); align-items:start; }
.story__stage{ position:sticky; top:0; height:100vh; display:flex; align-items:center; justify-content:center; }
.beats{ padding:4vh 0 8vh; min-width:0; }
.beat{ min-height:62vh; display:flex; flex-direction:column; justify-content:center; max-width:34ch; }
.beat__step{ font-family:var(--font-mono); font-weight:700; font-size:.82rem; letter-spacing:.06em; color:var(--accent); margin-bottom:.7rem; }
.beat h3{ color:var(--on-dark); font-size:clamp(1.55rem,1.2rem + 1.6vw,2.4rem); margin-bottom:.7rem; }
.beat p{ color:oklch(0.82 0.02 250); font-size:1.08rem; margin:0; }
.beat.is-alert .beat__step{ color:var(--signal); }

/* the link console on the sticky stage */
.console{ width:min(440px,86vw); background:linear-gradient(168deg, oklch(0.24 0.05 258), oklch(0.155 0.045 260));
  border:1px solid oklch(1 0 0 / .08); border-radius:24px; padding:clamp(1.1rem,1rem + 1vw,1.6rem);
  box-shadow:0 40px 80px -34px #000, 0 0 0 1px oklch(0.6 0.1 250 / .12) inset; position:relative; }
.console__head{ display:flex; align-items:center; justify-content:space-between; gap:.6rem; margin-bottom:.9rem; font-family:var(--font-mono); font-size:.76rem; color:oklch(0.78 0.04 250); }
.console__head .state{ display:inline-flex; align-items:center; gap:.4rem; padding:.28rem .6rem; border-radius:99px; background:oklch(1 0 0 / .08); border:1px solid oklch(1 0 0 / .14); white-space:nowrap; }
.console__head .state b{ width:.55rem; height:.55rem; border-radius:50%; background:var(--muted); flex:none; transition:background-color .5s; }
.console.is-live .console__head .state b{ background:var(--accent); box-shadow:0 0 10px 1px oklch(0.74 0.165 62 / .8); }
.console__scene{ position:relative; width:100%; aspect-ratio:16/9.4; border-radius:14px; overflow:hidden; background:radial-gradient(120% 90% at 50% 120%, oklch(0.3 0.06 258), oklch(0.16 0.045 260)); }
.console__scene svg{ position:absolute; inset:0; width:100%; height:100%; }
/* path-establish animation states driven by data-stage on .console */
.los{ stroke:oklch(0.7 0.05 250 / .5); stroke-width:1.4; stroke-dasharray:3 5; fill:none; }
.fresnel{ fill:oklch(0.52 0.115 248 / 0); stroke:oklch(0.6 0.1 250 / .25); stroke-width:1; transition:fill .8s var(--ease); }
.link-beam{ stroke:var(--accent); stroke-width:0; fill:none; stroke-linecap:round; filter:drop-shadow(0 0 4px oklch(0.74 0.165 62 / .7)); transition:stroke-width .6s var(--ease), opacity .6s; opacity:0; }
.tower{ stroke:oklch(0.78 0.04 250); stroke-width:2; fill:none; stroke-linecap:round; }
.tower-label{ font-family:var(--font-mono); font-size:9px; fill:oklch(0.82 0.04 250); }
.node{ fill:var(--muted); transition:fill .5s; }
.scan{ stroke:var(--accent); stroke-width:1.5; opacity:0; }
.console[data-stage="survey"] .scan{ opacity:.9; animation:scan 2.2s var(--ease) infinite; }
@keyframes scan{ 0%{ transform:translateX(-2px); opacity:0;} 12%{opacity:.9;} 88%{opacity:.9;} 100%{ transform:translateX(140px); opacity:0;} }
.console[data-stage="aim"] .node,
.console[data-stage="lock"] .node,
.console[data-stage="live"] .node,
.console[data-stage="weather"] .node{ fill:var(--accent); }
.console[data-stage="lock"] .link-beam,
.console[data-stage="live"] .link-beam,
.console[data-stage="weather"] .link-beam{ stroke-width:2.4; opacity:1; }
.console[data-stage="aim"] .link-beam{ stroke-width:1.4; opacity:.5; }
.console[data-stage="lock"] .fresnel,
.console[data-stage="live"] .fresnel,
.console[data-stage="weather"] .fresnel{ fill:oklch(0.52 0.115 248 / .12); }
.console[data-stage="weather"] .link-beam{ stroke:var(--signal); stroke-dasharray:6 4; animation:beam 1.2s linear infinite; }
.console[data-stage="live"] .link-beam,
.console[data-stage="lock"] .link-beam{ stroke-dasharray:5 6; animation:beam 1.3s linear infinite; }
@media (prefers-reduced-motion: reduce){ .console[data-stage] .scan,.console[data-stage] .link-beam{ animation:none; } }
.console__rain{ opacity:0; transition:opacity .6s; }
.console[data-stage="weather"] .console__rain{ opacity:.7; }
.console__readout{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:.55rem; margin-top:.9rem; }
@media (max-width:380px){ .console__readout{ grid-template-columns:repeat(3,minmax(0,1fr)); } }
.ro{ background:oklch(1 0 0 / .05); border:1px solid oklch(1 0 0 / .1); border-radius:10px; padding:.6rem .55rem; min-width:0; text-align:center; }
.ro b{ font-family:var(--font-display); font-weight:700; font-size:1.05rem; display:block; line-height:1; color:var(--on-dark); overflow-wrap:anywhere; }
.ro span{ font-size:.66rem; color:oklch(0.78 0.04 250); display:block; margin-top:.3rem; }

@media (max-width:880px){
  .story__cols{ grid-template-columns:1fr; }
  .story__stage{ height:auto; position:sticky; top:64px; padding:1rem 0 1.5rem; }
  .console{ width:min(420px,92vw); }
  .beats{ padding:2vh 0 0; }
  .beat{ min-height:54vh; }
}

/* ---------- proof band -------------------------------------------------- */
.proof{ background:var(--brand-deep); color:var(--on-brand); border-radius:var(--radius-lg);
  padding:clamp(2.75rem,2rem + 5vw,5.5rem); position:relative; overflow:hidden; }
.proof::after{ content:""; position:absolute; inset:auto -10% -50% auto; width:60%; aspect-ratio:1; border-radius:50%;
  background:radial-gradient(circle, oklch(0.74 0.165 62 / .16), transparent 70%); pointer-events:none; }
.proof > *{ max-width:64ch; position:relative; }
.proof h2{ color:var(--on-brand); }
.proof p{ color:oklch(0.9 0.025 250); }
.proof a{ color:var(--on-brand); text-decoration-color:var(--accent); }
.proof .stats{ display:grid; grid-template-columns:repeat(auto-fit, minmax(180px,1fr)); gap:1.75rem 2rem; margin-top:2.25rem; max-width:none; }
.proof .stat{ min-width:0; }
.proof .stat b{ font-family:var(--font-display); font-size:clamp(1.4rem,1.1rem + 1vw,2rem); line-height:1.12; display:block; overflow-wrap:anywhere; color:var(--accent); }
.proof .stat span{ color:oklch(0.86 0.03 250); font-size:.95rem; }

/* generic stats (light bg) */
.stats{ display:grid; grid-template-columns:repeat(auto-fit, minmax(180px,1fr)); gap:1.75rem 2rem; margin-top:2.25rem; }
.stat{ min-width:0; }
.stat b{ font-family:var(--font-display); font-weight:700; font-size:clamp(1.4rem,1.1rem + 1vw,2rem); line-height:1.12; display:block; overflow-wrap:anywhere; }
.stat span{ color:var(--muted); font-size:.95rem; }

/* ---------- comparison / yoy ------------------------------------------- */
.compare{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,1.5rem + 4vw,5rem); align-items:center; }
@media (max-width:760px){ .compare{ grid-template-columns:1fr; } .compare > *{ min-width:0; } }
.yoy{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:clamp(1.9rem,1.3rem + 2vw,2.85rem); box-shadow:var(--shadow-sm); }
.yoy__row{ display:grid; grid-template-columns:4.5rem 1fr; gap:.8rem; align-items:center; margin-bottom:.9rem; }
.yoy__row:last-child{ margin-bottom:0; }
.yoy__yr{ font-family:var(--font-mono); font-size:.85rem; color:var(--muted); }
.yoy__track{ height:1.4rem; background:var(--surface-2); border-radius:99px; overflow:hidden; }
.yoy__track i{ display:block; height:100%; border-radius:99px; background:var(--brand); }
.yoy__track.now i{ background:var(--accent); }

/* ---------- table (guide) ---------------------------------------------- */
.ltable{ width:100%; border-collapse:collapse; font-size:.98rem; background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.ltable th{ text-align:left; padding:.9rem 1rem; font-family:var(--font-display); font-weight:700; border-bottom:2px solid var(--line); background:var(--surface-2); }
.ltable td{ padding:.85rem 1rem; border-bottom:1px solid var(--line); }
.ltable tr:last-child td{ border-bottom:0; }
.tablewrap{ overflow-x:auto; border-radius:var(--radius); }

/* ---------- FAQ --------------------------------------------------------- */
.faq{ max-width:780px; }
.faq details{ border-top:1px solid var(--line); }
.faq details:last-child{ border-bottom:1px solid var(--line); }
.faq summary{ list-style:none; cursor:pointer; padding:1.35rem 2.5rem 1.35rem 0; position:relative; font-family:var(--font-display); font-weight:600; font-size:1.12rem; color:var(--ink); }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{ content:""; position:absolute; right:.3rem; top:50%; width:12px; height:12px; margin-top:-7px;
  border-right:2px solid var(--accent); border-bottom:2px solid var(--accent); transform:rotate(45deg); transition:transform .3s var(--ease); }
.faq details[open] summary::after{ transform:rotate(225deg); }
.faq p{ color:var(--muted); margin:0 0 1.35rem; max-width:72ch; }

/* ---------- CTA --------------------------------------------------------- */
.cta{ text-align:center; position:relative; overflow:hidden; }
.cta::before{ content:""; position:absolute; inset:auto -10% -45% -10%; height:70%; z-index:-1;
  background:radial-gradient(50% 100% at 50% 100%, oklch(0.74 0.165 62 / .14), transparent 72%); }
.cta h2{ max-width:20ch; margin-inline:auto; }
.cta p{ color:var(--muted); max-width:54ch; margin:0 auto 2rem; font-size:1.12rem; }

/* ---------- contact form ----------------------------------------------- */
.contact-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(2rem,2vw + 1rem,4rem); align-items:start; }
@media (max-width:820px){ .contact-grid{ grid-template-columns:1fr; } .contact-grid > *{ min-width:0; } }
.form{ background:var(--paper); border:1px solid var(--line); border-radius:var(--radius); padding:clamp(1.9rem,1.3rem + 2.5vw,3rem); box-shadow:var(--shadow-sm); }
.form .field{ margin-bottom:1.2rem; }
.form label{ display:block; font-family:var(--font-display); font-weight:600; font-size:.95rem; margin-bottom:.45rem; }
.form .opt{ color:var(--muted); font-weight:400; }
.form input,.form textarea{ width:100%; font:inherit; color:var(--ink); background:var(--bg); border:1.5px solid var(--line); border-radius:var(--radius-sm); padding:.85rem .95rem; transition:border-color .15s, box-shadow .15s; }
.form input::placeholder,.form textarea::placeholder{ color:var(--muted); }
.form input:focus,.form textarea:focus{ outline:none; border-color:var(--brand); box-shadow:0 0 0 3px oklch(0.52 0.115 248 / .18); }
.form textarea{ min-height:148px; resize:vertical; }
.form__honey{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.form__note{ font-size:.88rem; color:var(--muted); margin-top:1.1rem; }
/* Progressive form-feedback: inline validation + submit loading state (JS-enhanced; native required/POST still work with JS off). */
.form input[aria-invalid="true"],.form textarea[aria-invalid="true"]{ border-color:oklch(0.50 0.18 27); box-shadow:0 0 0 3px oklch(0.50 0.18 27 / .15); }
.field__err{ display:none; margin-top:.4rem; font-size:.85rem; font-weight:500; color:oklch(0.50 0.18 27); }
.field__err:not(:empty){ display:block; }
.btn[aria-busy="true"]{ opacity:.78; cursor:progress; }
.aside{ padding-top:.5rem; }
.aside h2{ font-size:1.45rem; }
.aside dl{ margin:0; }
.aside dt{ font-family:var(--font-display); font-weight:600; font-size:.85rem; color:var(--muted); margin-top:1.2rem; }
.aside dd{ margin:.2rem 0 0; }

/* ---------- footer ------------------------------------------------------ */
.foot{ background:var(--brand-deep); color:oklch(0.84 0.02 250); padding:clamp(3rem,2rem + 3vw,4.5rem) 0 2.25rem; margin-top:2rem; }
.foot a{ color:oklch(0.9 0.02 250); }
.foot__top{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:2.5rem; align-items:start; }
.foot__promise{ font-family:var(--font-display); font-weight:700; font-size:clamp(1.4rem,1rem + 1.6vw,2rem); max-width:16ch; letter-spacing:-0.02em; color:var(--on-dark); }
.foot__cols{ display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:1.75rem 2.75rem; }
.foot__col h4{ font-family:var(--font-display); font-size:.78rem; text-transform:uppercase; letter-spacing:.07em; color:var(--accent); margin-bottom:.8rem; }
.foot__col ul{ list-style:none; margin:0; padding:0; }
.foot__col li{ margin-bottom:.55rem; }
.foot__col a{ color:oklch(0.86 0.02 250); text-decoration:none; font-size:.95rem; }
.foot__col a:hover{ color:#fff; }
.foot__bottom{ display:flex; flex-wrap:wrap; gap:.6rem 1.75rem; justify-content:space-between; border-top:1px solid oklch(1 0 0 / .12); margin-top:2.75rem; padding-top:1.75rem; color:oklch(0.72 0.02 250); font-size:.87rem; }
.foot__bottom a{ color:oklch(0.82 0.02 250); }

/* ---------- motion: reveals VISIBLE BY DEFAULT ------------------------- */
.reveal{ transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-pending{ opacity:0; transform:translateY(20px); }
@media (prefers-reduced-motion: reduce){ .reveal,.reveal.is-pending{ opacity:1; transform:none; transition:none; } }
