/* SlotSonar — instrument-grade dark UI, sonar/radar brand.
 * Mobile-first (390px). Colour only ever means temperature.
 * Emerald accent + orange sonar ping reserved for brand/interactive — never data.
 */

/* ---------- tokens ---------- */
:root {
  /* substrate: near-black -> deep slate */
  --bg: oklch(0.155 0.012 265);
  --bg-1: oklch(0.185 0.014 265);
  --bg-2: oklch(0.215 0.016 265);
  --panel: oklch(0.205 0.015 265 / 0.72);
  --panel-solid: oklch(0.205 0.015 265);
  --hair: oklch(0.98 0.01 265 / 0.10);
  --hair-2: oklch(0.98 0.01 265 / 0.05);
  --ink: oklch(0.95 0.008 265);
  --ink-dim: oklch(0.78 0.01 265);
  --muted: oklch(0.60 0.012 265);
  --faint: oklch(0.46 0.012 265);

  /* thermal ramp — the single semantic spine */
  --t-cold: oklch(0.72 0.14 235);
  --t-warm: oklch(0.62 0.20 305);
  --t-hot: oklch(0.80 0.17 66);
  --t-ultra: oklch(0.78 0.24 32);

  /* interactive accent — emerald from the logo, off the ramp, never reads as data */
  --acc: oklch(0.82 0.17 163);
  --acc-ink: oklch(0.20 0.05 163);
  /* sonar ping — the orange orbiting dot from the logo, for brand pulses only */
  --ping: oklch(0.82 0.15 72);

  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --disp: 'Space Grotesk', system-ui, sans-serif;

  --r: 10px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--disp);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* subtle scanline + grain substrate, fixed so it feels like a screen */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, oklch(0.30 0.04 175 / 0.35), transparent 60%),
    repeating-linear-gradient(0deg, oklch(1 0 0 / 0.014) 0 1px, transparent 1px 3px);
}
body > * { position: relative; z-index: 1; }

a { color: var(--acc); text-decoration: none; }
a:hover { color: oklch(0.92 0.16 163); }
h1, h2, h3, p { margin: 0; text-wrap: pretty; }
button { font-family: inherit; }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; font-feature-settings: 'tnum' 1; }
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
}
.h-sec { font-size: clamp(26px, 6vw, 42px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; margin: 12px 0 10px; }
.sub-sec { color: var(--ink-dim); max-width: 60ch; font-size: 15px; }

/* ---------- CTA (accent only) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--disp); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: var(--r); border: 1px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  min-height: 48px;
}
.btn-primary {
  background: var(--acc); color: var(--acc-ink);
  box-shadow: 0 0 0 1px oklch(0.86 0.19 163 / 0.4), 0 10px 30px -10px oklch(0.86 0.19 163 / 0.5);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px oklch(0.9 0.19 163 / 0.6), 0 14px 34px -10px oklch(0.86 0.19 163 / 0.7); }
.btn-ghost {
  background: oklch(1 0 0 / 0.03); color: var(--ink);
  border-color: var(--hair);
}
.btn-ghost:hover { border-color: oklch(1 0 0 / 0.25); background: oklch(1 0 0 / 0.06); }

/* chip weight for "casino" feel: subtle inner bevel */
.btn::after { content: none; }

/* ---------- header ---------- */
header.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: oklch(0.155 0.012 265 / 0.72);
  border-bottom: 1px solid var(--hair);
}
.nav-in { display: flex; align-items: center; gap: 14px; height: 60px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.01em; }
.brand .mark {
  width: 28px; height: 28px; flex: none; position: relative;
}
.brand .mark svg { width: 100%; height: 100%; display: block; overflow: visible; }
.brand .mark .orbit { transform-origin: 16px 16px; animation: orbit 4.5s linear infinite; }
@keyframes orbit { to { transform: rotate(360deg); } }
.brand b { color: var(--ink); }
.brand .son { color: var(--acc); }
.brand .tld { color: var(--muted); font-family: var(--mono); font-size: 11px; }
.nav-links { display: none; gap: 22px; margin-left: 16px; }
.nav-links a { color: var(--ink-dim); font-size: 14px; }
.nav-links a:hover { color: var(--ink); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.lang-sw { display: flex; gap: 2px; padding: 3px; border: 1px solid var(--hair); border-radius: 8px; }
.lang-sw button {
  background: transparent; border: 0; color: var(--muted); font-family: var(--mono);
  font-size: 11px; padding: 5px 8px; border-radius: 5px; cursor: pointer; letter-spacing: .08em;
}
.lang-sw button[aria-pressed="true"] { background: oklch(1 0 0 / 0.08); color: var(--ink); }
.nav .btn { padding: 9px 15px; min-height: 40px; font-size: 13px; }

/* live status pill */
.livepill { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; color: var(--ink-dim); }
.dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--acc); box-shadow: 0 0 10px var(--acc); }
.dot::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; border: 1px solid var(--acc); animation: sonar 1.9s ease-out infinite; }
@keyframes sonar { 0% { transform: scale(0.5); opacity: 0.9; } 100% { transform: scale(2.6); opacity: 0; } }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.7); } }

