@font-face {
  font-family: Inter;
  src: url("../assets/fonts/inter-latin-var.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #05070a;
  --bg-2: rgba(8, 12, 18, 0.94);
  --card: rgba(14, 18, 28, 0.92);
  --card-hover: rgba(18, 24, 36, 0.96);
  --line: rgba(148, 180, 230, 0.12);
  --line-strong: rgba(59, 130, 246, 0.32);
  --text: #f3f6fb;
  --soft: #c4cedc;
  --muted: #96a2b5;
  --blue: #3b82f6;
  --blue-d: #2563eb;
  --blue-soft: rgba(59, 130, 246, 0.12);
  --glow: rgba(59, 130, 246, 0.16);
  --r: 16px;
  --r-lg: 22px;
  --header: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --blur: blur(18px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  line-height: 1.65;
  overflow-x: hidden;
  overflow-wrap: anywhere;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: #1a2433;
  border-radius: 999px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* Living background */
.ambiance {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #05070a;
  isolation: isolate;
}

.ambiance-media {
  position: absolute;
  inset: 0;
}

.ambiance-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  backface-visibility: hidden;
}

@media (max-width: 860px) {
  .ambiance-video { object-position: center 42%; }
}

.ambiance-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

.ambiance-orbs span:nth-child(1) {
  width: min(620px, 70vw);
  height: min(620px, 70vw);
  left: -8%;
  top: 8%;
  background: rgba(59, 130, 246, 0.16);
  animation: orb-a 26s var(--ease-soft) infinite alternate;
}

.ambiance-orbs span:nth-child(2) {
  width: min(520px, 60vw);
  height: min(520px, 60vw);
  right: -10%;
  top: 38%;
  background: rgba(37, 99, 235, 0.12);
  animation: orb-b 32s var(--ease-soft) infinite alternate;
}

.ambiance-orbs span:nth-child(3) {
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  left: 28%;
  bottom: -12%;
  background: rgba(96, 165, 250, 0.08);
  animation: orb-c 22s var(--ease-soft) infinite alternate;
}

.ambiance-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 18%, transparent 72%);
  opacity: 0.7;
}

.ambiance-wash {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 95% 60% at 50% 4%, rgba(59, 130, 246, 0.2), transparent 58%);
}

.ambiance-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 100% 85%, rgba(37, 99, 235, 0.1), transparent 58%),
    linear-gradient(180deg, rgba(5, 8, 14, 0.2) 0%, rgba(5, 8, 14, 0.46) 42%, rgba(5, 8, 14, 0.82) 100%);
}

.ambiance-grain {
  display: none;
}

@keyframes orb-a {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(12%, 18%) scale(1.12); }
}

@keyframes orb-b {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-14%, -10%) scale(1.18); }
}

@keyframes orb-c {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(8%, -16%) scale(1.08); }
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.center { text-align: center; }
.left { text-align: left !important; margin-inline: 0 !important; }

.eyebrow {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.7rem;
}

.section {
  padding: clamp(2.4rem, 4.6vw, 3.8rem) 0;
}

.section-title {
  font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 0.85rem;
}

.section-sub {
  max-width: 38rem;
  margin: 0 auto 1.35rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}

.accent-glow {
  color: var(--blue);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  background: rgba(6, 9, 14, 0.92);
  border-bottom: 1px solid transparent;
  transition: background 0.55s var(--ease), border-color 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(6, 9, 14, 0.86);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.24);
}

.header-inner {
  position: relative;
  width: min(1180px, calc(100% - 1.5rem));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.7rem);
  z-index: 1;
}

.nav-link {
  flex: 0 0 auto;
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}

.nav-link:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.header-end {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.55rem;
  margin-left: auto;
}

.icon-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--soft);
  border-radius: 10px;
}

.icon-btn svg { width: 17px; height: 17px; }
.icon-btn {
  transition: transform 0.4s var(--ease), color 0.4s var(--ease), background 0.4s var(--ease);
}
.icon-btn:hover {
  color: var(--text);
  background: var(--blue-soft);
  transform: translateY(-2px) scale(1.08);
}
.icon-btn.box {
  border: 1px solid var(--line);
  background: var(--card);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: auto;
  max-width: 100%;
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  transition: background 0.45s var(--ease), transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}

.btn-ico { width: 18px; height: 18px; flex-shrink: 0; }
.btn:active { transform: scale(0.98); }
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  transform: none;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 22px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
  background: var(--blue-d);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 26px rgba(59, 130, 246, 0.28);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.14);
}

