/* ==========================================================================
   S9 GAME — MAIN STYLESHEET
   Structure:  01 Reset  ·  02 Base type  ·  03 Layout  ·  04 Utilities
               05 Buttons  ·  06 Header / Nav  ·  07 Hero  ·  08 Components
               09 Sections  ·  10 Slider  ·  11 FAQ  ·  12 Footer
               13 Mobile bar & FAB  ·  14 Motion  ·  15 Responsive
   Naming: BEM-lite  .block__element  .block--modifier
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
  padding: 0;
}

ul[class], ol[class] { list-style: none; }

img, picture, svg, video {
  display: block;
  max-width: 100%;
}

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

:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(212, 175, 55, 0.32); color: var(--white); }


/* ==========================================================================
   02 · BASE TYPOGRAPHY & PAGE CANVAS
   ========================================================================== */
body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--ink-100);
  background-color: var(--navy-900);
  background-image: var(--grad-mesh);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Ambient page-wide vignette so content floats above depth. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(120% 70% at 50% -10%, rgba(212, 175, 55, 0.07) 0%, transparent 60%),
    radial-gradient(90% 60% at 50% 110%, rgba(11, 17, 32, 0.9) 0%, transparent 55%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--lh-snug);
  letter-spacing: -0.022em;
  color: var(--ink-050);
  text-wrap: balance;
}

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

p { text-wrap: pretty; }
p + p { margin-top: 1.05em; }

strong, b { color: var(--ink-050); font-weight: 700; }

a.inline-link {
  color: var(--gold-400);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(240, 199, 102, 0.4);
  transition: color var(--dur-fast) var(--ease-out), text-decoration-color var(--dur-fast);
}
a.inline-link:hover { color: var(--gold-300); text-decoration-color: var(--gold-300); }

hr.rule {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
  margin: var(--sp-9) 0;
}


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

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

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: var(--section-y-sm); }
.section--flush-top { padding-top: 0; }

/* Alternating tonal band to break up long pages. */
.section--band {
  background: linear-gradient(180deg, rgba(11, 17, 32, 0) 0%, rgba(18, 26, 44, 0.62) 18%, rgba(18, 26, 44, 0.62) 82%, rgba(11, 17, 32, 0) 100%);
}
.section--band-solid {
  background: linear-gradient(180deg, rgba(14, 21, 36, 0.9), rgba(11, 17, 32, 0.95));
  border-block: var(--line-soft);
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translate(-50%, -160%);
  z-index: var(--z-modal);
  background: var(--grad-gold);
  color: var(--navy-950);
  font-weight: 800;
  font-size: var(--fs-sm);
  padding: 12px 22px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-base) var(--ease-out);
}
.skip-link:focus { transform: translate(-50%, 0); }


/* ==========================================================================
   04 · UTILITIES
   ========================================================================== */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

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

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 68ch; }
.measure-wide { max-width: 82ch; }

/* Eyebrow / kicker label above headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}
.eyebrow--center::after {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.section-head { max-width: 760px; margin-bottom: clamp(36px, 4.4vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p {
  margin-top: var(--sp-4);
  font-size: var(--fs-lead);
  color: var(--ink-200);
  line-height: 1.72;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.74;
  color: var(--ink-200);
}

/* Prose block used for the long-form SEO content areas */
.prose > * + * { margin-top: 1.05em; }
.prose h2 { margin-top: 1.9em; margin-bottom: 0.15em; }
.prose h3 {
  margin-top: 1.7em;
  margin-bottom: 0.1em;
  color: var(--gold-300);
  font-size: var(--fs-h4);
  letter-spacing: 0.002em;
}
.prose p { color: var(--ink-200); }
.prose ul, .prose ol { padding-left: 1.35em; color: var(--ink-200); }
.prose ul li, .prose ol li { margin-top: 0.5em; }
.prose ul li::marker { color: var(--gold-500); }
.prose ol li::marker { color: var(--gold-400); font-weight: 700; font-family: var(--font-display); }

/* Gold hairline divider used inside cards */
.hairline {
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.38), rgba(212, 175, 55, 0));
  margin-block: var(--sp-5);
}


/* ==========================================================================
   05 · BUTTONS & PILLS
   ========================================================================== */
.btn {
  --btn-py: 14px;
  --btn-px: 26px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-py) var(--btn-px);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.012em;
  line-height: 1;
  border-radius: var(--r-pill);
  white-space: nowrap;
  isolation: isolate;
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease-out),
              background-color var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.btn:active { transform: translateY(1px) scale(0.985); }
.btn svg { flex: none; }

/* Primary — royal gold foil */
.btn--gold {
  color: #16110A;
  background: var(--grad-gold);
  background-size: 220% 220%;
  background-position: 0% 50%;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.28), var(--inset-top);
  transition: background-position 600ms var(--ease-out),
              transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease-out);
}
.btn--gold:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 16px 46px rgba(212, 175, 55, 0.44), 0 0 0 1px rgba(247, 223, 155, 0.6), var(--inset-top);
}
/* Sweeping foil shimmer */
.btn--gold::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.55) 48%, transparent 62%);
  transform: translateX(-120%);
  z-index: -1;
  pointer-events: none;
}
.btn--gold:hover::after { animation: btn-sheen 900ms var(--ease-out) forwards; }
@keyframes btn-sheen { to { transform: translateX(120%); } }

/* Secondary — glass with gold hairline */
.btn--ghost {
  color: var(--ink-050);
  background: rgba(59, 76, 107, 0.20);
  border: 1px solid rgba(212, 175, 55, 0.34);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.btn--ghost:hover {
  color: var(--gold-300);
  background: rgba(59, 76, 107, 0.34);
  border-color: rgba(240, 199, 102, 0.66);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(2, 5, 12, 0.5), 0 0 24px rgba(212, 175, 55, 0.14);
}

/* Telegram brand button */
.btn--telegram {
  color: var(--white);
  background: linear-gradient(135deg, #2FB3F5 0%, #29A9EB 45%, #1E8CC7 100%);
  box-shadow: 0 10px 28px rgba(41, 169, 235, 0.30), var(--inset-top);
}
.btn--telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(41, 169, 235, 0.46), 0 0 0 1px rgba(120, 210, 255, 0.55), var(--inset-top);
}

/* Outline variant on slate */
.btn--outline {
  color: var(--ink-100);
  border: 1px solid rgba(101, 121, 155, 0.42);
  background: rgba(11, 17, 32, 0.4);
}
.btn--outline:hover {
  color: var(--white);
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-2px);
}

