/* ==========================================================================
   B9 GAME — MAIN STYLESHEET
   Depends on tokens.css. Mobile-first. No frameworks.
   ---------------------------------------------------------------------------
   00 Reset & base
   01 Typography helpers
   02 Layout / containers
   03 Buttons & pills
   04 Header + nav + drawer
   05 Mobile bottom bar + FAB
   06 Hero + phone mockup
   07 Marquee / trust strip
   08 Section headers
   09 Cards (feature, step, stat, game, testimonial)
   10 Screenshot slider
   11 OG banner block
   12 Bonus / CTA blocks
   13 Accordion (FAQ)
   14 Tables, prose, legal pages
   15 Forms
   16 Footer
   17 Motion / reveal utilities
   18 Utilities
   ========================================================================== */

/* ==========================================================================
   00 · RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  /* `clip` (not `hidden`) kills sideways scroll WITHOUT turning the element
     into a scroll container — so the sticky header keeps working. */
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  text-rendering: optimizeLegibility;
  /* long words / URLs can never push the layout sideways */
  overflow-wrap: break-word;
}

/* Nothing may exceed the viewport width. */
img, svg, video, iframe, table, pre { max-width: 100%; }

/* soft ambient wash so the page never reads as flat white */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 88% -6%, rgba(14,159,110,.07), transparent 62%),
    radial-gradient(760px 520px at -8% 12%, rgba(199,154,40,.055), transparent 60%);
}

img, svg, video, canvas { display: block; max-width: 100%; height: auto; }

a { color: var(--brand-600); text-decoration: none; transition: color var(--t-fast) var(--ease-out); }
a:hover { color: var(--brand-700); }

ul, ol { list-style: none; }

button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

/* Visible, on-brand focus ring for keyboard users */
:focus-visible {
  outline: 3px solid var(--brand-500);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

::selection { background: var(--brand-200); color: var(--brand-900); }

.skip-link {
  position: absolute;
  left: 50%;
  top: -80px;
  transform: translateX(-50%);
  z-index: var(--z-modal);
  background: var(--brand-700);
  color: #fff;
  padding: 12px 26px;
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-weight: 700;
  transition: top var(--t-base) var(--ease-out);
}
.skip-link:focus { top: 0; color: #fff; }

/* ==========================================================================
   01 · TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-heading);
  font-weight: 700;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); letter-spacing: var(--ls-display); }
h2 { font-size: var(--fs-h2); line-height: 1.14; letter-spacing: -0.02em; }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { text-wrap: pretty; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--brand-700);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
}
.eyebrow--center::after {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
}

.lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-loose);
  color: var(--ink-3);
}

.text-grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gold-text { color: var(--gold-700); }

mark {
  background: linear-gradient(180deg, transparent 58%, var(--brand-200) 58%);
  color: inherit;
  padding: 0 2px;
}

/* ==========================================================================
   02 · LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: var(--z-base);
}
.container--wide { max-width: calc(var(--container-wide) + var(--gutter) * 2); }
.container--narrow { max-width: calc(var(--container-narrow) + var(--gutter) * 2); }

.section { padding-block: var(--section-y); position: relative; }
.section--sm { padding-block: var(--section-y-sm); }
.section--tint { background: var(--bg-tint); }
.section--mint { background: linear-gradient(180deg, var(--bg-mint) 0%, var(--bg) 100%); }
.section--white { background: var(--surface); }

/* decorative top hairline used between stacked sections */
.section--edge { border-top: 1px solid var(--line); }

main { position: relative; z-index: var(--z-base); }

.grid { display: grid; gap: var(--sp-6); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(228px, 1fr)); }

/* ==========================================================================
   03 · BUTTONS
   ========================================================================== */
.btn {
  --btn-bg: var(--grad-brand);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: var(--ls-button);
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-glow);
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  white-space: nowrap;
  transition: transform var(--t-base) var(--ease-spring),
              box-shadow var(--t-base) var(--ease-out),
              filter var(--t-base) var(--ease-out);
}

/* sweeping sheen on hover */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 12%, rgba(255,255,255,.42) 46%, transparent 74%);
  transform: translateX(-120%);
  transition: transform var(--t-slow) var(--ease-out);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(14,159,110,.42); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(-1px) scale(.985); }

.btn--lg { padding: 18px 38px; font-size: 1.04rem; }
.btn--sm { padding: 11px 20px; font-size: .875rem; }
.btn--block { display: flex; width: 100%; }

.btn--gold {
  --btn-bg: var(--grad-gold);
  --btn-fg: var(--brand-950);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { box-shadow: 0 16px 38px rgba(199,154,40,.4); }

.btn--dark {
  --btn-bg: var(--grad-deep);
  box-shadow: 0 10px 28px rgba(4,66,42,.3);
}

.btn--ghost {
  --btn-bg: var(--surface);
  --btn-fg: var(--brand-700);
  border: 1.5px solid var(--line-brand);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover {
  --btn-fg: var(--brand-800);
  border-color: var(--brand-400);
  box-shadow: var(--shadow-md);
}

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border: 1.6px solid rgba(255,255,255,.55);
  box-shadow: none;
}
.btn--outline-light:hover { --btn-bg: rgba(255,255,255,.14); box-shadow: none; }

/* Telegram button — brand blue, used beside primary CTAs */
.btn--tg {
  --btn-bg: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
  --btn-fg: #fff;
  box-shadow: 0 10px 26px rgba(34,158,217,.34);
}
.btn--tg:hover { box-shadow: 0 16px 36px rgba(34,158,217,.44); }
.btn--tg .tg-ico { width: 20px; height: 20px; flex: none; }

/* gentle attention pulse on the money CTA */
.btn--pulse { animation: cta-pulse 3.4s var(--ease-soft) infinite; }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(14,159,110,.32), 0 0 0 0 rgba(14,159,110,.34); }
  50%      { box-shadow: 0 14px 34px rgba(14,159,110,.38), 0 0 0 14px rgba(14,159,110,0); }
}
.btn--gold.btn--pulse { animation-name: cta-pulse-gold; }
@keyframes cta-pulse-gold {
  0%, 100% { box-shadow: 0 10px 28px rgba(199,154,40,.3), 0 0 0 0 rgba(199,154,40,.34); }
  50%      { box-shadow: 0 14px 34px rgba(199,154,40,.36), 0 0 0 14px rgba(199,154,40,0); }
}
@media (prefers-reduced-motion: reduce) {
  .btn--pulse { animation: none; }
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}
.btn-row--center { justify-content: center; }

