/* =====================================================================
   Slotty Labs — Design System v5.1
   ZERO containers. No card borders, no backgrounds, no chip borders.
   Pure typography + imagery + space. Fintech minimal.
   ===================================================================== */

:root {
  --bg:        #07080F;
  --bg-2:      #0A0B16;
  --surface:   #0F1124;

  --line:      rgba(255,255,255,.06);
  --line-2:    rgba(255,255,255,.10);
  --line-3:    rgba(139,92,246,.22);

  --violet:    #8B5CF6;
  --violet-2:  #A78BFA;
  --violet-3:  #6D28D9;
  --violet-4:  #C4B5FD;
  --glow:      rgba(139,92,246,.38);

  --gold:      #E7C982;
  --gold-2:    #F5D99C;

  --text:      #F5F6FC;
  --text-2:    #B0B6D4;
  --text-3:    #6F7595;

  --radius:    12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --font:      "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display:   "Space Grotesk", "Inter", sans-serif;

  --nav-h:     76px;
  --pad-x:     max(32px, 6vw);
  --pad-x-sm:  max(20px, 3vw);

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:  180ms;
  --dur-base:  300ms;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--surface) var(--bg);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  font-feature-settings: "ss01","cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(80% 60% at 20% 10%, rgba(139,92,246,.05), transparent 55%),
    radial-gradient(70% 50% at 80% 85%, rgba(109,40,217,.04), transparent 55%);
}

body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .014;
  background-image: radial-gradient(circle, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -.02em;
  color: var(--text);
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); font-weight: 600; letter-spacing: -.03em; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.65rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-2); }
a { color: var(--violet-2); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
a:hover { color: var(--violet-4); }
img { max-width: 100%; display: block; }

.grad {
  background: linear-gradient(105deg, var(--violet-2) 5%, var(--violet-4) 50%, #E9D8FF 95%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  display: inline-block; padding-bottom: .1em; line-height: 1.12;
}

/* ── Keyframes ──────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(.9); }
  to { opacity: 1; transform: scale(1); }
}

/* ── Section System ─────────────────────────────────────────── */
.section {
  padding: 130px var(--pad-x);
  position: relative;
  overflow: hidden;
}
.section--sm { padding: 76px var(--pad-x); }
.section--tight { padding: 64px var(--pad-x); }
.section--alt {
  background: linear-gradient(175deg, var(--bg) 0%, var(--bg-2) 45%, #0C0E1F 100%);
}
.section--alt::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 40% at 50% 0%, rgba(139,92,246,.035), transparent 65%);
}

/* decorative ambient orbs */
.decor-orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(100px);
}
.decor-orb--violet { background: rgba(139,92,246,.09); width: 500px; height: 500px; animation: float-slow 13s ease-in-out infinite; }
.decor-orb--gold   { background: rgba(231,201,130,.06); width: 420px; height: 420px; animation: float-slow 15s ease-in-out infinite reverse; }
.decor-orb--blue   { background: rgba(99,102,241,.05); width: 380px; height: 380px; animation: float-slow 12s ease-in-out infinite; }

/* ── Eyebrow ────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .74rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: var(--violet-2); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--violet); opacity: .7; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

.section-head {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-head .eyebrow { justify-content: center; margin-bottom: 18px; }
.section-head h2 { margin-bottom: 0; }
.section-head p { margin: 18px 0 0; color: var(--text-2); max-width: 560px; }

/* ── Buttons (only "solid" elements on the page) ────────────── */
.btn {
  --bh: 52px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: var(--bh); padding: 0 28px;
  font-family: var(--font); font-size: .95rem; font-weight: 600;
  border-radius: 10px; border: 1px solid transparent; cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
  white-space: nowrap; text-decoration: none;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.08) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmer 2.5s ease-in-out infinite;
  opacity: 0; transition: opacity var(--dur-base) var(--ease-out);
}
.btn:hover::after { opacity: 1; }

.btn--sm { --bh: 42px; padding: 0 18px; font-size: .88rem; }
.btn--lg { --bh: 58px; padding: 0 36px; font-size: 1rem; border-radius: 12px; }