.btn--lg { --btn-py: 18px; --btn-px: 36px; font-size: 1.0rem; }
.btn--sm { --btn-py: 10px; --btn-px: 18px; font-size: var(--fs-xs); }
.btn--block { width: 100%; }

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

/* Pulsing halo around the flagship download CTA */
.btn--pulse::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(240, 199, 102, 0.5);
  z-index: -2;
  animation: cta-pulse 2.8s var(--ease-out) infinite;
}
@keyframes cta-pulse {
  0%   { transform: scale(1);    opacity: 0.75; }
  70%  { transform: scale(1.16); opacity: 0; }
  100% { transform: scale(1.16); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .btn--pulse::before { animation: none; }
  .btn--gold:hover::after { animation: none; }
}

/* Small informational pill / chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink-100);
  background: rgba(59, 76, 107, 0.24);
  border: 1px solid rgba(212, 175, 55, 0.20);
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
}
.chip svg, .chip .chip__dot { flex: none; }
.chip__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(61, 214, 140, 0.18);
}
.chip--gold { color: var(--gold-300); border-color: rgba(212, 175, 55, 0.42); background: rgba(212, 175, 55, 0.09); }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }


/* ==========================================================================
   06 · HEADER / NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-header);
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(9, 14, 26, 0.58);
  border-bottom: 1px solid rgba(212, 175, 55, 0.10);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  transition: height var(--dur-base) var(--ease-out),
              background-color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.header.is-scrolled {
  height: var(--header-h-shrunk);
  background: rgba(7, 12, 22, 0.88);
  border-bottom-color: rgba(212, 175, 55, 0.24);
  box-shadow: 0 12px 40px rgba(2, 5, 12, 0.55);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  width: 100%;
}

/* Body offset so fixed header never overlaps content */
.page-offset { height: var(--header-h); }

/* ---- Brand lockup ---- */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
  margin-right: auto;
}
.brand__mark {
  position: relative;
  width: 66px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: none;
  transition: width var(--dur-base) var(--ease-out), height var(--dur-base) var(--ease-out);
}
/* The supplied logo art sits on a black field — `screen` blending drops the
   black cleanly onto the navy canvas and keeps the gold glow intact. */
.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.42);
  mix-blend-mode: screen;
  filter: drop-shadow(0 3px 10px rgba(212, 175, 55, 0.34)) contrast(1.06) saturate(1.05);
  transition: transform var(--dur-base) var(--ease-spring), filter var(--dur-base) var(--ease-out);
}
.brand:hover .brand__mark img {
  transform: scale(1.52);
  filter: drop-shadow(0 4px 16px rgba(240, 199, 102, 0.55)) contrast(1.08) saturate(1.1);
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand__tag {
  margin-top: 4px;
  font-size: 0.578rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.header.is-scrolled .brand__mark { width: 56px; height: 38px; }

/* ---- Desktop nav ---- */
.nav { display: flex; align-items: center; gap: 2px; }
.nav__link {
  position: relative;
  padding: 10px 14px;
  font-size: 0.905rem;
  font-weight: 600;
  color: var(--ink-200);
  border-radius: var(--r-sm);
  transition: color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--grad-gold-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav__link:hover { color: var(--ink-050); background: rgba(59, 76, 107, 0.20); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--gold-300); }
.nav__link.is-active::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 10px; flex: none; }

/* Round telegram icon button in the header */
.icon-btn {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink-100);
  background: rgba(59, 76, 107, 0.24);
  border: 1px solid rgba(101, 121, 155, 0.28);
  transition: all var(--dur-base) var(--ease-out);
}
.icon-btn:hover {
  color: var(--white);
  background: linear-gradient(135deg, #2FB3F5, #1E8CC7);
  border-color: rgba(120, 210, 255, 0.6);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 26px rgba(41, 169, 235, 0.38);
}

/* ---- Hamburger ---- */
.burger {
  display: none;
  width: 44px; height: 44px;
  place-items: center;
  border-radius: var(--r-sm);
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: rgba(59, 76, 107, 0.20);
}
.burger__bars { position: relative; width: 20px; height: 14px; }
.burger__bars span {
  position: absolute;
  left: 0;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--gold-400);
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-fast) linear, top var(--dur-base) var(--ease-out);
}
.burger__bars span:nth-child(1) { top: 0; }
.burger__bars span:nth-child(2) { top: 6px; }
.burger__bars span:nth-child(3) { top: 12px; }
.burger[aria-expanded="true"] .burger__bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.burger[aria-expanded="true"] .burger__bars span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* ---- Mobile drawer ---- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  display: grid;
  grid-template-columns: 1fr min(360px, 88vw);
  visibility: hidden;
  pointer-events: none;
}
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer__scrim {
  background: rgba(3, 6, 13, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: calc(var(--header-h) + 16px) var(--sp-6) var(--sp-8);
  overflow-y: auto;
  background: linear-gradient(180deg, #0E1524 0%, #0B1120 60%, #070C16 100%);
  border-left: 1px solid rgba(212, 175, 55, 0.20);
  box-shadow: -30px 0 80px rgba(2, 5, 12, 0.7);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__label {
  font-size: var(--fs-eyebrow);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--sp-2);
}
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink-100);
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: all var(--dur-fast) var(--ease-out);
}
.drawer__link:hover, .drawer__link.is-active {
  color: var(--gold-300);
  background: rgba(59, 76, 107, 0.24);
  border-color: rgba(212, 175, 55, 0.24);
  transform: translateX(4px);
}
.drawer__link span[aria-hidden] { color: var(--gold-500); opacity: 0.6; }
.drawer__foot { margin-top: auto; padding-top: var(--sp-6); display: grid; gap: 10px; }
body.no-scroll { overflow: hidden; }


