/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #a855f7;
  --accent2: #7c3aed;
  --accent-glow: rgba(168, 85, 247, 0.35);
  --val: #ff4655;
  --df: #f59e0b;
  --ai: #06b6d4;
  --bg: #05050a;
  --bg2: #0a0a14;
  --bg3: #0f0f1c;
  --surface: rgba(255,255,255,0.04);
  --surface2: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-accent: rgba(168,85,247,0.4);
  --text: #f1f1f3;
  --text2: #9ca3af;
  --text3: #6b7280;
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent2); border-radius: 3px; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-weight: 600; border-radius: 8px;
  padding: 10px 22px; font-size: 14px; transition: all .2s;
  border: none; cursor: pointer;
  box-shadow: 0 0 20px rgba(168,85,247,.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 30px rgba(168,85,247,.5); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border-accent); color: var(--accent);
  font-weight: 600; border-radius: 8px; padding: 10px 22px;
  font-size: 14px; transition: all .2s; cursor: pointer; background: transparent;
}
.btn-outline:hover { background: rgba(168,85,247,.1); transform: translateY(-1px); }

.btn-ghost {
  color: var(--text2); font-weight: 500; font-size: 14px;
  padding: 8px 16px; border-radius: 8px; transition: all .2s;
}
.btn-ghost:hover { color: var(--text); background: var(--surface); }

.btn-ai {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff; font-weight: 600; border-radius: 8px;
  padding: 10px 22px; font-size: 14px; transition: all .2s;
  border: none; cursor: pointer;
  box-shadow: 0 0 20px rgba(6,182,212,.25);
}
.btn-ai:hover { transform: translateY(-1px); box-shadow: 0 4px 30px rgba(6,182,212,.45); }

.btn-lg { padding: 14px 32px; font-size: 15px; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; margin-top: 24px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0; transition: all .3s;
}
.navbar.scrolled {
  background: rgba(5,5,10,.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; gap: 32px;
}
.logo {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  letter-spacing: 4px; color: var(--text);
}
.logo-k { color: var(--accent); }

.nav-links {
  display: flex; list-style: none; gap: 4px; flex: 1;
}
.nav-links a {
  color: var(--text2); font-size: 14px; font-weight: 500;
  padding: 6px 14px; border-radius: 6px; transition: all .2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }

.nav-actions { display: flex; align-items: center; gap: 8px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer; padding: 9px 10px;
  transition: border-color .2s;
}
.hamburger:hover { border-color: var(--border-accent); }
.hamburger span {
  width: 20px; height: 2px; background: var(--text2); border-radius: 2px;
  transition: transform .3s, opacity .3s, background .2s;
  display: block;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--accent); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--accent); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 100px 24px 60px;
  gap: 60px; max-width: 1200px; margin: 0 auto;
}

