:root {
  color-scheme: dark;
  --bg: #120a1e;
  --bg-deep: #0c0714;
  --surface: #1e1430;
  --surface-lit: #2a1d42;
  --text: #f4eefb;
  --muted: #a596bd;
  --omy: #b14dff;
  --omy-dim: rgba(177, 77, 255, 0.16);
  --tv: #26e6c3;
  --tv-dim: rgba(38, 230, 195, 0.12);
  --neon: #ff4d94;
  --border: rgba(244, 238, 251, 0.08);
  --glow: 0 0 90px rgba(177, 77, 255, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --font-display:
    "SF Pro Display",
    "Segoe UI",
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
  --font-body:
    "SF Pro Text",
    "Segoe UI",
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 20% 10%, var(--omy-dim), transparent 55%),
    radial-gradient(ellipse 45% 35% at 90% 85%, var(--tv-dim), transparent 50%),
    radial-gradient(ellipse 30% 25% at 70% 40%, rgba(255, 77, 148, 0.08), transparent 45%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 60%, #080510 100%);
}

.backdrop__play {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 26px 0 26px 44px;
  border-color: transparent transparent transparent rgba(177, 77, 255, 0.15);
}

.page {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.hero {
  margin-bottom: 36px;
}

.hero__panel {
  padding: 36px 32px 32px;
  background: linear-gradient(155deg, var(--surface-lit) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--glow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 6px 14px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tv);
  background: var(--tv-dim);
  border-radius: 999px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.brand-title .omy {
  color: var(--omy);
  text-shadow: 0 0 30px var(--omy-dim);
}

.brand-title .tv {
  color: var(--tv);
}

.brand-title .tracker {
  display: block;
  margin-top: 6px;
  font-size: 0.6em;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

h1 {
  margin: 20px 0 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  margin-top: 16px;
  max-width: 54ch;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.78;
}

.updated {
  margin-top: 18px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(177, 77, 255, 0.85);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.highlights li {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.highlights li:nth-child(1) {
  border-left: 3px solid var(--omy);
}

.highlights li:nth-child(2) {
  border-left: 3px solid var(--tv);
}

.highlights li:nth-child(3) {
  border-left: 3px solid var(--neon);
}

.highlights strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.highlights span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.card {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--omy);
}

.card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}

.card p + p {
  margin-top: 10px;
}

.card--wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(42, 29, 66, 0.5) 100%);
  border-color: rgba(177, 77, 255, 0.16);
}

a {
  color: var(--tv);
  text-decoration: none;
  border-bottom: 1px solid rgba(38, 230, 195, 0.35);
}

a:hover {
  color: var(--omy);
  border-bottom-color: rgba(177, 77, 255, 0.45);
}

.footer {
  margin-top: 36px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--text);
}

.footer strong .omy {
  color: var(--omy);
}

.footer strong .tv {
  color: var(--tv);
}

@media (max-width: 760px) {
  .highlights {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card--wide {
    grid-column: auto;
  }

  .hero__panel {
    padding: 26px 20px 22px;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 32px 0 56px;
    width: min(100% - 24px, 920px);
  }
}