/* ==========================================================================
   07 · HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 6.5vw, 96px) clamp(56px, 7vw, 108px);
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: -10% -5% 0 -5%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(48% 52% at 22% 22%, rgba(212, 175, 55, 0.20) 0%, transparent 62%),
    radial-gradient(46% 50% at 82% 30%, rgba(74, 93, 126, 0.42) 0%, transparent 68%),
    radial-gradient(60% 50% at 50% 96%, rgba(59, 76, 107, 0.30) 0%, transparent 70%);
  filter: blur(6px);
}
/* Animated gold particle canvas */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
}
/* Fine grid texture for that "premium fintech" feel */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(70% 60% at 50% 40%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000 0%, transparent 78%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(36px, 4.5vw, 68px);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 14px;
  margin-bottom: var(--sp-5);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink-100);
  background: rgba(59, 76, 107, 0.26);
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: var(--r-pill);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero__badge b {
  padding: 4px 11px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #16110A;
  background: var(--grad-gold);
  border-radius: var(--r-pill);
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.02;
}
.hero__title .line { display: block; }
.hero__title em {
  font-style: normal;
  background: var(--grad-gold-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-flow 7s linear infinite;
}
@keyframes gold-flow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero__copy {
  margin-top: var(--sp-5);
  max-width: 58ch;
  font-size: var(--fs-lead);
  color: var(--ink-200);
  line-height: 1.75;
}
.hero__cta { margin-top: var(--sp-7); }
.hero__note {
  margin-top: var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--ink-400);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Inline stat strip under the hero copy */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-2);
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}
.hero__stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 1.0rem + 1.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.hero__stat-label {
  margin-top: 6px;
  font-size: 0.735rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-400);
  line-height: 1.4;
}

/* ---- Landscape device mockup ---- */
.hero__visual { position: relative; }

.mockup {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin-inline: auto;
  perspective: 1600px;
}
.mockup__glow {
  position: absolute;
  inset: -14% -10%;
  z-index: 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(212, 175, 55, 0.30) 0%, rgba(212, 175, 55, 0.10) 42%, transparent 72%);
  filter: blur(28px);
  animation: glow-breathe 6s var(--ease-in-out) infinite;
}
@keyframes glow-breathe {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.06); }
}

/* Landscape gaming-phone frame drawn entirely in CSS */
.device {
  position: relative;
  z-index: 1;
  padding: 13px 30px;
  border-radius: 34px;
  background:
    linear-gradient(160deg, #F7DF9B 0%, #B8912A 16%, #2A3550 32%, #182338 62%, #B8912A 90%, #F0C766 100%);
  box-shadow:
    var(--shadow-xl),
    0 0 0 1px rgba(247, 223, 155, 0.35),
    0 0 70px rgba(212, 175, 55, 0.22);
  transform-style: preserve-3d;
  transition: transform 700ms var(--ease-out), box-shadow 700ms var(--ease-out);
}
.device__inner {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #05080F;
  box-shadow: inset 0 0 0 2px rgba(5, 8, 15, 0.9), inset 0 0 26px rgba(0, 0, 0, 0.85);
}
.device__screen {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2800 / 1280;
  object-fit: cover;
}
/* Glass reflection sweeping across the screen */
.device__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 22%, transparent 44%);
  mix-blend-mode: screen;
}
/* Front camera dot + speaker on the left bezel (landscape orientation) */
.device__cam {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #3B4C6B, #05080F 70%);
  box-shadow: 0 0 0 1.5px rgba(0, 0, 0, 0.6), 0 0 6px rgba(59, 76, 107, 0.6);
  z-index: 2;
}
.device__speaker {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 54px;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(5, 8, 15, 0.2), rgba(5, 8, 15, 0.85), rgba(5, 8, 15, 0.2));
  z-index: 2;
}
/* Side buttons */
.device__btn {
  position: absolute;
  border-radius: 3px;
  background: linear-gradient(180deg, #F0C766, #8A6B1C);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.device__btn--power { top: -3px; right: 92px; width: 54px; height: 4px; }
.device__btn--vol   { top: -3px; right: 168px; width: 32px; height: 4px; }

/* Floating info cards layered over the mockup */
.mockup__float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 15px;
  border-radius: var(--r-md);
  background: var(--glass-bg);
  border: 1px solid rgba(212, 175, 55, 0.34);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.mockup__float-icon {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.30);
  color: var(--gold-400);
}
.mockup__float-value {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1.1;
}
.mockup__float-label {
  font-size: 0.685rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-top: 3px;
}
.mockup__float--a { top: 6%; left: -6%; animation: float-y 5.5s var(--ease-in-out) infinite; }
.mockup__float--b { bottom: 4%; right: -5%; animation: float-y 6.6s var(--ease-in-out) 0.7s infinite; }
.mockup__float--c { bottom: 32%; left: -9%; animation: float-y 7.4s var(--ease-in-out) 1.4s infinite; }
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-13px); }
}
@media (prefers-reduced-motion: reduce) {
  .mockup__float--a, .mockup__float--b, .mockup__float--c,
  .mockup__glow { animation: none; }
}


/* ==========================================================================
   08 · COMPONENTS
   ========================================================================== */

/* ---- Generic glass card ---- */
.card {
  position: relative;
  padding: clamp(22px, 2.4vw, 32px);
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  border: 1px solid rgba(101, 121, 155, 0.20);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-sm), var(--inset-top);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
/* Gold top hairline that lights up on hover */
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  opacity: 0.55;
  transition: opacity var(--dur-base) var(--ease-out);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.34);
  box-shadow: var(--shadow-md), 0 0 42px rgba(212, 175, 55, 0.12), var(--inset-top);
}
.card:hover::before { opacity: 1; }
.card__icon {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-5);
  border-radius: 15px;
  color: var(--gold-400);
  background: linear-gradient(150deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.04));
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base) var(--ease-out);
}
.card:hover .card__icon {
  transform: translateY(-3px) rotate(-4deg) scale(1.06);
  box-shadow: 0 10px 26px rgba(212, 175, 55, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.card__title { font-size: var(--fs-h4); margin-bottom: 10px; }
.card__text { color: var(--ink-200); font-size: var(--fs-sm); line-height: 1.75; }
.card__num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold-500);
  opacity: 0.7;
}

