/* iGaming.dad — design tokens, resets, shared components
   Tokens mirror the design system: never hard-code a hex outside this file. */
:root{
  --bg:#08090B; --surface:#101217; --surface-2:#0D0F13; --surface-3:#171B22;
  --line:#23272F; --line-soft:#1B1F26; --line-strong:#333945;
  --text:#E9EBEE; --muted:#A0A7B4; --dim:#737B88;
  --accent:#C3F53C; --accent-hover:#D2FF5B; --on-accent:#0A0C05;
  --font-display:'Space Grotesk',system-ui,sans-serif;
  --font-body:Inter,system-ui,sans-serif;
  --font-mono:'JetBrains Mono',ui-monospace,monospace;
  --radius:0.75rem; --radius-sm:0.5rem; --radius-btn:0.25rem;
  --shell:75rem; --pad:1.5rem;
  --section:clamp(1.5rem,3.6vh,3rem); --gutter:1.25rem;
  --stack:clamp(1.25rem,2.8vh,2.5rem);   /* gap under a section heading */
  --header-h:4rem; --ticker-h:3rem;
  --ease:cubic-bezier(.22,.61,.36,1);
}
*,*::before,*::after{box-sizing:border-box}
/* Root scale. Every length in this stylesheet is expressed in rem, so this one
   rule scales the whole design the way browser zoom does — proportionally, not
   by restyling anything.
     ≤820px          16px  (phones: identical to before)
      820 → 1100px   ramps 16 → 20px
     ≥1100px         20px  = 125% of the original design, on every desktop
   Flat above 1100px on purpose: every desktop lands on exactly 1.25x, whatever
   its width or OS display scaling. Written in rem, not px, so a reader who has
   raised their browser's default font size keeps that as the floor. */
html{background:var(--bg);scroll-behavior:smooth;
  font-size:clamp(1rem, 1rem + (100vw - 51.25rem) / 70, 1.25rem)}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
body{margin:0;background:var(--bg);color:var(--text);font-family:var(--font-body);font-size:1rem;line-height:1.6;-webkit-font-smoothing:antialiased}
img,svg{display:block;max-width:100%}
a{color:var(--text);text-decoration:none;transition:color 120ms ease}
a:hover{color:var(--accent)}
:focus-visible{outline:2px solid var(--accent);outline-offset:3px}
h1,h2,h3,p,dd,dl,figure{margin:0}
input,textarea,button,select{font:inherit;color:inherit}
table{border-collapse:collapse;width:100%}
summary{list-style:none;cursor:pointer}
summary::-webkit-details-marker{display:none}
.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}

/* ---------- layout ---------- */
.shell{width:100%;max-width:var(--shell);margin:0 auto;padding:0 var(--gutter)}
.section{padding:var(--section) 0;border-top:1px solid var(--line)}
.section--flush{border-top:0}

/* ---------- section snapping (full-page / one-page scrolling) ----------
   Each section rests flush under the sticky header, and scroll-snap-stop:always
   means a single flick can never fly past one — hard scroll and soft scroll both
   land on exactly the next section.
   Strictness is `proximity`, not `mandatory`, on purpose: several sections are
   taller than one screen, and `mandatory` would refuse to rest in the middle of
   them, making that content unreachable. Proximity snaps at the boundaries and
   leaves tall sections free to scroll through. */
html{scroll-snap-type:y proximity;scroll-padding-top:var(--header-h);scroll-padding-bottom:var(--ticker-h)}
/* On a mouse-driven desktop the paging script in site.js owns the wheel and places
   every rest position exactly, so CSS snap is switched off there — left on it would
   tug at the mid-section steps. Touch devices and no-JS desktops keep the CSS snap. */
@media (min-width:821px) and (pointer:fine){html.js{scroll-snap-type:none}}
body{padding-bottom:var(--ticker-h)}
.hero,.section,.cta{scroll-snap-align:start;scroll-snap-stop:always;
  min-height:calc(100vh - var(--header-h) - var(--ticker-h));
  min-height:calc(100svh - var(--header-h) - var(--ticker-h));
  display:flex;flex-direction:column;justify-content:safe center}
