/* ============ NX GAMES — Cyber HUD landing ============ */
:root {
  --bg: #050510;
  --bg-2: #08081a;
  --panel: #0c0c1f;
  --panel-2: #11132a;
  --line: rgba(0, 229, 255, 0.10);
  --line-strong: rgba(0, 229, 255, 0.32);
  --steel: #1f2937;
  --steel-2: #2a3344;
  --text: #e8edf2;
  --text-dim: #9aa3b2;
  --text-mute: #5f6776;
  --cyan: #00E5FF;
  --cyan-2: #22D3EE;
  --cyan-soft: #66f1ff;
  --green: #00FF94;
  --red: #FF3860;
  --amber: #ffb547;
  --hud-glow: 0 0 24px rgba(0, 229, 255, 0.35);
  --hud-glow-soft: 0 0 14px rgba(0, 229, 255, 0.22);
  --shadow-card: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); }
body {
  font-family: 'Rajdhani', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ---- Backgrounds: scanlines + grid ---- */
body::before {
  /* scanlines */
  content: "";
  position: fixed; inset: 0;
  background: repeating-linear-gradient(
    180deg,
    rgba(255,255,255,0.018) 0px,
    rgba(255,255,255,0.018) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}
body::after {
  /* faint cyan grid */
  content: "";
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 90%);
  pointer-events: none;
  z-index: 1;
}

#app {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  isolation: isolate;
}

#app > :not(.global-video-bg) {
  position: relative;
  z-index: 1;
}

.global-video-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: #02040d;
}

.global-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  filter: saturate(1.35) contrast(1.18) brightness(0.55);
  transform: scale(1.06);
}

.global-video-bg::before,
.global-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.global-video-bg::before {
  background:
    radial-gradient(circle at 50% 18%, rgba(0,229,255,0.18), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(0,255,148,0.10), transparent 32%),
    linear-gradient(90deg, rgba(5,5,16,0.94), rgba(5,5,16,0.46) 48%, rgba(5,5,16,0.92)),
    linear-gradient(180deg, rgba(5,5,16,0.28), rgba(5,5,16,0.72));
}

.global-video-bg::after {
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 3px),
    linear-gradient(rgba(0,229,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.055) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  mix-blend-mode: screen;
  opacity: 0.62;
}

/* ---- Typography ---- */
.font-display { font-family: 'Orbitron', sans-serif; letter-spacing: 0.03em; }
.font-mono { font-family: 'JetBrains Mono', ui-monospace, monospace; letter-spacing: 0.06em; }
.font-body { font-family: 'Rajdhani', sans-serif; }

h1, h2, h3, h4 { font-family: 'Orbitron', sans-serif; font-weight: 800; letter-spacing: 0.04em; }

.tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--cyan);
  letter-spacing: 0.22em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.tag::before {
  content: ""; width: 28px; height: 1px; background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.eyebrow { color: var(--cyan); font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; }

.section-title {
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.02;
  margin: 14px 0 22px;
  background: linear-gradient(180deg, #ffffff 0%, #d9fbff 34%, #82f4ff 68%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 36px rgba(0,229,255,0.2);
}
.section-sub { font-family: 'Rajdhani'; color: var(--text-dim); font-size: 18px; max-width: 640px; line-height: 1.5; }

/* ---- Layout ---- */
.container { width: min(1320px, 92vw); margin: 0 auto; }
section { position: relative; padding: 120px 0; }
section .container { position: relative; z-index: 1; }

/* ---- Buttons ---- */
.btn {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 14px 22px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  position: relative;
  transition: 180ms ease;
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.btn:hover { border-color: var(--cyan); box-shadow: var(--hud-glow-soft); color: var(--cyan); }

.btn-primary {
  background: linear-gradient(135deg, #00E5FF 0%, #22D3EE 60%, #0bb6cf 100%);
  color: #021016;
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(0,229,255,0.6), 0 8px 30px -8px rgba(0,229,255,0.55);
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  animation: shine 3.4s infinite;
}
.btn-primary:hover { color: #021016; filter: brightness(1.05); transform: translateY(-1px); }
@keyframes shine {
  0% { left: -120%; }
  60% { left: 130%; }
  100% { left: 130%; }
}

.btn-green {
  background: linear-gradient(135deg, #00FF94, #18d27c);
  color: #001a10;
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(0,255,148,0.55), 0 10px 30px -8px rgba(0,255,148,0.45);
}
.btn-green:hover { color: #001a10; filter: brightness(1.05); }

.btn-ghost { background: rgba(0,229,255,0.04); }

.btn-lg { padding: 18px 28px; font-size: 14px; }

/* ---- Cards / panels ---- */
.panel {
  background: linear-gradient(180deg, rgba(15,17,38,0.7), rgba(7,8,22,0.6));
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}
.panel-hud {
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

/* HUD corner brackets */
.hud-corners > .c {
  position: absolute; width: 16px; height: 16px;
  border: 1.5px solid var(--cyan);
  box-shadow: 0 0 10px rgba(0,229,255,0.4);
  pointer-events: none;
}
.hud-corners .c-tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.hud-corners .c-tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.hud-corners .c-bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.hud-corners .c-br { bottom: 10px; right: 10px; border-left: none; border-top: none; }

/* ---- Navbar ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 14px 0;
  background: linear-gradient(180deg, rgba(5,5,16,0.85), rgba(5,5,16,0.4));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav .inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav .wordmark {
  font-family: 'Orbitron'; font-weight: 900; font-size: 18px; letter-spacing: 0.22em;
  background: linear-gradient(90deg, #ffffff, var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav .links { display: flex; gap: 28px; }
.nav .links a {
  font-family: 'Rajdhani'; font-weight: 500; font-size: 14px; color: var(--text-dim);
  text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 200ms;
}
.nav .links a:hover { color: var(--cyan); }
.nav .right { display: flex; align-items: center; gap: 18px; }
.online {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono'; font-size: 12px; color: var(--text-dim);
  letter-spacing: 0.14em;
}
.online .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 1.6s infinite; }
.online .n { color: var(--green); font-weight: 600; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.6; }
}

.hamburger { display: none; background: none; border: 1px solid var(--line-strong); padding: 8px; color: var(--text); cursor: pointer; }
.hamburger svg { width: 18px; height: 18px; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.34;
  filter: saturate(1.35) contrast(1.12) brightness(0.72);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at center 30%, rgba(0,229,255,0.18), transparent 28%),
    linear-gradient(90deg, rgba(5,5,16,0.92), rgba(5,5,16,0.24) 46%, rgba(5,5,16,0.92));
  pointer-events: none;
}

.hero canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero .vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(5,5,16,0.85) 80%);
  z-index: 1;
}
.viewport-corners > .v {
  position: fixed; width: 42px; height: 42px;
  border: 1.5px solid var(--cyan);
  box-shadow: 0 0 12px rgba(0,229,255,0.45);
  z-index: 70;
  pointer-events: none;
}
.viewport-corners .v-tl { top: 78px; left: 18px; border-right: none; border-bottom: none; }
.viewport-corners .v-tr { top: 78px; right: 18px; border-left: none; border-bottom: none; }
.viewport-corners .v-bl { bottom: 18px; left: 18px; border-right: none; border-top: none; }
.viewport-corners .v-br { bottom: 18px; right: 18px; border-left: none; border-top: none; }

.hero .inner { position: relative; z-index: 3; text-align: center; padding: 100px 0 60px; width: 100%; }

.hero-offer-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  margin-bottom: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.22em;
  color: var(--green);
  text-transform: uppercase;
  border: 1px solid rgba(0,255,148,0.35);
  background: rgba(0,255,148,0.08);
  box-shadow: 0 0 18px rgba(0,255,148,0.16);
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
}

.hero-offer-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 6.8vw, 104px);
  line-height: 0.95;
  letter-spacing: 0.035em;
  background: linear-gradient(180deg, #ffffff 0%, #d9fbff 52%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 34px rgba(0,229,255,0.24);
}

.hero-offer-currencies {
  width: min(980px, 92vw);
  margin: 18px auto 20px;
  color: #d9fbff;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(12px, 1.2vw, 16px);
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-offer-currencies b {
  color: var(--green);
  font-weight: 700;
  text-shadow: 0 0 16px rgba(0,255,148,0.28);
}

.hero-logo-wrap {
  display: flex; justify-content: center; margin-bottom: 8px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-title {
  font-family: 'Orbitron'; font-weight: 900;
  font-size: clamp(28px, 3.6vw, 54px);
  line-height: 1;
  letter-spacing: 0.16em;
  background: linear-gradient(180deg, #ffffff 0%, #aef5ff 55%, #00E5FF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 28px rgba(0,229,255,0.22);
  margin: 8px 0 6px;
  position: relative;
  display: inline-block;
}
.hero-title::after {
  content: "";
  position: absolute; left: -4%; right: -4%; top: 0; height: 6px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,0.9), transparent);
  filter: blur(2px);
  animation: scanline 4s linear infinite;
}
@keyframes scanline {
  0% { top: -6%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.hero-sub { color: var(--text-dim); font-size: clamp(16px, 1.4vw, 22px); margin: 8px 0 14px; font-weight: 400; }
.hero-tag {
  font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: 0.32em;
  color: var(--cyan); margin: 18px 0 30px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-badges {
  display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  margin-top: 30px; color: var(--text-mute);
  font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.hero-badges b { color: var(--cyan); font-weight: 400; margin-right: 6px; }

/* ---- Logo ---- */
.logo-hex {
  position: relative;
  width: var(--size, 56px);
  height: var(--size, 56px);
  display: grid;
  place-items: center;
  overflow: visible;
  isolation: isolate;
}
.logo-hex.lg { --size: 220px; }
.logo-hex img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(1.12);
  filter:
    drop-shadow(0 0 10px rgba(0,229,255,0.75))
    drop-shadow(0 0 26px rgba(0,229,255,0.36));
  user-select: none;
}
.logo-hex.glow::before {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.35), rgba(0,229,255,0.08) 48%, transparent 70%);
  filter: blur(14px);
  animation: logoAura 3.8s ease-in-out infinite;
}
.hero-logo-wrap .logo-hex img {
  transform: scale(1.12);
}
@keyframes logoAura {
  0%, 100% { opacity: 0.55; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* ---- Stat bar ---- */
.stats {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(0,229,255,0.03), transparent);
  padding: 36px 0;
  position: relative;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stats-grid .col {
  text-align: left;
  border-left: 1px solid var(--line);
  padding-left: 22px;
  position: relative;
  transition: transform 220ms ease, filter 220ms ease, border-color 220ms ease;
}
.stats-grid .col:first-child { border-left: none; padding-left: 0; }
.stats-grid .col::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 0;
  bottom: -14px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: opacity 220ms ease, transform 220ms ease;
}
.stats-grid .col:first-child::after { left: 0; }
.stats-grid .col:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 0 14px rgba(0,229,255,0.28));
  border-color: rgba(0,229,255,0.34);
}
.stats-grid .col:hover::after { opacity: 1; transform: scaleX(1); }
.stat-num {
  font-family: 'Orbitron'; font-weight: 900; font-size: clamp(38px, 4vw, 56px);
  background: linear-gradient(180deg, #ffffff, var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat-label { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.2em; margin-top: 10px; }

/* ---- Video frame ---- */
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border: 1px solid var(--line-strong);
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
  background: var(--panel);
  box-shadow: 0 0 30px -8px rgba(0,229,255,0.4);
  overflow: hidden;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---- Cinematic scroll video section ---- */
.cinematic-scroll {
  height: 195vh;
  padding: 0;
  overflow: clip;
}

.cinematic-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #02040d;
}

.cinematic-video,
.cinematic-shade {
  position: absolute;
  inset: 0;
}

.cinematic-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.32) contrast(1.16) brightness(0.72);
}

.cinematic-shade {
  background:
    radial-gradient(circle at 76% 28%, rgba(0,229,255,0.16), transparent 28%),
    linear-gradient(90deg, rgba(5,5,16,0.92), rgba(5,5,16,0.42) 46%, rgba(5,5,16,0.84)),
    linear-gradient(180deg, rgba(5,5,16,0.22), rgba(5,5,16,0.86));
  pointer-events: none;
}

.cinematic-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
}

.cinematic-title {
  max-width: 860px;
  margin: 16px 0 16px;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(40px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #fff, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 42px rgba(0,229,255,0.24);
}

.cinematic-copy {
  max-width: 660px;
  color: var(--text-dim);
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.48;
}

.cinematic-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(940px, 100%);
  margin-top: 42px;
}

.cinematic-card {
  position: relative;
  min-height: 150px;
  border: 1px solid rgba(0,229,255,0.24);
  background: linear-gradient(180deg, rgba(15,17,38,0.64), rgba(7,8,22,0.52));
  padding: 22px;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  backdrop-filter: blur(12px);
  box-shadow: 0 26px 60px -34px rgba(0,229,255,0.55);
}

.cinematic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(0,229,255,0.16), transparent);
  transform: translateX(-120%);
  animation: shine 4.6s infinite;
  pointer-events: none;
}