/* ---- Bento / feature grid ---- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
}
.bento > * { grid-column: span 2; }
.bento__wide { grid-column: span 3; }
.bento__hero { grid-column: span 4; }
.bento__half { grid-column: span 3; }

/* Featured card with mesh backdrop */
.card--feature {
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(212, 175, 55, 0.16) 0%, transparent 58%),
    var(--glass-bg);
  border-color: rgba(212, 175, 55, 0.30);
}

/* ---- Stat strip ---- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(212, 175, 55, 0.16);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: var(--shadow-md);
}
.stat {
  padding: clamp(22px, 2.6vw, 34px) var(--sp-5);
  text-align: center;
  background: linear-gradient(180deg, rgba(18, 26, 44, 0.94), rgba(11, 17, 32, 0.96));
  transition: background var(--dur-base) var(--ease-out);
}
.stat:hover { background: linear-gradient(180deg, rgba(34, 48, 74, 0.94), rgba(14, 21, 36, 0.96)); }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.1rem + 2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  margin-top: 10px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-300);
}
.stat__sub { margin-top: 6px; font-size: 0.76rem; color: var(--ink-400); }

/* ---- Game card ---- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}
.games-grid--lg { grid-template-columns: repeat(auto-fill, minmax(196px, 1fr)); }

.game-card {
  position: relative;
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(34, 48, 74, 0.5), rgba(11, 17, 32, 0.86));
  border: 1px solid rgba(101, 121, 155, 0.22);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.game-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(212, 175, 55, 0.20);
}
.game-card__media {
  position: relative;
  aspect-ratio: 211 / 260;
  overflow: hidden;
  background: #0E1524;
}
.game-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out), filter var(--dur-base) var(--ease-out);
}
.game-card:hover .game-card__media img { transform: scale(1.09); filter: saturate(1.12) brightness(1.05); }
.game-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 12, 22, 0.72) 78%, rgba(7, 12, 22, 0.96) 100%);
}
.game-card__tag {
  position: absolute;
  top: 9px; left: 9px;
  z-index: 2;
  padding: 4px 9px;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #16110A;
  background: var(--grad-gold);
  border-radius: var(--r-pill);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.34);
}
.game-card__tag--hot { color: #FFF; background: linear-gradient(135deg, #F1657A, #C1273F); box-shadow: 0 4px 12px rgba(241, 101, 122, 0.34); }
.game-card__body {
  position: relative;
  z-index: 2;
  margin-top: -46px;
  padding: 0 14px 14px;
}
.game-card__name {
  font-family: var(--font-display);
  font-size: 0.895rem;
  font-weight: 700;
  color: var(--ink-050);
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.game-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 7px;
  font-size: 0.71rem;
  color: var(--ink-300);
}
.game-card__rtp { color: var(--gold-400); font-weight: 700; }
/* "Play" overlay that fades in on hover */
.game-card__play {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  opacity: 0;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.55), rgba(11, 17, 32, 0.80));
  transition: opacity var(--dur-base) var(--ease-out);
}
.game-card:hover .game-card__play, .game-card:focus-visible .game-card__play { opacity: 1; }
.game-card__play span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: #16110A;
  background: var(--grad-gold);
  border-radius: var(--r-pill);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.42);
  transform: translateY(10px) scale(0.94);
  transition: transform var(--dur-base) var(--ease-spring);
}
.game-card:hover .game-card__play span { transform: translateY(0) scale(1); }

/* ---- Filter tabs ---- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--sp-8);
}
.filter-btn {
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink-200);
  background: rgba(59, 76, 107, 0.20);
  border: 1px solid rgba(101, 121, 155, 0.26);
  border-radius: var(--r-pill);
  transition: all var(--dur-base) var(--ease-out);
}
.filter-btn:hover {
  color: var(--gold-300);
  border-color: rgba(212, 175, 55, 0.44);
  transform: translateY(-2px);
}
.filter-btn[aria-pressed="true"] {
  color: #16110A;
  background: var(--grad-gold);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.30);
}

/* ---- Steps timeline ---- */
.steps {
  display: grid;
  gap: clamp(16px, 1.8vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  counter-reset: step;
}
.step {
  position: relative;
  padding: clamp(24px, 2.4vw, 32px) clamp(20px, 2vw, 28px);
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  border: 1px solid rgba(101, 121, 155, 0.20);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.36);
  box-shadow: var(--shadow-md), 0 0 40px rgba(212, 175, 55, 0.12);
}
.step__num {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  margin-bottom: var(--sp-5);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  color: #16110A;
  background: var(--grad-gold);
  border-radius: 15px;
  box-shadow: 0 10px 26px rgba(212, 175, 55, 0.26);
}
.step__title { font-size: var(--fs-h4); margin-bottom: 9px; }
.step__text { font-size: var(--fs-sm); color: var(--ink-200); line-height: 1.75; }
/* Connector line between steps on wide screens */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(clamp(24px, 2.4vw, 32px) + 26px);
  right: -14px;
  width: 14px; height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.5), transparent);
}

/* ---- Checklist ---- */
.check-list { display: grid; gap: 13px; }
.check-list li {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--ink-200);
  line-height: 1.7;
}
.check-list li::before {
  content: "";
  flex: none;
  width: 21px; height: 21px;
  margin-top: 3px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316110A' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat,
    linear-gradient(135deg, #F0C766, #D4AF37);
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.26);
}
.check-list--dark li::before { box-shadow: none; }