.arrow { transition: transform var(--t-base) var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* small status pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--ink-2);
  box-shadow: var(--shadow-xs);
}
.pill--brand { background: var(--brand-50); border-color: var(--line-brand); color: var(--brand-800); }
.pill--gold  { background: var(--gold-100); border-color: var(--gold-200); color: var(--gold-700); }

.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 0 rgba(14,159,110,.5);
  animation: dot-ping 2.2s var(--ease-soft) infinite;
  flex: none;
}
@keyframes dot-ping {
  0%,100% { box-shadow: 0 0 0 0 rgba(14,159,110,.5); }
  60%     { box-shadow: 0 0 0 8px rgba(14,159,110,0); }
}

/* ==========================================================================
   04 · HEADER / NAV
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(250,250,248,.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              background var(--t-base) var(--ease-out);
}
.header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 26px rgba(4,66,42,.07);
  background: rgba(250,250,248,.94);
}

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

/* ---- Logo: fixed, generous, never squashed ---- */
.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  transition: transform var(--t-base) var(--ease-spring);
}
.brand:hover { transform: translateY(-1px) scale(1.02); }
.brand__img {
  height: 46px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 560px) {
  .brand__img { height: 38px; }
}
.footer .brand__img { height: 52px; }

.nav { display: none; }

@media (min-width: 1040px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .nav__link {
    position: relative;
    padding: 10px 15px;
    border-radius: var(--r-sm);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--ink-2);
    transition: color var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out);
  }
  .nav__link::after {
    content: "";
    position: absolute;
    left: 15px; right: 15px; bottom: 4px;
    height: 2px;
    border-radius: 2px;
    background: var(--grad-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-base) var(--ease-out);
  }
  .nav__link:hover { color: var(--brand-700); background: var(--brand-50); }
  .nav__link:hover::after,
  .nav__link[aria-current="page"]::after { transform: scaleX(1); }
  .nav__link[aria-current="page"] { color: var(--brand-700); font-weight: 700; }
}

.header__actions { display: flex; align-items: center; gap: 10px; }
.header__actions .btn--tg-icon {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  border-radius: 50%;
}
@media (min-width: 720px) { .header__actions .btn--tg-icon { display: inline-flex; } }
@media (max-width: 1039px) { .header__actions .btn--cta { display: none; } }

/* ---- Hamburger ---- */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0 11px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}
@media (min-width: 1040px) { .burger { display: none; } }
.burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-800);
  transition: transform var(--t-base) var(--ease-out), opacity var(--t-fast) var(--ease-out);
}
.burger span:nth-child(1) { width: 22px; }
.burger span:nth-child(2) { width: 16px; }
.burger span:nth-child(3) { width: 20px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* ---- Drawer ---- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  visibility: hidden;
  pointer-events: none;
}
.drawer.is-open { visibility: visible; pointer-events: auto; }

.drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(4,42,26,.42);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
}
.drawer.is-open .drawer__scrim { opacity: 1; }

.drawer__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(384px, 88vw);
  height: 100%;
  background: var(--surface);
  box-shadow: -24px 0 60px rgba(4,66,42,.18);
  padding: var(--sp-5) var(--sp-6) var(--sp-9);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }

.drawer__head { display: flex; align-items: center; justify-content: space-between; }
.drawer__close {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-2);
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.drawer__close:hover { background: var(--brand-50); color: var(--brand-700); }

.drawer__nav { display: flex; flex-direction: column; gap: 2px; }
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid transparent;
  transition: background var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out);
}
.drawer__link:hover { background: var(--brand-50); border-color: var(--line-brand); color: var(--brand-800); transform: translateX(3px); }
.drawer__link[aria-current="page"] { background: var(--brand-50); border-color: var(--line-brand); color: var(--brand-700); }
.drawer__link svg { opacity: .45; }

.drawer__foot { margin-top: auto; display: grid; gap: 10px; }

/* ==========================================================================
   05 · MOBILE BOTTOM BAR + FAB
   ========================================================================== */
.mobilebar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-sticky);
  height: calc(var(--mobilebar-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(255,255,255,.93);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 26px rgba(4,66,42,.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 1040px) { .mobilebar { display: none; } }

/* reserve room so the fixed bar never covers the end of the page */
@media (max-width: 1039px) {
  body { padding-bottom: calc(var(--mobilebar-h) + env(safe-area-inset-bottom)); }
}

.mobilebar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--ink-4);
  transition: color var(--t-fast) var(--ease-out);
}
.mobilebar__item svg { width: 21px; height: 21px; }
.mobilebar__item:hover,
.mobilebar__item[aria-current="page"] { color: var(--brand-600); }
.mobilebar__item--cta { color: var(--gold-700); }
.mobilebar__item--cta span:last-child { font-weight: 800; }
.mobilebar__item--cta svg { color: var(--gold-600); }

/* Floating Telegram FAB */
.fab {
  position: fixed;
  right: clamp(14px, 3vw, 26px);
  bottom: calc(var(--mobilebar-h) + 18px + env(safe-area-inset-bottom));
  z-index: var(--z-fab);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 15px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(34,158,217,.42);
  transition: transform var(--t-base) var(--ease-spring), box-shadow var(--t-base) var(--ease-out);
}
@media (min-width: 1040px) { .fab { bottom: clamp(20px, 3vw, 34px); } }
.fab:hover { transform: translateY(-4px) scale(1.03); color: #fff; box-shadow: 0 18px 40px rgba(34,158,217,.5); }
.fab svg { width: 24px; height: 24px; flex: none; }
.fab__label { display: none; }
@media (min-width: 560px) { .fab__label { display: inline; } }
@media (max-width: 559px) { .fab { padding: 14px; border-radius: 50%; } }

.fab::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(42,171,238,.4);
  animation: fab-ring 2.8s var(--ease-soft) infinite;
  pointer-events: none;
}
@keyframes fab-ring {
  0%   { transform: scale(.94); opacity: .9; }
  70%  { transform: scale(1.16); opacity: 0; }
  100% { transform: scale(1.16); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .fab::before { animation: none; opacity: 0; } }

/* ==========================================================================
   06 · HERO + PHONE MOCKUP
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(56px, 7vw, 104px);
  background:
    radial-gradient(1100px 640px at 78% 6%, rgba(14,159,110,.13), transparent 62%),
    radial-gradient(760px 520px at 4% 88%, rgba(199,154,40,.10), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--bg-mint) 46%, var(--bg) 100%);
}

/* animated aurora blobs */
.hero__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  will-change: transform;
}
.hero__blob--1 {
  width: 460px; height: 460px;
  top: -140px; right: -80px;
  background: radial-gradient(circle, rgba(34,192,138,.55), transparent 68%);
  animation: drift-a 19s var(--ease-soft) infinite alternate;
}
.hero__blob--2 {
  width: 380px; height: 380px;
  bottom: -150px; left: -110px;
  background: radial-gradient(circle, rgba(227,190,94,.48), transparent 68%);
  animation: drift-b 23s var(--ease-soft) infinite alternate;
}
.hero__blob--3 {
  width: 300px; height: 300px;
  top: 42%; left: 46%;
  background: radial-gradient(circle, rgba(110,231,183,.42), transparent 68%);
  animation: drift-c 17s var(--ease-soft) infinite alternate;
}
@keyframes drift-a { to { transform: translate3d(-56px, 48px, 0) scale(1.13); } }
@keyframes drift-b { to { transform: translate3d(64px, -42px, 0) scale(1.1); } }
@keyframes drift-c { to { transform: translate3d(-40px, -56px, 0) scale(.9); } }
@media (prefers-reduced-motion: reduce) {
  .hero__blob { animation: none; }
}