.site-footer{scroll-snap-align:start;scroll-snap-stop:always}
.section__eyebrow{font-family:var(--font-mono);font-size:0.71875rem;letter-spacing:.16em;color:var(--dim);margin-bottom:0.75rem}
.section__head{display:flex;align-items:flex-end;justify-content:space-between;gap:2rem;flex-wrap:wrap}
/* Let the heading shrink instead of shoving the lede onto its own line — that
   wrap alone cost ~95px of height in every section. */
.section__head>h2{flex:1 1 22rem;min-width:0}
.section__head .section__lede{flex:0 1 26rem}
.section__lede{max-width:30rem;font-size:0.90625rem;line-height:1.75;color:var(--muted);text-wrap:pretty}
h1,h2,h3{font-family:var(--font-display);font-weight:600;letter-spacing:-.025em;text-wrap:pretty}
h2{font-size:2.5rem;line-height:1.08}
h3{font-size:1.1875rem;line-height:1.25;letter-spacing:-.01em}
.mono{font-family:var(--font-mono);font-variant-numeric:tabular-nums}
.accent{color:var(--accent)}
.dim{color:var(--dim)}

/* ---------- buttons ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:0.625rem;border-radius:var(--radius-btn);
  padding:0.9375rem 1.5rem;font-family:var(--font-mono);font-size:0.75rem;font-weight:500;letter-spacing:.08em;
  cursor:pointer;border:1px solid transparent;transition:background 120ms ease,border-color 120ms ease,color 120ms ease}
.btn--primary{background:var(--accent);border-color:var(--accent);color:var(--on-accent)}
.btn--primary:hover{background:var(--accent-hover);border-color:var(--accent-hover);color:var(--on-accent)}
.btn--ghost{background:transparent;border-color:var(--line-strong);color:var(--text)}
.btn--ghost:hover{border-color:var(--muted);background:var(--surface);color:var(--text)}
.btn--light{background:var(--text);border-color:var(--text);color:var(--bg)}
.btn--light:hover{background:#fff;border-color:#fff;color:var(--bg)}
.btn--sm{padding:0.5625rem 1.125rem;font-size:0.71875rem}
.btn--block{width:100%}
.btn-row{display:flex;gap:0.75rem;flex-wrap:wrap}

/* ---------- header ---------- */
.site-header{position:sticky;top:0;z-index:40;background:rgba(8,9,11,.72);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);border-bottom:1px solid transparent;transition:border-color 120ms ease}
.site-header.is-stuck{border-bottom-color:var(--line)}
.site-header__bar{height:4rem;display:flex;align-items:center;justify-content:space-between;gap:1.5rem}
.brand{display:inline-flex;align-items:center;gap:0.5rem;font-family:var(--font-mono);
  font-size:0.8125rem;letter-spacing:.02em;white-space:nowrap}
.brand__chip{width:1.5rem;height:1.5rem;flex:0 0 auto}
.brand__name{font-weight:500}
.brand span{color:var(--dim)}
.brand-group{display:flex;align-items:center;gap:0.75rem;min-width:0}
.tag{font-family:var(--font-mono);font-size:0.59375rem;letter-spacing:.12em;color:var(--on-accent);background:var(--accent);border-radius:0.25rem;padding:0.1875rem 0.4375rem;white-space:nowrap}
.site-nav{display:flex;gap:2rem;align-items:center}
.site-nav a{font-family:var(--font-mono);font-size:0.75rem;letter-spacing:.06em;color:var(--muted)}
.site-nav a:hover,.site-nav a[aria-current=page]{color:var(--text)}
.site-header__actions{display:flex;gap:0.75rem;align-items:center}
.icon-btn{width:2.25rem;height:2.25rem;border:1px solid var(--line);border-radius:var(--radius-btn);display:flex;align-items:center;justify-content:center;color:var(--muted);background:transparent;cursor:pointer;transition:border-color 120ms ease,color 120ms ease}
.icon-btn:hover{border-color:var(--line-strong);color:var(--text)}
.nav-toggle{display:none;flex-direction:column;gap:0.25rem}
.nav-toggle span{width:0.875rem;height:1px;background:var(--muted)}
.mobile-nav{display:none}