/* ---- Testimonial ---- */
.quote {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding: clamp(24px, 2.6vw, 34px);
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  border: 1px solid rgba(101, 121, 155, 0.20);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base), box-shadow var(--dur-base);
}
.quote:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.34);
  box-shadow: var(--shadow-md), 0 0 40px rgba(212, 175, 55, 0.10);
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 0.6;
  color: rgba(212, 175, 55, 0.28);
}
.quote__text { font-size: var(--fs-sm); color: var(--ink-100); line-height: 1.82; }
.quote__foot { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.quote__avatar {
  width: 44px; height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #16110A;
  background: var(--grad-gold);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.28);
}
.quote__name { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; color: var(--ink-050); }
.quote__meta { font-size: 0.75rem; color: var(--ink-400); margin-top: 2px; }
.quote__stars { color: var(--gold-400); letter-spacing: 0.16em; font-size: 0.82rem; }

/* ---- Marquee ticker ---- */
.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 16px;
  border-block: 1px solid rgba(212, 175, 55, 0.16);
  background: linear-gradient(90deg, rgba(11, 17, 32, 0.9), rgba(18, 26, 44, 0.7), rgba(11, 17, 32, 0.9));
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 44px;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink-300);
  white-space: nowrap;
}
.marquee__item b { color: var(--gold-400); font-weight: 800; }
.marquee__item::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.5);
}
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---- Bonus / offer panel ---- */
.offer {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4vw, 58px);
  border-radius: var(--r-2xl);
  background:
    radial-gradient(90% 130% at 8% 0%, rgba(212, 175, 55, 0.20) 0%, transparent 56%),
    linear-gradient(150deg, rgba(34, 48, 74, 0.72) 0%, rgba(11, 17, 32, 0.94) 62%);
  border: 1px solid rgba(212, 175, 55, 0.32);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.offer::after {
  content: "";
  position: absolute;
  right: -14%;
  top: -40%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 66%);
  pointer-events: none;
}
.offer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 3.4vw, 56px);
  align-items: center;
}
.offer__amount {
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 1.6rem + 6.4vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.94;
  background: var(--grad-gold-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-flow 8s linear infinite;
  text-shadow: 0 0 60px rgba(212, 175, 55, 0.28);
}
.offer__amount small { font-size: 0.42em; letter-spacing: 0; }
.offer__caption {
  margin-top: var(--sp-3);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-300);
}
.offer__list { margin-top: var(--sp-6); }

/* ---- OG showcase banner ---- */
.showcase {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  padding: 10px;
  background: var(--grad-gold);
  box-shadow: var(--shadow-xl), 0 0 80px rgba(212, 175, 55, 0.20);
}
.showcase__inner {
  position: relative;
  border-radius: calc(var(--r-2xl) - 8px);
  overflow: hidden;
  background: #05080F;
}
.showcase__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1774 / 887;
  object-fit: cover;
  transform: scale(1.005);
  transition: transform 1200ms var(--ease-out);
}
.showcase:hover .showcase__img { transform: scale(1.035); }
/* Slow diagonal light sweep across the banner */
.showcase__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 38%, rgba(255, 255, 255, 0.20) 48%, transparent 58%);
  transform: translateX(-140%);
  animation: showcase-sheen 7s var(--ease-in-out) 1.5s infinite;
}
@keyframes showcase-sheen {
  0%   { transform: translateX(-140%); }
  55%  { transform: translateX(140%); }
  100% { transform: translateX(140%); }
}
@media (prefers-reduced-motion: reduce) { .showcase__inner::after { animation: none; opacity: 0; } }

.showcase__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: var(--sp-7);
}

/* ---- Split feature (image + copy) ---- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 64px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }

/* ---- Comparison / spec table ---- */
.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(101, 121, 155, 0.24);
  background: rgba(11, 17, 32, 0.6);
  font-size: var(--fs-sm);
}
.spec-table caption {
  caption-side: top;
  text-align: left;
  padding-bottom: var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--ink-400);
}
.spec-table th, .spec-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(101, 121, 155, 0.16);
}
.spec-table thead th {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(34, 48, 74, 0.55);
}
.spec-table tbody th {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--ink-100);
  width: 40%;
}
.spec-table td { color: var(--ink-200); }
.spec-table tbody tr:last-child th, .spec-table tbody tr:last-child td { border-bottom: 0; }
.spec-table tbody tr { transition: background var(--dur-fast) var(--ease-out); }
.spec-table tbody tr:hover { background: rgba(59, 76, 107, 0.16); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---- Notice / callout ---- */
.callout {
  display: flex;
  gap: var(--sp-4);
  padding: clamp(18px, 2vw, 26px);
  border-radius: var(--r-md);
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-left-width: 3px;
  font-size: var(--fs-sm);
  color: var(--ink-200);
  line-height: 1.72;
}
.callout__icon { flex: none; color: var(--gold-400); margin-top: 2px; }
.callout--warn { background: rgba(241, 101, 122, 0.07); border-color: rgba(241, 101, 122, 0.3); }
.callout--warn .callout__icon { color: var(--danger); }
.callout strong { display: block; margin-bottom: 4px; color: var(--ink-050); }

/* ---- Telegram dual CTA ---- */
.tg-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.tg-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: clamp(26px, 3vw, 40px);
  border-radius: var(--r-xl);
  background: linear-gradient(155deg, rgba(41, 169, 235, 0.12) 0%, rgba(11, 17, 32, 0.88) 58%);
  border: 1px solid rgba(41, 169, 235, 0.28);
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base), border-color var(--dur-base);
}
.tg-card:hover {
  transform: translateY(-6px);
  border-color: rgba(41, 169, 235, 0.55);
  box-shadow: var(--shadow-lg), 0 0 48px rgba(41, 169, 235, 0.18);
}
.tg-card--gold {
  background: linear-gradient(155deg, rgba(212, 175, 55, 0.14) 0%, rgba(11, 17, 32, 0.88) 58%);
  border-color: rgba(212, 175, 55, 0.30);
}
.tg-card--gold:hover { border-color: rgba(240, 199, 102, 0.6); box-shadow: var(--shadow-lg), 0 0 48px rgba(212, 175, 55, 0.18); }
.tg-card__icon {
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--white);
  background: linear-gradient(135deg, #2FB3F5, #1E8CC7);
  box-shadow: 0 12px 30px rgba(41, 169, 235, 0.34);
}
.tg-card--gold .tg-card__icon {
  color: #16110A;
  background: var(--grad-gold);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.30);
}
.tg-card__title { font-size: var(--fs-h3); }
.tg-card__text { font-size: var(--fs-sm); color: var(--ink-200); line-height: 1.75; }
.tg-card__handle {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold-300);
}

