:root {
  color-scheme: dark;
  --bg: #0c0a10;
  --bg-stage: #14101c;
  --surface: #1c1628;
  --text: #f4f0fa;
  --muted: #9a92b0;
  --omi: #ff6b8a;
  --omi-glow: rgba(255, 107, 138, 0.35);
  --shows: #ffd978;
  --shows-soft: rgba(255, 217, 120, 0.15);
  --spot: #8b7fd4;
  --spot-soft: rgba(139, 127, 212, 0.2);
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 32px 80px rgba(255, 107, 138, 0.12);
  --radius: 12px;
  --font-display: "SF Pro Display", system-ui, -apple-system, sans-serif;
  --font-body:
    "SF Pro Text",
    Inter,
    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);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, var(--omi-glow), transparent 55%),
    radial-gradient(ellipse 40% 35% at 100% 80%, var(--spot-soft), transparent 50%),
    var(--bg);
}

.backdrop__curtain {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 107, 138, 0.12), transparent);
}

.backdrop__curtain--right {
  left: auto;
  right: 0;
  background: linear-gradient(270deg, rgba(139, 127, 212, 0.12), transparent);
}

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

.hero {
  position: relative;
  margin-bottom: 32px;
  padding: 40px 36px 44px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-stage) 0%, var(--surface) 100%);
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 120px;
  background: radial-gradient(ellipse at center bottom, var(--shows-soft), transparent 70%);
  pointer-events: none;
}

.spotlight {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 22px;
}

.spotlight span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--shows);
  box-shadow: 0 0 12px var(--shows);
  animation: blink 2s ease-in-out infinite;
}

.spotlight span:nth-child(2) {
  animation-delay: 0.3s;
  background: var(--omi);
  box-shadow: 0 0 12px var(--omi);
}

.spotlight span:nth-child(3) {
  animation-delay: 0.6s;
  background: var(--spot);
  box-shadow: 0 0 12px var(--spot);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--shows);
}

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

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

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

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

.lead {
  margin: 14px auto 0;
  max-width: 48ch;
  font-size: 0.97rem;
  color: var(--muted);
}

.updated {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
}

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

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

.highlights li:nth-child(1) {
  border-top: 2px solid var(--omi);
}

.highlights li:nth-child(2) {
  border-top: 2px solid var(--shows);
}

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

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

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

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

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

.card--wide {
  grid-column: 1 / -1;
}

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

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

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

a {
  color: var(--omi);
  font-weight: 650;
}

a:hover {
  color: var(--shows);
}

.footer {
  margin-top: 36px;
  padding: 22px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(255, 107, 138, 0.12), rgba(255, 217, 120, 0.08));
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--muted);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

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

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

@media (max-width: 480px) {
  .page {
    padding: 32px 0 56px;
  }

  .hero {
    padding: 30px 22px 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spotlight span {
    animation: none;
  }
}