.btn-lg { min-height: 50px; padding: 0.8rem 1.45rem; }
.btn-xl { min-height: 54px; padding: 0.9rem 1.8rem; font-size: 0.98rem; letter-spacing: 0.02em; }
.btn-join {
  min-height: 40px;
  padding: 0.45rem 1rem;
  font-size: 0.86rem;
  width: auto;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  padding: clamp(3.4rem, 8vw, 5.8rem) 0 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  padding: 0.38rem 0.9rem;
  background: #232731;
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
}

.hero-title {
  font-size: clamp(2.35rem, 1.4rem + 4vw, 4.35rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-title span { display: block; }

.hero-lead {
  color: var(--soft);
  max-width: 34rem;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(2.8rem, 6vw, 4rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero-discord {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-discord svg { width: 17px; height: 17px; }
.hero-discord:hover { color: var(--text); }

.hero-proof {
  position: relative;
  z-index: 1;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  padding: 0 0 clamp(2.4rem, 5vw, 3.4rem);
  text-align: center;
}

.stat {
  background: #17191E;
  border-radius: 24px;
  padding: 1.25rem 0.8rem 1.15rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: clamp(2rem, 1.5rem + 1.6vw, 3rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.4rem;
  font-variant-numeric: tabular-nums;
}

@property --k {
  syntax: "<integer>";
  inherits: false;
  initial-value: 0;
}

.stat-num--k.is-counting {
  --k: 0;
  animation: count-k 1.8s linear forwards;
  counter-reset: k var(--k);
}

.stat-num--k.is-counting::after {
  content: counter(k) "k";
  color: var(--blue);
}

@keyframes count-k {
  from { --k: 0; }
  to { --k: 200; }
}

#ultimate,
#standard,
#cs2,
#fortnite,
#valorant,
#fivem {
  scroll-margin-top: calc(var(--header) + 18px);
}

.stat span { color: var(--soft); font-size: 0.95rem; }

/* About */
.about-copy {
  max-width: 44rem;
  margin: 0 auto 1.7rem;
  text-align: center;
  color: var(--muted);
}

.about-copy p + p { margin-top: 0.9rem; }

.feature-grid,
.why-grid,
.pack-grid,
.game-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.why-grid { grid-template-columns: repeat(3, 1fr); margin-bottom: 1.8rem; }
.pack-grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.game-grid { grid-template-columns: repeat(3, 1fr); margin-bottom: 1.2rem; }

.tile, .why-card, .pack-card, .game-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.2rem 1.3rem;
  min-width: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.5s var(--ease-soft), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s var(--ease);
}

.tile:hover, .why-card:hover, .pack-card:hover, .game-card:hover {
  transform: translateY(-6px);
  background: var(--card-hover);
  border-color: var(--line-strong);
  box-shadow: 0 16px 36px rgba(59, 130, 246, 0.1);
}

.tile h3, .why-card h3, .pack-card h3, .game-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0.7rem 0 0.4rem;
}

.tile p, .why-card p, .pack-card p, .game-card p { color: var(--muted); font-size: 0.92rem; }

.tile {
  background: #17191E;
  border: none;
  border-radius: 28px;
  padding: 1.4rem 1.35rem 1.35rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.tile:hover {
  background: #1c1f26;
  border-color: transparent;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.38);
}

.tile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.tile-ico {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #232731;
  border-radius: 14px;
}

.tile-ico svg { width: 22px; height: 22px; }
.tile-ico.sm { width: 32px; height: 32px; border-radius: 10px; }

.tile-num {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tile h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.45rem;
}

.tile p { line-height: 1.6; }

.why-line {
  text-align: center;
  font-weight: 600;
}

.why-line span { color: var(--blue); }

.pack-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #17191E;
  border: none;
  border-radius: 28px;
  padding: 1.45rem 1.4rem 1.3rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

.pack-card:hover {
  background: #1c1f26;
  border-color: transparent;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
}

.pack-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.05rem;
  padding-right: 0;
}

.pack-card--featured .pack-top { padding-right: 0; }

.pack-ico {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #232731;
  border-radius: 14px;
  flex: 0 0 auto;
}

.pack-ico svg { width: 22px; height: 22px; }

.pack-kind {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pack-card h3 {
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  margin: 0 0 0.45rem;
}

.pack-card p {
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.pack-buy {
  width: 100%;
  margin-top: auto;
}

.pack-buy--hero {
  min-height: 52px;
  font-size: 1rem;
  box-shadow: 0 10px 26px rgba(59, 130, 246, 0.28);
}

.pack-card--featured .pack-buy--hero:hover {
  box-shadow: 0 14px 30px rgba(59, 130, 246, 0.34);
}

.pack-card--featured {
  background: #1a2030;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(59, 130, 246, 0.4);
}

.pack-card--featured:hover {
  background: #1e2638;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(59, 130, 246, 0.5);
}

.pack-badge {
  position: static;
  flex: 0 0 auto;
  padding: 0.32rem 0.65rem;
  background: var(--blue-soft);
  border: none;
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Product shots */
.shot {
  display: block;
  width: 100%;
  padding: 0.55rem;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(5, 8, 14, 0.62);
  border: 1px solid var(--line);
  cursor: zoom-in;
}

.shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.7s var(--ease-soft);
}

.shot:hover img { transform: scale(1.025); }
.shot:hover { box-shadow: 0 12px 28px rgba(59, 130, 246, 0.12); }

.shot--glow {
  box-shadow: 0 0 0 1px var(--line-strong), 0 14px 32px rgba(59, 130, 246, 0.1);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.split--ultimate,
.split--standard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(1.1rem, 2.5vw, 1.8rem);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.split--ultimate { border-color: var(--line-strong); }

.split-body p { color: var(--muted); margin: 0.8rem 0 1.2rem; }
.split-kicker {
  color: var(--blue);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pills span {
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  color: var(--soft);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.pills span:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--line-strong);
  color: var(--text);
  transform: translateY(-1px);
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
  margin-top: 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1rem 1.1rem;
}

.check-grid li, .checks li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--soft);
  font-size: 0.9rem;
}

.check-grid li::before, .checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.game-card { display: flex; flex-direction: column; }
.game-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.game-top span:last-child {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.game-card .shot { margin: 0.75rem 0; }
.game-card .btn { margin-top: auto; width: 100%; }
.checks { display: grid; gap: 0.35rem; margin: 0.8rem 0 1rem; }

.fivem-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.fivem-card {
  transition: transform 0.5s var(--ease-soft), box-shadow 0.5s var(--ease);
}

.fivem-card:hover,
.reveal.is-in.fivem-card:hover {
  transform: translateY(-5px);
  background: var(--card-hover);
  box-shadow: 0 16px 36px rgba(59, 130, 246, 0.1);
}

.fivem-copy h3 { font-size: 1.5rem; margin: 0.75rem 0 0.6rem; }
.fivem-copy p { color: var(--muted); margin-bottom: 1.1rem; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  text-align: center;
}

.steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: var(--line);
}

.steps li { position: relative; z-index: 1; min-width: 0; }

.steps span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.85rem;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  background: var(--card);
  font-size: 0.82rem;
  font-weight: 800;
}

.steps h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.steps p { color: var(--muted); font-size: 0.92rem; }

.fineprint { color: var(--muted); font-size: 0.88rem; margin-top: 1rem; }

.video-box {
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  display: grid;
  place-content: center;
  gap: 0.45rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.play {
  width: 68px;
  height: 68px;
  margin: 0 auto 0.4rem;
  color: var(--blue);
}

.play svg { width: 68px; height: 68px; }
.video-title { font-weight: 700; }
.video-box p:last-child { color: var(--muted); font-size: 0.9rem; }

#vodic,
.about-app {
  padding-top: clamp(1.8rem, 3.2vw, 2.6rem);
  padding-bottom: clamp(1.8rem, 3.2vw, 2.6rem);
}

.download {
  padding: clamp(3rem, 6vw, 4.6rem) 0;
}

.download-stage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: center;
}

.download-title {
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.download-lead {
  max-width: 34rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.download-points {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.download-points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--soft);
  font-size: 0.95rem;
  font-weight: 500;
}

.download-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.download-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.download-note {
  color: var(--muted);
  font-size: 0.86rem;
}

.download-preview {
  position: relative;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
}

.download-preview::before {
  content: "";
  position: absolute;
  inset: 12% 4%;
  z-index: 0;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.18), transparent 70%);
  pointer-events: none;
}

.download-preview img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top left;
}