.cinematic-card span {
  font-family: 'JetBrains Mono', monospace;
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0.2em;
}

.cinematic-card strong {
  display: block;
  margin-top: 22px;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cinematic-card small {
  display: block;
  margin-top: 8px;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---- Catalog ---- */
.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: 0.18em;
  color: var(--green); text-transform: uppercase;
  padding: 6px 12px; border: 1px solid rgba(0,255,148,0.3);
  background: rgba(0,255,148,0.06);
  border-radius: 2px;
}
.live-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 1.6s infinite; }

.game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.game-card {
  position: relative;
  aspect-ratio: 460/215;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: transform 280ms cubic-bezier(.16,1,.3,1), border-color 200ms, box-shadow 200ms;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.game-card:hover { transform: translateY(-6px); border-color: var(--cyan); box-shadow: 0 0 30px rgba(0,229,255,0.45), 0 18px 40px -10px rgba(0,0,0,0.75); }
.game-card .cover {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 700ms cubic-bezier(.16,1,.3,1), filter 400ms;
  filter: saturate(1.05) brightness(0.92);
}
.game-card:hover .cover { transform: scale(1.08); filter: saturate(1.2) brightness(1.04); }
.game-card .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,16,0.0) 35%, rgba(5,5,16,0.55) 72%, rgba(5,5,16,0.92) 100%);
  pointer-events: none;
}
.game-card .scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(180deg, rgba(0,229,255,0.05) 0px, rgba(0,229,255,0.05) 1px, transparent 1px, transparent 3px);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.5;
  transition: opacity 240ms;
}
.game-card:hover .scanlines { opacity: 1; }
.game-card .scan-bar {
  position: absolute; left: -10%; right: -10%; height: 90px;
  top: -100px;
  background: linear-gradient(180deg, transparent, rgba(0,229,255,0.5), transparent);
  filter: blur(6px);
  pointer-events: none;
  transition: top 1.1s cubic-bezier(.4,0,.6,1), opacity 200ms;
  opacity: 0;
}
.game-card:hover .scan-bar { top: 115%; opacity: 1; }
.game-card .meta {
  position: absolute; top: 10px; left: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--cyan);
  letter-spacing: 0.2em; padding: 3px 8px;
  background: rgba(0,8,16,0.7); border: 1px solid rgba(0,229,255,0.35);
  text-transform: uppercase;
}
.game-card .meta2 {
  position: absolute; top: 10px; right: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--text-dim);
  letter-spacing: 0.2em; padding: 3px 8px;
  background: rgba(0,0,0,0.7); border: 1px solid rgba(255,255,255,0.12);
}
.game-card .info {
  position: absolute; left: 14px; right: 14px; bottom: 12px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 10px;
  z-index: 2;
}
.game-card .title-wrap { flex: 1; min-width: 0; }
.game-card .genre {
  font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--cyan);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 3px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 280ms ease, transform 280ms cubic-bezier(.16,1,.3,1);
}
.game-card:hover .genre { opacity: 1; transform: translateY(0); }
.game-card .title {
  font-family: 'Orbitron'; font-weight: 800; font-size: 13px; color: var(--text);
  letter-spacing: 0.04em; line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0,0,0,0.85);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.game-card .play-ico {
  width: 30px; height: 30px;
  border: 1px solid var(--cyan); color: var(--cyan);
  display: grid; place-items: center;
  background: rgba(0,8,16,0.7);
  opacity: 0; transform: translateY(8px) scale(0.85);
  transition: all 320ms cubic-bezier(.16,1,.3,1);
  flex-shrink: 0;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}
.game-card:hover .play-ico { opacity: 1; transform: translateY(0) scale(1); box-shadow: 0 0 14px rgba(0,229,255,0.45); }
.game-card .corner-l, .game-card .corner-r {
  position: absolute; width: 14px; height: 14px;
  border: 1.5px solid var(--cyan);
  opacity: 0; transition: opacity 240ms;
  box-shadow: 0 0 6px rgba(0,229,255,0.5);
}
.game-card .corner-l { top: 6px; left: 6px; border-right: none; border-bottom: none; }
.game-card .corner-r { bottom: 6px; right: 6px; border-left: none; border-top: none; }
.game-card:hover .corner-l, .game-card:hover .corner-r { opacity: 1; }

/* ---- Featured wide card (newest release) ---- */
.featured-card {
  display: block; position: relative;
  margin-top: 36px;
  aspect-ratio: 21/8;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform 280ms cubic-bezier(.16,1,.3,1), border-color 220ms, box-shadow 220ms;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  cursor: pointer;
}
.featured-card:hover { border-color: var(--cyan); box-shadow: 0 0 38px rgba(0,229,255,0.4), 0 20px 60px -16px rgba(0,0,0,0.8); transform: translateY(-3px); }
.featured-card .cover {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 25%;
  transition: transform 800ms cubic-bezier(.16,1,.3,1), filter 500ms;
  filter: saturate(1.05) brightness(0.7);
}
.featured-card:hover .cover { transform: scale(1.04); filter: saturate(1.2) brightness(0.85); }
.featured-veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,5,16,0.95) 0%, rgba(5,5,16,0.7) 38%, rgba(5,5,16,0.2) 70%, rgba(5,5,16,0.55) 100%),
              linear-gradient(180deg, rgba(5,5,16,0.5) 0%, transparent 30%, rgba(5,5,16,0.5) 100%);
  pointer-events: none;
}
.featured-scan {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(0,229,255,0.04) 0px, rgba(0,229,255,0.04) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: screen;
}
.featured-content {
  position: relative; z-index: 2;
  height: 100%;
  padding: clamp(28px, 4vw, 56px);
  display: flex; flex-direction: column; justify-content: center;
  max-width: 60%;
}
.featured-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--cyan); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(0,8,16,0.7);
  border: 1px solid rgba(0,229,255,0.4);
  align-self: flex-start;
  box-shadow: 0 0 16px rgba(0,229,255,0.25);
}
.featured-meta .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 10px var(--cyan);
  animation: pulse 1.6s infinite;
}
.featured-title {
  font-family: 'Orbitron', sans-serif; font-weight: 900;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1; margin: 0 0 12px;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #fff 0%, #aef5ff 70%, var(--cyan) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 40px rgba(0,229,255,0.25);
}
.featured-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-dim);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.featured-cta {
  font-family: 'Orbitron', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex; align-items: center; gap: 10px;
}
.featured-card .corner-l, .featured-card .corner-r {
  position: absolute; width: 22px; height: 22px;
  border: 1.5px solid var(--cyan);
  z-index: 3;
  box-shadow: 0 0 10px rgba(0,229,255,0.4);
}
.featured-card .corner-l { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.featured-card .corner-r { bottom: 12px; right: 12px; border-left: none; border-top: none; }

@media (max-width: 720px) {
  .featured-card { aspect-ratio: 4/3; }
  .featured-content { max-width: 100%; }
}

.expand-toggle {
  margin: 30px auto 0; display: flex;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--cyan);
  padding: 14px 26px;
  font-family: 'JetBrains Mono'; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer;
  transition: all 200ms;
}
.expand-toggle:hover { background: rgba(0,229,255,0.06); box-shadow: var(--hud-glow-soft); }

.full-list {
  overflow: hidden;
  transition: max-height 700ms cubic-bezier(.16, 1, .3, 1), opacity 500ms;
  max-height: 0; opacity: 0;
}
.full-list.open { max-height: 8000px; opacity: 1; }
.full-list .grid {
  margin-top: 30px; padding: 30px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px 30px;
  border: 1px solid var(--line); background: rgba(8,8,22,0.55);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
.full-list .grid div {
  font-family: 'JetBrains Mono'; font-size: 11.5px; color: var(--text-dim);
  padding: 6px 0; letter-spacing: 0.04em; border-bottom: 1px dashed rgba(0,229,255,0.08);
  display: flex; gap: 10px; align-items: center;
}
.full-list .grid div::before { content: ""; width: 4px; height: 4px; background: var(--cyan); flex: 0 0 4px; }

/* ---- NX System / Steps ---- */
.nexus { position: relative; }
.steps { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 50px; max-width: 920px; }
.step {
  position: relative; padding: 38px 38px 38px 110px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15,17,38,0.55), rgba(7,8,22,0.5));
  backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(40px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.16,1,.3,1);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
.step.in { opacity: 1; transform: translateY(0); }
.step .big-num {
  position: absolute; left: 24px; top: 50%; transform: translateY(-50%);
  font-family: 'Orbitron'; font-weight: 900;
  font-size: 92px; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0,229,255,0.5);
  letter-spacing: 0;
}
.step .icon { position: absolute; left: 0; top: -12px;  }
.step .label { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--cyan); letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 8px; }
.step h3 { font-size: 26px; margin: 4px 0 8px; color: var(--text); }
.step p { color: var(--text-dim); margin: 0; font-size: 17px; }
.steps::before {
  content: ""; position: absolute; left: 56px; top: 30px; bottom: 30px;
  width: 1px; background: linear-gradient(180deg, transparent, var(--cyan), transparent);
  opacity: 0.4;
}

/* ---- Features ---- */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 50px; }
.feature {
  position: relative; padding: 30px 26px; min-height: 280px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15,17,38,0.5), rgba(7,8,22,0.45));
  transition: border-color 220ms, box-shadow 220ms;
  overflow: hidden;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  cursor: default;
}
.feature:hover { border-color: var(--cyan); box-shadow: var(--hud-glow-soft); }
.feature .spotlight {
  position: absolute; inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(0,229,255,0.18), transparent 60%);
  opacity: 0; transition: opacity 250ms; pointer-events: none;
}
.feature:hover .spotlight { opacity: 1; }
.feature .num { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--cyan); letter-spacing: 0.22em; margin-bottom: 26px; }
.feature .iconbox {
  width: 48px; height: 48px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  margin-bottom: 22px;
  background: rgba(0,229,255,0.04);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.feature h4 { font-size: 17px; margin: 0 0 10px; color: var(--text); letter-spacing: 0.04em; }
.feature p { color: var(--text-dim); font-size: 15px; margin: 0; line-height: 1.5; }

/* ---- Testimonials ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.testimonial {
  position: relative;
  aspect-ratio: 9/16;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  overflow: hidden;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.testimonial::before,
.testimonial::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
}
.testimonial::before {
  top: 0;
  height: 58px;
  background: linear-gradient(180deg, rgba(5,5,16,0.92), rgba(5,5,16,0));
}
.testimonial::after {
  bottom: 0;
  height: 78px;
  background: linear-gradient(0deg, rgba(5,5,16,0.96), rgba(5,5,16,0));
}
.testimonial iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  transform: scale(1.045);
  transform-origin: center;
}
.testimonial .badge {
  position: absolute; top: 12px; left: 12px;
  font-family: 'JetBrains Mono'; font-size: 10px; letter-spacing: 0.18em;
  color: var(--cyan); padding: 4px 10px;
  background: rgba(5,5,16,0.75); border: 1px solid var(--line-strong);
  z-index: 4;
}

/* ---- Reviews / WhatsApp ---- */
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.review {
  position: relative; aspect-ratio: 9/16;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #0a2e1f, #061d12);
  cursor: zoom-in;
  overflow: hidden;
  transition: border-color 200ms, box-shadow 200ms, transform 200ms;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.review img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform 600ms cubic-bezier(.16,1,.3,1), filter 400ms;
  filter: brightness(0.92);
}
.review:hover img { transform: scale(1.04); filter: brightness(1.0); }
.review:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: 0 0 18px rgba(0,255,148,0.3); }
.review .review-badge {
  position: absolute; top: 10px; left: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 9px;
  color: var(--green); letter-spacing: 0.18em; text-transform: uppercase;
  padding: 3px 8px;
  background: rgba(0,15,8,0.85);
  border: 1px solid rgba(0,255,148,0.4);
  opacity: 0; transition: opacity 240ms;
}
.review:hover .review-badge { opacity: 1; }
.review .review-id {
  position: absolute; bottom: 10px; left: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 9px;
  color: var(--text-dim); letter-spacing: 0.18em;
  padding: 3px 8px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.08);
}

/* "NUEVO" game-card variant */
.game-card.is-new { border-color: rgba(0,255,148,0.35); }
.game-card.is-new:hover { border-color: var(--green); box-shadow: 0 0 28px rgba(0,255,148,0.4), 0 16px 40px -10px rgba(0,0,0,0.75); }
.game-card.is-new .meta {
  color: var(--green);
  border-color: rgba(0,255,148,0.55);
  background: rgba(0,15,8,0.8);
  box-shadow: 0 0 10px rgba(0,255,148,0.3);
  animation: newPulse 2.4s ease-in-out infinite;
}
.game-card.is-new .corner-l, .game-card.is-new .corner-r { border-color: var(--green); box-shadow: 0 0 6px rgba(0,255,148,0.5); }
.game-card.is-new .play-ico { border-color: var(--green); color: var(--green); }
.game-card.is-new .genre { color: var(--green); }
@keyframes newPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(0,255,148,0.25); }
  50% { box-shadow: 0 0 14px rgba(0,255,148,0.6); }
}

