/* ============================================================================
   MONEY PLAYZ — STYLES  ("betting terminal" design system)
   ----------------------------------------------------------------------------
   BRAND-SWAP ZONE is the :root block below. Change the color + font tokens
   there and the whole site reskins. Nothing else uses a raw hex value.

   Design language:
   - Near-black surfaces with a faint green cast, 1px hairlines, square corners
   - Chakra Petch (angular, sporty-tech) for headlines & buttons
   - JetBrains Mono for every number, odd, timestamp and micro-label
   - Corner brackets + scanline/grid textures = live-terminal feel
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ============================  BRAND-SWAP ZONE  ============================ */
:root {
  /* Surfaces (near-black, faint green cast, layered) */
  --bg:            #070907;
  --surface:       #0C0F0C;
  --surface-2:     #121612;
  --surface-3:     #191E18;
  --line:          rgba(220, 255, 190, 0.09);
  --line-strong:   rgba(220, 255, 190, 0.16);

  /* Text */
  --text:          #F2F5EE;
  --text-2:        #A9B2A4;
  --text-3:        #6E7669;

  /* Brand — lime green, matched to the MONEY PLAYZ logo */
  --brand:         #A6E82E;
  --brand-strong:  #7FC414;
  --brand-ink:     #0B1403;          /* text ON the green button */
  --brand-glow:    rgba(166, 232, 46, 0.32);
  --brand-dim:     rgba(166, 232, 46, 0.12);

  /* Accent — unit-size gold */
  --accent:        #EFB63A;

  /* Semantic (results) */
  --win:           #A6E82E;
  --loss:          #FF5464;
  --push:          #A9B2A4;

  /* Typography */
  --font-display:  'Chakra Petch', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --font-mono:     'JetBrains Mono', ui-monospace, monospace;

  /* Radius / shadow / motion — terminal = square-ish */
  --r-sm: 3px;  --r-md: 6px;  --r-lg: 10px;
  --shadow:      0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg:   0 24px 60px rgba(0, 0, 0, 0.6);
  --ease:        cubic-bezier(.2, .7, .3, 1);
  --dur:         180ms;

  /* Spacing rhythm (8px scale) */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px; --sp-5: 24px;
  --sp-6: 32px; --sp-7: 48px; --sp-8: 64px; --sp-9: 96px; --sp-10: 128px;

  --container: 1200px;
}
/* ==========================================================================
   Everything below is structural — you shouldn't need to touch it.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100dvh;
  overflow-x: hidden;
  padding-bottom: 84px; /* room for sticky mobile CTA; reset on desktop */
}

/* Ambient glow + fine blueprint grid, masked to the top of the page */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(55% 38% at 50% -4%, var(--brand-dim), transparent 70%),
    radial-gradient(30% 24% at 92% 8%, rgba(239, 182, 58, 0.05), transparent 70%);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(70% 52% at 50% 0%, #000, transparent 80%);
  mask-image: radial-gradient(70% 52% at 50% 0%, #000, transparent 80%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Typography --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.06;
  letter-spacing: .005em;
  font-weight: 700;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.2rem); letter-spacing: .02em; }
.lead { font-size: clamp(1rem, 1.8vw, 1.13rem); color: var(--text-2); }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.text-2 { color: var(--text-2); }

/* Micro-label: "// TRACK RECORD" — the terminal eyebrow */
.eyebrow {
  font-family: var(--font-mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--brand);
}
.eyebrow::before { content: "// "; opacity: .55; letter-spacing: 0; }