.about-app-copy {
  max-width: 38rem;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.75;
}

.brief-copy {
  max-width: 42rem;
  margin: 0 0 1.4rem;
  color: var(--muted);
  line-height: 1.75;
  text-align: left;
}

.brief-steps {
  max-width: 42rem;
  margin: 0 0 1.4rem;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.75;
  list-style: decimal;
}

.brief-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.2rem 0 2rem;
}

.faq-static {
  max-width: 42rem;
  margin: 0;
}

.cta {
  position: relative;
  padding: clamp(2.2rem, 4.5vw, 3.4rem) 0 clamp(3rem, 6vw, 4.4rem);
  overflow: visible;
  background: none;
}

.cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(720px, 88vw);
  height: min(420px, 70vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1), transparent 68%);
  pointer-events: none;
}

.cta-title {
  position: relative;
  font-size: clamp(1.8rem, 1.2rem + 2.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.12;
  margin-bottom: 0.9rem;
}

.cta-lead {
  position: relative;
  max-width: 36rem;
  margin: 0 auto 1.6rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}

.cta .btn {
  position: relative;
}

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; display: grid; gap: 0.7rem; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease);
}

.faq-item.is-open {
  background: var(--card-hover);
  border-color: var(--line-strong);
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.08);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  text-align: left;
  font-weight: 600;
}