.hero-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(168,85,247,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.glow {
  position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none;
}
.glow-1 { width: 600px; height: 600px; background: rgba(168,85,247,.12); top: -200px; left: -200px; }
.glow-2 { width: 500px; height: 500px; background: rgba(124,58,237,.1); top: 40%; right: -100px; }
.glow-3 { width: 400px; height: 400px; background: rgba(6,182,212,.06); bottom: -100px; left: 40%; }

.particles { position: absolute; inset: 0; }

.hero-content { flex: 1; position: relative; z-index: 1; max-width: 620px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border-accent); border-radius: 100px;
  padding: 6px 16px; font-size: 12px; font-weight: 500;
  color: var(--accent); background: rgba(168,85,247,.08);
  margin-bottom: 28px; letter-spacing: .5px;
}
.badge-dot {
  width: 7px; height: 7px; background: #22c55e;
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-display); font-size: clamp(52px, 7vw, 88px);
  font-weight: 700; line-height: .95; letter-spacing: -1px;
  margin-bottom: 24px; color: var(--text);
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent), #60a5fa, var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px; color: var(--text2); margin-bottom: 36px; line-height: 1.7;
}
.hero-sub strong { color: var(--text); }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex; align-items: center; gap: 24px;
}
.stat { text-align: left; }
.stat-value {
  font-family: var(--font-display); font-size: 32px; font-weight: 700;
  color: var(--text); display: inline;
}
.stat-pct { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--text); }
.stat-label { display: block; font-size: 12px; color: var(--text3); letter-spacing: .5px; text-transform: uppercase; margin-top: 2px; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* ===== HUD CARD ===== */
.hero-visual {
  flex-shrink: 0; position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.hud-card {
  width: 320px; background: rgba(10,10,20,.85);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg); padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(168,85,247,.15), inset 0 0 40px rgba(168,85,247,.04);
}
.hud-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.hud-tag {
  font-family: var(--font-display); font-size: 11px; letter-spacing: 2px;
  color: var(--accent); font-weight: 600;
}
.hud-live {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  color: #22c55e; background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3); border-radius: 4px; padding: 2px 8px;
  animation: blink 1.5s infinite;
}
@keyframes blink { 50% { opacity: .5; } }

.hud-crosshair {
  position: relative; width: 200px; height: 200px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.ch-ring {
  position: absolute; border-radius: 50%; border: 1px solid;
  animation: spin linear infinite;
}
.ch-ring-1 {
  width: 160px; height: 160px; border-color: rgba(168,85,247,.2);
  animation-duration: 12s;
}
.ch-ring-2 {
  width: 120px; height: 120px; border-color: rgba(168,85,247,.35);
  animation-duration: 8s; animation-direction: reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

.ch-dot {
  width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; position: absolute; z-index: 3;
  box-shadow: 0 0 10px var(--accent);
}
.ch-line {
  position: absolute; background: rgba(168,85,247,.5);
}
.ch-l, .ch-r { width: 30px; height: 1px; top: 50%; }
.ch-l { right: calc(50% + 6px); }
.ch-r { left: calc(50% + 6px); }
.ch-t, .ch-b { width: 1px; height: 30px; left: 50%; }
.ch-t { bottom: calc(50% + 6px); }
.ch-b { top: calc(50% + 6px); }

.target-box {
  position: absolute; width: 64px; height: 72px;
  top: 50%; left: 50%; transform: translate(-50%, -60%);
  animation: target-lock .8s ease-out forwards;
}
@keyframes target-lock {
  from { width: 90px; height: 100px; opacity: 0; }
  to { width: 64px; height: 72px; opacity: 1; }
}
.corner {
  position: absolute; width: 10px; height: 10px;
  border-color: var(--accent); border-style: solid;
}
.corner.tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.corner.tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.corner.bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.corner.br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.target-label {
  position: absolute; bottom: -22px; left: 50%;
  transform: translateX(-50%); white-space: nowrap;
  font-size: 9px; font-weight: 700; letter-spacing: 1px;
  color: var(--accent); background: rgba(168,85,247,.15);
  border: 1px solid rgba(168,85,247,.3); border-radius: 4px;
  padding: 2px 6px;
}

.hud-stats-row {
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 16px;
}
.hud-stat span { display: block; font-size: 9px; color: var(--text3); letter-spacing: 1px; text-transform: uppercase; }
.hud-stat b { font-family: var(--font-display); font-size: 16px; color: var(--text); }

/* ===== GAMES STRIP ===== */
.games-strip {
  background: var(--bg2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 20px 0;
}
.games-strip .container {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.strip-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--text3); flex-shrink: 0;
}
.games-row { display: flex; gap: 10px; flex-wrap: wrap; }
.game-chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); border-radius: 8px;
  padding: 7px 14px; font-size: 13px; font-weight: 500; color: var(--text2);
  background: var(--surface);
}
.game-chip.active { border-color: var(--border-accent); color: var(--text); }
.game-chip img { width: 16px; height: 16px; object-fit: contain; }
.game-status {
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  color: #22c55e; background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.2); border-radius: 4px; padding: 1px 6px;
}
.game-status.soon { color: var(--text3); background: var(--surface); border-color: var(--border); }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-dark { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--accent);
  background: rgba(168,85,247,.1); border: 1px solid rgba(168,85,247,.25);
  border-radius: 100px; padding: 4px 14px; margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; line-height: 1.1; margin-bottom: 16px;
}
.section-header p { color: var(--text2); max-width: 520px; margin: 0 auto; }

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; position: relative;
  overflow: hidden; transition: all .3s;
}
.product-card:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.product-card.featured {
  border-color: var(--border-accent);
  background: linear-gradient(160deg, rgba(168,85,247,.06) 0%, var(--bg2) 60%);
}
.product-card.ai-card {
  background: linear-gradient(160deg, rgba(6,182,212,.06) 0%, var(--bg2) 60%);
  border-color: rgba(6,182,212,.25);
}
.product-card.ai-card:hover { border-color: rgba(6,182,212,.5); }