/* floating particle sparkles */
.hero__particles { position: absolute; inset: 0; pointer-events: none; }
.hero__particle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-400);
  opacity: .34;
  animation: float-up linear infinite;
}
.hero__particle:nth-child(even) { background: var(--gold-400); width: 5px; height: 5px; }
.hero__particle:nth-child(3n) { width: 8px; height: 8px; opacity: .22; }
@keyframes float-up {
  0%   { transform: translateY(0) scale(.6); opacity: 0; }
  12%  { opacity: .4; }
  88%  { opacity: .32; }
  100% { transform: translateY(-320px) scale(1.15); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .hero__particles { display: none; } }

.hero__grid {
  position: relative;
  display: grid;
  gap: clamp(40px, 5vw, 68px);
  align-items: center;
}
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); }
}

.hero__copy { display: flex; flex-direction: column; gap: var(--sp-5); }

.hero__title {
  font-size: var(--fs-display);
  line-height: 1.03;
  letter-spacing: var(--ls-display);
  font-weight: 800;
}
.hero__title span { display: block; }

.hero__bonus {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--gold-100), #fff);
  border: 1.5px solid var(--gold-200);
  box-shadow: var(--shadow-sm);
  align-self: flex-start;
}
.hero__bonus b {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  font-weight: 800;
  color: var(--gold-700);
  letter-spacing: -.02em;
}
.hero__bonus small {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding-top: var(--sp-2);
}
.hero__meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-3);
}
.hero__meta svg { color: var(--brand-500); width: 18px; height: 18px; flex: none; }

/* ---- Phone mockup ---- */
.mockup {
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1400px;
}

.mockup__glow {
  position: absolute;
  width: 118%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(14,159,110,.24) 0%, rgba(14,159,110,.05) 42%, transparent 68%);
  filter: blur(16px);
  animation: glow-breathe 6s var(--ease-soft) infinite;
}
@keyframes glow-breathe {
  0%,100% { transform: scale(.94); opacity: .8; }
  50%     { transform: scale(1.06); opacity: 1; }
}

.phone {
  position: relative;
  width: min(320px, 78vw);
  aspect-ratio: 320 / 650;
  border-radius: 46px;
  padding: 11px;
  background: linear-gradient(150deg, #21372D 0%, #0C1D15 42%, #2B4438 100%);
  box-shadow:
    0 2px 0 rgba(255,255,255,.16) inset,
    0 30px 60px rgba(4,66,42,.28),
    0 60px 110px rgba(4,66,42,.20);
  transform-style: preserve-3d;
  animation: phone-float 7s var(--ease-soft) infinite;
  transition: transform var(--t-slow) var(--ease-out);
}
@media (min-width: 980px) {
  .phone { width: min(348px, 34vw); }
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotateY(-8deg) rotateX(2deg); }
  50%      { transform: translateY(-18px) rotateY(-4deg) rotateX(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .phone { animation: none; transform: none; }
  .mockup__glow { animation: none; }
}
.mockup:hover .phone { animation-play-state: paused; transform: translateY(-10px) rotateY(0deg) rotateX(0deg) scale(1.02); }

.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: #0B1611;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,.1) inset;
}
.phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone__notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 104px;
  height: 26px;
  border-radius: var(--r-pill);
  background: #08110D;
  z-index: 3;
}
.phone__notch::after {
  content: "";
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, #2E6B55, #0C2019);
}

/* subtle screen sheen sweeping across the glass */
.phone__sheen {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 36px;
  background: linear-gradient(112deg, transparent 34%, rgba(255,255,255,.16) 48%, transparent 62%);
  transform: translateX(-60%);
  animation: sheen 6.5s var(--ease-soft) infinite;
  pointer-events: none;
}
@keyframes sheen {
  0%, 62% { transform: translateX(-70%); }
  100%    { transform: translateX(70%); }
}
@media (prefers-reduced-motion: reduce) { .phone__sheen { animation: none; opacity: .06; } }

.phone__side {
  position: absolute;
  right: -3px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, #35513F, #17281F);
}
.phone__side--1 { top: 132px; height: 58px; }
.phone__side--2 { top: 200px; height: 34px; }

/* floating info chips around the phone */
.mockup__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  z-index: 4;
}
.mockup__chip i {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-600);
  flex: none;
}
.mockup__chip i svg { width: 15px; height: 15px; }
.mockup__chip--gold i { background: var(--gold-100); color: var(--gold-600); }

/* Mobile-first: chips stay INSIDE the mockup box so they can never poke past
   the page gutter and create a sideways scroll. */
.mockup__chip--a { top: 10%; left: 0; animation: chip-a 5.5s var(--ease-soft) infinite; }
.mockup__chip--b { top: 46%; right: 0; animation: chip-b 6.4s var(--ease-soft) infinite; }
.mockup__chip--c { bottom: 10%; left: 0; animation: chip-c 7s var(--ease-soft) infinite; }