.fb-large {
  margin-top: 30px; padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15,30,55,0.6), rgba(8,16,30,0.5));
  display: grid; grid-template-columns: 60px 1fr; gap: 18px; align-items: start;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.fb-large .fb-img {
  aspect-ratio: 16/10;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  grid-column: 1 / -1;
  margin-top: 14px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.fb-large .fb-img picture {
  width: 100%;
  height: 100%;
  display: block;
}
.fb-large .fb-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}
.fb-large .fb-img::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,229,255,0.18), transparent 10%, transparent 90%, rgba(0,229,255,0.18)),
    repeating-linear-gradient(180deg, rgba(0,229,255,0.035) 0px, rgba(0,229,255,0.035) 1px, transparent 1px, transparent 4px);
  mix-blend-mode: multiply;
  opacity: 0.42;
}
.fb-large .fb-icon {
  width: 60px; height: 60px;
  background: #1877f2; color: white;
  display: grid; place-items: center;
  font-family: 'Orbitron'; font-weight: 900; font-size: 30px;
  border-radius: 8px;
}
.fb-large h4 { margin: 0 0 6px; font-size: 16px; }
.fb-large p { color: var(--text-dim); margin: 0; }

/* ---- Visible sales plans ---- */
.plans-section {
  position: relative;
  padding-top: 100px;
}

.plans-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 28px;
  align-items: end;
  margin-bottom: 42px;
}

.plans-currency {
  border: 1px solid var(--line-strong);
  background: rgba(0,229,255,0.045);
  padding: 18px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.plans-currency span {
  display: block;
  margin-bottom: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plans-currency select {
  width: 100%;
  border: 1px solid rgba(0,229,255,0.34);
  background: rgba(0,0,0,0.58);
  color: var(--cyan);
  padding: 12px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  outline: none;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.sales-plan {
  position: relative;
  min-height: 650px;
  padding: 32px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 86% 12%, rgba(0,229,255,0.14), transparent 30%),
    linear-gradient(180deg, rgba(15,17,38,0.76), rgba(7,8,22,0.68));
  overflow: hidden;
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
  box-shadow: 0 30px 80px -54px rgba(0,229,255,0.55);
  isolation: isolate;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, filter 240ms ease;
}

.sales-plan:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: var(--cyan);
  box-shadow: 0 34px 90px -50px rgba(0,229,255,0.74);
  filter: saturate(1.12);
}

.sales-plan.featured {
  border-color: rgba(0,255,148,0.55);
  background:
    radial-gradient(circle at 82% 10%, rgba(0,255,148,0.16), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(0,229,255,0.12), transparent 34%),
    linear-gradient(180deg, rgba(15,28,42,0.82), rgba(7,8,22,0.7));
  box-shadow: 0 0 34px rgba(0,255,148,0.12), 0 38px 90px -50px rgba(0,255,148,0.75);
  animation: premiumBreath 3.2s ease-in-out infinite;
}

@keyframes premiumBreath {
  0%, 100% { border-color: rgba(0,255,148,0.48); }
  50% { border-color: rgba(0,255,148,0.88); box-shadow: 0 0 42px rgba(0,255,148,0.18), 0 38px 90px -48px rgba(0,255,148,0.9); }
}

.plan-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(0,229,255,0.16), transparent);
  transform: translateX(-120%);
  animation: shine 5.2s infinite;
  z-index: -1;
}

.plan-scan {
  position: absolute;
  left: -20%;
  right: -20%;
  top: 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, rgba(0,229,255,0.12), transparent);
  transform: translateY(-120%);
  animation: planScan 4.8s linear infinite;
  pointer-events: none;
  z-index: -1;
}

.sales-plan.featured .plan-scan {
  background: linear-gradient(180deg, transparent, rgba(0,255,148,0.16), transparent);
  animation-duration: 3.6s;
}

@keyframes planScan {
  to { transform: translateY(760%); }
}

.plan-orbit {
  position: absolute;
  inset: 20px;
  pointer-events: none;
  opacity: 0.75;
  z-index: -1;
}

.plan-orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--cyan);
  box-shadow: 0 0 12px currentColor;
  animation: orbitFloat 5.5s ease-in-out infinite;
}

.plan-orbit span:nth-child(1) { top: 0; right: 12%; color: var(--cyan); }
.plan-orbit span:nth-child(2) { bottom: 14%; left: 0; color: var(--green); animation-delay: -1.6s; }
.plan-orbit span:nth-child(3) { bottom: 0; right: 4%; color: var(--amber); animation-delay: -3s; }

@keyframes orbitFloat {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); opacity: 0.45; }
  50% { transform: translate3d(10px,-14px,0) rotate(90deg); opacity: 1; }
}

.plan-topline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.plan-topline b {
  color: var(--green);
  font-size: 10px;
  border: 1px solid rgba(0,255,148,0.5);
  padding: 7px 10px;
  background: rgba(0,255,148,0.1);
  box-shadow: 0 0 18px rgba(0,255,148,0.18);
  animation: recommendPulse 1.8s ease-in-out infinite;
}

@keyframes recommendPulse {
  0%, 100% { transform: translateY(0); opacity: 0.82; }
  50% { transform: translateY(-2px); opacity: 1; }
}

.sales-plan h3 {
  position: relative;
  margin: 28px 0 10px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
  color: var(--text);
  text-shadow: 0 0 28px rgba(0,229,255,0.16);
}

.sales-plan.featured h3 {
  color: #fff;
  text-shadow: 0 0 34px rgba(0,255,148,0.2);
}

.plan-sub {
  position: relative;
  margin: 0;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.plan-price {
  position: relative;
  margin-top: 26px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 5vw, 64px);
  color: var(--cyan);
  text-shadow: 0 0 28px rgba(0,229,255,0.35);
  animation: pricePulse 2.4s ease-in-out infinite;
}

.sales-plan.featured .plan-price {
  color: var(--green);
  text-shadow: 0 0 28px rgba(0,255,148,0.32);
}

@keyframes pricePulse {
  0%, 100% { filter: brightness(1); transform: translateY(0); }
  50% { filter: brightness(1.18); transform: translateY(-2px); }
}

.plan-meter {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 12px;
  border: 1px solid rgba(0,229,255,0.18);
  background: rgba(0,229,255,0.045);
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
}

.plan-meter span,
.plan-meter strong {
  color: var(--cyan);
  font-weight: 700;
}

.sales-plan.featured .plan-meter span,
.sales-plan.featured .plan-meter strong {
  color: var(--green);
}

.plan-meter div {
  height: 4px;
  background: rgba(0,229,255,0.14);
  overflow: hidden;
  position: relative;
}

.plan-meter i {
  display: block;
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 10px var(--cyan);
  animation: meterMove 2.8s ease-in-out infinite;
}

.sales-plan.featured .plan-meter i {
  width: 100%;
  box-shadow: 0 0 12px var(--green);
}

@keyframes meterMove {
  0%, 100% { transform: translateX(-8%); }
  50% { transform: translateX(4%); }
}

.plan-note {
  position: relative;
  color: var(--text-dim);
  font-size: 17px;
  margin: 18px 0 24px;
}

.plan-features {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.plan-features div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
}

.plan-features span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(0,255,148,0.35);
  color: var(--green);
  background: rgba(0,255,148,0.08);
  font-family: 'JetBrains Mono', monospace;
  flex-shrink: 0;
}

.plan-features .no {
  color: var(--text-mute);
}

.plan-features .no span {
  color: var(--red);
  border-color: rgba(255,70,90,0.35);
  background: rgba(255,70,90,0.08);
}

.plan-actions {
  position: relative;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.plan-actions .btn {
  flex: 1;
  justify-content: center;
  min-width: 170px;
}

.community-strip {
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(0,229,255,0.36);
  background:
    radial-gradient(circle at 92% 50%, rgba(0,255,148,0.13), transparent 22%),
    linear-gradient(90deg, rgba(0,229,255,0.12), rgba(0,255,148,0.06));
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  transition: transform 220ms ease, box-shadow 220ms ease;
  position: relative;
  overflow: hidden;
}

.community-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(0,229,255,0.18), transparent);
  transform: translateX(-120%);
  animation: shine 4.8s infinite;
  pointer-events: none;
}

.community-strip:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(0,229,255,0.24);
}

.community-strip span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(0,229,255,0.45);
  background: rgba(0,229,255,0.09);
  z-index: 1;
}

.community-strip strong {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

.community-strip small {
  margin-left: auto;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}

.community-strip em {
  position: relative;
  z-index: 1;
  margin-left: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(0,255,148,0.42);
  background: rgba(0,255,148,0.08);
  color: var(--green);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  box-shadow: 0 0 16px rgba(0,255,148,0.16);
  animation: communityPulse 1.8s ease-in-out infinite;
}

@keyframes communityPulse {
  0%, 100% { filter: brightness(0.9); transform: translateX(0); }
  50% { filter: brightness(1.18); transform: translateX(3px); }
}

/* ---- Quiz ---- */
.quiz-panel {
  margin-top: 50px;
  padding: 50px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(15,17,38,0.7), rgba(7,8,22,0.6));
  position: relative;
  min-height: 380px;
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
  overflow: hidden;
}
.quiz-progress {
  display: flex; gap: 8px; margin-bottom: 28px;
}
.quiz-progress .seg { flex: 1; height: 3px; background: var(--steel); transition: background 300ms; }
.quiz-progress .seg.on { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.quiz-step { animation: quizIn 500ms cubic-bezier(.16,1,.3,1); }
@keyframes quizIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.quiz-q { font-family: 'Orbitron'; font-weight: 800; font-size: clamp(24px, 2.6vw, 34px); margin: 0 0 30px; color: var(--text); }
.quiz-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.quiz-opt {
  padding: 26px 22px; min-height: 100px;
  text-align: left;
  background: rgba(0,229,255,0.03);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: 'Orbitron'; font-weight: 700; font-size: 16px;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: all 200ms;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}
.quiz-opt:hover { border-color: var(--cyan); background: rgba(0,229,255,0.1); box-shadow: var(--hud-glow-soft); }
.quiz-opt .quiz-sub { display: block; font-family: 'JetBrains Mono'; font-size: 11px; color: var(--text-mute); margin-top: 8px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; }

.quiz-result { text-align: center; padding: 20px 0; }
.quiz-result .label { font-family: 'JetBrains Mono'; font-size: 12px; color: var(--cyan); letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 16px; }
.quiz-result h3 { font-size: clamp(28px, 3vw, 42px); margin: 0 0 14px; background: linear-gradient(180deg, #fff, var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.result-price {
  display: inline-flex;
  margin: 0 auto 22px;
  padding: 8px 16px;
  border: 1px solid rgba(0,229,255,0.35);
  background: rgba(0,229,255,0.07);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 0 16px rgba(0,229,255,0.16);
}
.quiz-result p { color: var(--text-dim); max-width: 540px; margin: 0 auto 28px; font-size: 17px; }

/* ---- Guarantee ---- */
.guarantee {
  padding: 50px;
  border: 1px solid rgba(0,255,148,0.2);
  background: linear-gradient(180deg, rgba(0,30,18,0.5), rgba(0,15,8,0.4));
  display: grid; grid-template-columns: 180px 1fr; gap: 36px; align-items: center;
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}
.seal {
  width: 160px; height: 160px; position: relative;
  display: grid; place-items: center;
}
.seal svg { width: 160px; height: 160px; animation: rotate 22s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.seal .core {
  position: absolute; inset: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,148,0.18), rgba(0,255,148,0.04));
  display: grid; place-items: center;
  text-align: center;
  font-family: 'Orbitron'; font-weight: 900;
  color: var(--green);
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: 0.06em;
}
.guarantee h3 { font-size: clamp(26px, 3vw, 38px); margin: 0 0 12px; }
.guarantee p { color: var(--text-dim); margin: 0 0 14px; font-size: 17px; }
.guarantee .checks { display: flex; gap: 26px; flex-wrap: wrap; font-family: 'JetBrains Mono'; font-size: 12px; color: var(--text-dim); letter-spacing: 0.14em; }
.guarantee .checks span { color: var(--green); margin-right: 8px; }

/* ---- Community / FAQ ---- */
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 50px; }
.comm-card {
  padding: 34px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(15,17,38,0.55), rgba(7,8,22,0.5));
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 220ms, box-shadow 220ms, transform 220ms;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  text-decoration: none; color: inherit;
}
.comm-card:hover { transform: translateY(-3px); }
.comm-card.green { border-color: rgba(0,255,148,0.3); }
.comm-card.green:hover { box-shadow: 0 0 20px rgba(0,255,148,0.3); border-color: var(--green); }
.comm-card.cyan { border-color: var(--line-strong); }
.comm-card.cyan:hover { box-shadow: var(--hud-glow-soft); border-color: var(--cyan); }
.comm-card .ico { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); margin-bottom: 8px; clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px); }
.comm-card.green .ico { color: var(--green); border-color: rgba(0,255,148,0.4); }
.comm-card.cyan .ico { color: var(--cyan); border-color: var(--line-strong); }
.comm-card h4 { margin: 0; font-size: 18px; letter-spacing: 0.05em; }
.comm-card p { color: var(--text-dim); margin: 0; font-size: 15px; }