/* ---- Layout ------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-5); }
.section { padding-block: clamp(var(--sp-8), 9vw, var(--sp-9)); }
.section-tight { padding-top: 0; }
.section-head { max-width: 760px; margin-bottom: var(--sp-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: var(--sp-3); }
.section-head p { margin-top: var(--sp-4); }

/* Corner brackets — the terminal signature. Add .corners to any panel. */
.corners { position: relative; }
.corners::before, .corners::after {
  content: ""; position: absolute; width: 14px; height: 14px; pointer-events: none;
  border-color: color-mix(in srgb, var(--brand) 65%, transparent); border-style: solid;
}
.corners::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.corners::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  min-height: 48px; padding: 0 var(--sp-6);
  font-family: var(--font-display); font-weight: 700; font-size: .92rem;
  text-transform: uppercase; letter-spacing: .07em;
  border-radius: var(--r-sm); border: 1px solid transparent; cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
  white-space: nowrap; user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brand);
  color: var(--brand-ink);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%); /* clipped corner */
  box-shadow: 0 6px 22px var(--brand-glow);
}
.btn-primary:hover { background: color-mix(in srgb, var(--brand) 88%, #fff); box-shadow: 0 10px 30px var(--brand-glow); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-dim); }
.btn-block { width: 100%; }
.btn-lg { min-height: 56px; font-size: 1rem; padding-inline: var(--sp-7); }
.btn svg { width: 17px; height: 17px; }
.btn[aria-disabled="true"], .btn.is-disabled { opacity: .5; pointer-events: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }
@media (max-width: 639px) {
  .btn { white-space: normal; max-width: 100%; text-align: center; padding-block: 10px; height: auto; }
  .btn-lg { padding-inline: var(--sp-5); }
}

/* ---- Top status strip ---------------------------------------------------- */
.topbar {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-3);
}
.topbar .container { display: flex; justify-content: space-between; gap: var(--sp-4); padding-block: 7px; }
.topbar .live-dot { color: var(--brand); }
.topbar .live-dot i {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand); box-shadow: 0 0 8px var(--brand);
  margin-right: 7px; animation: pulse 1.8s var(--ease) infinite; vertical-align: 1px;
}
.topbar .r { display: none; }
@media (min-width: 640px) { .topbar .r { display: inline; } }
@keyframes pulse { 0%, 100% { opacity: 1 } 50% { opacity: .3 } }

/* ---- Header / Nav ------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(140%) blur(12px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 66px; gap: var(--sp-5); }
.brand-mark { display: inline-flex; align-items: center; gap: var(--sp-3); font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .02em; }
.brand-mark img { height: 34px; width: auto; }
.brand-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 12px var(--brand-glow); }
.nav-links { display: none; align-items: center; gap: var(--sp-6); }
.nav-links a {
  color: var(--text-2); font-family: var(--font-mono); font-weight: 500; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase;
  transition: color var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--brand); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::before { content: "▸ "; color: var(--brand); }
.nav-actions { display: flex; align-items: center; gap: var(--sp-3); }
.nav-toggle { display: inline-flex; background: transparent; border: 1px solid var(--line-strong); color: var(--text); width: 44px; height: 44px; border-radius: var(--r-sm); align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-desktop-cta { display: none; min-height: 42px; padding-inline: var(--sp-5); font-size: .82rem; }
.mobile-menu { display: none; flex-direction: column; gap: var(--sp-1); padding: var(--sp-4) 0 var(--sp-5); border-top: 1px solid var(--line); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: var(--sp-3) var(--sp-2); color: var(--text-2); font-family: var(--font-mono); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; border-radius: var(--r-sm); }
.mobile-menu a:hover { background: var(--surface-2); color: var(--text); }
.mobile-menu .btn { font-size: .92rem; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-desktop-cta { display: inline-flex; }
  .mobile-menu, .mobile-menu.open { display: none; }  /* never linger after a resize */
}

/* ---- Hero --------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(var(--sp-7), 9vw, var(--sp-9)) clamp(var(--sp-7), 8vw, var(--sp-9)); }
.hero-grid { display: grid; gap: var(--sp-8); align-items: center; grid-template-columns: 1fr; }
.hero-grid > * { min-width: 0; } /* grid items may shrink below their content width */
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.04fr .96fr; gap: var(--sp-8); } }
.hero-copy { max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 7px 14px; border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); background: var(--surface); color: var(--text-2);
  font-family: var(--font-mono); font-size: .7rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: var(--sp-5);
}
.hero-badge .brand-dot { width: 7px; height: 7px; animation: pulse 1.8s var(--ease) infinite; }
.hero h1 { margin-bottom: var(--sp-5); }
.hero h1 .grad { color: var(--brand); text-shadow: 0 0 34px var(--brand-glow); }
.hero-copy .lead { margin: 0 0 var(--sp-6); max-width: 33rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.hero-trust {
  margin-top: var(--sp-6); display: flex; gap: var(--sp-3); align-items: center; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: .78rem; color: var(--text-3);
}
.hero-trust .stars { color: var(--accent); letter-spacing: 3px; }
@keyframes rise { from { opacity: 0; transform: translateY(18px) } to { opacity: 1; transform: none } }
.hero-copy > * { animation: rise .6s var(--ease) both; }
.hero-copy > *:nth-child(1) { animation-delay: .04s }
.hero-copy > *:nth-child(2) { animation-delay: .1s }
.hero-copy > *:nth-child(3) { animation-delay: .16s }
.hero-copy > *:nth-child(4) { animation-delay: .22s }
.hero-copy > *:nth-child(5) { animation-delay: .28s }

/* ---- Terminal window (hero visual + reusable) ---------------------------- */
.hero-visual { animation: rise .7s var(--ease) both .26s; max-width: 460px; margin-inline: auto; width: 100%; }
.term {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
/* faint scanlines inside terminal panels */
.term-body { position: relative; padding: var(--sp-4); }
.term-body::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0, 0, 0, .16) 3px 4px);
}
.term-head {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: 10px var(--sp-4); border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.term-dots { display: inline-flex; gap: 6px; }
.term-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--surface-3); border: 1px solid var(--line-strong); }
.term-dots i:first-child { background: color-mix(in srgb, var(--loss) 55%, var(--surface-3)); }
.term-title { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; flex: 1 1 auto; }
.term-title .d { color: var(--brand); }
.term-live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 6px; flex: 0 0 auto;
  font-family: var(--font-mono); font-size: .64rem; font-weight: 700; letter-spacing: .16em;
  color: var(--brand); text-transform: uppercase;
}
.term-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 10px var(--brand); animation: pulse 1.6s var(--ease) infinite; }