@keyframes chip-a { 0%,100% { transform: translate(0,0); } 50% { transform: translate(6px,-13px); } }
@keyframes chip-b { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-9px,11px); } }
@keyframes chip-c { 0%,100% { transform: translate(0,0); } 50% { transform: translate(8px,10px); } }
@media (prefers-reduced-motion: reduce) { .mockup__chip { animation: none; } }

/* Only once the hero is two-column (and the gutter is wide) may they overhang. */
@media (min-width: 980px) {
  .mockup__chip--a { left: -6%; }
  .mockup__chip--b { right: -8%; }
  .mockup__chip--c { left: -2%; }
}

@media (max-width: 560px) {
  .mockup__chip { font-size: 10.5px; padding: 8px 12px; gap: 7px; }
  .mockup__chip i { width: 22px; height: 22px; }
  .mockup__chip i svg { width: 13px; height: 13px; }
  .mockup__chip--c { display: none; }
}

/* ==========================================================================
   07 · TRUST STRIP / MARQUEE
   ========================================================================== */
.trustbar {
  border-block: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  padding-block: 18px;
}
.marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track {
  display: flex;
  gap: 52px;
  padding-right: 52px;
  flex: none;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: .87rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
}
.marquee__item svg { color: var(--brand-500); width: 17px; height: 17px; }

/* ==========================================================================
   08 · SECTION HEADERS
   ========================================================================== */
.sec-head {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: 760px;
  margin-bottom: clamp(36px, 4.5vw, 60px);
}
.sec-head--center { align-items: center; text-align: center; margin-inline: auto; }
.sec-head--wide { max-width: 900px; }

.sec-head__bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.sec-head__bar .sec-head { margin-bottom: 0; }

/* ==========================================================================
   09 · CARDS
   ========================================================================== */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 2.6vw, 34px);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out);
  overflow: hidden;
}
.card--lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-brand);
}

/* top gradient hairline that draws in on hover */
.card--lift::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease-out);
}
.card--lift:hover::before { transform: scaleX(1); }

.card__icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(140deg, var(--brand-50), var(--brand-100));
  color: var(--brand-700);
  margin-bottom: var(--sp-5);
  box-shadow: inset 0 0 0 1px rgba(14,159,110,.14);
  transition: transform var(--t-base) var(--ease-spring), background var(--t-base) var(--ease-out);
}
.card__icon svg { width: 27px; height: 27px; }
.card--lift:hover .card__icon { transform: scale(1.08) rotate(-4deg); }
.card__icon--gold { background: linear-gradient(140deg, var(--gold-100), var(--gold-200)); color: var(--gold-700); box-shadow: inset 0 0 0 1px rgba(199,154,40,.2); }

.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-3); font-size: var(--fs-sm); }
.card p + p { margin-top: 12px; }

.card__list { margin-top: var(--sp-4); display: grid; gap: 9px; }
.card__list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: var(--fs-sm);
  color: var(--ink-3);
}
.card__list svg { color: var(--brand-500); flex: none; margin-top: 4px; width: 15px; height: 15px; }

/* ---- Step cards ---- */
.steps { counter-reset: step; }
.step {
  position: relative;
  padding-left: 0;
}
.step__num {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: var(--shadow-glow);
  margin-bottom: var(--sp-5);
}
.step__connector {
  display: none;
}
@media (min-width: 900px) {
  .steps--connected .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 58px;
    right: -14px;
    width: 28px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line-brand) 0 6px, transparent 6px 12px);
  }
}

/* ---- Stats ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.stat {
  background: var(--surface);
  padding: clamp(24px, 3vw, 38px) clamp(18px, 2vw, 28px);
  text-align: center;
  transition: background var(--t-base) var(--ease-out);
}
.stat:hover { background: var(--brand-50); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.stat__label {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-4);
}
.stat__sub { font-size: var(--fs-xs); color: var(--ink-4); margin-top: 6px; }

/* ---- Game cards ---- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}
@media (min-width: 700px) {
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(196px, 1fr)); }
}

.game {
  position: relative;
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base) var(--ease-spring),
              box-shadow var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out);
}
.game:hover, .game:focus-visible {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(14,159,110,.16);
  border-color: var(--brand-300);
}

.game__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface-3);
}
.game__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out), filter var(--t-slow) var(--ease-out);
}
.game:hover .game__media img { transform: scale(1.09); }

.game__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,43,24,0) 32%, rgba(3,43,24,.78) 100%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
  display: grid;
  place-items: center;
}
.game:hover .game__overlay, .game:focus-visible .game__overlay { opacity: 1; }

.game__play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
  transform: translateY(12px) scale(.92);
  transition: transform var(--t-base) var(--ease-spring);
}
.game:hover .game__play, .game:focus-visible .game__play { transform: translateY(0) scale(1); }

.game__tag {
  position: absolute;
  top: 9px; left: 9px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: rgba(255,255,255,.94);
  color: var(--brand-700);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(6px);
}
.game__tag--hot { background: linear-gradient(135deg, #E0553A, #C93F26); color: #fff; }
.game__tag--new { background: var(--grad-brand); color: #fff; }
.game__tag--top { background: var(--grad-gold); color: var(--brand-950); }

.game__body { padding: 13px 14px 15px; }
.game__title {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.game__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11.5px;
  color: var(--ink-4);
  font-weight: 600;
}
.game__rtp { color: var(--brand-600); font-weight: 800; }

/* filter tabs */
.filters {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: var(--sp-7);
}
.filter {
  padding: 10px 19px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line);
  background: var(--surface);
  font-family: var(--font-display);
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: var(--shadow-xs);
  transition: all var(--t-fast) var(--ease-out);
}
.filter:hover { border-color: var(--brand-300); color: var(--brand-700); transform: translateY(-2px); }
.filter[aria-pressed="true"] {
  background: var(--grad-brand);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.filter span { opacity: .62; font-weight: 500; margin-left: 4px; }

.search-wrap { position: relative; max-width: 420px; width: 100%; }
.search-wrap svg {
  position: absolute;
  left: 17px; top: 50%;
  transform: translateY(-50%);
  color: var(--ink-4);
  width: 19px; height: 19px;
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 14px 18px 14px 46px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line);
  background: var(--surface);
  font-size: var(--fs-sm);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
  transition: border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.search-input::placeholder { color: var(--ink-4); }
.search-input:focus { outline: none; border-color: var(--brand-400); box-shadow: var(--ring); }

.empty-state {
  text-align: center;
  padding: var(--sp-11) var(--sp-5);
  color: var(--ink-3);
}
.empty-state svg { margin: 0 auto var(--sp-4); color: var(--line-strong); width: 48px; height: 48px; }

/* ---- Testimonials ---- */
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 2.6vw, 32px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.quote:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.quote__stars { display: flex; gap: 3px; color: var(--gold-500); }
.quote__stars svg { width: 17px; height: 17px; }
.quote__text { color: var(--ink-2); font-size: var(--fs-sm); line-height: 1.78; flex: 1; }
.quote__who { display: flex; align-items: center; gap: 12px; padding-top: var(--sp-2); border-top: 1px solid var(--line); }
.quote__avatar {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  flex: none;
}
.quote__name { font-weight: 700; color: var(--ink); font-size: var(--fs-sm); line-height: 1.3; }
.quote__city { font-size: var(--fs-xs); color: var(--ink-4); }

/* ---- Split feature block ---- */
.split {
  display: grid;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split--reverse .split__media { order: 2; }
}
.split__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: var(--surface);
}
.split__media img { width: 100%; }