.faq { margin-top: 50px; max-width: 880px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%; text-align: left; background: none; border: 0;
  padding: 22px 0; cursor: pointer; color: var(--text);
  font-family: 'Orbitron'; font-weight: 700; font-size: 17px;
  letter-spacing: 0.04em;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.faq-q:hover { color: var(--cyan); }
.faq-q .chev { width: 14px; height: 14px; flex-shrink: 0; transition: transform 300ms; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); color: var(--cyan); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 350ms cubic-bezier(.16,1,.3,1);
  color: var(--text-dim); font-size: 16px; line-height: 1.58;
}
.faq-item.open .faq-a { max-height: 620px; padding-bottom: 22px; }

/* ---- CTA final ---- */
.cta-final {
  text-align: center;
  padding: 130px 0;
}
.cta-final h2 { font-size: clamp(36px, 5vw, 64px); margin: 0 0 16px; background: linear-gradient(180deg, #fff, var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-final p { color: var(--text-mute); font-family: 'JetBrains Mono'; font-size: 12px; letter-spacing: 0.2em; margin-top: 22px; text-transform: uppercase; }

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
  padding: 80px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { display: flex; align-items: center; gap: 12px; }
.footer .tagline { color: var(--text-dim); margin: 16px 0; max-width: 320px; font-size: 15px; }
.footer h5 { font-family: 'Orbitron'; font-weight: 700; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 18px; color: var(--cyan); }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--text-dim); text-decoration: none; font-size: 14px; transition: color 200ms; }
.footer ul a:hover { color: var(--cyan); }
.footer-bottom {
  margin-top: 60px; padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono'; font-size: 11px; color: var(--text-mute); letter-spacing: 0.1em;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}

/* ---- Floating UI: toast, viewers ---- */
.toast {
  position: fixed !important;
  left: 24px;
  right: auto;
  top: auto;
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 2147483000 !important;
  padding: 14px 20px 14px 16px;
  background: linear-gradient(135deg, rgba(7,15,28,0.95), rgba(2,10,20,0.9));
  border: 1px solid var(--cyan);
  box-shadow: 0 0 20px rgba(0,229,255,0.4), 0 20px 50px -20px rgba(0,0,0,0.8);
  display: flex; align-items: center; gap: 12px;
  min-width: 280px; max-width: 360px;
  font-family: 'Rajdhani';
  backdrop-filter: blur(12px);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transform: translateX(-110%);
  transition: transform 500ms cubic-bezier(.16,1,.3,1);
}
.toast.in { transform: translateX(0); }
.toast .ico { width: 32px; height: 32px; background: rgba(0,255,148,0.15); border: 1px solid var(--green); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.toast .body { line-height: 1.2; }
.toast .body .name { font-weight: 600; font-size: 14px; color: var(--text); }
.toast .body .plan { color: var(--cyan); font-size: 13px; }
.toast .body .when { font-family: 'JetBrains Mono'; font-size: 10px; color: var(--text-mute); letter-spacing: 0.1em; margin-top: 2px; }

.viewers-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  padding: 8px 14px;
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.2);
  color: var(--cyan);
  font-family: 'JetBrains Mono'; font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.viewers-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 0 12px rgba(255,209,102,0.85);
  animation: pulse 1.6s infinite;
  flex: 0 0 7px;
}

.hero-ops {
  width: min(860px, 92vw);
  margin: 34px auto 0;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  gap: 16px;
  text-align: left;
  box-shadow: 0 0 42px rgba(0,229,255,0.14), 0 24px 70px -32px rgba(0,0,0,0.9);
}

.hero-ops::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,229,255,0.06), transparent 34%, rgba(0,255,148,0.035)),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.025) 0, rgba(255,255,255,0.025) 1px, transparent 2px, transparent 5px);
  pointer-events: none;
}

.hero-ops-left,
.hero-ops-right {
  position: relative;
  z-index: 1;
}

.ops-top {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,229,255,0.16);
  background: rgba(0,0,0,0.22);
  padding: 10px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.ops-top span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 10px currentColor;
}

.ops-top span:nth-child(2) {
  background: var(--amber);
}

.ops-top span:nth-child(3) {
  background: var(--green);
}

.ops-top b {
  margin-left: auto;
  color: var(--cyan);
  font-weight: 600;
}

.ops-lines {
  min-height: 116px;
  border: 1px solid rgba(0,229,255,0.12);
  border-top: 0;
  background: rgba(0,0,0,0.28);
  padding: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.65;
  color: rgba(232,237,242,0.82);
}

.ops-lines p {
  margin: 0;
}

.ops-lines em {
  color: var(--cyan);
  font-style: normal;
  margin-right: 8px;
}

.hero-ops-right {
  display: grid;
  gap: 10px;
}

.ops-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(0,229,255,0.18);
  background: rgba(0,229,255,0.045);
  padding: 13px 14px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.ops-mini span {
  color: var(--text-dim);
  font-size: 10px;
}

.ops-mini strong {
  color: var(--green);
  font-size: 13px;
  text-shadow: 0 0 12px rgba(0,255,148,0.45);
}

.hero-video-preview {
  width: min(920px, 92vw);
  margin: 34px auto 0;
  padding: 16px;
  text-align: left;
  box-shadow: 0 0 42px rgba(0,229,255,0.16), 0 24px 70px -32px rgba(0,0,0,0.9);
}

.hero-video-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,229,255,0.07), transparent 42%, rgba(0,255,148,0.035)),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 2px, transparent 5px);
  pointer-events: none;
}

.hero-video-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0 4px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero-video-header strong {
  color: var(--cyan);
  font-weight: 700;
}

.hero-video-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid rgba(0,229,255,0.25);
  background: rgba(0,0,0,0.42);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.hero-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---- Modal ---- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: grid; place-items: center;
  padding: 20px;
  animation: fadeIn 200ms;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: linear-gradient(180deg, var(--panel-2), var(--bg));
  border: 1px solid var(--cyan);
  box-shadow: 0 0 40px rgba(0,229,255,0.3);
  max-width: 780px; width: 100%;
  padding: 40px;
  position: relative;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  animation: modalIn 350ms cubic-bezier(.16,1,.3,1);
}
@keyframes modalIn { from { transform: translateY(20px) scale(0.97); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
.modal-close { position: absolute; top: 14px; right: 14px; background: none; border: 1px solid var(--line); color: var(--text-dim); width: 32px; height: 32px; cursor: pointer; }
.modal-close:hover { color: var(--red); border-color: var(--red); }
.modal h3 { margin: 0 0 8px; font-size: 24px; }
.modal .sub { color: var(--text-dim); margin: 0 0 30px; font-family: 'Rajdhani'; }
.pay-method {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--line-strong);
  background: rgba(0,229,255,0.03);
  color: var(--text); text-decoration: none;
  font-family: 'Orbitron'; font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 14px;
  transition: all 200ms;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}
.pay-method:hover { border-color: var(--cyan); box-shadow: var(--hud-glow-soft); background: rgba(0,229,255,0.08); }
.pay-method .pay-ico { width: 40px; height: 40px; display: grid; place-items: center; flex-shrink: 0; background: rgba(0,0,0,0.4); border: 1px solid var(--line); }
.pay-method .pay-info { flex: 1; }
.pay-method .pay-sub { display: block; font-family: 'JetBrains Mono'; font-size: 10px; color: var(--text-mute); margin-top: 4px; letter-spacing: 0.16em; font-weight: 400; }
.pay-method .arrow { color: var(--cyan); }
.modal .secure {
  text-align: center; margin-top: 20px;
  font-family: 'JetBrains Mono'; font-size: 10px; color: var(--text-mute); letter-spacing: 0.18em;
}

.currency-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(0,229,255,0.035);
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.currency-row select {
  min-width: 190px;
  border: 1px solid var(--line-strong);
  background: rgba(0,0,0,0.6);
  color: var(--cyan);
  padding: 10px 12px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  outline: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.price-card {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(0,229,255,0.055), rgba(0,0,0,0.22));
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.price-card.featured {
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(0,229,255,0.18);
}

.price-card .price-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--green);
}

.price-card h4 {
  margin: 10px 0 8px;
  font-size: 19px;
  color: var(--text);
}

.price-card .price {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--cyan);
  text-shadow: 0 0 14px rgba(0,229,255,0.28);
}

.price-card p {
  margin: 10px 0 0;
  color: var(--text-dim);
  font-size: 14px;
}

/* ---- Lightbox ---- */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 110;
  display: grid; place-items: center;
  padding: 40px;
  animation: fadeIn 200ms;
}
.lightbox-img {
  max-width: 88vw; max-height: 88vh;
  width: 440px; aspect-ratio: 9/16;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #0a2e1f, #061d12);
  position: relative;
  box-shadow: 0 0 40px rgba(0,255,148,0.3);
}
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.6); border: 1px solid var(--line-strong); color: var(--cyan);
  width: 48px; height: 48px; cursor: pointer; display: grid; place-items: center;
}
.lb-nav:hover { background: rgba(0,229,255,0.1); box-shadow: var(--hud-glow-soft); }
.lb-prev { left: -64px; }
.lb-next { right: -64px; }
.lb-close { position: absolute; top: -50px; right: 0; background: none; border: 1px solid var(--line-strong); color: var(--text-dim); width: 40px; height: 40px; cursor: pointer; }
.lb-close:hover { color: var(--red); border-color: var(--red); }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  section { padding: 90px 0; }
  .stats-grid, .game-grid, .features-grid, .testimonials-grid, .reviews-grid, .footer-grid, .community-grid, .quiz-options { grid-template-columns: repeat(2, 1fr); }
  .full-list .grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .col { border-left: none; padding-left: 0; }
  .nav .links { display: none; }
  .hamburger { display: inline-grid; place-items: center; }
  .nav .right .online { display: none; }
  .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .step { padding-left: 80px; }
  .step .big-num { font-size: 64px; left: 14px; }
  .cinematic-cards { grid-template-columns: 1fr; }
  .plans-head, .plan-cards { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .stats-grid, .game-grid, .features-grid, .testimonials-grid, .reviews-grid, .footer-grid, .community-grid, .quiz-options { grid-template-columns: 1fr; }
  .full-list .grid { grid-template-columns: 1fr; }
  .nav .right .btn { padding: 10px 14px; font-size: 11px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .sales-plan { min-height: 0; padding: 26px 22px; }
  .plan-actions { flex-direction: column; }
  .community-strip { align-items: flex-start; flex-direction: column; }
  .community-strip small { margin-left: 0; }
  .viewport-corners > .v { display: none; }
  .lb-prev { left: 0; top: auto; bottom: -54px; transform: none; }
  .lb-next { right: 0; top: auto; bottom: -54px; transform: none; }
  .modal { padding: 30px 24px; }
  .currency-row { align-items: stretch; flex-direction: column; }
  .currency-row select { width: 100%; min-width: 0; }
  .hero-video-preview { padding: 12px; }
  .hero-ops {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .fb-large {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 16px;
    margin-left: -2vw;
    margin-right: -2vw;
  }
  .fb-large .fb-icon {
    width: 44px;
    height: 44px;
    font-size: 23px;
    border-radius: 6px;
  }
  .fb-large h4 {
    font-size: 15px;
    line-height: 1.15;
  }
  .fb-large p {
    font-size: 14px;
    line-height: 1.35;
  }
  .fb-large .fb-img {
    aspect-ratio: 1 / 1;
    margin-top: 10px;
  }
  .fb-large .fb-img img {
    object-fit: contain;
  }
  .ops-lines {
    font-size: 10px;
  }
  .cinematic-scroll { height: auto; }
  .cinematic-sticky { position: relative; min-height: auto; padding: 80px 0; }
  .cinematic-content { padding-top: 0; }
}

/* ---- Mobile drawer ---- */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 90;
  animation: fadeIn 200ms;
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: var(--bg-2);
  border-left: 1px solid var(--line-strong);
  z-index: 91;
  padding: 24px;
  animation: drawerIn 300ms cubic-bezier(.16,1,.3,1);
}
@keyframes drawerIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.drawer .links { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; }
.drawer .links a { color: var(--text); text-decoration: none; font-family: 'Orbitron'; font-size: 16px; letter-spacing: 0.12em; padding: 12px 0; border-bottom: 1px solid var(--line); }
.drawer .close-btn { position: absolute; top: 18px; right: 18px; background: none; border: 1px solid var(--line); color: var(--text); width: 32px; height: 32px; cursor: pointer; }

/* ============ Quiz Steam-style scanning carousel ============ */
.quiz-panel { position: relative; }
.quiz-carousel {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.42;
  mask-image: radial-gradient(ellipse at 50% 50%, black 8%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 8%, transparent 75%);
}
.quiz-carousel .row {
  position: absolute; left: 0; right: 0;
  display: flex; gap: 14px;
  white-space: nowrap;
  will-change: transform;
}
.quiz-carousel .row .cap {
  flex: 0 0 auto;
  width: 220px; height: 102px;
  background-size: cover; background-position: center;
  border: 1px solid rgba(0,229,255,0.18);
  filter: saturate(0.7) brightness(0.7);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.quiz-carousel .row.r1 { top: -10px; animation: carScrollL 38s linear infinite; }
.quiz-carousel .row.r2 { top: 110px; animation: carScrollR 46s linear infinite; }
.quiz-carousel .row.r3 { top: 230px; animation: carScrollL 52s linear infinite; }
.quiz-carousel.fast .row.r1 { animation-duration: 6s; }
.quiz-carousel.fast .row.r2 { animation-duration: 8s; }
.quiz-carousel.fast .row.r3 { animation-duration: 10s; }
.quiz-carousel.boom .row .cap { filter: saturate(1.4) brightness(1.1); border-color: rgba(0,229,255,0.6); box-shadow: 0 0 14px rgba(0,229,255,0.4); }

@keyframes carScrollL {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes carScrollR {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.quiz-carousel-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,16,0.92) 0%, rgba(5,5,16,0.7) 40%, rgba(5,5,16,0.7) 60%, rgba(5,5,16,0.92) 100%),
              repeating-linear-gradient(90deg, transparent 0, transparent 80px, rgba(0,229,255,0.04) 80px, rgba(0,229,255,0.04) 81px);
  pointer-events: none;
}

.quiz-step { position: relative; z-index: 2; }
.quiz-progress { position: relative; z-index: 2; }

/* HUD ticker above question */
.quiz-ticker {
  display: flex; align-items: center; gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--text-mute);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.quiz-ticker .green { color: var(--green); display: inline-flex; align-items: center; gap: 6px; }
.quiz-ticker .green::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 1.4s infinite; }
.quiz-ticker .sep { color: rgba(255,255,255,0.12); }