.btn--primary {
  background: var(--violet); color: #fff;
  box-shadow: 0 8px 28px -8px var(--glow);
}
.btn--primary:hover {
  background: var(--violet-2); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px var(--glow);
}
.btn--ghost {
  background: rgba(255,255,255,.025); color: var(--text); border-color: var(--line-2);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.06); color: #fff; border-color: var(--violet);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent; color: var(--violet-2); border-color: var(--line-3);
}
.btn--outline:hover {
  background: rgba(139,92,246,.06); color: #fff; border-color: var(--violet);
  transform: translateY(-1px);
}
.btn--block { width: 100%; }
.btn .arrow { display: inline-block; transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* ── Top Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  background: rgba(7,8,15,.78);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line);
  padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: height var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}
.nav.scrolled {
  height: 62px;
  background: rgba(7,8,15,.92);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.nav__brand { display: flex; align-items: center; flex-shrink: 0; transition: transform var(--dur-fast) var(--ease-out); }
.nav__brand:hover { transform: scale(1.03); }
.nav__brand img { height: 44px; width: auto; display: block; transition: height var(--dur-base) var(--ease-out); }
.nav.scrolled .nav__brand img { height: 36px; }

.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  color: var(--text-2); font-size: .92rem; font-weight: 500;
  padding: 9px 15px; border-radius: 8px;
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%) scaleX(0);
  width: 18px; height: 2px; border-radius: 1px; background: var(--violet);
  transition: transform var(--dur-base) var(--ease-spring);
}
.nav__links a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav__links a:hover::after { transform: translateX(-50%) scaleX(1); }
.nav__links a.active { color: var(--text); }
.nav__links a.active::after { transform: translateX(-50%) scaleX(1); background: var(--violet-2); }

.nav__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* ── Mobile Bottom Nav ──────────────────────────────────────── */
.mobilenav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 950;
  background: rgba(9,10,20,.96);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--line-2);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobilenav ul { display: flex; list-style: none; padding: 0 var(--pad-x-sm); }
.mobilenav li { flex: 1; display: flex; position: relative; }
.mobilenav li + li::before {
  content: ""; position: absolute; left: 0; top: 16px; bottom: 16px;
  width: 1px; background: var(--line);
}
.mobilenav a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  height: 58px; font-size: .76rem; font-weight: 600; color: var(--text-3);
  position: relative; letter-spacing: .02em;
  transition: color var(--dur-fast) var(--ease-out);
  padding: 0 8px;
}
.mobilenav a.active { color: var(--violet-2); }
.mobilenav a.active::before {
  content: ""; position: absolute; top: 0; left: 18%; right: 18%; height: 2px;
  background: var(--violet); border-radius: 0 0 3px 3px;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 100px) var(--pad-x) 110px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(65% 55% at 50% -5%, rgba(139,92,246,.2), transparent 70%),
    radial-gradient(35% 40% at 85% 30%, rgba(109,40,217,.12), transparent 70%);
}
.hero .decor-orb--violet {
  top: -220px; right: -180px;
  width: 650px; height: 650px;
}

.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}
.hero__title { margin-bottom: 22px; }
.hero__sub { font-size: 1.15rem; color: var(--text-2); max-width: 54ch; margin-bottom: 34px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta { display: flex; gap: 40px; margin-top: 44px; }
.hero__meta .num { font-family: var(--display); font-size: 1.8rem; font-weight: 600; color: var(--text); line-height: 1; }
.hero__meta .lab { font-size: .76rem; color: var(--text-3); margin-top: 6px; text-transform: uppercase; letter-spacing: .12em; }

/* poster stack — images only */
.poster-stack {
  position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.poster {
  position: relative; aspect-ratio: 3 / 4; border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.6);
  transition: transform var(--dur-slow) var(--ease-out),
              box-shadow var(--dur-slow) var(--ease-out);
  cursor: pointer;
}
.poster:hover { transform: translateY(-10px); box-shadow: 0 24px 60px -18px rgba(109,40,217,.45); }
.poster img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .6s var(--ease-out); }
.poster:hover img { transform: scale(1.06); }
.poster:nth-child(2) { transform: translateY(-30px); box-shadow: 0 24px 60px -18px rgba(109,40,217,.45); }
.poster:nth-child(2):hover { transform: translateY(-38px); }
.poster::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  border-radius: inherit; pointer-events: none;
}
.poster:nth-child(1) { animation: float 7s ease-in-out infinite; }
.poster:nth-child(2) { animation: float 8s ease-in-out .5s infinite; }
.poster:nth-child(3) { animation: float 7.5s ease-in-out 1s infinite; }
@media (prefers-reduced-motion: reduce) {
  .poster:nth-child(1), .poster:nth-child(2), .poster:nth-child(3) { animation: none; }
}