.checklist { display: grid; gap: 14px; margin-top: var(--sp-5); }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: var(--ink-3);
  font-size: var(--fs-sm);
  line-height: 1.7;
}
.checklist b { color: var(--ink); display: block; font-family: var(--font-display); font-size: 1rem; margin-bottom: 2px; }
.checklist i {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 9px;
  background: var(--brand-50);
  color: var(--brand-600);
  flex: none;
  margin-top: 2px;
  box-shadow: inset 0 0 0 1px rgba(14,159,110,.14);
}
.checklist i svg { width: 15px; height: 15px; }

/* ==========================================================================
   10 · SCREENSHOT SLIDER
   ========================================================================== */
.shots {
  position: relative;
  background: linear-gradient(180deg, var(--bg-mint) 0%, var(--surface) 100%);
  overflow: hidden;
}
.shots::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-halo);
  pointer-events: none;
}

.slider { position: relative; }

.slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 22px clamp(4px, 2vw, 12px) 34px;
  margin-inline: calc(var(--gutter) * -0.5);
  padding-inline: calc(var(--gutter) * 0.5);
}
.slider__viewport::-webkit-scrollbar { display: none; }

.slider__track {
  display: flex;
  gap: clamp(18px, 2.4vw, 30px);
  width: max-content;
}

.shot {
  position: relative;
  flex: none;
  width: clamp(206px, 24vw, 258px);
  scroll-snap-align: center;
  border-radius: 34px;
  padding: 9px;
  background: linear-gradient(150deg, #223A2E 0%, #0D1F16 46%, #2C4639 100%);
  box-shadow: 0 2px 0 rgba(255,255,255,.14) inset, var(--shadow-lg);
  transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t-slow) var(--ease-out);
}
.shot:hover { transform: translateY(-14px) scale(1.03); box-shadow: 0 2px 0 rgba(255,255,255,.14) inset, var(--shadow-xl); }
.shot__inner {
  border-radius: 26px;
  overflow: hidden;
  background: #0B1611;
  aspect-ratio: 482 / 935;
}
.shot__inner img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.shot__caption {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  padding: 7px 16px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--brand-700);
  white-space: nowrap;
}

.slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: var(--sp-6);
}
.slider__btn {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--line);
  color: var(--brand-700);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base) var(--ease-out);
}
.slider__btn:hover { background: var(--grad-brand); color: #fff; border-color: transparent; box-shadow: var(--shadow-glow); transform: scale(1.06); }
.slider__btn:disabled { opacity: .38; cursor: not-allowed; transform: none; background: var(--surface); color: var(--ink-4); box-shadow: var(--shadow-xs); }

.slider__dots { display: flex; gap: 8px; align-items: center; }
.slider__dot {
  width: 9px; height: 9px;
  border-radius: var(--r-pill);
  background: var(--line-strong);
  transition: all var(--t-base) var(--ease-out);
}
.slider__dot[aria-current="true"] { width: 28px; background: var(--grad-brand); }

/* ==========================================================================
   11 · OG BANNER BLOCK
   ========================================================================== */
.ogband {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  isolation: isolate;
}
.ogband__img {
  width: 100%;
  display: block;
  transition: transform 1.2s var(--ease-out);
}
.ogband:hover .ogband__img { transform: scale(1.035); }

.ogband__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding: clamp(20px, 2.6vw, 30px) clamp(22px, 3vw, 40px);
  background: var(--grad-deep);
  color: #fff;
}
.ogband__bar h3 { color: #fff; margin-bottom: 5px; }
.ogband__bar p { color: rgba(255,255,255,.8); font-size: var(--fs-sm); max-width: 60ch; }
.ogband__bar .btn-row { flex: none; }

.ogband__ribbon {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 17px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(8px);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-700);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   12 · BONUS / CTA BLOCKS
   ========================================================================== */
.cta-band {
  position: relative;
  border-radius: var(--r-2xl);
  padding: clamp(36px, 5vw, 72px) clamp(24px, 4vw, 64px);
  background: var(--grad-deep);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px 340px at 14% 8%, rgba(110,231,183,.24), transparent 62%),
    radial-gradient(560px 320px at 88% 92%, rgba(227,190,94,.2), transparent 62%);
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent);
  mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: var(--sp-4); }
.cta-band p { color: rgba(255,255,255,.82); max-width: 68ch; margin-inline: auto; }
.cta-band .eyebrow { color: var(--brand-300); }
.cta-band .eyebrow::before, .cta-band .eyebrow::after { background: var(--brand-300); }
.cta-band .btn-row { margin-top: var(--sp-7); justify-content: center; }

.cta-band__note {
  margin-top: var(--sp-6);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.62);
}