/* Scanning state between answers */
.quiz-scanning {
  display: flex; flex-direction: column; align-items: center;
  padding: 40px 0;
  text-align: center;
  animation: quizIn 350ms cubic-bezier(.16,1,.3,1);
  position: relative; z-index: 2;
}
.quiz-scanning .label {
  font-family: 'JetBrains Mono', monospace;
  color: var(--cyan); font-size: 12px; letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.quiz-scan-bar {
  width: min(560px, 80%); height: 4px;
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.25);
  overflow: hidden;
  position: relative;
}
.quiz-scan-bar .fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: linear-gradient(90deg, var(--cyan), #fff);
  box-shadow: 0 0 12px var(--cyan);
  width: 0;
  animation: scanFill 1.2s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes scanFill { to { width: 100%; } }
.quiz-scan-log {
  margin-top: 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--text-mute); letter-spacing: 0.16em;
  line-height: 1.8;
  text-align: left;
  width: min(560px, 80%);
}
.quiz-scan-log .line { display: block; opacity: 0; animation: logIn 200ms ease forwards; }
.quiz-scan-log .line:nth-child(1) { animation-delay: 0ms; }
.quiz-scan-log .line:nth-child(2) { animation-delay: 200ms; }
.quiz-scan-log .line:nth-child(3) { animation-delay: 450ms; }
.quiz-scan-log .line:nth-child(4) { animation-delay: 700ms; }
.quiz-scan-log .line:nth-child(5) { animation-delay: 950ms; }
.quiz-scan-log .ok { color: var(--green); }
.quiz-scan-log .info { color: var(--cyan); }
@keyframes logIn { to { opacity: 1; } }

/* Result picks (Steam-card stack) */
.result-picks {
  display: flex; gap: 14px; justify-content: center;
  margin: 24px 0 30px;
  flex-wrap: wrap;
}
.result-pick {
  width: 200px; aspect-ratio: 460/215;
  background-size: cover; background-position: center;
  border: 1px solid var(--cyan);
  box-shadow: 0 0 18px rgba(0,229,255,0.4);
  position: relative;
  animation: pickIn 600ms cubic-bezier(.16,1,.3,1) backwards;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.result-pick::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,5,16,0.85));
}
.result-pick .lbl {
  position: absolute; left: 10px; bottom: 8px; z-index: 2;
  font-family: 'Orbitron'; font-size: 11px; font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
  letter-spacing: 0.04em;
}
.result-pick .tag-top {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  font-family: 'JetBrains Mono', monospace; font-size: 8px; color: var(--cyan);
  letter-spacing: 0.2em; padding: 2px 6px;
  background: rgba(0,8,16,0.8); border: 1px solid rgba(0,229,255,0.5);
}
.result-pick:nth-child(1) { animation-delay: 0ms; transform: rotate(-2deg); }
.result-pick:nth-child(2) { animation-delay: 120ms; transform: translateY(-8px); }
.result-pick:nth-child(3) { animation-delay: 240ms; transform: rotate(2deg); }
@keyframes pickIn {
  from { opacity: 0; transform: translateY(40px) scale(0.9) rotate(0); }
}