/* ── Strip ──────────────────────────────────────────────────── */
.strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 0 var(--pad-x);
  background: var(--bg-2);
}
.strip__inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 48px;
  padding: 30px 0;
}
.strip__item {
  font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-3); transition: color var(--dur-fast) var(--ease-out);
}
.strip__item:hover { color: var(--text-2); }
.strip__item b { color: var(--text-2); font-weight: 600; }

/* ── Feature Grid (pure text, no boxes) ─────────────────────── */
.grid-fluid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 48px 40px;
  align-items: start;
}

.feat { position: relative; }
.feat__num {
  font-family: var(--display); font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; color: var(--violet-2);
  display: block; margin-bottom: 16px;
}
.feat h3 { font-size: 1.2rem; margin-bottom: 10px; letter-spacing: -.01em; }
.feat h4 { font-size: 1.05rem; margin-bottom: 8px; }
.feat p { font-size: .9rem; color: var(--text-2); line-height: 1.62; }
.feat ul { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.feat ul li {
  font-size: .87rem; color: var(--text-2); padding-left: 18px; position: relative;
  line-height: 1.55;
}
.feat ul li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--violet);
}

/* ── Game Showcase (image-forward, no card wrapper) ─────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 48px 36px;
  align-items: start;
}
.gcard { display: flex; flex-direction: column; }
.gcard__media {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: var(--radius); background: var(--bg-2);
  box-shadow: 0 20px 50px -16px rgba(0,0,0,.5);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.gcard__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
.gcard:hover .gcard__media { transform: translateY(-4px); box-shadow: 0 28px 60px -18px rgba(109,40,217,.35); }
.gcard__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform .5s var(--ease-out);
}
.gcard:hover .gcard__media img { transform: scale(1.04); }

.gcard__tagrow {
  position: absolute; top: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; z-index: 2;
}

.pill {
  font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  background: rgba(7,8,15,.58); border: 1px solid var(--line-2); color: var(--text);
}
.pill--violet { color: var(--violet-4); border-color: var(--line-3); }
.pill--age { color: #FCA5A5; background: rgba(60,10,10,.5); border-color: rgba(248,113,113,.3); }

.gcard__body { padding: 22px 0 0; display: flex; flex-direction: column; flex: 1; }
.gcard__name { font-family: var(--display); font-size: 1.32rem; font-weight: 600; margin-bottom: 4px; }
.gcard__type { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--violet-2); margin-bottom: 14px; }
.gcard__desc { font-size: .89rem; color: var(--text-2); flex: 1; line-height: 1.6; }

.gcard__meta { display: flex; flex-wrap: wrap; gap: 14px; margin: 18px 0; }
.tag {
  font-size: .72rem; font-weight: 500; letter-spacing: .03em; color: var(--text-3);
}
.tag--age { color: #FCA5A5; }
.gcard__ctas { display: flex; gap: 10px; margin-top: auto; }

/* ── Spec Table ─────────────────────────────────────────────── */
.spec {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.spec tr { border-bottom: 1px solid var(--line); }
.spec tr:last-child { border-bottom: 0; }
.spec td { padding: 14px 20px; font-size: .9rem; vertical-align: top; }
.spec td:first-child { width: 42%; color: var(--text-3); font-weight: 500; }
.spec td:last-child { color: var(--text); font-weight: 500; }

/* ── Game Detail ────────────────────────────────────────────── */
.detail-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: start; }
.detail-art {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.6);
}
.detail-art img { width: 100%; height: auto; display: block; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 26px 0; }
.feature-list li {
  display: flex; gap: 12px; font-size: .9rem; color: var(--text-2);
  line-height: 1.55;
}
.feature-list li::before {
  content: ""; flex-shrink: 0; margin-top: 8px;
  width: 6px; height: 6px; border-radius: 2px;
  background: var(--violet); transform: rotate(45deg);
}

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; margin-top: 28px; }
.gallery img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  cursor: pointer;
}
.gallery img:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(0,0,0,.4); }

.age-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #FCA5A5; padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(248,113,113,.25);
  margin-bottom: 16px;
}
.notice {
  font-size: .84rem; color: #F2B8B8; margin-top: 22px;
  padding: 16px 0;
  border-top: 1px solid rgba(248,113,113,.15);
  border-bottom: 1px solid rgba(248,113,113,.15);
}
.notice strong { color: #FCA5A5; }

/* ── Payments ───────────────────────────────────────────────── */
.pay-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 36px 44px;
  padding: 12px 0;
}
.pay-chip {
  font-size: .9rem; font-weight: 500; color: var(--text-2);
  letter-spacing: .02em;
  transition: color var(--dur-fast) var(--ease-out);
  cursor: default;
}
.pay-chip:hover { color: var(--text); }
.pay-chip--crypto { color: var(--violet-2); font-weight: 600; }