/* signal cards inside the hero terminal */
.signal-card {
  position: relative; background: var(--surface-2); border: 1px solid var(--line);
  border-left: 2px solid var(--line-strong);
  border-radius: var(--r-sm); padding: var(--sp-3) var(--sp-4); margin-bottom: var(--sp-3);
}
.signal-card:last-of-type { margin-bottom: 0; }
.signal-card.win { border-left-color: var(--win); background: color-mix(in srgb, var(--win) 5%, var(--surface-2)); }
.sc-top { display: flex; align-items: center; gap: var(--sp-2); margin-bottom: 6px; }
.sc-tag {
  font-family: var(--font-mono); font-size: .62rem; font-weight: 700; letter-spacing: .1em;
  padding: 2px 7px; border-radius: 2px; background: var(--brand-dim); color: var(--brand); text-transform: uppercase;
}
.sc-time { margin-left: auto; font-family: var(--font-mono); font-size: .66rem; color: var(--text-3); }
.signal-card .play { font-weight: 600; font-size: .95rem; font-family: var(--font-body); }
.signal-card .slip { display: flex; gap: var(--sp-2); margin-top: var(--sp-2); flex-wrap: wrap; }
.chip {
  font-family: var(--font-mono); font-weight: 700; font-size: .74rem; padding: 3px 9px;
  border-radius: 2px; background: var(--surface); border: 1px solid var(--line-strong); color: var(--text);
  font-variant-numeric: tabular-nums;
}
.chip.u { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 40%, transparent); }
.sc-result {
  margin-left: auto; display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-weight: 700; font-size: .66rem; color: var(--win); text-transform: uppercase; letter-spacing: .08em;
}
.sc-result svg { width: 13px; height: 13px; }
.term-cap { text-align: center; font-family: var(--font-mono); font-size: .64rem; color: var(--text-3); padding: var(--sp-3) var(--sp-4); border-top: 1px solid var(--line); }

/* typed cursor on the terminal title */
.cursor { display: inline-block; width: 7px; height: 12px; background: var(--brand); margin-left: 4px; vertical-align: -1px; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0 } }

/* ---- Live ticker -------------------------------------------------------- */
.ticker {
  overflow: hidden; border-block: 1px solid var(--line); background: var(--surface);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker-track { display: inline-flex; align-items: center; gap: var(--sp-7); white-space: nowrap; padding: 11px 0; animation: ticker 46s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: var(--sp-3); font-family: var(--font-mono); font-size: .76rem; color: var(--text-2); font-variant-numeric: tabular-nums; }
.ticker-item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 8px var(--brand-glow); }
.ticker-item .odd { color: var(--text); font-weight: 700; }
.ticker-item .w { color: var(--win); font-weight: 700; }
@keyframes ticker { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---- Proof bar ---------------------------------------------------------- */
.proof { border-bottom: 1px solid var(--line); background: var(--surface); }
.proof .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 1px; background: var(--line); border-inline: 1px solid var(--line); }
.stat { text-align: center; background: var(--surface); padding: var(--sp-6) var(--sp-4); }
.stat .num { font-family: var(--font-mono); font-weight: 700; font-size: clamp(1.5rem, 3.6vw, 2.1rem); color: var(--brand); font-variant-numeric: tabular-nums; }
.stat .lbl { font-family: var(--font-mono); font-size: .68rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .16em; margin-top: var(--sp-2); }