/* Match meter */
.match-meter {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; color: var(--cyan);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.match-meter .bar {
  width: 120px; height: 4px; background: rgba(0,229,255,0.15);
  position: relative; overflow: hidden;
}
.match-meter .bar::after {
  content: ""; position: absolute; top: 0; left: 0; height: 100%; width: 98%;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 10px var(--cyan);
  animation: meterFill 1.2s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes meterFill { from { width: 0; } }

/* Stat counter: smooth shimmer behind digits */
.stat-num { display: inline-block; }
.stat-pulse {
  display: inline-flex; align-items: baseline; gap: 6px;
  position: relative;
}
.stat-unit {
  font-family: 'Orbitron';
  font-size: clamp(18px, 2vw, 28px);
  color: var(--text-dim);
}
.stat-pulse .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
  animation: pulse 1.6s infinite;
  align-self: center;
}

@media (max-width: 620px) {
  .quiz-carousel .row .cap { width: 160px; height: 75px; }
  .quiz-carousel .row.r2 { top: 90px; }
  .quiz-carousel .row.r3 { top: 180px; }
  .result-pick { width: 150px; }
}

/* ============ Mobile premium parity layer ============ */
@media (max-width: 720px) {
  html { scroll-padding-top: 74px; }
  body { overflow-x: hidden; }
  section { padding: 68px 0; }
  .container { width: min(94vw, 560px); }
  .section-title {
    font-size: clamp(34px, 11vw, 54px);
    line-height: 0.98;
    letter-spacing: 0.015em;
  }
  .section-sub {
    font-size: 14px;
    line-height: 1.55;
    max-width: 92vw;
  }
  .eyebrow,
  .tag,
  .live-badge {
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .nav {
    top: 8px;
    width: calc(100% - 20px);
    min-height: 56px;
    padding: 9px 10px;
    border-color: rgba(0, 229, 255, 0.34);
    background: rgba(5, 6, 18, 0.84);
    backdrop-filter: blur(16px);
  }
  .brand { gap: 9px; }
  .brand .logo-hex { width: 34px; height: 34px; }
  .brand span {
    font-size: 15px;
    letter-spacing: 0.14em;
  }
  .nav .right { gap: 8px; }
  .nav .right .btn {
    min-height: 38px;
    padding: 9px 11px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }
  .hamburger {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 96svh;
    display: flex;
    align-items: center;
  }
  .hero .inner {
    padding: 86px 0 34px;
  }
  .hero-logo-wrap {
    margin-bottom: 8px;
  }
  .hero-logo-wrap .logo-hex {
    width: 132px !important;
    height: 132px !important;
  }
  .hero-title {
    font-size: clamp(44px, 16vw, 78px);
    line-height: 0.9;
    margin: 8px 0 6px;
    letter-spacing: 0.045em;
  }
  .hero-sub {
    font-size: 14px;
    margin: 6px auto 10px;
    max-width: 290px;
  }
  .hero-tag {
    margin: 12px auto 18px;
    font-size: 8px;
    line-height: 1.55;
    letter-spacing: 0.19em;
    max-width: 320px;
  }
  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .hero-ctas .btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 10px;
    font-size: 10px;
    letter-spacing: 0.11em;
  }
  .hero-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }
  .hero-badges span {
    min-height: 42px;
    padding: 9px 6px;
    border: 1px solid rgba(0, 229, 255, 0.18);
    background: rgba(0, 229, 255, 0.035);
  }
  .viewers-badge {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 9px 12px;
    font-size: 8px;
    letter-spacing: 0.16em;
  }
  .hero-video-preview {
    max-width: 94vw;
    margin: 18px auto 0;
    padding: 10px;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  }
  .hero-video-header {
    font-size: 8px;
    letter-spacing: 0.16em;
  }
  .hero-video-frame {
    max-height: 34svh;
  }

  .stats {
    padding: 22px 0;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px;
  }
  .stats-grid .col {
    min-height: 94px;
    padding: 14px 12px !important;
    border: 1px solid rgba(0, 229, 255, 0.18);
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.052), rgba(0, 0, 0, 0.16));
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  }
  .stat-num {
    font-size: clamp(28px, 11vw, 43px);
  }
  .stat-unit {
    font-size: 16px;
  }
  .stat-label {
    font-size: 8px;
    letter-spacing: 0.13em;
    line-height: 1.35;
  }

  .cinematic-sticky {
    padding: 72px 0;
  }
  .cinematic-title {
    font-size: clamp(38px, 13vw, 64px);
    line-height: 0.94;
  }
  .cinematic-copy {
    max-width: 92vw;
    font-size: 14px;
    line-height: 1.58;
  }
  .cinematic-cards {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .cinematic-card {
    flex: 0 0 74vw;
    min-height: 138px;
    padding: 24px 20px;
    scroll-snap-align: center;
  }

  #catalogo .container > div[style] {
    align-items: flex-start !important;
  }
  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
    margin-top: 24px;
  }
  .game-grid > .reveal:nth-child(n+9) {
    display: none;
  }
  .game-card {
    min-height: 0;
    aspect-ratio: 1.18 / 1;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  }
  .game-card .meta,
  .game-card .meta2 {
    font-size: 7px;
    padding: 3px 5px;
  }
  .game-card .info {
    padding: 9px;
  }
  .game-card .genre {
    display: none;
  }
  .game-card .title {
    font-size: 11px;
    line-height: 1.15;
  }
  .game-card .play-ico {
    width: 24px;
    height: 24px;
  }
  .expand-toggle {
    width: 100%;
    min-height: 48px;
    margin-top: 18px;
    font-size: 10px;
    white-space: normal;
  }
  .full-list.open {
    max-height: 48svh;
  }
  .full-list .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px 12px;
    padding: 16px;
  }
  .full-list .grid div {
    font-size: 10px;
    line-height: 1.3;
  }

  .steps {
    gap: 14px;
  }
  .step {
    min-height: 0;
    padding: 24px 18px 22px 72px;
  }
  .step .big-num {
    left: 12px;
    top: 22px;
    font-size: 42px;
  }
  .step .label {
    font-size: 9px;
    letter-spacing: 0.13em;
  }
  .step h3 {
    font-size: 20px;
    line-height: 1.1;
  }
  .step p {
    font-size: 13px;
    line-height: 1.5;
  }
  .video-frame {
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  }

  .features-grid,
  .testimonials-grid,
  .reviews-grid {
    display: flex !important;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 14px;
    margin-top: 26px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .features-grid > .reveal,
  .testimonials-grid > .reveal,
  .reviews-grid > .reveal {
    flex: 0 0 78vw;
    scroll-snap-align: center;
  }
  .testimonials-grid > .reveal,
  .reviews-grid > .reveal {
    flex-basis: 68vw;
  }
  .feature,
  .testimonial,
  .review {
    height: 100%;
    min-height: 0;
    padding: 22px 18px;
  }
  .feature h4,
  .comm-card h4 {
    font-size: 18px;
  }
  .feature p,
  .testimonial p,
  .review p,
  .comm-card p {
    font-size: 13px;
    line-height: 1.48;
  }

  .plans-section {
    padding-top: 70px;
  }
  .plans-head {
    display: block;
    margin-bottom: 22px;
  }
  .plans-currency {
    margin-top: 18px;
    padding: 14px;
  }
  .plan-cards {
    display: flex !important;
    gap: 14px;
    overflow-x: auto;
    padding: 5px 2px 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .sales-plan {
    flex: 0 0 88vw;
    min-height: 0;
    padding: 24px 18px;
    scroll-snap-align: center;
    clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  }
  .sales-plan h3 {
    margin-top: 20px;
    font-size: clamp(34px, 12vw, 52px);
  }
  .plan-topline {
    font-size: 9px;
    letter-spacing: 0.16em;
  }
  .plan-topline b {
    font-size: 8px;
    padding: 6px 7px;
  }
  .plan-sub,
  .plan-note {
    font-size: 10px;
    line-height: 1.55;
  }
  .plan-price {
    margin-top: 18px;
    font-size: clamp(36px, 14vw, 58px);
  }
  .plan-features {
    gap: 9px;
    margin-top: 18px;
  }
  .plan-features div {
    font-size: 13px;
    line-height: 1.35;
  }
  .plan-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }
  .plan-actions .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
  .community-strip {
    margin-top: 12px;
    padding: 15px;
    gap: 10px;
  }
  .community-strip strong {
    font-size: 15px;
  }

  .quiz-panel {
    padding: 22px 14px;
    min-height: 0;
  }
  .quiz-progress {
    gap: 6px;
  }
  .quiz-q {
    font-size: clamp(24px, 9vw, 38px);
    line-height: 1.08;
  }
  .quiz-options {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .quiz-opt {
    min-height: 92px;
    padding: 18px 16px;
    font-size: 16px;
  }
  .quiz-sub {
    font-size: 9px;
  }
  .quiz-ticker {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 8px;
    letter-spacing: 0.14em;
  }
  .quiz-result h3 {
    font-size: 30px;
  }

  .guarantee {
    padding: 26px 18px;
  }
  .seal {
    width: 130px;
    height: 130px;
  }
  .checks {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .community-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .comm-card {
    padding: 22px 18px;
    min-height: 0;
  }
  .faq {
    margin-top: 28px;
    padding: 18px 14px;
  }
  .faq-q {
    min-height: 54px;
    padding: 14px 4px;
    font-size: 13px;
    line-height: 1.28;
  }
  .faq-a {
    font-size: 13px;
    line-height: 1.55;
  }

  .fb-large {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding: 14px;
    margin-left: 0;
    margin-right: 0;
  }
  .fb-large .fb-img {
    grid-column: 1 / -1;
    margin-top: 6px;
    aspect-ratio: 4 / 3;
    border-radius: 4px;
    overflow: hidden;
  }
  .fb-large .fb-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
  }

  .cta-final {
    padding: 74px 0;
  }
  .cta-final h2 {
    font-size: clamp(38px, 13vw, 64px);
    line-height: 0.96;
  }
  .cta-final .btn {
    width: 100%;
    justify-content: center;
  }
  .footer {
    padding: 34px 0 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 18px;
  }
  .footer .brand {
    grid-column: 1 / -1;
  }

  .modal-backdrop {
    padding: 14px;
    align-items: flex-start;
    overflow-y: auto;
  }
  .modal {
    width: 100%;
    margin: 22px 0;
    padding: 24px 18px;
    max-height: none;
  }
  .pricing-grid {
    gap: 12px;
  }
  .toast {
    left: 12px;
    right: 12px;
    bottom: 14px;
    width: auto;
    font-size: 12px;
  }

  .cinematic-cards::-webkit-scrollbar,
  .features-grid::-webkit-scrollbar,
  .testimonials-grid::-webkit-scrollbar,
  .reviews-grid::-webkit-scrollbar,
  .plan-cards::-webkit-scrollbar {
    display: none;
  }
  .cinematic-cards,
  .features-grid,
  .testimonials-grid,
  .reviews-grid,
  .plan-cards {
    scrollbar-width: none;
  }
}

@media (max-width: 420px) {
  .container { width: min(95vw, 390px); }
  .nav .right .btn {
    display: inline-flex;
    min-height: 34px;
    padding: 8px 9px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }
  .hero-logo-wrap .logo-hex {
    width: 118px !important;
    height: 118px !important;
  }
  .hero-title { font-size: clamp(40px, 15vw, 62px); }
  .hero-ctas { grid-template-columns: 1fr 1fr; }
  .hero-ctas .btn {
    font-size: 9px;
    min-height: 44px;
  }
  .hero-badges { grid-template-columns: 1fr; }
  .stats-grid { gap: 10px; }
  .stat-num { font-size: 32px; }
  .game-grid { gap: 8px; }
  .game-card .title { font-size: 10px; }
  .features-grid > .reveal,
  .testimonials-grid > .reveal,
  .reviews-grid > .reveal {
    flex-basis: 84vw;
  }
  .sales-plan { flex-basis: 91vw; }
  .footer-grid { grid-template-columns: 1fr !important; }
}

/* ============ Final responsive + speed pass ============ */
html,
body,
#app {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe,
canvas,
svg {
  max-width: 100%;
}

@media (min-width: 768px) and (max-width: 1024px) {
  section { padding: 88px 0; }
  .container { width: min(94vw, 920px); }
  .section-title { font-size: clamp(38px, 6vw, 58px); }
  .stats-grid,
  .game-grid,
  .features-grid,
  .testimonials-grid,
  .reviews-grid,
  .footer-grid,
  .community-grid,
  .quiz-options,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .full-list .grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .plans-head { grid-template-columns: 1fr; }
  .plan-cards { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .sales-plan { min-height: 0; padding: 28px; }
  .hero { min-height: 100svh; }
  .hero .inner { padding: 96px 0 56px; }
  .cinematic-sticky {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 90px 0;
  }
  .cinematic-scroll { height: auto; }
}

@media (max-width: 767px) {
  html { scroll-padding-top: 76px; }
  body {
    font-size: 16px;
    line-height: 1.45;
  }
  body::before {
    opacity: 0.55;
  }
  section {
    padding: 64px 0;
    overflow-x: clip;
  }
  .container {
    width: min(92vw, 560px);
  }

  .global-video-bg {
    position: fixed;
    inset: 0 auto auto 0;
    width: 100vw;
    height: 100svh;
    transform: none;
  }
  .global-video-bg video {
    width: 100vw;
    height: 100svh;
    opacity: 0.34;
    transform: none;
    filter: saturate(1.12) contrast(1.06) brightness(0.42);
  }
  .global-video-bg::before {
    background:
      radial-gradient(circle at 50% 12%, rgba(0,229,255,0.14), transparent 30%),
      linear-gradient(90deg, rgba(5,5,16,0.95), rgba(5,5,16,0.62), rgba(5,5,16,0.95)),
      linear-gradient(180deg, rgba(5,5,16,0.18), rgba(5,5,16,0.82));
  }
  .hero-bg-video {
    display: none;
  }

  .nav {
    top: 0;
    width: 100%;
    min-height: 64px;
    padding: 10px 12px;
    background: rgba(5, 6, 18, 0.88);
    border-bottom: 1px solid rgba(0,229,255,0.28);
    backdrop-filter: blur(14px);
  }
  .nav .inner {
    width: 100%;
    gap: 10px;
  }
  .nav .links,
  .nav .right .online {
    display: none;
  }
  .hamburger {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }
  .brand {
    min-width: 0;
    gap: 10px;
  }
  .brand .logo-hex {
    width: 42px !important;
    height: 42px !important;
  }
  .brand span,
  .nav .wordmark {
    font-size: clamp(16px, 5vw, 22px);
    letter-spacing: 0.12em;
    white-space: nowrap;
  }
  .nav .right .btn {
    min-height: 48px;
    padding: 0 14px;
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .hero {
    min-height: 100svh;
    display: flex;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
  }
  .hero .inner {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 82px 0 38px;
  }
  .hero-logo-wrap {
    transform: none !important;
    margin-bottom: 12px;
  }
  .hero-logo-wrap .logo-hex {
    width: clamp(126px, 34vw, 168px) !important;
    height: clamp(126px, 34vw, 168px) !important;
  }
  .hero-title {
    font-size: clamp(48px, 15vw, 86px);
    line-height: 0.92;
    margin: 8px 0 10px;
    letter-spacing: 0.04em;
  }
  .hero-sub,
  .section-sub,
  .cinematic-copy,
  .step p,
  .feature p,
  .testimonial p,
  .review p,
  .comm-card p,
  .faq-a,
  .plan-note {
    font-size: clamp(15px, 4.2vw, 18px);
  }
  .hero-tag,
  .eyebrow,
  .tag,
  .live-badge,
  .viewers-badge,
  .stat-label,
  .plan-topline,
  .plan-sub,
  .quiz-ticker,
  .quiz-sub,
  .game-card .genre,
  .game-card .meta,
  .game-card .meta2,
  .feature .num,
  .testimonial .badge,
  .review .review-badge,
  .review .review-id,
  .full-list .grid div,
  .cinematic-card span,
  .cinematic-card small {
    font-size: 14px;
    letter-spacing: 0.08em;
  }
  .hero-tag {
    max-width: 92%;
    margin: 12px auto 20px;
    line-height: 1.45;
  }
  .section-title,
  .cinematic-title,
  .cta-final h2 {
    font-size: clamp(38px, 11vw, 60px);
    line-height: 0.98;
    letter-spacing: 0.01em;
  }

  .btn,
  button,
  .expand-toggle,
  .quiz-opt,
  .drawer .links a {
    min-height: 48px;
    font-size: 14px;
  }
  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
  }
  .hero-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 420px;
    margin: 20px auto 0;
    font-size: 14px;
  }
  .hero-badges span {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
  }
  .hero-video-preview {
    width: 100%;
    max-width: 520px;
    margin: 20px auto 0;
    padding: 10px;
  }
  .hero-video-frame,
  .video-frame {
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: none;
  }

  .stats { padding: 24px 0; }
  .stats-grid,
  .game-grid,
  .features-grid,
  .testimonials-grid,
  .reviews-grid,
  .footer-grid,
  .community-grid,
  .quiz-options,
  .pricing-grid,
  .plan-cards,
  .cinematic-cards,
  .full-list .grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px;
    overflow: visible !important;
    scroll-snap-type: none !important;
    padding-left: 0;
    padding-right: 0;
  }
  .features-grid > .reveal,
  .testimonials-grid > .reveal,
  .reviews-grid > .reveal,
  .plan-cards > .reveal,
  .cinematic-cards > .reveal {
    width: 100%;
    flex: none !important;
    scroll-snap-align: none !important;
  }
  .stats-grid .col,
  .feature,
  .testimonial,
  .review,
  .sales-plan,
  .cinematic-card,
  .comm-card,
  .step {
    width: 100%;
    max-width: 100%;
  }
  .stats-grid .col {
    min-height: 96px;
    padding: 18px 16px !important;
  }
  .stat-num {
    font-size: clamp(38px, 12vw, 56px);
  }

  .cinematic-scroll,
  .cinematic-sticky {
    height: auto;
    min-height: auto;
  }
  .cinematic-sticky {
    position: relative !important;
    top: auto !important;
    padding: 70px 0;
  }
  .cinematic-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
  .cinematic-content {
    padding-top: 0;
  }
  .cinematic-card {
    min-height: 150px;
    padding: 24px 20px;
  }
  .cinematic-card strong {
    font-size: clamp(17px, 5vw, 22px);
  }

  .game-grid {
    margin-top: 26px;
  }
  .game-grid > .reveal:nth-child(n+9) {
    display: block;
  }
  .game-card {
    aspect-ratio: 460 / 215;
    min-height: 0;
  }
  .game-card .title {
    font-size: clamp(14px, 4vw, 18px);
    white-space: normal;
  }
  .game-card .genre {
    display: block;
    opacity: 1;
    transform: none;
  }
  .game-card .play-ico {
    opacity: 1;
    transform: none;
  }
  .full-list.open {
    max-height: 58svh;
    overflow-y: auto;
  }
  .full-list .grid {
    margin-top: 18px;
    padding: 18px;
  }

  .steps {
    max-width: none;
    margin-top: 32px;
  }
  .steps::before {
    display: none;
  }
  .step {
    padding: 24px 18px;
  }
  .step .big-num {
    position: static;
    display: block;
    transform: none;
    font-size: clamp(44px, 13vw, 72px);
    margin-bottom: 10px;
  }
  .step h3 {
    font-size: clamp(22px, 6vw, 30px);
  }

  .feature {
    min-height: 0;
    padding: 26px 22px;
  }
  .feature h4,
  .comm-card h4 {
    font-size: clamp(20px, 5.5vw, 28px);
  }
  .testimonials-grid,
  .reviews-grid {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial {
    aspect-ratio: 16 / 9;
  }
  .testimonial iframe {
    transform: none;
  }
  .review {
    aspect-ratio: 4 / 5;
  }

  .plans-head {
    display: block;
    margin-bottom: 24px;
  }
  .plans-currency {
    margin-top: 18px;
  }
  .sales-plan {
    flex: none;
    min-height: 0;
    padding: 28px 20px;
  }
  .sales-plan h3 {
    font-size: clamp(36px, 10vw, 52px);
    line-height: 1.03;
  }
  .plan-price {
    font-size: clamp(42px, 13vw, 66px);
  }
  .plan-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .plan-actions .btn,
  .community-strip,
  .cta-final .btn {
    width: 100%;
    justify-content: center;
  }

  .quiz-panel {
    padding: 24px 16px;
  }
  .quiz-q {
    font-size: clamp(28px, 8vw, 42px);
  }
  .quiz-opt {
    width: 100%;
    min-height: 92px;
    padding: 18px 16px;
    text-align: left;
  }

  .guarantee {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 20px;
  }
  .seal {
    width: 140px;
    height: 140px;
  }
  .checks {
    grid-template-columns: 1fr;
  }
  .fb-large {
    grid-template-columns: 44px 1fr;
    padding: 16px;
    margin-left: 0;
    margin-right: 0;
  }
  .fb-large h4 {
    font-size: 18px;
  }
  .fb-large p {
    font-size: 15px;
  }
  .fb-large .fb-img {
    aspect-ratio: 4 / 3;
  }
  .fb-large .fb-img img {
    object-fit: contain;
  }

  .faq {
    padding: 18px 14px;
  }
  .faq-q {
    padding: 14px 0;
    font-size: 15px;
    line-height: 1.3;
  }
  .faq-a {
    line-height: 1.55;
  }
  .cta-final {
    padding: 76px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .modal-backdrop {
    align-items: flex-start;
    overflow-y: auto;
    padding: 14px;
  }
  .modal {
    width: 100%;
    margin: 16px 0;
    padding: 24px 18px;
  }
  .drawer {
    width: min(88vw, 380px);
  }
}

@media (max-width: 420px) {
  .container { width: min(92vw, 380px); }
  .brand span,
  .nav .wordmark {
    font-size: 15px;
    letter-spacing: 0.08em;
  }
  .nav .right .btn {
    padding: 0 10px;
    font-size: 12px;
  }
  .hero-title {
    font-size: clamp(44px, 14vw, 64px);
  }
  .sales-plan,
  .feature,
  .step,
  .comm-card {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (hover: none) and (max-width: 767px) {
  .game-card:hover,
  .review:hover,
  .sales-plan:hover,
  .feature:hover,
  .comm-card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============ Mobile as compact desktop, not endless landing ============ */
.plans-currency span b {
  color: var(--cyan);
  font-weight: 700;
}

.price-helper {
  margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  text-transform: uppercase;
}

.price-conversions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 8px;
}

.price-conversions span {
  display: block;
  padding: 5px 6px;
  border: 1px solid rgba(0,229,255,0.16);
  background: rgba(0,229,255,0.035);
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media (max-width: 767px) {
  section {
    padding: 42px 0;
  }
  .container {
    width: min(96vw, 620px);
  }
  .section-title,
  .cinematic-title,
  .cta-final h2 {
    font-size: clamp(30px, 8.5vw, 46px);
    line-height: 0.98;
  }
  .section-sub,
  .cinematic-copy,
  .step p,
  .feature p,
  .comm-card p,
  .faq-a,
  .plan-note {
    font-size: clamp(12px, 3.3vw, 15px);
    line-height: 1.38;
  }
  .eyebrow,
  .tag,
  .live-badge,
  .viewers-badge {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .nav {
    min-height: 56px;
    padding: 8px 10px;
  }
  .brand .logo-hex {
    width: 34px !important;
    height: 34px !important;
  }
  .brand span,
  .nav .wordmark {
    font-size: clamp(14px, 4vw, 18px);
  }
  .hamburger {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
  .nav .right .btn {
    min-height: 44px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero {
    min-height: 100svh;
  }
  .hero .inner {
    min-height: 100svh;
    padding: 70px 0 24px;
  }
  .hero-logo-wrap .logo-hex {
    width: clamp(104px, 27vw, 138px) !important;
    height: clamp(104px, 27vw, 138px) !important;
  }
  .hero-title {
    font-size: clamp(40px, 12vw, 66px);
    margin: 5px 0 6px;
  }
  .hero-sub {
    font-size: clamp(13px, 3.6vw, 16px);
    margin: 4px auto 8px;
  }
  .hero-tag {
    font-size: 9px;
    letter-spacing: 0.13em;
    margin: 8px auto 14px;
  }
  .hero-ctas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 440px;
    gap: 8px;
  }
  .hero-ctas .btn {
    min-height: 46px;
    font-size: 11px;
    padding: 10px 8px;
  }
  .hero-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 520px;
    gap: 6px;
    margin-top: 14px;
  }
  .hero-badges span {
    min-height: 44px;
    padding: 8px 4px;
    font-size: 10px;
    line-height: 1.15;
    text-align: center;
  }
  .hero-badges b {
    display: block;
    margin: 0 0 2px;
  }
  .viewers-badge {
    padding: 7px 10px;
    margin-top: 12px !important;
  }
  .hero-video-preview {
    display: none;
  }

  .stats {
    padding: 18px 0;
  }
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }
  .stats-grid .col {
    min-height: 72px;
    padding: 10px 5px !important;
    text-align: center;
  }
  .stat-num {
    font-size: clamp(19px, 6vw, 31px);
  }
  .stat-unit {
    font-size: 10px;
  }
  .stat-label {
    font-size: 8px;
    letter-spacing: 0.07em;
    line-height: 1.15;
    margin-top: 6px;
  }
  .stat-pulse {
    gap: 2px;
  }
  .stat-pulse .live-dot {
    display: none;
  }

  .cinematic-sticky {
    padding: 44px 0;
  }
  .cinematic-copy {
    max-width: 82vw;
  }
  .cinematic-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 22px;
  }
  .cinematic-card {
    min-height: 110px;
    padding: 14px 10px;
  }
  .cinematic-card strong {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.18;
  }
  .cinematic-card small {
    font-size: 8px;
    letter-spacing: 0.06em;
  }

  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 18px;
  }
  .game-card .title {
    font-size: clamp(10px, 3.3vw, 14px);
  }
  .game-card .genre,
  .game-card .meta,
  .game-card .meta2 {
    font-size: 8px;
    letter-spacing: 0.08em;
  }
  .game-card .info {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  .expand-toggle {
    min-height: 44px;
    padding: 11px 12px;
    font-size: 10px;
  }
  .full-list .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 4px 10px !important;
    padding: 14px;
  }

  .plans-section {
    padding-top: 48px;
  }
  .plans-head {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(118px, 0.85fr);
    gap: 10px;
    align-items: end;
    margin-bottom: 18px;
  }
  .plans-head .section-title {
    font-size: clamp(30px, 8.5vw, 48px);
  }
  .plans-head .section-sub {
    font-size: 12px;
    max-width: none;
  }
  .plans-currency {
    margin-top: 0;
    padding: 9px;
  }
  .plans-currency span {
    font-size: 8px;
    letter-spacing: 0.1em;
  }
  .plans-currency span b {
    display: block;
    margin-top: 3px;
    color: var(--green);
  }
  .plans-currency select {
    min-height: 42px;
    padding: 9px 7px;
    font-size: 10px;
  }
  .plan-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    align-items: stretch;
  }
  .sales-plan {
    padding: 14px 9px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  }
  .plan-topline {
    font-size: 8px;
    letter-spacing: 0.08em;
    align-items: flex-start;
  }
  .plan-topline b {
    font-size: 7px;
    padding: 4px 5px;
    white-space: nowrap;
  }
  .sales-plan h3 {
    margin: 16px 0 6px;
    font-size: clamp(22px, 6.4vw, 34px);
    line-height: 1;
    letter-spacing: 0.01em;
  }
  .plan-sub {
    font-size: 8px;
    letter-spacing: 0.08em;
    line-height: 1.25;
  }
  .plan-meter {
    grid-template-columns: auto 1fr;
    gap: 6px;
    margin-top: 12px;
    padding: 8px;
    font-size: 8px;
  }
  .plan-meter strong {
    grid-column: 1 / -1;
    text-align: left;
  }
  .plan-price {
    margin-top: 12px;
    font-size: clamp(26px, 8vw, 42px);
    line-height: 1;
  }
  .price-helper {
    margin-top: 7px;
    font-size: 7px;
    letter-spacing: 0.08em;
  }
  .price-conversions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    margin-top: 5px;
  }
  .price-conversions span {
    padding: 4px 3px;
    font-size: 7px;
    letter-spacing: 0;
  }
  .plan-note {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.25;
  }
  .plan-features {
    gap: 6px;
    margin-top: 10px;
  }
  .plan-features div {
    gap: 5px;
    font-size: 10px;
    line-height: 1.18;
  }
  .plan-features span {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }
  .plan-actions {
    gap: 6px;
    margin-top: 12px;
  }
  .plan-actions .btn {
    min-height: 42px;
    padding: 8px 5px;
    font-size: 8px;
    line-height: 1.15;
    white-space: normal;
    text-align: center;
  }
  .community-strip {
    min-height: 52px;
    margin-top: 10px;
    padding: 10px;
  }
  .community-strip strong {
    font-size: 13px;
  }
  .community-strip small {
    font-size: 11px;
  }

  .steps {
    gap: 10px;
    margin-top: 24px;
  }
  .step {
    padding: 16px 14px;
  }
  .step .big-num {
    float: left;
    margin: 0 12px 4px 0;
    font-size: clamp(34px, 10vw, 54px);
  }
  .step h3 {
    font-size: clamp(17px, 4.8vw, 24px);
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 22px;
  }
  .feature {
    padding: 14px 10px;
  }
  .feature .num {
    margin-bottom: 12px;
    font-size: 8px;
  }
  .feature .iconbox {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
  }
  .feature h4,
  .comm-card h4 {
    font-size: clamp(14px, 4vw, 19px);
    line-height: 1.12;
  }
  .feature p,
  .comm-card p {
    font-size: 11px;
    line-height: 1.3;
  }

  .testimonials-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    max-width: none;
  }
  .testimonial {
    aspect-ratio: 9 / 16;
  }
  .testimonial .badge,
  .review .review-badge,
  .review .review-id {
    font-size: 7px;
  }
  .review {
    aspect-ratio: 9 / 16;
  }
  .fb-large {
    padding: 14px;
  }
  .fb-large .fb-img {
    aspect-ratio: 16 / 10;
  }

  .quiz-panel {
    padding: 16px 12px;
  }
  .quiz-options {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .quiz-opt {
    min-height: 78px;
    padding: 12px 10px;
    font-size: 13px;
  }
  .quiz-sub {
    font-size: 8px;
  }
  .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
  .comm-card {
    padding: 14px 10px;
  }
  .faq {
    margin-top: 22px;
    padding: 14px;
  }
  .faq-q {
    min-height: 46px;
    font-size: 13px;
  }
  .cta-final {
    padding: 52px 0;
  }
}

@media (max-width: 420px) {
  .nav .right .btn {
    min-height: 40px;
    padding: 0 8px;
    font-size: 9px;
  }
  .plans-head {
    grid-template-columns: minmax(0, 1fr);
  }
  .plans-currency {
    max-width: 100%;
  }
  .plans-currency select {
    width: 100%;
  }
  .sales-plan h3 {
    font-size: clamp(21px, 6vw, 30px);
  }
  .plan-price {
    font-size: clamp(25px, 7.5vw, 36px);
  }
  .price-conversions span {
    font-size: 6.5px;
  }
  .plan-actions .btn {
    min-height: 40px;
  }
}

/* ============ Mobile polish: video back, brighter titles, tighter panels ============ */
@media (max-width: 767px) {
  .hero .inner {
    padding-top: 64px;
    padding-bottom: 18px;
    justify-content: center;
  }
  .hero-offer-kicker {
    min-height: 28px;
    padding: 0 10px;
    margin-bottom: 8px;
    font-size: 8px;
    letter-spacing: 0.14em;
  }
  .hero-offer-title {
    font-size: clamp(32px, 10.6vw, 52px);
    line-height: 0.98;
    max-width: 92vw;
    margin: 0 auto;
  }
  .hero-offer-currencies {
    margin: 10px auto 10px;
    font-size: 10px;
    line-height: 1.25;
    max-width: 92vw;
    letter-spacing: 0.04em;
  }
  .hero-logo-wrap .logo-hex {
    width: clamp(46px, 13vw, 64px) !important;
    height: clamp(46px, 13vw, 64px) !important;
  }
  .hero-title {
    font-size: clamp(20px, 6vw, 32px);
    letter-spacing: 0.12em;
  }
  .hero-video-preview {
    display: block !important;
    max-width: min(78vw, 330px);
    margin: 10px auto 0;
    padding: 7px;
  }
  .hero-video-header {
    display: none;
  }
  .hero-video-frame {
    aspect-ratio: 16 / 9;
    max-height: 26svh;
  }

  .section-title,
  .plans-head .section-title {
    font-size: clamp(28px, 7.8vw, 42px);
    line-height: 0.96;
    margin-bottom: 14px;
  }

  .plans-section {
    padding-top: 36px;
  }
  .plans-head {
    margin-bottom: 12px;
  }
  .sales-plan {
    padding: 11px 8px;
  }
  .sales-plan h3 {
    margin: 12px 0 4px;
    font-size: clamp(19px, 5.5vw, 30px);
  }
  .plan-meter {
    margin-top: 8px;
    padding: 6px;
  }
  .plan-price {
    margin-top: 9px;
    font-size: clamp(24px, 7vw, 36px);
  }
  .price-helper {
    margin-top: 5px;
  }
  .price-conversions {
    gap: 3px;
  }
  .plan-note {
    margin-top: 7px;
  }
  .plan-features {
    gap: 4px;
    margin-top: 7px;
  }
  .plan-features div {
    font-size: 9px;
  }
  .plan-actions {
    margin-top: 8px;
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }
  .step {
    padding: 12px 8px;
    clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  }
  .step .big-num {
    float: none;
    display: block;
    margin: 0 0 6px;
    font-size: clamp(28px, 8vw, 44px);
  }
  .step .label {
    font-size: 7px;
    letter-spacing: 0.06em;
    line-height: 1.2;
  }
  .step h3 {
    font-size: clamp(11px, 3.2vw, 16px);
    line-height: 1.08;
    margin: 6px 0 5px;
  }
  .step p {
    font-size: 9px;
    line-height: 1.23;
  }
}

@media (max-width: 420px) {
  .hero-video-preview {
    max-width: min(82vw, 300px);
  }
  .plans-head .section-sub {
    display: none;
  }
  .sales-plan h3 {
    font-size: clamp(18px, 5.2vw, 27px);
  }
  .plan-features div {
    font-size: 8.5px;
  }
  .step p {
    display: none;
  }
}

/* ============ Vimeo controlled embeds ============ */
.vimeo-shell {
  position: relative;
  aspect-ratio: var(--vimeo-aspect, 16 / 9);
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #02040d;
}

.hero-video-frame > .vimeo-shell,
.video-frame > .vimeo-shell {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.vimeo-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
  pointer-events: none;
  transform: scale(1.025);
  transform-origin: center;
}

.vimeo-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 14px;
  background:
    radial-gradient(circle at center, rgba(0,229,255,0.14), transparent 36%),
    linear-gradient(135deg, rgba(3,8,18,0.95), rgba(2,4,13,0.98));
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cyan);
  text-transform: uppercase;
}