/* ---- Final CTA band ---- */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 5vw, 76px) clamp(24px, 4vw, 64px);
  border-radius: var(--r-2xl);
  text-align: center;
  background:
    radial-gradient(80% 140% at 50% 0%, rgba(212, 175, 55, 0.24) 0%, transparent 62%),
    linear-gradient(160deg, rgba(34, 48, 74, 0.8), rgba(7, 12, 22, 0.96));
  border: 1px solid rgba(212, 175, 55, 0.34);
  box-shadow: var(--shadow-xl);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(60% 60% at 50% 40%, #000, transparent 76%);
  -webkit-mask-image: radial-gradient(60% 60% at 50% 40%, #000, transparent 76%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: var(--fs-h2); }
.cta-band p { margin: var(--sp-4) auto 0; max-width: 62ch; color: var(--ink-200); font-size: var(--fs-lead); }
.cta-band .btn-row { justify-content: center; margin-top: var(--sp-7); }

/* ---- Contact / form ---- */
.form-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-300);
}
.field input, .field select, .field textarea {
  padding: 14px 16px;
  font-size: var(--fs-sm);
  color: var(--ink-050);
  background: rgba(11, 17, 32, 0.66);
  border: 1px solid rgba(101, 121, 155, 0.30);
  border-radius: var(--r-sm);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast);
}
.field textarea { min-height: 148px; resize: vertical; line-height: 1.7; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-400); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: rgba(11, 17, 32, 0.9);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394A4C0' stroke-width='2.4' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.field select option { background: #0E1524; color: var(--ink-050); }
.field__hint { font-size: 0.74rem; color: var(--ink-400); }
.form-status {
  margin-top: var(--sp-5);
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  display: none;
}
.form-status.is-visible { display: block; }
.form-status--ok { color: #A8F0CE; background: rgba(61, 214, 140, 0.10); border: 1px solid rgba(61, 214, 140, 0.32); }
.form-status--err { color: #FFC3CD; background: rgba(241, 101, 122, 0.10); border: 1px solid rgba(241, 101, 122, 0.34); }


/* ==========================================================================
   09 · SECTION HELPERS
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 26px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 1.7vw, 22px); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 34px); }

.section__foot { margin-top: clamp(30px, 3.4vw, 48px); display: flex; justify-content: center; }

/* Page hero used on interior pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(52px, 6vw, 92px) clamp(38px, 4.4vw, 64px);
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 150%;
  z-index: -1;
  background:
    radial-gradient(42% 46% at 24% 34%, rgba(212, 175, 55, 0.17) 0%, transparent 64%),
    radial-gradient(44% 48% at 78% 28%, rgba(74, 93, 126, 0.36) 0%, transparent 68%);
  filter: blur(4px);
}
.page-hero__inner { max-width: 880px; }
.page-hero h1 { margin-top: var(--sp-2); }
.page-hero p { margin-top: var(--sp-5); font-size: var(--fs-lead); color: var(--ink-200); line-height: 1.75; }

/* Breadcrumbs */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  color: var(--ink-400);
}
.crumbs a { color: var(--ink-300); transition: color var(--dur-fast); }
.crumbs a:hover { color: var(--gold-400); }
.crumbs li { display: flex; align-items: center; gap: 8px; }
.crumbs li + li::before { content: "/"; color: rgba(212, 175, 55, 0.45); }
.crumbs [aria-current] { color: var(--gold-300); }

/* Sticky in-page table of contents for legal/long pages */
.toc {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: var(--sp-6);
  border-radius: var(--r-lg);
  background: var(--glass-bg);
  border: 1px solid rgba(101, 121, 155, 0.20);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.toc__title {
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--sp-4);
}
.toc ol { list-style: none; display: grid; gap: 3px; counter-reset: toc; }
.toc a {
  display: block;
  padding: 9px 12px;
  font-size: 0.85rem;
  color: var(--ink-300);
  border-radius: var(--r-xs);
  border-left: 2px solid transparent;
  transition: all var(--dur-fast) var(--ease-out);
}
.toc a:hover { color: var(--gold-300); background: rgba(59, 76, 107, 0.22); border-left-color: var(--gold-500); }

.legal-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: clamp(28px, 3.6vw, 56px);
  align-items: start;
}


/* ==========================================================================
   10 · SCREENSHOT SLIDER
   ========================================================================== */
.slider { position: relative; }
.slider__viewport {
  overflow: hidden;
  border-radius: var(--r-xl);
  cursor: grab;
  mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
}
.slider__viewport.is-dragging { cursor: grabbing; }
.slider__track {
  display: flex;
  gap: clamp(14px, 1.8vw, 26px);
  padding: 8px 4px 8px;
  will-change: transform;
  transition: transform 720ms var(--ease-out);
}
.slider__track.no-anim { transition: none; }
.slide {
  position: relative;
  flex: 0 0 auto;
  width: var(--slide-w, 62%);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #05080F;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: var(--shadow-md);
  transform: scale(0.9);
  opacity: 0.42;
  transition: transform 700ms var(--ease-out), opacity 700ms var(--ease-out),
              box-shadow 700ms var(--ease-out), border-color 700ms var(--ease-out);
}
.slide.is-active {
  transform: scale(1);
  opacity: 1;
  border-color: rgba(240, 199, 102, 0.55);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(212, 175, 55, 0.24);
}
.slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 2800 / 1280;
  object-fit: cover;
  display: block;
}
.slide__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 22px 18px;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 15, 0.92));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.slide.is-active .slide__caption { opacity: 1; transform: translateY(0); }
.slide__caption b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--gold-300);
}
.slide__caption span { font-size: 0.79rem; color: var(--ink-300); }

