﻿:root {
  --background: 220 40% 6%;
  --foreground: 210 40% 98%;
  --card: 222 47% 11%;
  --primary: 280 100% 70%;
  --primary-foreground: 210 40% 98%;
  --muted: 217 33% 17%;
  --muted-foreground: 215 20% 65%;
  --border: 217 33% 17%;
  --radius: 1rem;
  --gradient-start: 220 40% 6%;
  --gradient-end: 286 64% 16%;
  --neon-purple: 280 100% 70%;
  --neon-cyan: 190 100% 50%;
}

* { box-sizing: border-box; margin: 0; padding: 0; border-color: hsl(var(--border)); }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at top right, hsla(280, 100%, 70%, 0.12), transparent 36%), linear-gradient(145deg, hsl(var(--gradient-start)), hsl(var(--gradient-end)));
  background-attachment: fixed;
  color: hsl(var(--foreground));
  min-height: 100vh;
  overflow-x: hidden;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
section { padding: 5rem 0; }
.grid { display: grid; gap: 1.2rem; }
@media (min-width: 768px) {
  .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) { .lg-grid-cols-2 { grid-template-columns: repeat(2, 1fr); } }

.text-center { text-align: center; }
.text-muted { color: hsl(var(--muted-foreground)); }
.font-bold { font-weight: 700; }
.text-xl { font-size: 1.2rem; }
.text-2xl { font-size: 1.42rem; }
.text-4xl { font-size: 2.15rem; }
.text-5xl { font-size: 3rem; }
.eyebrow { font-family: 'Sora', sans-serif; text-transform: uppercase; letter-spacing: .08em; color: hsl(var(--neon-cyan)); font-size: .82rem; font-weight: 600; }
.microcopy { font-size: .93rem; color: hsl(var(--foreground) / .82); }
.hero-pill-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.hero-pill-row span {
  font-size: .78rem;
  padding: .38rem .65rem;
  border-radius: 999px;
  border: 1px solid hsl(var(--neon-cyan) / .35);
  background: hsl(var(--neon-cyan) / .09);
  color: hsl(var(--foreground) / .9);
}
.gradient-text {
  background: linear-gradient(135deg, hsl(var(--neon-purple)), hsl(var(--neon-cyan)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all .25s ease;
  height: 80px; display: flex; align-items: center;
}
header.scrolled { background-color: hsla(220, 40%, 6%, .9); backdrop-filter: blur(8px); border-bottom: 1px solid hsla(217, 33%, 17%, .7); }
.header-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo img { height: 48px; width: auto; }
nav.desktop-nav { display: flex; align-items: center; gap: 1.5rem; }
nav a { color: hsla(210, 40%, 98%, 0.85); text-decoration: none; }
nav a:hover { color: hsl(var(--foreground)); }
.mobile-menu-btn { display: none; background: none; border: none; color: hsl(var(--foreground)); cursor: pointer; }
.mobile-nav { display: none; position: absolute; top: 80px; left: 0; right: 0; background: hsl(var(--background)); border-top: 1px solid hsla(217, 33%, 17%, .5); padding: 1rem; flex-direction: column; gap: .8rem; }
.mobile-nav.open { display: flex; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; padding: .8rem 1.35rem; border-radius: .7rem;
  font-weight: 700; cursor: pointer; transition: all .25s ease; text-decoration: none; border: none;
}
.btn-primary { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1px solid hsl(var(--neon-cyan)); color: hsl(var(--neon-cyan)); }
.btn-outline:hover { background-color: hsla(190, 100%, 50%, 0.1); }
.btn-lg { padding: 1rem 1.75rem; font-size: 1.06rem; }
.glow-purple { box-shadow: 0 0 20px hsl(var(--neon-purple) / .45), 0 0 40px hsl(var(--neon-purple) / .2); }
.glow-cyan { box-shadow: 0 0 20px hsl(var(--neon-cyan) / .35), 0 0 40px hsl(var(--neon-cyan) / .18); }

.card {
  background-color: hsla(222, 47%, 11%, .58); backdrop-filter: blur(4px); border: 1px solid hsla(217, 33%, 17%, .5);
  border-radius: var(--radius); padding: 1.2rem; transition: all .25s ease;
}
.card:hover { border-color: hsla(280, 100%, 70%, .55); transform: translateY(-4px); box-shadow: 0 18px 30px rgba(0, 0, 0, .22); }

.animate-float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-18px);} }