.vimeo-loader i {
  width: min(240px, 58%);
  height: 3px;
  overflow: hidden;
  background: rgba(0,229,255,0.15);
  box-shadow: inset 0 0 0 1px rgba(0,229,255,0.18);
}

.vimeo-loader i::before {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--green), transparent);
  animation: vimeoLoading 1.25s ease-in-out infinite;
}

@keyframes vimeoLoading {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(260%); }
}

.vimeo-unlock {
  position: absolute;
  inset: 0;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 22px;
  border: 0;
  color: #d9fbff;
  cursor: pointer;
  background:
    radial-gradient(circle at center, rgba(0,229,255,0.24), transparent 36%),
    linear-gradient(180deg, rgba(2,4,13,0.18), rgba(2,4,13,0.58));
  text-align: center;
  text-transform: uppercase;
}

.vimeo-unlock strong {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(13px, 2.2vw, 22px);
  letter-spacing: 0.12em;
  color: #fff;
  text-shadow: 0 0 22px rgba(0,229,255,0.55);
}

.vimeo-unlock span {
  max-width: 520px;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(8px, 1.15vw, 11px);
  letter-spacing: 0.12em;
  color: rgba(232,237,242,0.78);
  line-height: 1.45;
}

.vimeo-shell::before,
.vimeo-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 4;
  pointer-events: none;
}