.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}
.slider__btn {
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-300);
  background: rgba(59, 76, 107, 0.24);
  border: 1px solid rgba(212, 175, 55, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--dur-base) var(--ease-out);
}
.slider__btn:hover {
  color: #16110A;
  background: var(--grad-gold);
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.36);
}
.slider__dots { display: flex; align-items: center; gap: 9px; }
.slider__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(101, 121, 155, 0.44);
  transition: all var(--dur-base) var(--ease-out);
}
.slider__dot:hover { background: rgba(212, 175, 55, 0.6); }
.slider__dot.is-active {
  width: 30px;
  border-radius: var(--r-pill);
  background: var(--grad-gold);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.5);
}
.slider__progress {
  height: 2px;
  margin-top: var(--sp-6);
  border-radius: 2px;
  background: rgba(101, 121, 155, 0.22);
  overflow: hidden;
}
.slider__progress-bar {
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: var(--grad-gold);
  transition: width 240ms linear;
}


/* ==========================================================================
   11 · FAQ ACCORDION
   ========================================================================== */
.faq { display: grid; gap: 12px; }
.faq__item {
  border-radius: var(--r-md);
  background: rgba(18, 26, 44, 0.60);
  border: 1px solid rgba(101, 121, 155, 0.20);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.faq__item:hover { border-color: rgba(212, 175, 55, 0.30); }
.faq__item.is-open {
  border-color: rgba(212, 175, 55, 0.42);
  background: rgba(34, 48, 74, 0.42);
  box-shadow: 0 12px 34px rgba(2, 5, 12, 0.4), 0 0 34px rgba(212, 175, 55, 0.08);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: clamp(17px, 1.9vw, 23px) clamp(18px, 2vw, 26px);
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 0.9rem + 0.22vw, 1.06rem);
  font-weight: 600;
  color: var(--ink-050);
  line-height: 1.5;
  transition: color var(--dur-fast) var(--ease-out);
}
.faq__q:hover { color: var(--gold-300); }
.faq__icon {
  position: relative;
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.36);
  background: rgba(212, 175, 55, 0.08);
  transition: transform var(--dur-base) var(--ease-spring), background var(--dur-base) var(--ease-out);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--gold-400);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-fast);
}
.faq__icon::before { width: 12px; height: 1.8px; }
.faq__icon::after  { width: 1.8px; height: 12px; }
.faq__item.is-open .faq__icon { background: var(--grad-gold); transform: rotate(180deg); }
.faq__item.is-open .faq__icon::before { background: #16110A; }
.faq__item.is-open .faq__icon::after { opacity: 0; }
.faq__a {
  overflow: hidden;
  height: 0;
  transition: height var(--dur-slow) var(--ease-out);
}
.faq__a-inner {
  padding: 0 clamp(18px, 2vw, 26px) clamp(20px, 2.2vw, 26px);
  font-size: var(--fs-sm);
  color: var(--ink-200);
  line-height: 1.82;
}
.faq__a-inner p + p { margin-top: 0.85em; }
.faq__a-inner ul { margin-top: 0.7em; padding-left: 1.2em; }
.faq__a-inner li { margin-top: 0.4em; }
.faq__a-inner li::marker { color: var(--gold-500); }

/* Two-column FAQ on large screens */
.faq--split { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }


/* ==========================================================================
   12 · FOOTER
   ========================================================================== */
.footer {
  position: relative;
  z-index: var(--z-content);
  margin-top: var(--section-y);
  padding-top: clamp(52px, 6vw, 84px);
  background: linear-gradient(180deg, rgba(7, 12, 22, 0.5) 0%, rgba(5, 8, 15, 0.96) 40%);
  border-top: 1px solid rgba(212, 175, 55, 0.20);
}
.footer::before {
  content: "";
  position: absolute;
  inset: -1px 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 199, 102, 0.7), transparent);
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3.2vw, 52px);
  padding-bottom: clamp(36px, 4vw, 56px);
}
.footer__brand { display: flex; flex-direction: column; gap: var(--sp-4); }
.footer__logo { display: flex; align-items: center; gap: 12px; }
.footer__logo .brand__mark { width: 78px; height: 54px; }
.footer__blurb { font-size: var(--fs-sm); color: var(--ink-300); line-height: 1.8; max-width: 42ch; }
.footer__social { display: flex; gap: 10px; margin-top: var(--sp-2); }

.footer__col-title {
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--sp-5);
}
.footer__links { display: grid; gap: 11px; }
.footer__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: var(--ink-300);
  transition: color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.footer__links a::before {
  content: "";
  width: 0; height: 1px;
  background: var(--gold-500);
  transition: width var(--dur-base) var(--ease-out);
}
.footer__links a:hover { color: var(--gold-300); transform: translateX(3px); }
.footer__links a:hover::before { width: 10px; }