.card-glow {
  position: absolute; width: 200px; height: 200px;
  background: rgba(168,85,247,.1); border-radius: 50%;
  filter: blur(60px); top: -60px; right: -60px; pointer-events: none;
}
.ai-glow { background: rgba(6,182,212,.1); }

.card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.game-badge {
  font-size: 10px; font-weight: 800; letter-spacing: 2px;
  border-radius: 5px; padding: 3px 8px;
}
.game-badge.val { color: var(--val); background: rgba(255,70,85,.1); border: 1px solid rgba(255,70,85,.25); }
.game-badge.df { color: var(--df); background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.25); }
.game-badge.ai { color: var(--ai); background: rgba(6,182,212,.1); border: 1px solid rgba(6,182,212,.25); }

.card-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  border-radius: 5px; padding: 3px 8px; margin-left: auto;
}
.card-tag.hot { color: #f97316; background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.25); }
.card-tag.new { color: var(--ai); background: rgba(6,182,212,.1); border: 1px solid rgba(6,182,212,.25); }

.product-card h3 {
  font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-bottom: 10px;
}
.card-desc { color: var(--text2); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--text2);
}
.feature-list svg { flex-shrink: 0; color: var(--accent); width: 16px; height: 16px; }

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: all .3s;
}
.feat-card:hover { border-color: var(--border-accent); background: rgba(168,85,247,.04); }
.feat-icon {
  width: 46px; height: 46px; background: rgba(168,85,247,.12);
  border: 1px solid rgba(168,85,247,.2); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 16px;
}
.feat-icon svg { width: 22px; height: 22px; }
.feat-card h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feat-card p { color: var(--text2); font-size: 13.5px; line-height: 1.65; }

/* ===== STATUS BAR ===== */
.status-bar {
  background: var(--bg3); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 14px 0;
}
.status-bar .container { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.status-title { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--text3); flex-shrink: 0; }
.status-items { display: flex; gap: 20px; flex-wrap: wrap; }
.status-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text2); }
.status-dot {
  width: 7px; height: 7px; border-radius: 50; flex-shrink: 0;
  border-radius: 50%;
}
.status-dot.green { background: #22c55e; box-shadow: 0 0 6px #22c55e; animation: pulse 2s infinite; }
.status-dot.yellow { background: #f59e0b; box-shadow: 0 0 6px #f59e0b; animation: pulse 2s infinite; }
.status-text { color: var(--text3); }

/* ===== PRICING ===== */
.pricing-toggle {
  display: flex; justify-content: center; gap: 4px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 4px; width: fit-content; margin: 0 auto 44px;
}
.ptog {
  background: none; border: none; color: var(--text2); font-size: 14px;
  font-weight: 500; padding: 8px 20px; border-radius: 7px; cursor: pointer; transition: all .2s;
}
.ptog.active { background: var(--accent2); color: #fff; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.price-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; transition: all .3s;
}
.price-card.popular {
  border-color: var(--border-accent);
  background: linear-gradient(160deg, rgba(168,85,247,.06), var(--bg2));
  position: relative;
}
.popular-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 700; letter-spacing: 1px; white-space: nowrap;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; padding: 4px 14px; border-radius: 0 0 8px 8px;
}
.price-card h4 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.price-card .price-desc { color: var(--text2); font-size: 13px; margin-bottom: 20px; }
.price-amount { margin-bottom: 20px; }
.price-amount .amount {
  font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--text);
}
.price-amount .period { color: var(--text3); font-size: 13px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.price-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text2); }
.price-features svg { color: var(--accent); flex-shrink: 0; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.review-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; display: flex;
  flex-direction: column; gap: 12px;
}
.stars { color: #f59e0b; font-size: 13px; letter-spacing: 2px; }
.review-card p { color: var(--text2); font-size: 13px; line-height: 1.65; flex: 1; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.reviewer strong { display: block; font-size: 13px; }
.reviewer small { color: var(--text3); font-size: 11px; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: none; border: none; color: var(--text);
  font-size: 15px; font-weight: 500; cursor: pointer; text-align: left; gap: 12px;
  transition: background .2s;
}
.faq-q:hover { background: var(--surface); }
.faq-q svg { flex-shrink: 0; color: var(--text3); transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-item.open .faq-q { color: var(--accent); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.faq-a p { padding: 0 22px 18px; color: var(--text2); font-size: 14px; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 200px; }

/* ===== CTA BAND ===== */
.cta-band {
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--bg2), var(--bg));
}
.cta-glow {
  position: absolute; width: 600px; height: 400px; border-radius: 50%;
  background: rgba(168,85,247,.12); filter: blur(100px);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(32px,4vw,48px); font-weight: 700; margin-bottom: 12px; }
.cta-band p { color: var(--text2); margin-bottom: 32px; }

/* ===== FOOTER ===== */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { display: inline-block; margin-bottom: 12px; }
.footer-brand p { color: var(--text2); font-size: 13px; max-width: 260px; margin-bottom: 20px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px; border-radius: 8px; background: var(--surface);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--text2); transition: all .2s;
}
.socials a:hover { color: var(--text); border-color: var(--border-accent); }
.socials svg { width: 16px; height: 16px; }
.footer-col h5 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 16px; letter-spacing: .5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text3); font-size: 13px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--text3); }
.disclaimer { font-size: 11px !important; }

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.mobile-nav.open { transform: translateX(0); pointer-events: all; }