.faq-q span { min-width: 0; }
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--muted); transition: transform 0.45s var(--ease-soft), color 0.45s var(--ease); }
.faq-item.is-open .faq-q svg { transform: rotate(180deg); color: var(--blue); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 1.15rem;
  color: var(--muted);
  font-size: 0.93rem;
  transition: grid-template-rows 0.5s var(--ease-soft), padding 0.5s var(--ease);
}

.faq-a p {
  overflow: hidden;
  min-height: 0;
}

.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
  padding-bottom: 1rem;
}
.faq-cta { margin-top: 1.8rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 2rem 0 1.2rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand img { width: 42px; height: 42px; margin-bottom: 0.55rem; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; }
.footer-socials { display: flex; gap: 0.55rem; }

.footer-copy {
  text-align: center;
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 1.4rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(5, 8, 14, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}

.lightbox.is-on { opacity: 1; visibility: visible; }
.lightbox[hidden] { display: none; }
.lightbox:not([hidden]) { display: grid; }

.lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  transform: scale(0.97);
  transition: transform 0.45s var(--ease-soft);
}

.lightbox.is-on img { transform: scale(1); }

.lightbox-x {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  font-size: 1.4rem;
}

@keyframes bz-rise {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.is-in {
  animation: bz-rise 0.85s var(--ease-soft) both;
}

.reveal.is-done {
  animation: none;
  opacity: 1;
  transform: none;
}

.stat.reveal,
.stat.reveal.is-in,
.stat.reveal.is-done {
  animation: none;
  opacity: 1;
  transform: none;
}

.reveal.is-done.tile:hover,
.reveal.is-done.why-card:hover,
.reveal.is-done.pack-card:hover,
.reveal.is-done.game-card:hover {
  transform: translateY(-6px);
}

.reveal.is-done.btn:hover,
.reveal.is-done.btn-primary:hover,
.reveal.is-done.btn-ghost:hover {
  transform: translateY(-2px) scale(1.03);
}

.reveal.is-done.fivem-card:hover {
  transform: translateY(-5px);
}

@media (max-width: 980px) {
  .pack-card--featured { order: -1; }
  .stats-row, .feature-grid, .pack-grid, .game-grid { grid-template-columns: 1fr 1fr; }
  .split, .fivem-card, .steps, .download-stage { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .steps { text-align: left; gap: 1.4rem; }
  .steps li { display: grid; grid-template-columns: auto 1fr; column-gap: 0.9rem; }
  .steps span { grid-row: span 2; margin: 0; }
}

@media (max-width: 860px) {
  .menu-toggle { display: flex; }
  .header-end { gap: 0.28rem; }
  .header-end .icon-btn { width: 34px; height: 34px; }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header);
    bottom: 0;
    transform: translateX(110%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 1.2rem 1.3rem;
    background: rgba(6, 9, 14, 0.96);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.45s var(--ease-soft), opacity 0.45s var(--ease), visibility 0.45s var(--ease);
    z-index: 40;
  }

  .nav-open .nav {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .feature-grid, .why-grid, .pack-grid, .game-grid, .check-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .download-actions .btn { width: 100%; }
  .header-inner { width: min(1180px, calc(100% - 0.9rem)); }
  .header-end .icon-btn { display: grid; width: 32px; height: 32px; }
  .header-end .icon-btn svg { width: 16px; height: 16px; }
  .btn-join-text { display: none; }
  .btn-join {
    width: 32px;
    min-width: 32px;
    min-height: 32px;
    height: 32px;
    padding: 0;
  }
  .menu-toggle { width: 38px; height: 38px; }
}

