:root {
  --bg: #070707;
  --surface: #111;
  --fg: #f3f3f3;
  --muted: #8a8a8a;
  --subtle: #5c5c5c;
  --primary: #e10600;
  --primary-fg: #fff7f7;
  --border: #1f1f1f;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Syne", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; background: var(--bg); color: var(--fg); font-family: var(--font); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
.wrap { max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
.kicker { font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -0.03em; text-wrap: balance; }
.display { font-size: clamp(2.75rem, 8.6vw, 7.5rem); line-height: 0.92; text-transform: uppercase; letter-spacing: -0.03em; margin: 0.75rem 0 0; }
.title { font-size: clamp(1.75rem, 4vw, 3.25rem); line-height: 1.05; margin: 0.5rem 0 0; }
.muted { color: var(--muted); }
.subtle { color: var(--subtle); }
.mono { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
header.site { position: sticky; top: 0; z-index: 40; background: rgba(7,7,7,.95); border-bottom: 1px solid var(--border); backdrop-filter: blur(10px); }
header.site .wrap { max-width: 72rem; padding: 0 1rem; }
header.site .bar { display: flex; align-items: center; gap: .75rem; height: 4.25rem; }
nav.desk { display: none; gap: .55rem; margin-left: .5rem; flex: 1; min-width: 0; }
.grow { margin-left: auto; flex: 0 0 auto; padding-left: .75rem; display: flex; align-items: center; gap: 0.5rem; }
.logo { font-family: var(--display); font-weight: 600; letter-spacing: 0.1em; white-space: nowrap; }
.logo span { color: var(--primary); }
nav.desk a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.15;
  padding: 0.15rem 0.2rem;
  white-space: nowrap;
  flex: 0 0 auto;
}
nav.desk a:hover, nav.desk a.on { color: var(--primary); }
nav.desk .nav-full { display: none; }
nav.desk .nav-short { display: inline; }
.bag { width: 2.6rem; height: auto; gap: 1px; padding: .15rem 0; }
.bag > span:first-child { font-size: .52rem; letter-spacing: .16em; text-transform: uppercase; line-height: 1; }
.bag svg { display: block; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; height: 2.75rem; padding: 0 1.25rem; border-radius: 0.5rem; border: 0; background: var(--fg); color: var(--bg); font-weight: 500; cursor: pointer; }
.btn.lg { height: 3rem; padding: 0 1.75rem; }
.btn.out { background: transparent; color: var(--fg); border: 1px solid var(--border); }
.btn.ghost { background: transparent; color: var(--fg); }
.btn.accent { background: var(--primary); color: var(--primary-fg); }
.btn.full { width: 100%; }
.icon { width: 2.75rem; height: 2.75rem; display: grid; place-items: center; background: none; border: 0; color: var(--fg); cursor: pointer; position: relative; }
.badge { position: absolute; top: 0.35rem; right: 0.35rem; width: 1rem; height: 1rem; border-radius: 99px; background: var(--primary); color: var(--primary-fg); font-size: 0.5625rem; display: grid; place-items: center; }
.hero { position: relative; border-bottom: 1px solid var(--border); padding: 4rem 0; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(7,7,7,.3), rgba(7,7,7,.75), #070707); }
.hero .wrap { position: relative; }
.grid-2 { display: grid; gap: 2.5rem; margin-top: 2rem; }
.card { background: rgba(7,7,7,.8); border-radius: 0.75rem; padding: 0.5rem; box-shadow: 0 0 0 1px rgba(255,255,255,.08); }
.card img.cover { aspect-ratio: 1; object-fit: cover; border-radius: 0.5rem; width: 100%; }
.play { width: 2.75rem; height: 2.75rem; border-radius: 99px; background: var(--primary); color: var(--primary-fg); border: 0; cursor: pointer; display: grid; place-items: center; flex-shrink: 0; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; 