.mnav-inner {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(360px, 100vw);
  background: rgba(8,8,18,.98);
  backdrop-filter: blur(24px);
  border-left: 1px solid var(--border-accent);
  display: flex; flex-direction: column;
  padding: 0;
  box-shadow: -20px 0 60px rgba(0,0,0,.6);
}

.mnav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.mnav-close {
  width: 38px; height: 38px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text2); transition: all .2s;
}
.mnav-close:hover { border-color: var(--border-accent); color: var(--text); }
.mnav-close svg { width: 18px; height: 18px; }

.mnav-status {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: rgba(34,197,94,.06);
  border-bottom: 1px solid rgba(34,197,94,.15);
  font-size: 12px; color: #86efac; font-weight: 500;
}

.mnav-links { flex: 1; padding: 12px 16px; display: flex; flex-direction: column; gap: 4px; overflow-y: auto; }

.mnav-link {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 10px; font-size: 16px;
  font-weight: 500; color: var(--text2); transition: all .2s;
  border: 1px solid transparent;
}
.mnav-link:hover, .mnav-link:active {
  color: var(--text); background: var(--surface2);
  border-color: var(--border);
}
.mnav-link svg { margin-left: auto; opacity: .4; }
.mnav-icon { font-size: 18px; width: 28px; text-align: center; }

.mnav-footer {
  padding: 20px 20px 32px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.mnav-login {
  text-align: center; font-size: 14px; padding: 12px;
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--text2) !important;
}

.mnav-backdrop {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(0,0,0,.7); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.mnav-backdrop.open { opacity: 1; pointer-events: all; }

/* ===== MOBILE STICKY CTA BAR ===== */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: rgba(8,8,18,.96); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-accent);
  padding: 12px 20px;
  align-items: center; justify-content: space-between; gap: 16px;
  box-shadow: 0 -8px 32px rgba(168,85,247,.12);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.mobile-cta-bar.visible { transform: translateY(0); }