/* bonus breakdown table inside light sections */
.bonus-grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.bonus-card {
  position: relative;
  padding: clamp(24px, 2.6vw, 32px);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bonus-card--feature {
  background: linear-gradient(160deg, var(--gold-100), var(--surface) 62%);
  border-color: var(--gold-200);
}
.bonus-card__amt {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.3rem + 1.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--brand-700);
  line-height: 1.1;
  margin-bottom: 6px;
}
.bonus-card--feature .bonus-card__amt { color: var(--gold-700); }
.bonus-card__label { font-family: var(--font-display); font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.bonus-card p { font-size: var(--fs-sm); color: var(--ink-3); }

/* ==========================================================================
   13 · ACCORDION
   ========================================================================== */
.accordion { display: grid; gap: 13px; }

.acc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.acc.is-open { border-color: var(--line-brand); box-shadow: var(--shadow-md); }

.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: 20px clamp(18px, 2vw, 26px);
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(.98rem, .94rem + .2vw, 1.09rem);
  font-weight: 600;
  color: var(--ink);
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.acc__btn:hover { background: var(--brand-50); color: var(--brand-800); }
.acc.is-open .acc__btn { color: var(--brand-700); }

.acc__ico {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-600);
  flex: none;
  transition: transform var(--t-base) var(--ease-spring), background var(--t-base) var(--ease-out);
}
.acc.is-open .acc__ico { transform: rotate(180deg); background: var(--grad-brand); color: #fff; }
.acc__ico svg { width: 16px; height: 16px; }

.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-slow) var(--ease-out);
}
.acc.is-open .acc__panel { grid-template-rows: 1fr; }

/* visibility (not just height) so collapsed links stay out of the tab order */
.acc__inner {
  overflow: hidden;
  min-height: 0;               /* lets the 0fr row actually collapse */
  visibility: hidden;
  transition: visibility var(--t-slow) var(--ease-out);
}
.acc.is-open .acc__inner { visibility: visible; }
.acc__inner > div {
  padding: 0 clamp(18px, 2vw, 26px) 22px;
  color: var(--ink-3);
  font-size: var(--fs-sm);
  line-height: 1.8;
}
.acc__inner p + p { margin-top: 12px; }
.acc__inner ul { margin-top: 10px; display: grid; gap: 8px; }
.acc__inner ul li { padding-left: 20px; position: relative; }
.acc__inner ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-400);
}

/* ==========================================================================
   14 · PAGE HEAD + PROSE (legal / content pages)
   ========================================================================== */
.pagehead {
  position: relative;
  padding-block: clamp(46px, 6vw, 84px);
  background:
    radial-gradient(760px 420px at 82% 0%, rgba(14,159,110,.14), transparent 64%),
    linear-gradient(180deg, #FFFFFF, var(--bg-mint));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.pagehead__inner { position: relative; display: flex; flex-direction: column; gap: var(--sp-4); max-width: 820px; }
.pagehead h1 { margin-bottom: 0; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  color: var(--ink-4);
  margin-bottom: var(--sp-2);
}
.crumbs a { color: var(--ink-3); font-weight: 600; }
.crumbs a:hover { color: var(--brand-700); }
.crumbs svg { width: 13px; height: 13px; opacity: .5; }

.prose { max-width: 78ch; }
.prose > * + * { margin-top: var(--sp-5); }
.prose h2 {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem);
  margin-top: var(--sp-10);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
}
.prose > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { font-size: var(--fs-h4); margin-top: var(--sp-7); }
.prose p { color: var(--ink-3); line-height: var(--lh-loose); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose ul, .prose ol { display: grid; gap: 11px; padding-left: 4px; }
.prose ul li { position: relative; padding-left: 26px; color: var(--ink-3); line-height: 1.75; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 6px; top: 11px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand-400);
}
.prose ol { counter-reset: n; }
.prose ol li {
  position: relative;
  padding-left: 38px;
  counter-increment: n;
  color: var(--ink-3);
  line-height: 1.75;
}
.prose ol li::before {
  content: counter(n);
  position: absolute;
  left: 0; top: 1px;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.callout {
  padding: var(--sp-5) var(--sp-6);
  border-radius: var(--r-md);
  background: var(--brand-50);
  border: 1px solid var(--line-brand);
  border-left: 4px solid var(--brand-500);
  color: var(--ink-2);
  font-size: var(--fs-sm);
  line-height: 1.78;
}
.callout strong { color: var(--brand-800); }
.callout--gold { background: var(--gold-100); border-color: var(--gold-200); border-left-color: var(--gold-500); }
.callout--gold strong { color: var(--gold-700); }

.toc {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: var(--sp-6);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.toc h4 { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .14em; color: var(--ink-4); margin-bottom: var(--sp-4); }
.toc ul { display: grid; gap: 3px; }
.toc a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--r-xs);
  font-size: var(--fs-sm);
  color: var(--ink-3);
  border-left: 2px solid transparent;
  transition: all var(--t-fast) var(--ease-out);
}
.toc a:hover { background: var(--brand-50); color: var(--brand-700); border-left-color: var(--brand-400); }

.legal-layout { display: grid; gap: clamp(32px, 4vw, 56px); }
@media (min-width: 960px) {
  .legal-layout { grid-template-columns: 260px minmax(0, 1fr); }
}
@media (max-width: 959px) { .toc { position: static; } }

/* data table */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}
table { width: 100%; border-collapse: collapse; min-width: 480px; }
thead th {
  background: var(--brand-50);
  color: var(--brand-800);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-brand);
  white-space: nowrap;
}
tbody td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-sm);
  color: var(--ink-3);
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr { transition: background var(--t-fast) var(--ease-out); }
tbody tr:hover { background: var(--bg-tint); }
tbody td:first-child { font-weight: 700; color: var(--ink); }

/* ==========================================================================
   15 · FORMS
   ========================================================================== */
.form { display: grid; gap: var(--sp-5); }
.form__row { display: grid; gap: var(--sp-5); }
@media (min-width: 640px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
}
.field .req { color: var(--danger-600); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 17px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  background: var(--surface);
  font-size: var(--fs-sm);
  color: var(--ink);
  transition: border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.field textarea { min-height: 148px; resize: vertical; line-height: 1.7; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand-400);
  box-shadow: var(--ring);
}
.field__hint { font-size: var(--fs-xs); color: var(--ink-4); }