/* ---------- hero ---------- */
.hero { padding-top: 30px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.hero h1 { font-size: clamp(34px, 10vw, 58px); font-weight: 600; letter-spacing: -0.035em; line-height: 0.98; margin: 16px 0 0; }
.hero h1 .accent { color: transparent; background: linear-gradient(100deg, var(--t-hot), var(--t-ultra) 60%, var(--t-warm)); -webkit-background-clip: text; background-clip: text; }
.hero p.lede { color: var(--ink-dim); font-size: 16px; margin-top: 18px; max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-note { margin-top: 16px; color: var(--faint); font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; }

/* HUD panel around the instrument */
.instr {
  border: 1px solid var(--hair); border-radius: 16px;
  background: linear-gradient(180deg, oklch(0.2 0.015 265 / 0.6), oklch(0.17 0.013 265 / 0.6));
  box-shadow: 0 40px 80px -40px oklch(0 0 0 / 0.8), inset 0 1px 0 oklch(1 0 0 / 0.04);
  overflow: hidden;
}
.instr-head { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--hair-2); }
.instr-title { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim); }
.instr-head .spacer { flex: 1; }
.upd { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.upd b { color: var(--ink); font-weight: 500; }

.lattice-wrap { position: relative; padding: 14px; }
/* was 1:1 for the old 8x8 chip lattice. With a 5x3 grid of square slot tiles the
   stage must match, or each tile stretches to portrait and crops the artwork. */
.lattice-stage { position: relative; width: 100%; aspect-ratio: 2 / 1; }
.lattice-cells { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(3, 1fr); gap: 5px; }
/* Each tile is a real slot now, so the artwork has to stay readable: light heat
   wash + coloured frame instead of a solid colour fill. */
.lcell {
  border: 1.5px solid oklch(1 0 0 / 0.12); padding: 0; margin: 0; border-radius: 6px;
  cursor: crosshair; position: relative; overflow: hidden;
  background: oklch(0.20 0.015 255);
  display: grid; place-items: center;
  transition: border-color 1.05s ease, box-shadow 1.05s ease;
  animation: breathe 3.8s ease-in-out infinite;
}
.lcell .art { position: absolute; inset: 0; background: center / cover no-repeat; transition: filter .6s ease; }
.lcell::before { content: ''; position: absolute; inset: 0; z-index: 1; background: var(--tint, transparent);
  mix-blend-mode: overlay; transition: background 1.05s ease; }
.lcell .lc-pct { position: relative; z-index: 3; font-family: var(--mono, ui-monospace, monospace);
  font-size: 9.5px; font-weight: 700; letter-spacing: -.02em; color: oklch(0.99 0 0);
  text-shadow: 0 1px 3px #000, 0 0 7px rgba(0,0,0,.95); }
.lcell::after { content: ''; position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(circle at 50% 50%, oklch(0.08 0.01 255 / .72) 0%, oklch(0.08 0.01 255 / .3) 62%, oklch(0.08 0.01 255 / .1) 100%); }
/* hot = bright frame + glow, cold = dull and desaturated, readable at a glance */
.lcell.t-ultra { border-width: 2px; }
.lcell.t-ultra .art { filter: saturate(1.1); }
.lcell.t-hot   { border-width: 2px; }
.lcell.t-hot .art { filter: none; }
.lcell.t-warm  { border-width: 1.5px; }
.lcell.t-warm .art { filter: saturate(.8) brightness(.8) blur(1px); }
.lcell.t-cold  { border-width: 1px; }
.lcell.t-cold .art { filter: saturate(.25) brightness(.45) blur(2.4px); }
.lcell.t-cold .lc-pct { color: oklch(0.78 0.05 235); }
.lcell .lc-nm { display: none; padding: 3px 4px; text-align: left; width: 100%;
  font-family: var(--mono, ui-monospace, monospace); font-size: 6.5px; line-height: 1.1;
  color: oklch(0.97 0 0 / .92); text-shadow: 0 1px 3px rgba(0,0,0,.95);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lcell:focus-visible { outline: 2px solid var(--acc); outline-offset: 2px; z-index: 3; }
.lcell.ultra::after { content: ''; position: absolute; inset: 3px; border: 1.5px solid oklch(0.96 0.03 60 / 0.9); border-radius: 4px; pointer-events: none; }
@keyframes breathe { 0%, 100% { opacity: 0.9; } 50% { opacity: 1; } }
/* sweep re-scan line */
.sweep {
  position: absolute; top: 0; bottom: 0; width: 64px; pointer-events: none; z-index: 2; border-radius: 4px;
  background: linear-gradient(90deg, transparent, oklch(0.9 0.05 235 / 0.14) 45%, oklch(0.95 0.04 235 / 0.2) 50%, oklch(0.9 0.05 235 / 0.14) 55%, transparent);
  animation: sweep 5.2s linear infinite;
}
@keyframes sweep { from { left: -64px; } to { left: 100%; } }

/* thermal probe readout */
.probe {
  position: absolute; z-index: 5; pointer-events: none;
  min-width: 168px; padding: 10px 12px; border-radius: 10px;
  background: oklch(0.14 0.012 265 / 0.94); border: 1px solid var(--hair);
  box-shadow: 0 20px 40px -18px oklch(0 0 0 / 0.9);
  font-family: var(--mono); font-size: 11.5px; opacity: 0; transition: opacity .12s ease;
  transform: translate(-50%, -118%);
}
.probe.on { opacity: 1; }
.probe .pn { font-family: var(--disp); font-weight: 600; font-size: 13px; color: var(--ink); margin-bottom: 6px; }
.probe .prow { display: flex; justify-content: space-between; gap: 14px; color: var(--muted); }
.probe .prow b { color: var(--ink); font-weight: 500; }
.probe .ptier { display: inline-flex; align-items: center; gap: 6px; }

.legend { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding: 10px 14px 14px; border-top: 1px solid var(--hair-2); }
.legend .lg-title { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; color: var(--faint); text-transform: uppercase; }
.legend .ramp { flex: 1; min-width: 120px; height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, var(--t-cold), var(--t-warm) 40%, var(--t-hot) 74%, var(--t-ultra)); }
.legend .marks { display: flex; gap: 12px; }
.legend .mk { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11px; color: var(--muted); }
.legend .sw { width: 10px; height: 10px; border-radius: 3px; }

/* ---------- 24h ribbon ---------- */
.ribbon { padding: 12px 14px 16px; border-top: 1px solid var(--hair-2); }
.ribbon-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.ribbon-head .rt { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-dim); }
.ribbon-head .rh { font-family: var(--mono); font-size: 11px; color: var(--faint); margin-left: auto; }
.ribbon-track { position: relative; height: 54px; border-radius: 8px; overflow: hidden; border: 1px solid var(--hair-2); cursor: ew-resize; touch-action: none; }
.ribbon-svg { width: 100%; height: 100%; display: block; }
.ribbon-svg svg { width: 100%; height: 100%; display: block; }
.playhead { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--acc); box-shadow: 0 0 10px var(--acc); pointer-events: none; }
.playhead::after { content: ''; position: absolute; top: -3px; left: -4px; width: 10px; height: 10px; border-radius: 50%; background: var(--acc); box-shadow: 0 0 10px var(--acc); }
.ribbon-time { position: absolute; top: 6px; transform: translateX(-50%); font-family: var(--mono); font-size: 10.5px; padding: 2px 6px; border-radius: 5px; background: oklch(0.12 0 0 / 0.8); color: var(--ink); pointer-events: none; white-space: nowrap; }
.ribbon-scale { display: flex; justify-content: space-between; margin-top: 6px; font-family: var(--mono); font-size: 10px; color: var(--faint); }