/* ---------- panels, tables ---------- */
.panel{position:relative;border:1px solid var(--line);border-radius:var(--radius);background:var(--surface);overflow:hidden}
.panel--accent{border-color:var(--accent)}
.panel__head{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:0.875rem 1.125rem;border-bottom:1px solid var(--line);background:var(--surface-2);
  font-family:var(--font-mono);font-size:0.65625rem;letter-spacing:.12em;color:var(--dim)}
.panel__foot{padding:0.875rem 1.125rem;font-family:var(--font-mono);font-size:0.65625rem;letter-spacing:.06em;color:var(--dim);line-height:1.7}
.live-dot{width:0.375rem;height:0.375rem;border-radius:50%;background:var(--accent);flex:0 0 auto}
@media (prefers-reduced-motion:no-preference){.live-dot{animation:pulse 2.4s ease-in-out infinite}}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.3}}
.table-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch}
.data-table{font-family:var(--font-mono);font-size:0.78125rem;font-variant-numeric:tabular-nums}
.data-table caption{text-align:left;padding:0.75rem 1.25rem;border-bottom:1px solid var(--line);font-size:0.65625rem;letter-spacing:.12em;color:var(--dim);background:var(--surface-2)}
.data-table th{padding:0;border-bottom:1px solid var(--line);background:var(--surface-2);text-align:left;font-weight:500}
.data-table th.num,.data-table td.num{text-align:right}
.data-table th button{width:100%;background:none;border:0;padding:0.5625rem 0.875rem;text-align:inherit;font-family:var(--font-mono);font-size:0.59375rem;font-weight:500;letter-spacing:.12em;color:var(--dim);white-space:nowrap;cursor:pointer;transition:color 120ms ease}
.data-table th button:hover,.data-table th[aria-sort]:not([aria-sort=none]) button{color:var(--text)}
.data-table th.static{padding:0.5625rem 0.875rem;font-size:0.59375rem;letter-spacing:.12em;color:var(--dim);white-space:nowrap}
.data-table td{padding:0.5625rem 0.875rem;border-bottom:1px solid var(--line-soft);color:var(--muted)}
.data-table tbody tr{transition:background 120ms ease}
.data-table tbody tr:hover{background:var(--surface-3)}
.data-table .strong{color:var(--text)}
.status{display:inline-flex;align-items:center;gap:0.5rem;white-space:nowrap}
.status::before{content:"";width:0.3125rem;height:0.3125rem;border-radius:50%;background:currentColor}
.status--ok{color:var(--accent)}
.status--neutral{color:var(--muted)}
.status--wait{color:var(--dim)}
.redacted{display:block;height:0.625rem;border-radius:2px;background:var(--line-strong);filter:blur(1.6px)}
.tg-link{font-family:var(--font-mono);font-size:0.71875rem;color:var(--dim);white-space:nowrap}
.tg-link:hover{color:var(--accent)}

/* ---------- Google sign-in ----------
   Every slot ships with the `hidden` attribute and stays that way until auth.js
   confirms a real client id, so an unconfigured build shows no dead button. The
   explicit [hidden] rules below matter: these are flex containers, and a display
   value would otherwise beat the UA's [hidden]{display:none}. */
.signin{display:flex;flex-direction:column;gap:0.625rem}
/* .btn and .signin both set a display value, which beats the UA's
   [hidden]{display:none} — so hiding them has to be stated. */
.signin[hidden],.panel__lock[hidden],[data-signin-fallback][hidden]{display:none}
.signin--header{flex-direction:row;align-items:center;gap:0;min-height:2.25rem}
.signin--header iframe{color-scheme:normal}

/* Inert stand-in used only by ?preview=signin, so the placement can be reviewed
   before Google Cloud is configured. Styled to Google's own spec so what you
   judge is what you will get. */