/* ---- How it works (numbered steps) --------------------------------------- */
.steps { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: var(--sp-6);
}
.step .num {
  font-family: var(--font-mono); font-weight: 700; font-size: .78rem; letter-spacing: .12em;
  color: var(--brand); display: inline-block; margin-bottom: var(--sp-4);
  padding: 3px 9px; border: 1px solid color-mix(in srgb, var(--brand) 40%, transparent); border-radius: 2px;
  background: var(--brand-dim);
}
.step h3 { margin-bottom: var(--sp-2); }
.step p { color: var(--text-2); font-size: .95rem; }
.step::after { /* connector arrow between steps on desktop */
  content: "▸"; position: absolute; top: 50%; right: -19px; transform: translateY(-50%);
  color: var(--text-3); font-size: 1rem; display: none;
}
@media (min-width: 860px) { .step:not(:last-child)::after { display: block; } }

/* ---- Cards / grids ------------------------------------------------------ */
.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 700px) { .grid-3 { grid-template-columns: 1fr 1fr; } .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--sp-6);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.card:hover::before { transform: scaleX(1); }
.card .ico {
  width: 42px; height: 42px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: var(--brand-dim); color: var(--brand); margin-bottom: var(--sp-4);
  border: 1px solid color-mix(in srgb, var(--brand) 25%, transparent);
}
.card .ico svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: var(--sp-2); }
.card p { color: var(--text-2); font-size: .95rem; }

/* ---- Free vs Premium comparison ---------------------------------------- */
.compare { border: 1px solid var(--line-strong); border-radius: var(--r-md); overflow: hidden; background: var(--surface); }
.compare-row { display: grid; grid-template-columns: 1.7fr 1fr 1fr; align-items: center; border-top: 1px solid var(--line); }
.compare-row:first-child { border-top: 0; }
.compare-head { background: var(--surface-2); }
.compare-head .compare-cell { font-family: var(--font-mono); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-2); }
.compare-cell { padding: var(--sp-4); font-size: .93rem; text-align: center; }
.compare-cell:first-child { text-align: left; color: var(--text-2); font-weight: 500; }
.compare-row:not(.compare-head) .compare-cell:last-child { background: color-mix(in srgb, var(--brand) 4%, transparent); }
.compare-head .premium { color: var(--brand); }
.tick { color: var(--brand); } .cross { color: var(--text-3); opacity: .6; }
.compare-cell svg { width: 18px; height: 18px; display: inline-block; vertical-align: middle; }

/* ---- Results: summary bar + table ---------------------------------------- */
.results-summary {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line-strong); border-radius: var(--r-md);
  overflow: hidden; margin-bottom: var(--sp-5);
}
.results-summary .rs-cell:last-child:nth-child(odd) { grid-column: 1 / -1; } /* no orphan cell on the 2-col layout */
@media (min-width: 860px) {
  .results-summary { grid-template-columns: repeat(5, 1fr); }
  .results-summary .rs-cell:last-child:nth-child(odd) { grid-column: auto; }
}
.rs-cell { background: var(--surface); padding: var(--sp-4) var(--sp-4); text-align: center; }
.rs-cell .v { font-family: var(--font-mono); font-weight: 700; font-size: clamp(1.05rem, 2.4vw, 1.4rem); font-variant-numeric: tabular-nums; }
.rs-cell .v.pos { color: var(--win); }
.rs-cell .k { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-3); margin-top: 4px; }

.results-wrap { overflow-x: auto; border: 1px solid var(--line-strong); border-radius: var(--r-md); background: var(--surface); }
table.results { width: 100%; border-collapse: collapse; min-width: 640px; font-variant-numeric: tabular-nums; }
.results th, .results td { padding: var(--sp-3) var(--sp-4); text-align: left; border-top: 1px solid var(--line); }
.results thead th {
  background: var(--surface-2); font-family: var(--font-mono); font-size: .66rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--text-3); border-top: 0;
  position: sticky; top: 0;
}
.results td { font-size: .92rem; }
.results tbody tr { transition: background var(--dur) var(--ease); }
.results tbody tr:hover { background: var(--surface-2); }
.results .win-row td:first-child { border-left: 2px solid var(--win); }
.results th.r, .results td.r { text-align: right; }
.r-meta { display: block; color: var(--text-3); font-family: var(--font-mono); font-size: .72rem; margin-top: 2px; }
.r-stake { color: var(--text-3); font-size: .85rem; }
.r-win { color: var(--win); font-weight: 700; font-family: var(--font-mono); }
.r-odds { font-family: var(--font-mono); color: var(--text-2); }
.r-cashed {
  font-family: var(--font-mono); font-size: .58rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  border-radius: 2px; padding: 1px 5px; margin-left: 6px; vertical-align: middle;
}
.nowrap { white-space: nowrap; }
.results-note { color: var(--text-3); font-size: .82rem; margin-top: var(--sp-4); font-family: var(--font-mono); line-height: 1.7; }