/* Telegram blocks inside the footer */
.footer__tg { display: grid; gap: 12px; }
.footer__tg-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  background: rgba(41, 169, 235, 0.08);
  border: 1px solid rgba(41, 169, 235, 0.24);
  transition: all var(--dur-base) var(--ease-out);
}
.footer__tg-link:hover {
  background: rgba(41, 169, 235, 0.16);
  border-color: rgba(41, 169, 235, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(41, 169, 235, 0.18);
}
.footer__tg-link svg { flex: none; color: #57C4F5; }
.footer__tg-name { font-family: var(--font-display); font-size: 0.855rem; font-weight: 700; color: var(--ink-050); }
.footer__tg-meta { font-size: 0.735rem; color: var(--ink-400); margin-top: 2px; }

.footer__disclaimer {
  padding: clamp(20px, 2.4vw, 28px);
  border-radius: var(--r-md);
  background: rgba(11, 17, 32, 0.66);
  border: 1px solid rgba(101, 121, 155, 0.20);
  border-left: 3px solid rgba(212, 175, 55, 0.5);
  font-size: 0.815rem;
  line-height: 1.85;
  color: var(--ink-300);
}
.footer__disclaimer strong { color: var(--gold-300); }
.footer__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  flex: none;
  margin-right: 12px;
  float: left;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: #FFF;
  background: rgba(241, 101, 122, 0.14);
  border: 1.5px solid rgba(241, 101, 122, 0.6);
}

.footer__keywords {
  margin-top: var(--sp-6);
  font-size: 0.755rem;
  line-height: 1.9;
  color: var(--ink-400);
}
.footer__keywords b { color: var(--ink-300); font-weight: 600; }

.footer__bar {
  margin-top: clamp(28px, 3vw, 40px);
  padding-block: var(--sp-6);
  border-top: 1px solid rgba(101, 121, 155, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--ink-400);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: var(--sp-5); }
.footer__legal a { transition: color var(--dur-fast); }
.footer__legal a:hover { color: var(--gold-400); }


/* ==========================================================================
   13 · MOBILE BOTTOM BAR & FLOATING TELEGRAM FAB
   ========================================================================== */
.fab {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: var(--z-fab);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 13px;
  border-radius: var(--r-pill);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.83rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2FB3F5 0%, #29A9EB 46%, #1B84BC 100%);
  box-shadow: 0 14px 38px rgba(41, 169, 235, 0.42), 0 0 0 1px rgba(120, 210, 255, 0.32);
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base) var(--ease-out);
}
.fab:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 20px 52px rgba(41, 169, 235, 0.55), 0 0 0 1px rgba(160, 225, 255, 0.5); }
.fab svg { flex: none; }
.fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1.5px solid rgba(120, 210, 255, 0.55);
  animation: cta-pulse 2.6s var(--ease-out) infinite;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .fab::before { animation: none; } }

.mobile-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: var(--z-sticky);
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom, 0px));
  background: rgba(7, 12, 22, 0.94);
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  box-shadow: 0 -12px 34px rgba(2, 5, 12, 0.6);
}
.mobile-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 7px 2px;
  border-radius: var(--r-sm);
  font-size: 0.655rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-300);
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast);
}
.mobile-bar__item svg { transition: transform var(--dur-base) var(--ease-spring); }
.mobile-bar__item:hover, .mobile-bar__item.is-active { color: var(--gold-400); }
.mobile-bar__item.is-active svg { transform: translateY(-2px); }
/* Emphasised centre download action */
.mobile-bar__item--cta { position: relative; color: #16110A; }
.mobile-bar__item--cta .mobile-bar__badge {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-top: -22px;
  border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.46), 0 0 0 4px rgba(7, 12, 22, 0.94);
}
.mobile-bar__item--cta span:last-child { color: var(--gold-400); }


/* ==========================================================================
   14 · SCROLL-REVEAL MOTION
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="scale"] { transform: scale(0.955); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].is-revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Parallax layer driven by main.js */
[data-parallax] { will-change: transform; }


/* ==========================================================================
   15 · RESPONSIVE
   ========================================================================== */

/* ---- ≤1180px : condense nav ---- */
@media (max-width: 1180px) {
  .nav__link { padding: 10px 11px; font-size: 0.865rem; }
  .footer__grid { grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}

/* ---- ≤1024px : tablet ---- */
@media (max-width: 1024px) {
  :root { --header-h: 68px; --header-h-shrunk: 58px; }

  .nav, .header__actions .btn--gold { display: none; }
  .burger { display: grid; }

  .hero__grid { grid-template-columns: 1fr; gap: clamp(38px, 6vw, 56px); }
  .hero__visual { order: -1; }
  .mockup { max-width: 560px; }
  .hero__stats { max-width: 560px; }

  .offer__grid { grid-template-columns: 1fr; }
  .bento > *, .bento__wide, .bento__hero, .bento__half { grid-column: span 3; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .legal-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
  .faq--split { grid-template-columns: 1fr; }

  .mobile-bar { display: grid; }
  body { padding-bottom: 74px; }
  .fab { bottom: calc(74px + env(safe-area-inset-bottom, 0px) + 14px); }
  .footer { padding-bottom: 8px; }
}

/* ---- ≤820px ---- */
@media (max-width: 820px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .tg-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(146px, 1fr)); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---- ≤640px : mobile ---- */
@media (max-width: 640px) {
  :root { --section-y: 58px; --section-y-sm: 44px; }

  .brand__tag { display: none; }
  .brand__name { font-size: 1.02rem; }
  .brand__mark { width: 56px; height: 40px; }

  .hero__stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .hero__stat-label { font-size: 0.63rem; letter-spacing: 0.05em; }
  .btn { --btn-px: 20px; font-size: 0.855rem; }
  .btn--lg { --btn-py: 16px; --btn-px: 26px; font-size: 0.94rem; }
  .btn-row .btn { flex: 1 1 100%; }

  .mockup__float { padding: 9px 12px; }
  .mockup__float-icon { width: 28px; height: 28px; }
  .mockup__float-value { font-size: 0.86rem; }
  .mockup__float-label { font-size: 0.62rem; }
  .mockup__float--a { top: 3%; left: -2%; }
  .mockup__float--b { bottom: 2%; right: -2%; }
  .mockup__float--c { display: none; }

  .device { padding: 9px 20px; border-radius: 24px; }
  .device__inner { border-radius: 15px; }
  .device__speaker { height: 36px; }
  .device__btn--power { right: 60px; width: 36px; }
  .device__btn--vol { right: 108px; width: 22px; }

  .stats-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; align-items: flex-start; }

  .slider__controls { gap: var(--sp-4); }
  .slider__btn { width: 44px; height: 44px; }

  /* Collapse the FAB to a circle so it never crowds mobile content */
  .fab { padding: 14px; gap: 0; }
  .fab span { display: none; }

  .showcase { padding: 6px; border-radius: var(--r-xl); }
  .showcase__inner { border-radius: calc(var(--r-xl) - 5px); }
}

/* ---- ≤400px ---- */
@media (max-width: 400px) {
  .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__stat:last-child { display: none; }
  .mobile-bar__item { font-size: 0.6rem; }
}

/* ---- Print ---- */
@media print {
  .header, .mobile-bar, .fab, .drawer, .hero__particles, .slider__controls { display: none !important; }
  body { background: #fff; color: #000; }
}
