/* Design tokens — ported verbatim from 02_DESIGN_SYSTEM.md ("Direction A, Marquee").
   Identity: a dark screening-room. Never pure black. Gold is the only accent,
   spent sparingly — the one CTA, the active state, the "start here" moment.
   Posters are optional; the design must stand on typography alone. */

:root {
  /* surfaces */
  --bg: #0d0c0a;
  --surface: #151310;
  --surface2: #1d1a15;
  --surface3: #26211a;
  --border: #2e2820;
  --border-strong: #4a4030;
  /* text */
  --text: #f5efe3;
  --muted: #c0b5a0;
  --faint: #8e8471;
  --on-accent: #1a1509;
  /* accent */
  --accent: #c9a24a;
  --accent-bright: #e7c56b;
  --accent-glow: rgba(231, 197, 107, 0.14);
  --danger: #c7614f;
  /* type */
  --font-display: "Oswald", "Arial Narrow", sans-serif; /* uppercase, .04em tracking */
  --font-body: "Inter", -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", monospace; /* all metadata, labels, stats */
  /* shape & rhythm — 8pt spacing, these radii only */
  --radius: 12px;
  --radius-pill: 999px;
  --container: 1000px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur-fast: 120ms;
  --dur-med: 220ms;
  --dur-slow: 360ms;
}

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

html {
  background: var(--bg);
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  /* room at the bottom for the persistent player */
  padding-bottom: 84px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Mono labels are the app's "stage directions": UP NEXT, START HERE, MARATHON. */
.eyebrow,
.mono-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
  line-height: 1.05;
}

.gold {
  color: var(--accent);
}
.gold-bright {
  color: var(--accent-bright);
}

/* honesty is a design element — used on the streaming-disclosure line and gap states */
.honest-line {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--faint);
  letter-spacing: 0.02em;
}

button {
  font-family: inherit;
  cursor: pointer;
}