/* ---- Unit guide: sizing ladder + principles -------------------------------- */
.ladder-wrap { border: 1px solid var(--line-strong); border-radius: var(--r-md); background: var(--surface); padding: var(--sp-6); }
.ladder-title { font-family: var(--font-mono); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--brand); margin-bottom: var(--sp-5); text-align: center; }
.ladder { display: grid; gap: var(--sp-4); grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); align-items: end; }
.lad { text-align: center; min-width: 0; }
.lad-bar { height: 84px; display: flex; align-items: flex-end; justify-content: center; margin-bottom: var(--sp-3); }
.lad-bar i {
  display: block; width: 42px; height: var(--pct, 20%); border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--brand), color-mix(in srgb, var(--brand) 25%, transparent));
  box-shadow: 0 0 18px var(--brand-glow);
}
.lad-size { font-family: var(--font-mono); font-weight: 700; font-size: 1.05rem; color: var(--brand); font-variant-numeric: tabular-nums; }
.lad-label { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-2); margin-top: 2px; }
.lad-desc { font-size: .8rem; color: var(--text-3); margin-top: var(--sp-2); line-height: 1.5; }
/* mobile: horizontal readout — size chip left, growing bar + copy right */
@media (max-width: 639px) {
  .ladder { display: flex; flex-direction: column; gap: var(--sp-4); }
  .lad {
    display: grid; grid-template-columns: 64px 1fr; gap: 2px var(--sp-4);
    grid-template-areas: "size label" "size bar" "size desc";
    text-align: left; align-items: center;
  }
  .lad-size { grid-area: size; align-self: center; text-align: center; font-size: 1.1rem; }
  .lad-label { grid-area: label; margin: 0; }
  .lad-bar { grid-area: bar; height: 7px; margin: 4px 0; display: block; }
  .lad-bar i { width: var(--pct, 20%); height: 100%; border-radius: 2px; background: linear-gradient(90deg, color-mix(in srgb, var(--brand) 35%, transparent), var(--brand)); }
  .lad-desc { grid-area: desc; margin-top: 2px; }
}

.principle h3 { font-size: 1rem; }
.principle p { font-size: .93rem; }
.principle-after { margin-top: var(--sp-3); }
.be-table { border: 1px solid var(--line-strong); border-radius: var(--r-sm); overflow: hidden; margin-top: var(--sp-4); }
.be-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.be-row:first-child { border-top: 0; }
.be-row span { padding: 7px var(--sp-4); font-size: .82rem; text-align: center; font-variant-numeric: tabular-nums; }
.be-row span:first-child { border-right: 1px solid var(--line); }
.be-head { background: var(--surface-2); }
.be-head span { font-family: var(--font-mono); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); }
.be-row:not(.be-head) span { color: var(--text); font-family: var(--font-mono); font-weight: 500; }

/* ---- Objection cards (them vs us) ----------------------------------------- */
.obj { padding: 0; overflow: hidden; }
.obj-scam {
  display: flex; gap: var(--sp-3); align-items: flex-start;
  padding: var(--sp-4) var(--sp-5);
  background: color-mix(in srgb, var(--loss) 6%, transparent);
  border-bottom: 1px solid var(--line);
  color: var(--text-2); font-size: .9rem; font-style: italic;
}
.obj-x { color: var(--loss); flex: 0 0 auto; margin-top: 2px; }
.obj-x svg, .obj-check svg { width: 16px; height: 16px; }
.obj-truth { display: flex; gap: var(--sp-3); align-items: flex-start; padding: var(--sp-4) var(--sp-5) var(--sp-5); }
.obj-check { color: var(--brand); flex: 0 0 auto; margin-top: 3px; }
.obj-truth p { color: var(--text); font-size: .93rem; }
.obj-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: var(--sp-3);
  font-family: var(--font-mono); font-size: .74rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand);
}
.obj-link:hover { text-decoration: underline; }
.obj-link svg { width: 14px; height: 14px; }

/* ---- Week recap: unit ledger + calculator --------------------------------- */
.recap-stats { margin-bottom: var(--sp-5); }
.recap-stats { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 860px) { .recap-stats { grid-template-columns: repeat(4, 1fr); } }
.rs-cell .v.neg { color: var(--loss); }

