:root {
  color-scheme: dark;
  --bg: #07080c;
  --text: #f3f5f8;
  --muted: #9aa6b8;
  --line: rgba(255, 255, 255, .08);
  --accent: #6ea2ff;
  --accent-2: #8b5cf6;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.glow {
  position: fixed; inset: -20% 0 auto;
  height: 70vh; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(110, 162, 255, .22), transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 10%, rgba(139, 92, 246, .12), transparent 55%);
}
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.55'/></svg>");
}
.nav, main, footer { position: relative; z-index: 1; }
.nav {
  max-width: 1080px; margin: 0 auto;
  padding: 22px 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-weight: 700; letter-spacing: -.02em;
}
.mark { width: 28px; height: 28px; color: var(--accent); }
.nav nav { display: flex; align-items: center; gap: 18px; }
.nav nav a {
  text-decoration: none; color: var(--muted); font-size: .92rem; font-weight: 600;
}
.nav nav a:hover { color: var(--text); }
.nav-cta {
  color: var(--text) !important;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
}
.hero {
  max-width: 1080px; margin: 0 auto;
  padding: 72px 24px 24px;
  text-align: center;
}
.eyebrow {
  margin: 0 0 16px;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent);
}
h1 {
  margin: 0 auto 18px;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05; letter-spacing: -.045em; font-weight: 750;
}
.lead {
  margin: 0 auto 28px;
  max-width: 38rem;
  color: var(--muted); font-size: 1.08rem;
}
.cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 20px; border-radius: 14px;
  background: var(--text); color: #0b0d12;
  text-decoration: none; font-weight: 700;
}
.btn.ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line);
}
.btn:hover { filter: brightness(1.06); }
.hint {
  margin: 16px 0 0;
  color: var(--muted); font-size: .82rem;
}
.stage { margin: 56px auto 0; max-width: 820px; perspective: 1400px; }
.bezel {
  border-radius: 22px;
  padding: 10px;
  background: linear-gradient(180deg, #1a2030, #0c1018);
  border: 1px solid var(--line);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, .45),
    0 0 0 1px rgba(255, 255, 255, .04) inset;
  transform: rotateX(8deg);
}
.screen {
  border-radius: 14px; overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(110, 162, 255, .18), transparent 42%),
    linear-gradient(180deg, #121826, #0a0d14);
  min-height: 280px;
  padding: 16px;
}
.screen-bar {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 650;
  margin-bottom: 14px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ef4444; box-shadow: 0 0 10px #ef4444;
}
.now {
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: #fca5a5; border: 1px solid rgba(252, 165, 165, .35);
  border-radius: 999px; padding: 2px 8px;
}
.screen-bar .muted { color: var(--muted); font-weight: 500; margin-left: auto; }
.screen-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 120px 88px;
  gap: 10px;
}
.poster {
  border-radius: 10px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
}
.p1 { grid-row: 1 / span 2; background: linear-gradient(160deg, #3b82f6, #1e3a8a 58%, #0f172a); }
.p2 { background: linear-gradient(160deg, #7c3aed, #1e1b4b); }
.p3 { background: linear-gradient(160deg, #0ea5e9, #164e63); }
.p4 { background: linear-gradient(160deg, #f59e0b, #7c2d12); }
.p5 { background: linear-gradient(160deg, #22c55e, #14532d); }
.p6 { display: none; }
.features {
  max-width: 1080px; margin: 72px auto 0;
  padding: 0 24px 8px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.features article {
  padding: 22px 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .02);
}
.features h2 { margin: 0 0 8px; font-size: 1.15rem; letter-spacing: -.02em; }
.features p { margin: 0; color: var(--muted); font-size: .95rem; }
.platforms {
  max-width: 1080px; margin: 56px auto 0;
  padding: 0 24px 8px; text-align: center;
}
.platforms h2 {
  margin: 0 0 16px; font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); font-weight: 700;
}
.platforms ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.platforms li {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; color: var(--muted); font-weight: 600; font-size: .92rem;
}
footer {
  max-width: 1080px; margin: 72px auto 0;
  padding: 28px 24px 40px;
  display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap;
  color: var(--muted); font-size: .88rem; border-top: 1px solid var(--line);
}
footer a { text-decoration: none; }
footer a:hover { color: var(--text); }
.sep { opacity: .5; }
@media (max-width: 800px) {
  .hero { padding-top: 48px; }
  .features { grid-template-columns: 1fr; }
  .screen-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 110px 80px; }
  .p1 { grid-row: 1; }
  .p5 { display: none; }
}
@media (max-width: 520px) {
  .nav nav a:not(.nav-cta) { display: none; }
  h1 { font-size: 2.2rem; }
  .cta { flex-direction: column; }
  .btn { width: 100%; }
}