/* ---------- ULTRA ticker ---------- */
.ticker { border-top: 1px solid var(--hair-2); border-bottom: 1px solid var(--hair-2); background: oklch(0.13 0.012 265); overflow: hidden; }
.ticker-in { display: flex; align-items: center; gap: 10px; padding: 9px 14px; }
.ticker-tag { flex: none; font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: var(--t-ultra); border: 1px solid oklch(0.78 0.24 32 / 0.4); border-radius: 5px; padding: 3px 7px; }
.ticker-view { flex: 1; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.ticker-rail { display: inline-flex; gap: 34px; white-space: nowrap; animation: marquee 42s linear infinite; }
.ticker-rail span { font-family: var(--mono); font-size: 12px; color: var(--ink-dim); }
.ticker-rail span b { color: var(--ink); }
.ticker-rail .g { color: var(--t-ultra); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- proof strip ---------- */
.proof { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hair-2); border: 1px solid var(--hair); border-radius: 12px; overflow: hidden; margin-top: 22px; }
.proof .cell { background: var(--bg-1); padding: 16px; }
.proof .pv { font-family: var(--mono); font-size: 26px; font-weight: 500; letter-spacing: -0.02em; color: var(--ink); }
.proof .pl { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ---------- ranked table ---------- */
.tbl-shell { border: 1px solid var(--hair); border-radius: 14px; overflow: hidden; background: var(--panel-solid); }
.tbl-scroll { overflow-x: auto; }
table.sig { width: 100%; border-collapse: collapse; min-width: 560px; }
table.sig th, table.sig td { padding: 11px 12px; text-align: left; border-bottom: 1px solid var(--hair-2); }
table.sig thead th { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); font-weight: 500; position: sticky; top: 0; background: var(--bg-1); }
table.sig tbody tr { transition: background .15s ease; }
table.sig tbody tr:hover { background: oklch(1 0 0 / 0.03); }
.t-rank { font-family: var(--mono); color: var(--muted); width: 40px; }
.t-game { font-weight: 500; }
.t-game small { display: block; font-family: var(--mono); font-size: 10.5px; color: var(--faint); font-weight: 400; }
.t-signal { font-family: var(--mono); font-size: 16px; font-variant-numeric: tabular-nums; }
.t-delta { font-family: var(--mono); font-size: 12.5px; font-variant-numeric: tabular-nums; }
.t-delta.up { color: var(--t-hot); }
.t-delta.down { color: var(--t-cold); }
.t-base { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.tier-chip { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; padding: 3px 8px; border-radius: 999px; border: 1px solid currentColor; }
.tier-chip .g { font-size: 11px; }
.spark { display: block; }
.go-link { font-family: var(--mono); font-size: 11px; color: var(--acc); border: 1px solid oklch(0.86 0.19 163 / 0.35); padding: 5px 10px; border-radius: 7px; white-space: nowrap; }
.go-link:hover { background: oklch(0.86 0.19 163 / 0.1); }
.tbl-foot { padding: 11px 14px; font-family: var(--mono); font-size: 11px; color: var(--faint); border-top: 1px solid var(--hair-2); display: flex; gap: 8px; align-items: center; }

/* ---------- how it works (instrument diagrams) ---------- */
.how-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
.how-card { border: 1px solid var(--hair); border-radius: 14px; background: var(--panel-solid); padding: 18px; }
.how-card .hn { font-family: var(--mono); font-size: 12px; color: var(--faint); letter-spacing: .1em; }
.how-card h3 { font-size: 19px; font-weight: 600; margin: 6px 0 8px; }
.how-card p { color: var(--ink-dim); font-size: 14px; }
.how-diagram { height: 120px; margin-top: 14px; border-radius: 10px; border: 1px solid var(--hair-2); background: oklch(0.14 0.012 265); overflow: hidden; }
.how-diagram svg { width: 100%; height: 100%; display: block; }

/* ---------- terminal ---------- */
.term { border: 1px solid var(--hair); border-radius: 14px; overflow: hidden; background: oklch(0.12 0.012 265); margin-top: 28px; }
.term-bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-bottom: 1px solid var(--hair-2); background: oklch(0.16 0.012 265); }
.term-bar .tl { display: flex; gap: 6px; }
.term-bar .tl i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.term-bar .tt { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-left: 6px; }
.term-body { padding: 14px; font-family: var(--mono); font-size: 12.5px; line-height: 1.65; height: 260px; overflow: hidden; }
.term-body .ln { white-space: pre-wrap; color: var(--ink-dim); }
.term-body .ln .ts { color: var(--faint); }
.term-body .ln .ok { color: var(--acc); }
.term-body .ln .warn { color: var(--t-hot); }
.term-body .ln .ultra { color: var(--t-ultra); }
.term-body .cursor { display: inline-block; width: 8px; height: 14px; background: var(--acc); vertical-align: -2px; animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ---------- testimonials ---------- */
.tests { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
.test { border: 1px solid var(--hair); border-radius: 14px; background: var(--panel-solid); overflow: hidden; }
.test-h { display: flex; align-items: center; gap: 8px; padding: 9px 13px; border-bottom: 1px solid var(--hair-2); background: oklch(0.16 0.012 265); font-family: var(--mono); font-size: 11px; color: var(--muted); }
.test-h .rec { width: 8px; height: 8px; border-radius: 50%; background: var(--t-hot); box-shadow: 0 0 8px var(--t-hot); }
.test-b { padding: 15px; }
.test-b p { font-size: 15px; color: var(--ink); }
.test-b .who { margin-top: 12px; font-family: var(--mono); font-size: 11px; color: var(--muted); }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 30px; }
.price-card { position: relative; border: 1px solid var(--hair); border-radius: 16px; background: var(--panel-solid); padding: 24px; }
.price-card.year .price-tag { padding-right: 0; }
.price-card.year .price-badge { position: static; display: inline-flex; margin-bottom: 12px; }
.price-card.trial { border-color: oklch(0.82 0.15 72 / 0.35); background: linear-gradient(180deg, oklch(0.82 0.15 72 / 0.05), var(--panel-solid) 60%); }
.price-card.trial .price-amt .pp { color: var(--acc); }
.price-card.year { border-color: oklch(0.86 0.19 163 / 0.4); box-shadow: 0 0 0 1px oklch(0.86 0.19 163 / 0.18), 0 30px 60px -30px oklch(0.86 0.19 163 / 0.25); }
.price-tag { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.price-badge { position: absolute; top: 18px; right: 18px; font-family: var(--mono); font-size: 11px; color: var(--acc-ink); background: var(--acc); padding: 4px 9px; border-radius: 999px; font-weight: 600; }
.price-amt { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 2px; }
.price-amt .pp { font-family: var(--mono); font-size: 44px; font-weight: 500; letter-spacing: -0.02em; }
.price-amt .per { color: var(--muted); font-family: var(--mono); font-size: 14px; }
.price-note { color: var(--muted); font-size: 13px; }
.price-equiv { font-family: var(--mono); font-size: 12px; color: var(--acc); }
.price-was { display: flex; align-items: baseline; gap: 10px; margin: 2px 0 2px; }
.price-was .strike { font-family: var(--mono); font-size: 15px; color: var(--faint); text-decoration: line-through; }
.price-trust { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 18px 0 6px; }
.price-trust .pt { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 12px; color: var(--ink-dim); }
.price-trust .pt svg { width: 15px; height: 15px; color: var(--acc); }
.price-card .btn { width: 100%; margin: 18px 0 16px; }
.price-badge { white-space: nowrap; }
.price-feats { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.price-feats li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-dim); align-items: flex-start; }
.price-feats li::before { content: '\2713'; color: var(--acc); font-family: var(--mono); flex: none; }
.price-feats li.hl { color: var(--ink); font-weight: 500; }
.price-foot { display: flex; align-items: center; gap: 9px; justify-content: center; margin-top: 22px; font-size: 13px; color: var(--muted); text-align: center; }
.price-foot svg { width: 15px; height: 15px; color: var(--acc); flex: none; }

/* ---------- faq ---------- */
.faq-list { margin-top: 26px; border: 1px solid var(--hair); border-radius: 14px; overflow: hidden; background: var(--panel-solid); }
.faq-item { border-bottom: 1px solid var(--hair-2); }
.faq-item:last-child { border-bottom: 0; }
.faq-q { width: 100%; text-align: left; background: transparent; border: 0; color: var(--ink); font-family: var(--disp); font-size: 16px; font-weight: 500; padding: 18px 16px; cursor: pointer; display: flex; align-items: center; gap: 12px; }
.faq-q .qi { margin-left: auto; font-family: var(--mono); color: var(--muted); transition: transform .2s ease; flex: none; }
.faq-item[open] .qi, .faq-item.open .qi { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a p { padding: 0 16px 18px; color: var(--ink-dim); font-size: 14.5px; max-width: 68ch; }

/* ---------- footer ---------- */
footer.foot { border-top: 1px solid var(--hair); margin-top: 40px; padding: 40px 0 60px; background: oklch(0.13 0.012 265); }
.foot-cta { border: 1px solid var(--hair); border-radius: 16px; padding: 26px; background: linear-gradient(180deg, oklch(0.2 0.015 265 / 0.6), oklch(0.16 0.013 265 / 0.6)); display: flex; flex-direction: column; gap: 16px; margin-bottom: 34px; }
.foot-cta h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.rg { border: 1px solid oklch(0.80 0.17 66 / 0.28); border-radius: 12px; padding: 16px; background: oklch(0.80 0.17 66 / 0.05); }
.rg .rg-h { display: flex; align-items: center; gap: 10px; font-weight: 600; margin-bottom: 8px; }
.rg .age { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--t-hot); border: 1.5px solid var(--t-hot); border-radius: 6px; padding: 2px 7px; }
.rg p { color: var(--ink-dim); font-size: 13px; }
.rg .rg-help { margin-top: 8px; font-family: var(--mono); font-size: 12px; color: var(--muted); }
.foot-meta { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.foot-meta .legal { font-size: 12px; color: var(--faint); max-width: 70ch; }
.foot-links { display: flex; gap: 18px; }
.foot-links a { color: var(--muted); font-size: 13px; }

/* ---------- reveal on scroll (no layout shift; opacity/transform only) ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive up ---------- */
@media (min-width: 680px) {
  .proof { grid-template-columns: repeat(4, 1fr); }
  .how-grid { grid-template-columns: repeat(3, 1fr); }
  .tests { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .section { padding: 84px 0; }
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .hero-grid { grid-template-columns: 1.05fr 1fr; align-items: center; gap: 40px; }
  .hero { padding-top: 48px; padding-bottom: 20px; }
  .wrap { padding: 0 32px; }
}
@media (min-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr 1.08fr; }
}

/* ---------- table topline + hot/cold toggle ---------- */
.tbl-topline { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.mode-sw { display: inline-flex; gap: 3px; padding: 4px; border: 1px solid var(--hair); border-radius: 10px; background: oklch(1 0 0 / 0.02); flex: none; }
.mode-sw button { display: inline-flex; align-items: center; gap: 7px; background: transparent; border: 0; color: var(--muted); font-family: var(--mono); font-size: 12px; letter-spacing: .04em; padding: 8px 13px; border-radius: 7px; cursor: pointer; }
.mode-sw button[aria-pressed="true"] { background: oklch(1 0 0 / 0.07); color: var(--ink); }
.mode-sw .md-dot { width: 8px; height: 8px; border-radius: 50%; }
.mode-sw .md-dot.hot { background: var(--t-hot); box-shadow: 0 0 8px var(--t-hot); }
.mode-sw .md-dot.cold { background: var(--t-cold); box-shadow: 0 0 8px var(--t-cold); }
/* live RTP cell */
.t-rtp { white-space: nowrap; }
.t-rtp b { font-family: var(--mono); font-size: 14px; font-weight: 500; font-variant-numeric: tabular-nums; }
.t-rtp b.rd.up { color: var(--t-hot); }
.t-rtp b.rd.down { color: var(--t-cold); }
.t-rtp .rbase { display: block; font-family: var(--mono); font-size: 10px; color: var(--faint); margin-top: 2px; }

/* ---------- gated game names (register free to unlock) ---------- */
.locked-name { filter: blur(5px); opacity: 0.72; user-select: none; pointer-events: none; }
.t-hold { font-family: var(--mono); font-size: 10.5px; color: var(--muted); }
.hold-chip { display: inline-flex; align-items: center; gap: 5px; font-family: var(--mono); font-size: 10px; letter-spacing: .06em; color: var(--muted); }
.hold-chip .lk { width: 9px; height: 9px; opacity: .8; }
/* gate banner over the table */
.gate {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px;
  padding: 13px 16px; border-top: 1px solid var(--hair-2);
  background: linear-gradient(180deg, oklch(0.82 0.17 163 / 0.06), transparent);
}
.gate .gk { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; color: var(--ink-dim); }
.gate .gk svg { width: 15px; height: 15px; color: var(--acc); flex: none; }
.gate .btn { margin-left: auto; padding: 9px 16px; min-height: 40px; font-size: 13px; }
.probe .locked-name { filter: blur(5px); }
.probe .plock { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; color: var(--acc); margin-top: 7px; }
.probe .plock svg { width: 11px; height: 11px; }

/* ---------- reduced motion: freeze the instrument ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .dot, .dot::after, .ticker-rail, .term-body .cursor, .lcell, .sweep, .brand .mark .orbit { animation: none !important; }
  .sweep { display: none; }
  .lcell { transition: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