.unit-calc {
  border: 1px solid var(--line-strong); border-radius: var(--r-md); background: var(--surface);
  padding: var(--sp-6); text-align: center; margin-bottom: var(--sp-6);
}
.uc-title { font-family: var(--font-mono); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--brand); margin-bottom: var(--sp-3); }
.uc-lead { color: var(--text-2); font-size: .93rem; max-width: 560px; margin: 0 auto var(--sp-5); }
.uc-btns { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; align-items: center; margin-bottom: var(--sp-5); }
.uc-btn {
  font-family: var(--font-mono); font-weight: 700; font-size: .85rem; letter-spacing: .04em;
  padding: 9px 16px; border-radius: var(--r-sm); cursor: pointer;
  background: transparent; color: var(--text-2); border: 1px solid var(--line-strong);
  transition: all var(--dur) var(--ease);
}
.uc-btn:hover { border-color: var(--brand); color: var(--brand); }
.uc-btn.active { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }
.uc-custom { font-family: var(--font-mono); font-size: .85rem; color: var(--text-3); display: inline-flex; align-items: center; gap: 4px; }
.uc-custom input {
  width: 84px; background: var(--surface-2); border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  color: var(--text); font-family: var(--font-mono); font-weight: 700; font-size: .9rem;
  padding: 8px 10px; -moz-appearance: textfield;
}
.uc-custom input::-webkit-outer-spin-button, .uc-custom input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.uc-net { font-family: var(--font-mono); font-weight: 700; font-size: clamp(2.2rem, 6vw, 3.4rem); color: var(--win); text-shadow: 0 0 30px var(--brand-glow); font-variant-numeric: tabular-nums; line-height: 1.1; }
.uc-sub { font-family: var(--font-mono); font-size: .78rem; color: var(--text-3); margin-top: var(--sp-2); white-space: pre-wrap; }
.uc-note { font-size: .88rem; color: var(--text-2); margin-top: var(--sp-5); }

.ledger-label {
  font-family: var(--font-mono); font-size: .7rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--brand); margin: var(--sp-6) 0 var(--sp-3);
}
.ledger-label::before { content: "// "; opacity: .55; }
.ledger-label.loss { color: var(--loss); }
.ledger-grid { display: grid; gap: var(--sp-2); grid-template-columns: 1fr; }
@media (min-width: 860px) { .ledger-grid { grid-template-columns: 1fr 1fr; } }
.lg-row {
  display: grid; grid-template-columns: 92px 1fr auto; align-items: center; gap: var(--sp-3);
  background: var(--surface); border: 1px solid var(--line); border-left-width: 2px;
  border-radius: var(--r-sm); padding: 8px var(--sp-4); min-width: 0;
}
.lg-row.win { border-left-color: var(--win); }
.lg-row.loss { border-left-color: var(--loss); }
.lg-u { font-family: var(--font-mono); font-weight: 700; font-size: .8rem; font-variant-numeric: tabular-nums; }
.lg-row.win .lg-u { color: var(--win); }
.lg-row.loss .lg-u { color: var(--loss); }
.lg-play { font-size: .88rem; font-weight: 500; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lg-size { font-family: var(--font-mono); font-size: .7rem; color: var(--text-3); }

/* ---- Proof gallery (slips / telegram screenshots) ------------------------ */
/* masonry columns — slips come in all shapes, so keep natural aspect ratios */
.gallery { columns: 2; column-gap: var(--sp-4); }
@media (min-width: 700px)  { .gallery { columns: 3; } }
@media (min-width: 1080px) { .gallery { columns: 4; } }
.shot {
  border: 1px solid var(--line-strong); border-radius: var(--r-md); overflow: hidden;
  background: var(--surface); break-inside: avoid; margin: 0 0 var(--sp-4);
}
.shot img { width: 100%; height: auto; }
.shot figcaption { font-family: var(--font-mono); font-size: .68rem; color: var(--text-3); padding: var(--sp-2) var(--sp-3); border-top: 1px solid var(--line); }

/* ---- Sports board strip -------------------------------------------------- */
.sports-strip { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }
.sport-chip {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-mono); font-size: .78rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4); border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  color: var(--text-2); background: var(--surface);
}
.sport-chip.hot { color: var(--brand); border-color: color-mix(in srgb, var(--brand) 45%, transparent); background: var(--brand-dim); }
.sport-chip.hot::after { content: "●"; font-size: .5rem; animation: pulse 1.8s var(--ease) infinite; }
.sports-note { text-align: center; color: var(--text-3); font-size: .85rem; margin-top: var(--sp-5); }