.gsi-preview{display:inline-flex;align-items:center;gap:0.625rem;cursor:pointer;
  height:2.5rem;padding:0 1rem;border-radius:1.25rem;border:1px solid #3C4043;
  background:#131417;color:#E3E3E3;font-family:Roboto,system-ui,sans-serif;
  font-size:0.875rem;font-weight:500;letter-spacing:.01em;white-space:nowrap;
  transition:background 120ms ease,border-color 120ms ease}
.gsi-preview:hover{background:#1B1D22;border-color:#5F6368}
.gsi-preview svg{flex:0 0 auto}
.signin--header .gsi-preview{height:2rem;font-size:0.8125rem;padding:0 0.875rem}
.gsi-preview--icon{width:2rem;height:2rem;padding:0;border-radius:50%;justify-content:center}
.preview-flag{position:fixed;left:0;right:0;top:0;z-index:60;margin:0;
  padding:0.5rem 1rem;text-align:center;background:#3A2E07;border-bottom:1px solid #5C4A0C;
  color:#F0CE6A;font-family:var(--font-mono);font-size:0.625rem;letter-spacing:.1em}
.signin--inline{margin-top:var(--stack);align-items:flex-start}
.signin__label{font-family:var(--font-mono);font-size:0.625rem;letter-spacing:.1em;
  color:var(--dim);line-height:1.5}
.signin__note{font-family:var(--font-mono);font-size:0.625rem;line-height:1.6;
  letter-spacing:.04em;color:#E8B84B;margin-top:0.25rem}
.signin.is-busy,.panel__lock.is-busy{opacity:.5;pointer-events:none}

/* The inventory panel: the visitor is looking straight at the rows the button
   unlocks, so the CTA sits on them rather than somewhere else on the page. */
.panel__lock{position:absolute;inset:auto 0 0 0;z-index:2;
  display:flex;flex-direction:column;align-items:center;gap:0.625rem;text-align:center;
  padding:5.25rem 1.5rem 1.5rem;
  background:linear-gradient(180deg,rgba(16,18,23,0),rgba(16,18,23,.88) 20%,rgba(13,15,19,.985) 44%)}
.panel__lock-title{font-family:var(--font-display);font-size:1.0625rem;font-weight:600;
  letter-spacing:-.01em;color:var(--text)}
.panel__lock-sub{font-size:0.84375rem;line-height:1.6;color:var(--muted);max-width:26rem;
  text-wrap:pretty}
@media (max-width:820px){
  .panel__lock{padding:2.5rem 1rem 1.25rem}
  .panel__lock-sub{display:none}
}

/* ---------- stats, chips, forms ---------- */
.stats{display:grid;grid-template-columns:repeat(5,1fr);border-top:1px solid var(--line);border-bottom:1px solid var(--line);margin-top:var(--stack)}
.stats>div{padding:1rem 1.25rem;border-right:1px solid var(--line)}
.stats>div:last-child{border-right:0}
.stats dd{font-family:var(--font-mono);font-size:1.375rem;white-space:nowrap;font-weight:500;letter-spacing:-.01em;font-variant-numeric:tabular-nums}
.stats dt{margin-top:0.5rem;font-family:var(--font-mono);font-size:0.625rem;letter-spacing:.12em;color:var(--dim);line-height:1.5}
.chips{display:flex;flex-wrap:wrap;gap:0.5rem}
.chip{font-family:var(--font-mono);font-size:0.65625rem;letter-spacing:.1em;padding:0.5625rem 0.875rem;border-radius:var(--radius-btn);
  background:transparent;color:var(--muted);border:1px solid var(--line);cursor:pointer;
  transition:background 120ms ease,border-color 120ms ease,color 120ms ease}
.chip:hover{border-color:var(--line-strong);color:var(--text)}
.chip[aria-pressed=true]{background:var(--accent);border-color:var(--accent);color:var(--on-accent)}
.field{display:flex;flex-direction:column;gap:0.625rem}
.label{font-family:var(--font-mono);font-size:0.65625rem;letter-spacing:.14em;color:var(--dim)}
.hint{font-family:var(--font-mono);font-size:0.625rem;letter-spacing:.06em;color:var(--dim);line-height:1.6}
.hint.is-ok{color:var(--accent)}
.input,.textarea{width:100%;background:var(--surface);color:var(--text);border:1px solid var(--line);border-radius:var(--radius-sm);
  padding:0.875rem;font-family:var(--font-mono);font-size:0.78125rem;transition:border-color 120ms ease}
.input:hover,.textarea:hover{border-color:var(--line-strong)}
.textarea{line-height:1.7;resize:vertical}
.textarea--prose{font-family:var(--font-body);font-size:0.875rem}
.input.is-ok{border-color:var(--accent)}
.field-row{display:flex;gap:0.5rem}
fieldset{border:0;margin:0;padding:0}
legend{padding:0;margin-bottom:0.5rem}
.option{display:block;padding:1.125rem;border-radius:var(--radius-sm);background:var(--surface);border:1px solid var(--line);cursor:pointer;transition:border-color 120ms ease,background 120ms ease}
.option:hover{border-color:var(--line-strong)}
.option:has(input:checked){background:var(--surface-3);border-color:var(--line-strong)}
.option input{accent-color:var(--accent);width:0.9375rem;height:0.9375rem;margin:0}
.option__top{display:flex;align-items:center;gap:0.625rem}
.option__name{font-family:var(--font-mono);font-size:0.65625rem;letter-spacing:.08em;color:var(--text)}
.option__price{display:block;margin-top:0.875rem;font-family:var(--font-display);font-size:1.375rem;font-weight:600;letter-spacing:-.02em}
.option__note{display:block;margin-top:0.375rem;font-family:var(--font-mono);font-size:0.625rem;letter-spacing:.06em;color:var(--dim);line-height:1.6}
.option--row{display:flex;align-items:center;gap:0.75rem;padding:1rem}
.option--row .option__note{margin:0}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:0.75rem}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:0.75rem}
.stack{display:flex;flex-direction:column}
.stack-40{gap:2.5rem}.stack-32{gap:2rem}.stack-16{gap:1rem}.stack-10{gap:0.625rem}

/* ---------- editorial columns / timeline / faq ---------- */
.cols{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--line);margin-top:var(--stack)}
.cols>div{padding:1.5rem 2rem;border-right:1px solid var(--line)}
.cols>div:first-child{padding-left:0}
.cols>div:last-child{border-right:0;padding-right:0}
.cols .num{font-family:var(--font-mono);font-size:0.65625rem;letter-spacing:.14em;color:var(--dim)}
.cols h3{margin:1.125rem 0 0.875rem}
.cols p{font-size:0.90625rem;line-height:1.8;color:var(--muted)}
.cards{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;margin-top:var(--stack)}
.cards>div{padding:1.5rem 1.75rem;border-right:1px solid var(--line)}
.cards>div:last-child{border-right:0}
.cards h3{font-size:1.0625rem;line-height:1.3;margin:0 0 0.875rem}
.cards p{font-size:0.875rem;line-height:1.8;color:var(--muted)}
.timeline{position:relative;margin-top:var(--stack);list-style:none;padding:0;display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.timeline::before{content:"";position:absolute;top:0.3125rem;left:0;right:0;height:1px;background:var(--line)}
.timeline>li{position:relative}
.dot{display:block;width:0.6875rem;height:0.6875rem;border-radius:50%;background:var(--bg);border:1px solid var(--accent)}
.dot--filled{background:var(--accent)}
.step{padding-top:1.75rem}
.step .num{font-family:var(--font-mono);font-size:0.65625rem;letter-spacing:.14em;color:var(--dim)}
.step h3{margin:0.875rem 0 0.75rem}
.step p{font-size:0.875rem;line-height:1.75;color:var(--muted);max-width:16.25rem}
.step--card{margin-top:1.75rem;padding:1.625rem;border:1px solid var(--line-strong);border-radius:var(--radius);background:var(--surface)}
.step--card p{max-width:none}
.step--card h3{font-size:1.3125rem;line-height:1.22}
.step__flags{display:flex;align-items:center;gap:0.625rem;flex-wrap:wrap}
.faq{border-top:1px solid var(--line)}
.faq details{border-bottom:1px solid var(--line)}
.faq summary{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;padding:1rem 0.25rem;
  font-family:var(--font-display);font-size:1.0625rem;font-weight:500;line-height:1.4;transition:color 120ms ease}
.faq summary:hover{color:var(--accent)}
.faq summary svg{flex:0 0 auto;color:var(--dim);transition:transform 120ms ease,color 120ms ease}
.faq details[open] summary svg{transform:rotate(180deg);color:var(--accent)}
.faq p{padding:0 4rem 1.75rem 0.25rem;font-size:0.9375rem;line-height:1.8;color:var(--muted)}
.faq-layout{display:grid;grid-template-columns:minmax(0,.42fr) minmax(0,1fr);gap:4.5rem;align-items:start}

/* ---------- ticker, cta, footer ---------- */
/* Running text pinned to the bottom of every screen size. The track holds two
   identical sets and travels exactly -50%, so the loop has no seam. The second
   set is aria-hidden — sighted users see a loop, screen readers hear the list once. */
.ticker{position:fixed;left:0;right:0;bottom:0;z-index:50;height:var(--ticker-h);
  display:flex;align-items:center;overflow:hidden;
  border-top:1px solid var(--line);background:rgba(10,11,14,.94);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px)}