#hero { min-height: 100vh; display: flex; align-items: center; padding-top: 90px; }
.hero-content { display: flex; flex-direction: column; gap: 1.15rem; }
.hero-image { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-image .glow-bg {
  position: absolute; width: min(80vw, 520px); aspect-ratio: 1/1; border-radius: 50%;
  background: radial-gradient(circle, hsla(280, 100%, 70%, .28) 0%, hsla(190, 100%, 50%, .12) 45%, transparent 75%);
  filter: blur(24px); z-index: 1;
}
.hero-main-image { position: relative; z-index: 2; width: min(100%, 620px); max-height: 78vh; object-fit: contain; }
.cinematic-panel {
  border-radius: 1rem;
  background: linear-gradient(160deg, hsl(var(--neon-purple) / .08), hsl(var(--neon-cyan) / .04));
  border: 1px solid hsl(var(--neon-purple) / .2);
}
@media (min-width: 1024px) {
  #hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
}

.game-card { overflow: hidden; }
.video-frame { aspect-ratio: 9 / 16; background-color: hsl(var(--muted)); border-bottom: 1px solid hsl(var(--border)); }
.video-frame iframe { width: 100%; height: 100%; border: none; }
.segment-pill { text-align: center; font-weight: 600; }
.impact-card { text-align: center; font-size: 1.1rem; }
.results-cinematic .card {
  background: linear-gradient(160deg, hsla(222, 47%, 11%, .7), hsla(220, 40%, 6%, .7));
}
.media-placeholder {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, hsla(280, 100%, 70%, .08), hsla(190, 100%, 50%, .05));
}

.lead-form { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .75rem; }
.lead-form input {
  width: 100%; background: hsla(220, 40%, 6%, .6); border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground)); border-radius: .65rem; min-height: 48px; padding: 0 .9rem;
}
.lead-form button { grid-column: 1 / -1; min-height: 50px; }

.faq-list { display: grid; gap: .75rem; }
.faq-list details { border: 1px solid hsl(var(--border)); border-radius: .65rem; padding: .9rem; background: hsla(220, 40%, 6%, .35); }
.faq-list summary { cursor: pointer; font-weight: 600; }
.faq-list p { margin-top: .6rem; }

.mobile-float-cta {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 80; display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; border-radius: 999px; background: #25d366; color: #06210f; font-weight: 800;
  text-decoration: none; box-shadow: 0 10px 30px rgba(0, 0, 0, .35); padding: .8rem 1.3rem;
}

footer { padding: 4rem 0; border-top: 1px solid hsla(217, 33%, 17%, .3); text-align: center; background-color: hsla(220, 40%, 6%, .5); }

@media (max-width: 1024px) { .grid-cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .desktop-nav { display: none !important; }
  .mobile-menu-btn { display: block; }
  section { padding: 3.3rem 0; }
  .container { padding: 0 1rem; }
  .text-5xl { font-size: 2.25rem; }
  .text-4xl { font-size: 1.75rem; }
  .text-xl { font-size: 1rem; }
  #hero { min-height: auto; padding-top: 105px; padding-bottom: 1.5rem; }
  .hero-actions, .cta-actions { width: 100%; flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; min-height: 52px; }
  .hero-pill-row span { font-size: .74rem; }
  .grid-cols-2, .grid-cols-3, .grid-cols-4 { grid-template-columns: 1fr; }
  .lead-form { grid-template-columns: 1fr; }
  .mobile-float-cta { left: 1rem; right: 1rem; text-align: center; }
  footer { padding-bottom: 6rem !important; }
}
