:root {
  --bg: #06061a;
  --surface: #0e0e2a;
  --surface-2: #14143a;
  --fg: #e8e6f2;
  --fg-muted: #9090b8;
  --accent: #00e5cc;
  --accent-2: #ff6b35;
  --accent-3: #a78bfa;
  --border: rgba(255,255,255,0.07);
  --radius: 12px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Syne', sans-serif; }

/* NAV */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(6,6,26,0.8);
  backdrop-filter: blur(12px);
}
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 16px; }
.nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--accent); letter-spacing: -0.02em; }
.nav-tagline { font-size: 0.8rem; color: var(--fg-muted); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 40px 80px;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,229,204,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,204,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(0,229,204,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; }
.hero-label {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(0,229,204,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 32px;
}
.hero-headline {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-accent { color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* PROOF */
.proof { padding: 60px 40px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-muted); margin-bottom: 20px; }
.proof-logos { display: flex; flex-direction: column; gap: 20px; }
.proof-logo-group { display: flex; gap: 16px; flex-wrap: wrap; }
.logo-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1px solid var(--border); border-radius: 8px; font-size: 0.8rem; font-weight: 600; color: var(--fg-muted); background: var(--surface); }
.logo-badge.apple { color: var(--fg); }
.award-row { display: flex; gap: 10px; flex-wrap: wrap; }
.award-pill { padding: 5px 12px; background: rgba(255,107,53,0.12); border: 1px solid rgba(255,107,53,0.2); border-radius: 100px; font-size: 0.72rem; color: var(--accent-2); font-weight: 600; }

/* SECTION TITLE */
.section-title { font-family: 'Syne', sans-serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 48px; }

/* PLAYBOOK */
.playbook { padding: 100px 40px; }
.playbook-inner { max-width: 1100px; margin: 0 auto; }
.playbook-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.playbook-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: border-color 0.3s; }
.playbook-card:hover { border-color: rgba(0,229,204,0.3); }
.card-icon { width: 48px; height: 48px; background: var(--surface-2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 20px; }
.card-title { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.card-body { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }

/* GAMES */
.games { padding: 100px 40px; background: var(--surface); }
.games-inner { max-width: 1100px; margin: 0 auto; }
.games-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; margin-bottom: 48px; }
@media (max-width: 680px) { .games-grid { grid-template-columns: 1fr; } }
.game-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; display: flex; flex-direction: column; gap: 12px; }
.game-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); font-weight: 700; }
.game-tag--secondary { color: var(--accent-2); }
.game-title { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; letter-spacing: -0.03em; }
.game-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.7; flex-grow: 1; }
.game-awards { display: flex; gap: 8px; flex-wrap: wrap; }
.game-awards span { font-size: 0.7rem; padding: 4px 10px; background: var(--surface-2); border-radius: 100px; color: var(--fg-muted); }
.games-footer { font-size: 0.85rem; color: var(--fg-muted); font-style: italic; }

/* CLOSING */
.closing { padding: 120px 40px; text-align: center; }
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-quote blockquote { font-family: 'Syne', sans-serif; font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.4; letter-spacing: -0.03em; color: var(--fg); margin-bottom: 32px; }
.closing-cta p { font-size: 1rem; color: var(--fg-muted); }

/* FOOTER */
.site-footer { padding: 48px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; color: var(--accent); }
.footer-note { font-size: 0.8rem; color: var(--fg-muted); }

/* MOBILE */
@media (max-width: 600px) {
  .site-nav, .hero, .proof, .playbook, .games, .closing, .site-footer { padding-left: 24px; padding-right: 24px; }
  .hero { padding-top: 100px; }
  .hero-stats { gap: 28px; }
  .proof-logo-group { gap: 10px; }
  .award-row { gap: 8px; }
  .nav-tagline { display: none; }
}