.ticker__track{display:flex;flex:0 0 auto;width:max-content;will-change:transform}
.ticker__set{display:flex;flex:0 0 auto;align-items:center;margin:0;padding:0;list-style:none;
  font-family:var(--font-mono);font-size:0.65625rem;letter-spacing:.1em;color:var(--dim);white-space:nowrap}
.ticker__set li{display:flex;align-items:center}
.ticker__set li::after{content:"/";color:var(--line-strong);margin:0 1.75rem}
@keyframes ticker{from{transform:translate3d(0,0,0)}to{transform:translate3d(-50%,0,0)}}
@media (prefers-reduced-motion:no-preference){
  .ticker__track{animation:ticker 44s linear infinite}
  .ticker:hover .ticker__track,.ticker:focus-within .ticker__track{animation-play-state:paused}
}

/* Scroll cue. Fixed rather than parked at the foot of the hero, because the hero
   is taller than one screen — it has to be visible on first paint. */
.scroll-cue{position:fixed;left:50%;bottom:calc(var(--ticker-h) + 1.25rem);transform:translateX(-50%);
  z-index:45;display:inline-flex;align-items:center;gap:0.625rem;
  padding:0.5625rem 1.125rem;border:1px solid var(--line-strong);border-radius:2rem;
  background:rgba(10,11,14,.88);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  font-family:var(--font-mono);font-size:0.5625rem;letter-spacing:.18em;color:var(--muted);
  transition:opacity 240ms ease,visibility 240ms ease,color 120ms ease,border-color 120ms ease}