.vimeo-shell::before {
  top: 0;
  height: 62px;
  background: linear-gradient(180deg, rgba(3,5,15,0.78), rgba(3,5,15,0));
}

.vimeo-shell::after {
  bottom: 0;
  height: 76px;
  background: linear-gradient(0deg, rgba(3,5,15,0.84), rgba(3,5,15,0));
}

.vimeo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 7;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--cyan);
  text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(3,8,18,0.76);
  border: 1px solid rgba(0,229,255,0.32);
  box-shadow: 0 0 16px rgba(0,229,255,0.18);
}

.vimeo-audio-wrap {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vimeo-audio-hint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  color: rgba(232,237,242,0.74);
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0,229,255,0.45);
  animation: audioHintPulse 1.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes audioHintPulse {
  0%, 100% { opacity: 0.54; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(3px); }
}

.vimeo-audio {
  position: relative;
  min-height: 38px;
  border: 1px solid rgba(0,229,255,0.42);
  color: var(--cyan);
  background: rgba(3,8,18,0.84);
  padding: 0 13px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  box-shadow: 0 0 18px rgba(0,229,255,0.14);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.vimeo-audio:hover {
  transform: translateY(-1px);
  border-color: var(--cyan);
  background: rgba(0,229,255,0.12);
}

.vimeo-audio.on {
  color: var(--green);
  border-color: rgba(0,255,148,0.55);
  box-shadow: 0 0 18px rgba(0,255,148,0.16);
}

.testimonial-card {
  min-width: 0;
}

.testimonial.vimeo-shell {
  aspect-ratio: var(--vimeo-aspect, 9 / 16) !important;
}

.testimonial.vimeo-shell iframe {
  transform: scale(1.04) !important;
}

@media (max-width: 760px) {
  .vimeo-badge {
    top: 8px;
    left: 8px;
    font-size: 7px;
    padding: 4px 7px;
  }

  .vimeo-audio-wrap {
    right: 8px;
    bottom: 8px;
    gap: 5px;
  }

  .vimeo-audio-hint {
    font-size: 6.5px;
    letter-spacing: 0.08em;
  }

  .vimeo-audio {
    min-height: 44px;
    padding: 0 8px;
    font-size: 7.4px;
    letter-spacing: 0.08em;
  }

  .vimeo-shell::before {
    height: 46px;
  }

  .vimeo-shell::after {
    height: 58px;
  }
}

/* ============ Footer compact + NX activity toast ============ */
.purchase-activity {
  position: fixed !important;
  left: 24px !important;
  right: auto !important;
  top: auto !important;
  bottom: max(24px, env(safe-area-inset-bottom)) !important;
  overflow: hidden;
  align-items: center;
  gap: 13px;
  min-width: 330px;
  max-width: 410px;
  padding: 15px 18px 15px 15px;
  border-color: rgba(0,229,255,0.62);
  background:
    linear-gradient(135deg, rgba(5,16,30,0.96), rgba(1,7,17,0.94)),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.025) 0, rgba(255,255,255,0.025) 1px, transparent 2px, transparent 5px);
  box-shadow:
    0 0 24px rgba(0,229,255,0.28),
    0 18px 55px -22px rgba(0,0,0,0.95);
}

.purchase-activity.premium {
  border-color: rgba(0,255,148,0.58);
  box-shadow:
    0 0 24px rgba(0,255,148,0.2),
    0 18px 55px -22px rgba(0,0,0,0.95);
}

.purchase-activity .activity-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(0,229,255,0.18) 42%, transparent 62%);
  transform: translateX(-120%);
  animation: activitySweep 3.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes activitySweep {
  0%, 45% { transform: translateX(-120%); opacity: 0; }
  55% { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}

.purchase-activity .ico {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-color: rgba(0,255,148,0.56);
  background: rgba(0,255,148,0.12);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  box-shadow: 0 0 16px rgba(0,255,148,0.22);
}

.purchase-activity .body {
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1;
}

.purchase-activity .kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.purchase-activity .name {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--text);
}

.purchase-activity .name span {
  color: var(--text-mute);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

.purchase-activity .plan {
  margin-top: 3px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--green);
  text-transform: uppercase;
}

.purchase-activity .when {
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  text-transform: uppercase;
}

.activity-signal {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 3px;
  height: 28px;
}

.activity-signal span {
  width: 4px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0,229,255,0.8);
  animation: signalBounce 1.2s ease-in-out infinite;
}

.activity-signal span:nth-child(1) { height: 10px; }
.activity-signal span:nth-child(2) { height: 18px; animation-delay: 120ms; }
.activity-signal span:nth-child(3) { height: 26px; animation-delay: 240ms; }

@keyframes signalBounce {
  0%, 100% { opacity: 0.45; transform: scaleY(0.72); }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 760px) {
  .footer {
    padding: 28px 0 96px !important;
  }

  .footer-grid {
    grid-template-columns: 1.18fr 0.74fr 0.74fr 0.74fr !important;
    gap: 8px !important;
    align-items: start;
  }

  .footer .brand {
    grid-column: auto !important;
    gap: 6px !important;
  }

  .footer .logo-hex {
    width: 28px !important;
    height: 28px !important;
    --size: 28px !important;
  }

  .footer .wordmark {
    font-size: 10px !important;
    letter-spacing: 0.12em !important;
  }

  .footer .tagline {
    margin: 8px 0 7px !important;
    max-width: 118px !important;
    font-size: 9px !important;
    line-height: 1.24 !important;
  }

  .footer .online {
    gap: 4px !important;
    font-size: 8px !important;
    letter-spacing: 0.08em !important;
  }

  .footer .online span:last-child {
    display: none;
  }

  .footer h5 {
    margin: 2px 0 8px !important;
    font-size: 8px !important;
    letter-spacing: 0.1em !important;
  }

  .footer ul {
    gap: 4px !important;
  }

  .footer ul a {
    font-size: 9px !important;
    line-height: 1.05 !important;
  }

  .footer-bottom {
    margin-top: 20px !important;
    padding-top: 12px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px !important;
    font-size: 7.5px !important;
    line-height: 1.25 !important;
    letter-spacing: 0.04em !important;
  }

  .purchase-activity {
    left: 10px !important;
    right: 10px !important;
    top: auto !important;
    bottom: max(12px, env(safe-area-inset-bottom)) !important;
    min-width: 0 !important;
    max-width: none !important;
    width: auto !important;
    padding: 12px 12px 12px 11px !important;
    gap: 9px !important;
  }

  .purchase-activity .ico {
    width: 32px;
    height: 32px;
  }

  .purchase-activity .kicker {
    font-size: 7.5px;
    letter-spacing: 0.12em;
  }

  .purchase-activity .name {
    font-size: 11px;
  }

  .purchase-activity .plan,
  .purchase-activity .when {
    font-size: 8px;
  }

  .activity-signal {
    height: 22px;
  }
}

@media (max-width: 420px) {
  .footer-grid {
    grid-template-columns: 1.08fr 0.72fr 0.72fr 0.72fr !important;
    gap: 6px !important;
  }

  .footer .tagline {
    max-width: 104px !important;
    font-size: 8px !important;
  }

  .footer h5 {
    font-size: 7.5px !important;
  }

  .footer ul a {
    font-size: 8px !important;
  }

  .footer-bottom {
    font-size: 7px !important;
  }
}

@media (max-width: 760px) {
  .community-strip em {
    margin-left: 0 !important;
    width: 100%;
    text-align: center;
    font-size: 8px;
    letter-spacing: 0.1em;
    padding: 9px 8px;
  }
}

/* ============ CTA click behavior polish + compact mobile activity ============ */
.hero-ctas .btn-ghost {
  cursor: pointer;
}

@media (max-width: 760px) {
  .toast.purchase-activity,
  .purchase-activity {
    left: 12px !important;
    right: auto !important;
    width: min(74vw, 300px) !important;
    max-width: 300px !important;
    min-width: 0 !important;
    bottom: max(12px, env(safe-area-inset-bottom)) !important;
    padding: 10px 10px 10px 9px !important;
    gap: 7px !important;
  }

  .purchase-activity .ico {
    width: 28px !important;
    height: 28px !important;
  }

  .purchase-activity .kicker {
    font-size: 6.8px !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 2px !important;
  }

  .purchase-activity .name {
    font-size: 9.5px !important;
    line-height: 1.15 !important;
  }

  .purchase-activity .plan,
  .purchase-activity .when {
    font-size: 7px !important;
    letter-spacing: 0.08em !important;
  }

  .activity-signal {
    height: 18px !important;
    gap: 2px !important;
  }

  .activity-signal span {
    width: 3px !important;
  }
}

@media (max-width: 420px) {
  .toast.purchase-activity,
  .purchase-activity {
    width: min(76vw, 270px) !important;
    max-width: 270px !important;
  }
}

/* ============ Final hero priority: message first, brand secondary ============ */
.hero-logo-wrap .logo-hex {
  width: clamp(48px, 5vw, 74px) !important;
  height: clamp(48px, 5vw, 74px) !important;
}

.hero-title {
  font-size: clamp(24px, 3vw, 46px) !important;
  line-height: 1 !important;
  letter-spacing: 0.16em !important;
}

.hero-offer-title {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .hero-logo-wrap .logo-hex {
    width: clamp(42px, 12vw, 60px) !important;
    height: clamp(42px, 12vw, 60px) !important;
  }

  .hero-title {
    font-size: clamp(18px, 5.6vw, 30px) !important;
    letter-spacing: 0.12em !important;
  }

  .hero-offer-title {
    font-size: clamp(34px, 11vw, 54px) !important;
    line-height: 0.96 !important;
  }

  .hero-offer-currencies {
    font-size: clamp(9px, 2.7vw, 12px) !important;
    max-width: 94vw !important;
  }
}