/* ---- Testimonials ------------------------------------------------------- */
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--sp-6); display: flex; flex-direction: column; }
.quote p { font-size: .98rem; color: var(--text); }
.quote .who { display: flex; align-items: center; gap: var(--sp-3); margin-top: auto; padding-top: var(--sp-5); color: var(--text-3); font-family: var(--font-mono); font-size: .78rem; }
.quote .who::before { content: "@"; color: var(--brand); opacity: .8; }
.quote .who img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.quote .stars { color: var(--accent); letter-spacing: 3px; margin-bottom: var(--sp-3); font-size: .85rem; }

/* ---- Pricing ------------------------------------------------------------ */
.tiers { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
@media (min-width: 720px) { .tiers { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .tiers { grid-template-columns: repeat(4, 1fr); } }
.tier {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: var(--sp-6); display: flex; flex-direction: column;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.tier:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.tier.featured { border-color: color-mix(in srgb, var(--brand) 60%, transparent); box-shadow: 0 0 0 1px var(--brand-glow), var(--shadow); }
.tier .badge {
  position: absolute; top: -11px; left: var(--sp-5);
  background: var(--brand); color: var(--brand-ink);
  font-family: var(--font-mono); font-weight: 700; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}
.tier h3 { margin-bottom: var(--sp-3); font-size: 1rem; color: var(--text-2); }
.tier.featured h3 { color: var(--brand); }
.tier-price { display: flex; align-items: baseline; gap: 5px; margin-bottom: var(--sp-3); font-family: var(--font-mono); }
.tier-price .amt { font-size: 1.8rem; font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }
.tier-price .per { color: var(--text-3); font-size: .8rem; }
.tier .blurb { color: var(--text-2); font-size: .9rem; margin-bottom: var(--sp-4); }
.tier-highlight {
  color: var(--brand); font-family: var(--font-mono); font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin: calc(-1 * var(--sp-2)) 0 var(--sp-4);
}
.tier ul { list-style: none; padding: var(--sp-4) 0 0; border-top: 1px solid var(--line); display: grid; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.tier li { display: flex; gap: var(--sp-3); align-items: flex-start; font-size: .92rem; color: var(--text); }
.tier li svg { width: 17px; height: 17px; color: var(--brand); flex: 0 0 auto; margin-top: 3px; }
.tier .btn { margin-top: auto; }
.pricing-note { text-align: center; color: var(--text-3); font-size: .85rem; margin-top: var(--sp-6); font-family: var(--font-mono); }

/* ---- Final CTA band ----------------------------------------------------- */
.cta-band {
  position: relative; text-align: center; border: 1px solid var(--line-strong); border-radius: var(--r-lg);
  padding: clamp(var(--sp-7), 8vw, var(--sp-9)) var(--sp-5);
  background: linear-gradient(180deg, var(--surface-2), var(--surface)); overflow: hidden;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 100% at 50% 0%, var(--brand-glow), transparent 70%); opacity: .35; pointer-events: none; }
.cta-band::after { /* fine grid inside band */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(80% 80% at 50% 20%, #000, transparent 85%);
  mask-image: radial-gradient(80% 80% at 50% 20%, #000, transparent 85%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: var(--sp-4); }
.cta-band p { color: var(--text-2); max-width: 520px; margin: 0 auto var(--sp-6); }

/* ---- FAQ (accordion) ----------------------------------------------------- */
.faq-list { max-width: 800px; margin-inline: auto; display: grid; gap: var(--sp-3); }
.faq-group-label { font-family: var(--font-mono); font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--brand); margin: var(--sp-5) 0 var(--sp-2); }
.faq-group-label:first-child { margin-top: 0; }
.faq-group-label::before { content: "// "; opacity: .55; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); overflow: hidden; transition: border-color var(--dur) var(--ease); }
.faq-item.open { border-color: var(--line-strong); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  background: none; border: 0; cursor: pointer; text-align: left;
  color: var(--text); font-family: var(--font-body); font-weight: 600; font-size: .98rem; line-height: 1.4;
  padding: var(--sp-4) var(--sp-5);
}
.faq-q:hover { color: var(--brand); }
.faq-q .chev { flex: 0 0 auto; width: 18px; height: 18px; color: var(--text-3); transition: transform .25s var(--ease); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); color: var(--brand); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; color: var(--text-2); font-size: .93rem; padding: 0 var(--sp-5); }
.faq-item.open .faq-a-inner { padding-bottom: var(--sp-5); }

/* ---- Sub-page hero (results / faq) --------------------------------------- */
.page-hero { padding-block: clamp(var(--sp-7), 8vw, var(--sp-8)) var(--sp-7); border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { display: block; margin-bottom: var(--sp-3); }
.page-hero h1 { font-size: clamp(1.9rem, 4.6vw, 3rem); margin-bottom: var(--sp-4); }
.page-hero .lead { max-width: 640px; }

/* ---- Responsible-gambling panel ------------------------------------------- */
.rg-panel { border: 1px solid var(--line-strong); border-radius: var(--r-md); background: var(--surface); padding: var(--sp-6); max-width: 800px; margin-inline: auto; }
.rg-panel h3 { margin-bottom: var(--sp-3); }
.rg-panel p { color: var(--text-2); font-size: .93rem; }
.rg-panel ul { color: var(--text-2); font-size: .93rem; padding-left: 1.2em; margin-top: var(--sp-3); display: grid; gap: var(--sp-2); }
.rg-panel .rg-line { margin-top: var(--sp-4); font-family: var(--font-mono); font-size: .8rem; color: var(--text-2); display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }
.rg-panel a { color: var(--brand); text-decoration: underline; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); margin-top: var(--sp-9); }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--sp-7); padding-block: var(--sp-8) var(--sp-6); }
.footer-brand { max-width: 320px; }
.footer-brand p { color: var(--text-3); font-size: .88rem; margin-top: var(--sp-3); }
.footer-cols { display: flex; flex-wrap: wrap; gap: var(--sp-8); }
.footer-col h4 { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; color: var(--text-3); margin-bottom: var(--sp-4); }
.footer-col h4::before { content: "// "; color: var(--brand); opacity: .7; }
.footer-col a { display: block; color: var(--text-2); font-size: .92rem; padding: 5px 0; }
.footer-col a:hover { color: var(--brand); }
.socials { display: flex; gap: var(--sp-3); }
.socials a { width: 40px; height: 40px; border: 1px solid var(--line-strong); border-radius: var(--r-sm); display: grid; place-items: center; color: var(--text-2); transition: all var(--dur) var(--ease); }
.socials a:hover { color: var(--brand); border-color: var(--brand); background: var(--brand-dim); }
.socials svg { width: 19px; height: 19px; }
.disclaimer { border-top: 1px solid var(--line); padding-block: var(--sp-6); color: var(--text-3); font-size: .8rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--sp-4); }
.disclaimer .age { display: inline-flex; align-items: center; gap: 9px; }
.badge-18 { border: 1.5px solid var(--text-3); border-radius: var(--r-sm); min-width: 30px; height: 30px; display: grid; place-items: center; font-family: var(--font-mono); font-weight: 700; font-size: .68rem; color: var(--text-2); padding-inline: 4px; }
.legal-copy { max-width: 640px; line-height: 1.7; }