.scroll-cue svg{color:var(--accent);width:0.875rem;height:0.875rem}
.scroll-cue:hover{color:var(--text);border-color:var(--accent)}
.is-scrolled .scroll-cue{opacity:0;visibility:hidden}
@keyframes cue{0%,100%{transform:translateY(0);opacity:.5}50%{transform:translateY(0.4rem);opacity:1}}
@media (prefers-reduced-motion:no-preference){.scroll-cue svg{animation:cue 1.9s var(--ease) infinite}}
.cta{border-top:1px solid var(--accent);background:var(--surface);text-align:center}
.cta .shell{padding-top:var(--section);padding-bottom:var(--section)}
.cta h2{font-size:3rem;line-height:1.06;letter-spacing:-.03em;max-width:52.5rem;margin:0 auto}
.cta .btn-row{justify-content:center;margin-top:2.25rem}
.site-footer{border-top:1px solid var(--line);background:var(--bg)}
.site-footer__grid{padding-top:var(--section);display:grid;grid-template-columns:1.2fr repeat(4,1fr);gap:2rem 3rem}
.site-footer p{margin-top:1rem;font-size:0.84375rem;line-height:1.8;color:var(--dim);max-width:16.25rem}
.site-footer h2{font-family:var(--font-mono);font-size:0.625rem;letter-spacing:.14em;color:var(--dim);margin-bottom:1.25rem;font-weight:400}
.site-footer ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:0.75rem}
.site-footer li a{font-size:0.84375rem;color:var(--muted)}
.site-footer li a:hover{color:var(--text)}
.site-footer__legal{margin-top:var(--stack);border-top:1px solid var(--line);padding:1.75rem 0 3rem;display:flex;flex-wrap:wrap;
  align-items:center;justify-content:space-between;gap:1.25rem 2rem;font-family:var(--font-mono);font-size:0.65625rem;letter-spacing:.06em;color:var(--dim)}