.mcta-left { display: flex; flex-direction: column; gap: 3px; }
.mcta-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  color: #86efac; text-transform: uppercase;
}
.mcta-price { font-size: 13px; color: var(--text2); }
.mcta-price strong { color: var(--text); font-size: 17px; font-family: var(--font-display); }

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ===== MOBILE (≤ 768px) ===== */
@media (max-width: 768px) {

  /* NAV */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn-ghost { display: none; }
  .nav-actions .btn-primary { padding: 8px 14px; font-size: 13px; }
  .nav-inner { gap: 0; }

  /* HERO */
  .hero {
    flex-direction: column; min-height: auto;
    padding: 96px 20px 52px; gap: 0;
    max-width: 100%;
  }
  .hero-content { max-width: 100%; }
  .hero-badge { font-size: 11px; padding: 5px 12px; margin-bottom: 20px; }
  .hero-title { font-size: clamp(44px, 13vw, 64px); margin-bottom: 16px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-cta { gap: 10px; margin-bottom: 36px; }
  .hero-cta .btn-lg { padding: 13px 24px; font-size: 14px; flex: 1; justify-content: center; }
  .hero-visual { display: none; }

  /* HERO STATS — horizontal pill row */
  .hero-stats {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 14px; padding: 16px 20px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 0;
  }
  .stat { text-align: center; flex: 1; }
  .stat-value { font-size: 24px; }
  .stat-pct { font-size: 24px; }
  .stat-label { font-size: 10px; }
  .stat-div { width: 1px; height: 32px; background: var(--border); }

  /* SECTION PADDING */
  .section { padding: 52px 0; }
  .section-dark { padding: 52px 0; }
  .container { padding: 0 16px; }

  /* SECTION HEADER */
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(26px, 7vw, 38px); }
  .section-header p { font-size: 14px; }

  /* GAMES STRIP */
  .games-strip .container { flex-direction: column; gap: 12px; align-items: flex-start; }
  .games-row { gap: 8px; }
  .game-chip { padding: 6px 12px; font-size: 12px; }

  /* PRODUCTS — single column, featured first */
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card { padding: 22px 20px; }
  .product-card h3 { font-size: 22px; }
  .card-desc { font-size: 13px; }
  .feature-list li { font-size: 13px; }
  /* Rearrange: featured card first on mobile */
  .product-card.featured { order: -1; }

  /* FEATURES — single column */
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feat-card { padding: 20px 18px; display: flex; gap: 16px; align-items: flex-start; }
  .feat-icon { flex-shrink: 0; margin-bottom: 0; width: 40px; height: 40px; }
  .feat-card h4 { font-size: 16px; margin-bottom: 4px; }
  .feat-card p { font-size: 13px; }

  /* STATUS BAR */
  .status-bar .container { flex-direction: column; align-items: flex-start; gap: 12px; }
  .status-items { flex-direction: column; gap: 8px; }
  .status-item { font-size: 13px; }

  /* PRICING TOGGLE */
  .pricing-toggle {
    width: 100%; justify-content: stretch;
    border-radius: 10px; padding: 3px;
  }
  .ptog { flex: 1; padding: 9px 8px; font-size: 13px; text-align: center; }

  /* PRICING GRID — single column */
  .pricing-grid { grid-template-columns: 1fr; gap: 14px; }
  .price-card { padding: 22px 20px; }
  .price-amount .amount { font-size: 36px; }
  .popular-badge { font-size: 9px; padding: 3px 12px; }

  /* REVIEWS — horizontal scroll */
  .reviews-grid {
    grid-template-columns: none;
    display: flex; gap: 14px;
    overflow-x: auto; padding-bottom: 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review-card { flex-shrink: 0; width: 280px; }

  /* FAQ */
  .faq-q { font-size: 14px; padding: 16px 18px; }
  .faq-a p { padding: 0 18px 16px; font-size: 13px; }

  /* CTA BAND */
  .cta-band { padding: 56px 0; }
  .cta-band h2 { font-size: clamp(28px, 8vw, 40px); }
  .cta-band p { font-size: 14px; }
  .cta-band .btn-lg { width: 100%; max-width: 300px; justify-content: center; }

  /* FOOTER */
  .footer { padding: 44px 0 110px; } /* bottom padding for sticky bar */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* STICKY CTA BAR */
  .mobile-cta-bar { display: flex; }

}

/* ===== SMALL PHONES (≤ 390px) ===== */
@media (max-width: 390px) {
  .hero-title { font-size: 40px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-lg { width: 100%; }
  .hero-badge { font-size: 10px; letter-spacing: 0; }
  .product-card { padding: 18px 16px; }
  .pricing-toggle { gap: 2px; }
  .ptog { font-size: 12px; padding: 8px 6px; }
  .review-card { width: 260px; }
  .section-header h2 { font-size: 26px; }
}