/* ── Pricing (no boxes) ────────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 52px 40px;
  align-items: start;
}
.price-item { position: relative; }
.price-item h3 { font-size: 1.5rem; margin-bottom: 6px; }
.price-item__sub { font-size: .87rem; color: var(--text-2); margin-bottom: 22px; min-height: 48px; line-height: 1.55; }
.price-item__poa {
  font-family: var(--display); font-size: 1.22rem; font-weight: 600; color: var(--gold);
  padding-bottom: 20px; margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.price-item ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.price-item ul li { font-size: .88rem; color: var(--text-2); padding-left: 18px; position: relative; line-height: 1.5; }
.price-item ul li::before { content: "—"; position: absolute; left: 0; color: var(--violet-2); }
.price-item--feat { padding-left: 26px; border-left: 2px solid var(--violet); }
.price-item__flag {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--violet-2); margin-bottom: 16px;
}

/* ── CTA Band (gradient, not a box) ─────────────────────────── */
.band {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(125deg, var(--violet-3), var(--violet));
  padding: 56px 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 130% at 90% 10%, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.band > * { position: relative; z-index: 1; }
.band h3 { color: #fff; font-size: 1.65rem; margin-bottom: 6px; }
.band p { color: rgba(255,255,255,.82); max-width: 52ch; }
.band .btn--gold {
  background: #fff; color: var(--violet-3);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.band .btn--gold:hover {
  background: #f3f0ff; color: var(--violet-3);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

/* ── Stats ──────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 44px 36px;
  align-items: start;
}
.stat { text-align: center; }
.stat__num { font-family: var(--display); font-size: 2.8rem; font-weight: 600; line-height: 1.05; }
.stat__lab { font-size: .8rem; color: var(--text-3); margin-top: 8px; text-transform: uppercase; letter-spacing: .1em; }

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.contact-line {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 0; border-top: 1px solid var(--line);
}
.contact-line:last-child { border-bottom: 1px solid var(--line); }
.contact-line .k { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-3); }
.contact-line .v { font-size: .98rem; color: var(--text); font-weight: 500; }

.form-card {
  padding: 42px; border: 1px solid var(--line-2); border-radius: var(--radius);
}
.fg { margin-bottom: 16px; }
.fg label {
  display: block; font-size: .74rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 8px;
}
.fg input, .fg select, .fg textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-2);
  border-radius: var(--radius-sm); padding: 14px 16px;
  font-family: var(--font); font-size: .95rem; color: var(--text);
  outline: none; transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(139,92,246,.12);
}
.fg select option { background: var(--surface); color: var(--text); }
.fg textarea { resize: vertical; min-height: 130px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg-honey { position: absolute; left: -9999px; }

.form-msg { margin-top: 14px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 500; display: none; }
.form-msg--ok { display: none; background: rgba(34,197,94,.06); border: 1px solid rgba(34,197,94,.22); color: #86EFAC; }
.form-msg--err { background: rgba(248,113,113,.06); border: 1px solid rgba(248,113,113,.22); color: #FCA5A5; }

/* ── Page Hero ──────────────────────────────────────────────── */
.phero {
  position: relative; padding: calc(var(--nav-h) + 76px) var(--pad-x) 64px;
  text-align: center; overflow: hidden;
}
.phero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(55% 65% at 50% 0%, rgba(139,92,246,.16), transparent 72%);
}
.phero > * { position: relative; z-index: 1; }
.phero p { margin: 16px auto 0; color: var(--text-2); max-width: 600px; }
.crumb {
  display: flex; justify-content: center; gap: 10px;
  font-size: .8rem; color: var(--text-3); margin-bottom: 16px;
}
.crumb a { color: var(--text-3); transition: color var(--dur-fast) var(--ease-out); }
.crumb a:hover { color: var(--violet-2); }
.crumb span { opacity: .5; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; background: none; border: 0; cursor: pointer;
  font-family: var(--font); font-size: .98rem; font-weight: 600;
  color: var(--text); text-align: left;
  transition: color var(--dur-fast) var(--ease-out);
}
.faq-q:hover { color: var(--violet-2); }
.faq-q .pm { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-q .pm::before, .faq-q .pm::after {
  content: ""; position: absolute; background: var(--violet-2);
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-q .pm::before { top: 8px; left: 1px; width: 16px; height: 2px; border-radius: 1px; }
.faq-q .pm::after { left: 8px; top: 1px; width: 2px; height: 16px; border-radius: 1px; }
.faq-item.open .pm::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.faq-a__in { padding: 0 0 22px; font-size: .9rem; color: var(--text-2); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  padding: 76px var(--pad-x) 44px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
  align-items: start;
}
.footer__brand img { height: 44px; width: auto; margin-bottom: 16px; }
.footer__brand p { font-size: .88rem; color: var(--text-2); max-width: 30ch; }
.footer__col h5 { font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: .88rem; color: var(--text-2); transition: color var(--dur-fast) var(--ease-out); }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--line);
  font-size: .8rem; color: var(--text-3);
}
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__legal a { color: var(--text-3); transition: color var(--dur-fast) var(--ease-out); }
.footer__legal a:hover { color: var(--text); }
.tag-18 {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  color: #FCA5A5; border: 1px solid rgba(248,113,113,.25);
  border-radius: 6px; padding: 4px 9px; margin-top: 14px;
}

/* ── Scroll Reveal ──────────────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
[data-reveal].in { opacity: 1; transform: none; }

[data-reveal-stagger] > * {
  opacity: 0; transform: translateY(16px);
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
}
[data-reveal-stagger].in > *:nth-child(1) { transition-delay: .04s; }
[data-reveal-stagger].in > *:nth-child(2) { transition-delay: .10s; }
[data-reveal-stagger].in > *:nth-child(3) { transition-delay: .16s; }
[data-reveal-stagger].in > *:nth-child(4) { transition-delay: .22s; }
[data-reveal-stagger].in > *:nth-child(5) { transition-delay: .28s; }
[data-reveal-stagger].in > *:nth-child(6) { transition-delay: .34s; }
[data-reveal-stagger].in > * { opacity: 1; transform: none; }

/* ── Reduced Motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1; transform: none; }
}

/* ── Utilities ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}.mt-40{margin-top:40px}.mt-48{margin-top:48px}
.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}.mb-32{margin-bottom:32px}.mb-48{margin-bottom:48px}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 760px) {
  :root {
    --nav-h: 64px;
    --pad-x: max(18px, 4vw);
  }
  body { padding-bottom: 58px; }

  .section { padding: 80px var(--pad-x); }
  .section--sm { padding: 52px var(--pad-x); }

  .nav__links { display: none; }
  .nav__actions .btn--ghost { display: none; }
  .nav__actions .btn--primary { font-size: .8rem; padding: 0 14px; height: 36px; }
  .mobilenav { display: block; }

  .hero { padding: calc(var(--nav-h) + 52px) var(--pad-x) 64px; }
  .hero__meta { gap: 16px; flex-wrap: wrap; }
  .hero__meta > div { min-width: 90px; }
  .hero__meta .num { font-size: 1.35rem; }

  .poster-stack { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .poster:nth-child(2) { transform: none; }
  .poster:nth-child(2):hover { transform: translateY(-8px); }
  .poster:nth-child(1), .poster:nth-child(2), .poster:nth-child(3) { animation: none; }

  .grid-fluid, .games-grid, .price-grid, .stats {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .section-head { margin-bottom: 52px; }
  .gallery { grid-template-columns: 1fr 1fr; }

  .band { padding: 36px 28px; flex-direction: column; text-align: center; align-items: flex-start; }
  .band .btn--gold { width: 100%; justify-content: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 10px; }

  .fg-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }

  .detail-grid { gap: 28px; }
  .spec td { padding: 10px 12px; font-size: .82rem; }
  .spec td:first-child { width: 36%; }

  .decor-orb { display: none; }
  .price-item--feat { padding-left: 18px; }
  .pay-grid { gap: 18px 24px; }
}

@media (max-width: 460px) {
  :root { --pad-x: max(16px, 3vw); }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.55rem; }
  .hero { padding-top: calc(var(--nav-h) + 44px); }
  .hero__cta .btn { width: 100%; }
  .hero__sub { font-size: 1rem; }
  .hero__meta .num { font-size: 1.25rem; }
  .section-head { margin-bottom: 44px; }
  .band { padding: 26px 20px; }
  .band h3 { font-size: 1.3rem; }
  .mobilenav a { font-size: .7rem; }
}