.site-footer__legal nav{display:flex;gap:1.5rem;flex-wrap:wrap}
.site-footer__legal a{color:var(--dim)}
.site-footer__legal a:hover{color:var(--text)}

/* ---------- hover: the interactive cells ----------
   One treatment shared by every card-like cell on both pages: the stat row, the
   price rail, the editorial columns, the guarantee cards, the process steps, and
   the partner page's terms, facts and dashboard tiles. A lime rail wipes across
   the top, the ground lifts a shade, the figure takes the accent, and a soft glow
   tracks the cursor (--mx/--my come from site.js on pointer-fine devices; without
   JS the glow simply sits centred). No transforms — these live inside hairline
   grids where a lift would open visible seams. */
.hover-cell,
:is(.stats,.rail,.cols,.cards,.terms,.facts,.dash__stats)>div,
.timeline .step{
  position:relative;isolation:isolate;
  transition:background 200ms var(--ease),border-color 200ms var(--ease)}

.hover-cell::before,
:is(.stats,.rail,.cols,.cards,.terms,.facts,.dash__stats)>div::before,
.timeline .step::before{
  content:"";position:absolute;inset:0;z-index:-1;opacity:0;pointer-events:none;
  background:radial-gradient(16rem 16rem at var(--mx,50%) var(--my,50%),rgba(195,245,60,.09),transparent 72%);
  transition:opacity 240ms var(--ease)}

.hover-cell::after,
:is(.stats,.rail,.cols,.cards,.terms,.facts,.dash__stats)>div::after,
.timeline .step::after{
  content:"";position:absolute;left:0;right:0;top:0;height:2px;background:var(--accent);
  transform:scaleX(0);transform-origin:left center;pointer-events:none;
  transition:transform 300ms var(--ease)}

:is(.stats,.rail,.cols,.cards,.terms,.facts,.dash__stats)>div:hover,
.timeline .step:hover{background:var(--surface-3)}
/* Two cells set their own resting background in pages.css, which loads after this
   file and ties on specificity — so they need their hover stated explicitly. */