/* ---- Sticky mobile CTA -------------------------------------------------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: var(--sp-3) var(--sp-4) calc(var(--sp-3) + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px); border-top: 1px solid var(--line);
}
.sticky-cta .btn { width: 100%; }
@media (min-width: 900px) { .sticky-cta { display: none; } body { padding-bottom: 0 !important; } }

/* ---- Age gate modal ----------------------------------------------------- */
.agegate { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: var(--sp-5); background: rgba(3, 5, 3, 0.78); backdrop-filter: blur(8px); }
.agegate[hidden] { display: none; }
.agegate-card {
  max-width: 430px; width: 100%; background: var(--surface-2); border: 1px solid var(--line-strong);
  border-radius: var(--r-lg); padding: var(--sp-7) var(--sp-6); text-align: center; box-shadow: var(--shadow-lg);
}
.agegate-card .brand-mark { justify-content: center; margin-bottom: var(--sp-5); }
.agegate-card h2 { font-size: 1.4rem; margin-bottom: var(--sp-3); }
.agegate-card p { color: var(--text-2); font-size: .93rem; margin-bottom: var(--sp-6); }
.agegate-actions { display: grid; gap: var(--sp-3); }
.agegate small { display: block; margin-top: var(--sp-5); color: var(--text-3); font-family: var(--font-mono); font-size: .72rem; }

/* ---- TODO / placeholder marker (visible while data is blank) ------------ */
[data-empty="true"] { display: none !important; }
.placeholder-note {
  border: 1px dashed var(--line-strong); border-radius: var(--r-md);
  padding: var(--sp-5); text-align: center; color: var(--text-3);
  font-family: var(--font-mono); font-size: .8rem;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.015) 10px, rgba(255, 255, 255, 0.015) 20px);
}
.placeholder-note strong { color: var(--accent); }

/* ---- Utilities ---------------------------------------------------------- */
.center { text-align: center; }
.mt-5 { margin-top: var(--sp-5); }
.mt-7 { margin-top: var(--sp-7); }
.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; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 2px; }

/* ---- Scroll reveal ------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none; } }

/* anchored sections clear the sticky header */
section[id] { scroll-margin-top: 110px; }