.form__note {
  padding: 14px 18px;
  border-radius: var(--r-sm);
  background: var(--brand-50);
  border: 1px solid var(--line-brand);
  font-size: var(--fs-xs);
  color: var(--brand-800);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.form__note svg { flex: none; margin-top: 2px; width: 16px; height: 16px; }

.form-status {
  display: none;
  padding: 15px 18px;
  border-radius: var(--r-sm);
  background: var(--brand-50);
  border: 1px solid var(--line-brand);
  color: var(--brand-800);
  font-size: var(--fs-sm);
  font-weight: 600;
}
.form-status.is-visible { display: block; animation: pop-in var(--t-base) var(--ease-spring); }
@keyframes pop-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* contact channel cards */
.channel {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
}
.channel:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-brand); }
.channel i {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  flex: none;
  background: var(--brand-50);
  color: var(--brand-600);
}
.channel i svg { width: 23px; height: 23px; }
.channel--tg i { background: #E7F4FC; color: #229ED9; }
.channel h4 { margin-bottom: 3px; }
.channel p { font-size: var(--fs-sm); color: var(--ink-3); }
.channel__link { font-size: var(--fs-sm); font-weight: 700; display: inline-flex; align-items: center; gap: 5px; margin-top: 7px; }

/* ==========================================================================
   16 · FOOTER
   ========================================================================== */
.footer {
  position: relative;
  background: var(--grad-deep);
  color: rgba(255,255,255,.76);
  padding-top: clamp(56px, 6vw, 88px);
  margin-top: clamp(48px, 5vw, 72px);
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 400px at 8% 0%, rgba(110,231,183,.16), transparent 60%),
    radial-gradient(640px 360px at 92% 100%, rgba(227,190,94,.13), transparent 60%);
  pointer-events: none;
}
.footer > * { position: relative; }

.footer__top {
  display: grid;
  gap: clamp(34px, 4vw, 52px);
  padding-bottom: var(--sp-9);
}
@media (min-width: 760px) {
  .footer__top { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 1040px) {
  .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; }
}

.footer__brandcol { display: flex; flex-direction: column; gap: var(--sp-4); max-width: 40ch; }
.footer__brandcol p { font-size: var(--fs-sm); line-height: 1.8; color: rgba(255,255,255,.68); }

.footer__logo {
  display: inline-block;
  padding: 12px 18px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 24px rgba(0,0,0,.16);
  align-self: flex-start;
}

.footer h4 {
  color: #fff;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: var(--sp-5);
  font-weight: 700;
}
.footer__links { display: grid; gap: 11px; }
.footer__links a {
  color: rgba(255,255,255,.72);
  font-size: var(--fs-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out);
}
.footer__links a::before {
  content: "";
  width: 0; height: 1.5px;
  background: var(--brand-300);
  border-radius: 2px;
  transition: width var(--t-base) var(--ease-out);
}
.footer__links a:hover { color: #fff; transform: translateX(3px); }
.footer__links a:hover::before { width: 12px; }

.footer__social { display: grid; gap: 11px; }
.footer__tg {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  transition: background var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
}
.footer__tg:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); transform: translateY(-2px); color: #fff; }
.footer__tg i {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  flex: none;
}
.footer__tg svg { width: 21px; height: 21px; color: #fff; }
.footer__tg b { display: block; font-family: var(--font-display); font-size: var(--fs-sm); line-height: 1.35; }
.footer__tg span { font-size: var(--fs-xs); color: rgba(255,255,255,.62); }

.footer__disclaimer {
  padding: var(--sp-6);
  border-radius: var(--r-md);
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.1);
  margin-bottom: var(--sp-7);
}
.footer__disclaimer p {
  font-size: var(--fs-xs);
  line-height: 1.85;
  color: rgba(255,255,255,.66);
}
.footer__disclaimer p + p { margin-top: 11px; }
.footer__disclaimer strong { color: rgba(255,255,255,.92); font-weight: 700; }

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--sp-6);
}
.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: rgba(255,255,255,.88);
}
.age-badge b {
  display: grid;
  place-items: center;
  min-width: 30px; height: 30px;
  padding-inline: 6px;
  border-radius: 50%;
  background: var(--danger-600);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
}
.age-badge svg { width: 16px; height: 16px; opacity: .8; }

.footer__seo {
  padding-block: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer__seo h4 { margin-bottom: var(--sp-3); }
.footer__seo p { font-size: var(--fs-xs); line-height: 1.9; color: rgba(255,255,255,.5); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: var(--sp-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-6);
  align-items: center;
  justify-content: space-between;
}
.footer__bottom p { font-size: var(--fs-xs); color: rgba(255,255,255,.56); }
.footer__legal { display: flex; flex-wrap: wrap; gap: var(--sp-5); }
.footer__legal a { font-size: var(--fs-xs); color: rgba(255,255,255,.62); }
.footer__legal a:hover { color: #fff; }

@media (max-width: 1039px) {
  .footer { padding-bottom: calc(var(--mobilebar-h) + 12px); }
}

/* ==========================================================================
   17 · REVEAL / MOTION UTILITIES
   ========================================================================== */
/* Scoped to .js (set by an inline head script) so that if JavaScript is
   blocked or fails, nothing is ever left stuck at opacity: 0. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--t-reveal) var(--ease-out),
              transform var(--t-reveal) var(--ease-out);
  will-change: opacity, transform;
}
.js [data-reveal="left"]  { transform: translateX(-32px); }
.js [data-reveal="right"] { transform: translateX(32px); }
.js [data-reveal="zoom"]  { transform: scale(.94); }
.js [data-reveal].is-in   { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
}

/* staggered children */
[data-stagger] > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* page load fade */
body { animation: page-in .6s var(--ease-out) both; }
@keyframes page-in { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { body { animation: none; } }

/* scroll progress bar under the header */
.progressbar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-brand);
  z-index: calc(var(--z-header) + 1);
  transition: width 90ms linear;
  border-radius: 0 3px 3px 0;
}

/* ==========================================================================
   18 · QR CARD (download page)
   ========================================================================== */
.qr-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(18px, 2.4vw, 28px);
  margin-top: var(--sp-4);
  padding: clamp(20px, 2.4vw, 26px);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  max-width: 560px;
}
.qr-card > div:last-child { flex: 1 1 240px; }
.qr-card h3 { font-size: var(--fs-h4); margin-bottom: 6px; }
.qr-card p { font-size: var(--fs-sm); color: var(--ink-3); }
.qr-card code {
  font-family: var(--font-mono);
  font-size: .82em;
  padding: 2px 6px;
  border-radius: 5px;
  background: var(--surface-3);
  color: var(--brand-800);
}

.qr-code {
  flex: none;
  padding: 12px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--t-base) var(--ease-spring), box-shadow var(--t-base) var(--ease-out);
}
.qr-code:hover { transform: scale(1.04) rotate(-1.5deg); box-shadow: var(--shadow-lg); }
.qr-code::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px;
  top: 12px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-500), transparent);
  box-shadow: 0 0 12px rgba(14,159,110,.7);
  animation: qr-scan 3.2s var(--ease-soft) infinite;
}
@keyframes qr-scan {
  0%, 100% { transform: translateY(0); opacity: .85; }
  50%      { transform: translateY(104px); opacity: .85; }
}
@media (prefers-reduced-motion: reduce) { .qr-code::after { animation: none; opacity: 0; } }