.rail>div:first-child:hover{background:#1E2430}
.terms>div:first-child:hover{background:var(--surface-3)}

:is(.stats,.rail,.cols,.cards,.terms,.facts,.dash__stats)>div:hover::before,
.timeline .step:hover::before{opacity:1}
:is(.stats,.rail,.cols,.cards,.terms,.facts,.dash__stats)>div:hover::after,
.timeline .step:hover::after{transform:scaleX(1)}

/* the figure or index number is what should catch the eye */
.stats>div:hover dd,.rail>div:hover b,.facts>div:hover dd,.dash__stats>div:hover dd,
.cols>div:hover .num,.terms>div:hover .num,.timeline .step:hover .num{color:var(--accent)}
.cols>div:hover h3,.cards>div:hover h3,.terms>div:hover h3,.timeline .step:hover h3{color:var(--text)}
.stats dd,.rail b,.facts dd,.dash__stats dd,.cols .num,.terms .num,
.timeline .step .num,.cols h3,.cards h3,.terms h3,.timeline .step h3{
  transition:color 200ms var(--ease)}

@media (prefers-reduced-motion:reduce){
  .hover-cell::after,
  :is(.stats,.rail,.cols,.cards,.terms,.facts,.dash__stats)>div::after,
  .timeline .step::after{transition:none}
  .hover-cell::before,
  :is(.stats,.rail,.cols,.cards,.terms,.facts,.dash__stats)>div::before,
  .timeline .step::before{display:none}
}

/* ---------- reveal (progressive enhancement) ---------- */
.js [data-reveal]{opacity:0}
.js [data-reveal].is-in{animation:rise 400ms var(--ease) both;animation-delay:var(--d,0ms)}
@keyframes rise{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}
@media (prefers-reduced-motion:reduce){.js [data-reveal]{opacity:1}.js [data-reveal].is-in{animation:none}}

/* ---------- responsive: the 390 artboard ---------- */
@media (max-width:1100px){
  .faq-layout{grid-template-columns:1fr;gap:2rem}
  .cols,.cards{grid-template-columns:1fr 1fr}
  .cols>div{padding:1.75rem}
  .cols>div:first-child,.cols>div:last-child{padding-left:1.75rem;padding-right:1.75rem}
  .cols>div:nth-child(2n){border-right:0}
  .cols>div:nth-child(-n+2){border-bottom:1px solid var(--line)}
  .cards>div:nth-child(2n){border-right:0}
  .cards>div:nth-child(-n+2){border-bottom:1px solid var(--line)}
  .timeline{grid-template-columns:1fr 1fr}
  .timeline::before{display:none}
}
@media (max-width:820px){
  :root{--section:6rem}
  .site-nav{display:none}
  .nav-toggle{display:flex}
  .mobile-nav{display:none;border-top:1px solid var(--line-soft)}
  .mobile-nav.is-open{display:block}
  .mobile-nav a{display:block;padding:0.875rem var(--gutter);border-bottom:1px solid var(--line-soft);
    font-family:var(--font-mono);font-size:0.75rem;letter-spacing:.08em;color:var(--muted)}
  h1{font-size:2.625rem!important;line-height:1.04!important}
  h2{font-size:1.875rem;line-height:1.1}
  .cta h2{font-size:1.875rem;line-height:1.1}
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr 1fr;border-bottom:0;margin-top:3rem}
  .stats>div{padding:1.25rem 1rem}
  .stats>div:nth-child(2n){border-right:0}
  .stats>div:nth-child(-n+4){border-bottom:1px solid var(--line)}
  .stats>div:last-child{border-right:0}
  .stats dd{font-size:1.3125rem}
  .cols,.cards{grid-template-columns:1fr;border-radius:var(--radius)}
  .cols{border:0}
  .cols>div{padding:1.75rem 0!important;border-right:0;border-bottom:1px solid var(--line)}
  .cards>div{border-right:0;border-bottom:1px solid var(--line)}
  .cards>div:last-child,.cols>div:last-child{border-bottom:0}
  .timeline{grid-template-columns:1fr;padding-left:1.75rem;gap:0}
  .timeline::before{display:block;left:0.3125rem;top:0.375rem;bottom:1.5rem;right:auto;width:1px;height:auto}
  .timeline>li{padding-bottom:2.25rem}
  .timeline>li:last-child{padding-bottom:0}
  .timeline .dot{position:absolute;left:-1.75rem;top:0.3125rem}
  .step{padding-top:0}
  .step--card{margin-top:0}
  /* The ticker stays a single running line at every size — it never stacks. */
  :root{--ticker-h:2.625rem}
  .ticker__set{font-size:0.625rem}
  .ticker__set li::after{margin:0 1.25rem}
  .ticker__track{animation-duration:30s}
  .scroll-cue{bottom:calc(var(--ticker-h) + 1rem)}
  .faq summary{font-size:1rem;padding:1.25rem 2px}
  .faq p{padding:0 1.5rem 1.5rem 2px;font-size:0.90625rem}
  .site-footer__grid{grid-template-columns:1fr 1fr;gap:2.25rem 1.25rem;padding-top:3.5rem}
  .site-footer__grid>div:first-child{grid-column:1/-1}
  .site-footer p{max-width:none}
  .site-footer__legal{flex-direction:column;align-items:flex-start;margin-top:2.5rem}
  .btn-row{flex-direction:column}
  .btn-row .btn{width:100%}
  .cta .shell{padding-top:4.5rem;padding-bottom:4.5rem}
}