/* ==========================================================================
   19 · UTILITIES
   ========================================================================== */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.mt-8 { margin-top: var(--sp-8); }
.mt-9 { margin-top: var(--sp-9); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-7 { margin-bottom: var(--sp-7); }
.mb-8 { margin-bottom: var(--sp-8); }
.mx-auto { margin-inline: auto; }
.maxw-narrow { max-width: 68ch; }
.maxw-mid { max-width: 78ch; }
.flow > * + * { margin-top: var(--sp-4); }
.flow-lg > * + * { margin-top: var(--sp-6); }

/* ==========================================================================
   20 · MOBILE / TABLET REFINEMENTS
   Everything below only narrows the layout — no desktop rule is affected.
   ========================================================================== */

/* --------------------------------------------------------------------------
   20.1 Hero running as a single column: put the phone mockup ABOVE the
   CTA buttons instead of dumping it at the very bottom of the section.
   `display: contents` promotes .hero__copy's children into the flex column
   so the mockup can be ordered in between them.
   -------------------------------------------------------------------------- */
@media (max-width: 979px) {
  .hero__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-5);
  }
  .hero__copy { display: contents; }

  .hero__copy > .crumbs   { order: 1; }
  .hero__copy > .pill     { order: 2; justify-self: start; align-self: flex-start; }
  .hero__title            { order: 3; }
  .hero__copy > .lead     { order: 4; }
  /* mockup sits above BOTH the bonus badge and the CTA button */
  .mockup                 { order: 5; margin-block: var(--sp-3); }
  .hero__bonus            { order: 6; align-self: flex-start; }
  .hero__copy > .btn-row  { order: 7; }
  .hero__meta             { order: 8; }
  .qr-card                { order: 9; }

  /* mockup no longer needs to fill a tall column */
  .mockup { width: 100%; }
}

/* --------------------------------------------------------------------------
   20.2 Compact buttons on phones
   -------------------------------------------------------------------------- */
@media (max-width: 560px) {
  .btn {
    padding: 12px 20px;
    font-size: .875rem;
    gap: 8px;
  }
  .btn--lg {
    padding: 13px 22px;
    font-size: .9rem;
  }
  .btn--sm { padding: 9px 15px; font-size: .8rem; }
  .btn svg { width: 16px; height: 16px; }
  .btn--lg svg { width: 17px; height: 17px; }

  .btn-row { gap: 10px; }
}

@media (max-width: 380px) {
  .btn, .btn--lg { padding: 12px 16px; font-size: .82rem; }
}

/* --------------------------------------------------------------------------
   20.2b Hero CTA buttons — noticeably smaller than the rest of the site on
   phones ("Claim ₹10,000 Bonus" + "Join Telegram Group"), stacked full-width
   so neither is squeezed. Selector specificity (.hero .btn-row .btn) beats
   .btn--lg regardless of stylesheet order, so this always wins on phone.
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  .hero .btn-row {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
  }
  .hero .btn-row .btn {
    width: 100%;
    padding: 11px 18px;
    font-size: .82rem;
    gap: 7px;
  }
  .hero .btn-row .btn svg { width: 15px; height: 15px; }
}

@media (max-width: 380px) {
  .hero .btn-row .btn { padding: 10px 14px; font-size: .78rem; }
}

/* --------------------------------------------------------------------------
   20.3 Phone-view content fit — tighter gutters and section rhythm so long
   guide pages (games / download / legal) don't feel cramped or clipped.
   -------------------------------------------------------------------------- */
@media (max-width: 700px) {
  :root {
    --gutter: 16px;
    --section-y: 52px;
    --section-y-sm: 40px;
  }

  .card { padding: 20px 18px; }
  .quote { padding: 20px 18px; }
  .bonus-card { padding: 22px 18px; }
  .cta-band { padding: 32px 20px; border-radius: var(--r-xl); }
  .ogband { border-radius: var(--r-xl); }
  .ogband__bar { padding: 20px 18px; }
  .footer__disclaimer { padding: 20px 18px; }
  .toc { padding: 20px 18px; }

  .sec-head { margin-bottom: 26px; }
  .sec-head__bar { margin-bottom: 22px; gap: var(--sp-4); }

  /* step connectors are meaningless in a single column */
  .steps--connected .step::after { display: none; }

  /* keep prose comfortable rather than edge-to-edge */
  .prose h2 { margin-top: var(--sp-8); padding-top: var(--sp-5); }
  .prose ol li { padding-left: 34px; }

  /* wide data tables scroll inside their own box, with a visible hint */
  .table-wrap { position: relative; }
  .table-wrap::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 34px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.96));
    border-radius: 0 var(--r-md) var(--r-md) 0;
  }

  /* game cards: two comfortable columns instead of three cramped ones */
  .games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .game__body { padding: 11px 11px 13px; }
  .game__title { font-size: .85rem; }
  .game__meta { font-size: 10.5px; flex-direction: column; align-items: flex-start; gap: 2px; }

  /* filter chips stay on one scrollable row rather than stacking 8 deep */
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    padding-bottom: 4px;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter { flex: none; padding: 9px 15px; font-size: .8rem; }

  .search-wrap { max-width: 100%; }

  /* headings: never let a long word blow out the line box */
  h1, h2, h3, .hero__title { overflow-wrap: anywhere; hyphens: auto; }

  .qr-card { padding: 18px; gap: 16px; }
  .qr-card .qr-code svg { width: 104px; height: 104px; }

  .stats { border-radius: var(--r-lg); }
  .stat { padding: 22px 14px; }

  .channel { padding: 16px; }
  .accordion { gap: 10px; }
  .acc__btn { padding: 16px 16px; }
}

/* --------------------------------------------------------------------------
   20.4 Very small screens
   -------------------------------------------------------------------------- */
@media (max-width: 380px) {
  :root { --gutter: 13px; }
  .games-grid { gap: 10px; }
  .hero__bonus { padding: 10px 16px; gap: 8px; }
  .hero__bonus b { font-size: 1.25rem; }
  .pill { font-size: 11.5px; padding: 6px 12px; }
}
