:root {
  color-scheme: dark;
  --ink: #080806;
  --ink-2: #11100d;
  --paper: #fff1d6;
  --muted: #c8b996;
  --dim: #8e846d;
  --red: #f2241d;
  --red-dark: #84110d;
  --green: #8a9b43;
  --gold: #d4a45d;
  --charcoal: #2b2923;
  --line: rgba(255, 241, 214, 0.16);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --active-platform-color: #f2241d;
  --spice-level: 3;
  --page-gutter: clamp(1rem, 4vw, 3rem);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(100deg, transparent 0 58%, rgba(242, 36, 29, 0.08) 58% 68%, transparent 68%),
    radial-gradient(circle at 18% 16%, rgba(242, 36, 29, 0.18), transparent 25rem),
    radial-gradient(circle at 82% 24%, rgba(138, 155, 67, 0.14), transparent 24rem),
    #080806;
  color: var(--paper);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 241, 214, 0.03) 0,
      rgba(255, 241, 214, 0.03) 1px,
      transparent 1px,
      transparent 7px
    );
  opacity: 0.7;
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  z-index: -3;
  height: 36vh;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 36%, rgba(212, 164, 93, 0.13) 36% 39%, transparent 39%),
    linear-gradient(35deg, transparent 0 52%, rgba(242, 36, 29, 0.16) 52% 55%, transparent 55%);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:where(a, button, input) {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 18ch;
  margin-bottom: 1rem;
  font-size: clamp(3.05rem, 5.2vw, 5.8rem);
  font-weight: 950;
  line-height: 0.82;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5.4vw, 5.5rem);
  font-weight: 930;
  line-height: 0.9;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
  line-height: 1.05;
}

p {
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: break-word;
}

#spice-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cursor-light {
  position: fixed;
  left: var(--cursor-x, 50%);
  top: var(--cursor-y, 50%);
  z-index: -1;
  width: 28rem;
  height: 28rem;
  pointer-events: none;
  background: radial-gradient(circle, rgba(242, 36, 29, 0.16), rgba(212, 164, 93, 0.07) 38%, transparent 68%);
  transform: translate(-50%, -50%);
}

.broadcast-header {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  width: min(1220px, calc(100% - 1.5rem));
  min-height: 4.05rem;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-left: 0.42rem solid var(--red);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(242, 36, 29, 0.16), transparent 30%),
    rgba(7, 7, 5, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.broadcast-header[data-reveal] {
  transform: translateX(-50%) translateY(-10px);
}

.broadcast-header[data-reveal].is-visible {
  transform: translateX(-50%) translateY(0);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  font-weight: 950;
  white-space: nowrap;
}

.brand-lockup img {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 241, 214, 0.24);
}

.channel-nav {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.channel-nav a,
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  border-radius: var(--radius);
  font-weight: 900;
}

.channel-nav a {
  padding: 0.75rem 0.9rem;
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.channel-nav a:hover {
  color: var(--paper);
  background: rgba(255, 241, 214, 0.08);
}

.header-cta {
  padding: 0.78rem 1rem;
  color: #090806;
  background: var(--paper);
  font-size: 0.88rem;
  white-space: nowrap;
}

.ticker {
  position: fixed;
  top: 5.5rem;
  left: 50%;
  z-index: 25;
  width: min(1220px, calc(100% - 1.5rem));
  overflow: hidden;
  border: 1px solid rgba(242, 36, 29, 0.24);
  border-radius: var(--radius);
  background: rgba(132, 17, 13, 0.62);
  transform: translateX(-50%);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker span {
  flex: 0 0 auto;
  padding: 0.55rem 1.1rem;
  color: #fff7e9;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  position: relative;
  width: min(1220px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.hero {
  min-height: 100vh;
  padding-top: 9.6rem;
}

.on-air-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(28rem, 1.22fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(1320px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 43rem;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.button {
  position: relative;
  min-height: 3.1rem;
  overflow: hidden;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.hot {
  color: white;
  border-color: rgba(255, 112, 80, 0.48);
  background: linear-gradient(135deg, var(--red), #ff7439);
  box-shadow: 0 18px 50px rgba(242, 36, 29, 0.22);
}

.button.ghost {
  color: var(--paper);
  background: rgba(255, 241, 214, 0.065);
}

.zapper-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(7rem, 10vw, 8.5rem);
  gap: 1rem;
  align-items: stretch;
}

.broadcast-screen {
  position: relative;
  display: grid;
  min-height: clamp(26rem, 36vw, 32rem);
  overflow: hidden;
  border: 1px solid rgba(255, 241, 214, 0.18);
  border-radius: 1.4rem;
  background:
    linear-gradient(120deg, rgba(255, 241, 214, 0.12), transparent 26%),
    radial-gradient(circle at 72% 20%, color-mix(in srgb, var(--active-platform-color) 30%, transparent), transparent 26rem),
    #040403;
  box-shadow: var(--shadow);
}

.broadcast-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(255, 241, 214, 0.06) 48% 49%, transparent 50%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 8px);
  mix-blend-mode: screen;
}

.screen-topline,
.screen-main,
.program-rail {
  position: relative;
  z-index: 1;
}

.screen-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 241, 214, 0.12);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(242, 36, 29, 0.68);
  animation: pulse 1.6s ease-out infinite;
}

.screen-main {
  display: grid;
  grid-template-columns: minmax(8rem, 0.72fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.screen-logo {
  position: relative;
  display: grid;
  place-items: center;
}

.screen-logo::after {
  content: "";
  position: absolute;
  inset: -0.7rem;
  border: 1px dashed color-mix(in srgb, var(--active-platform-color) 55%, transparent);
  border-radius: 50%;
  animation: spin 14s linear infinite;
}

.screen-logo img {
  width: min(100%, clamp(11rem, 20vw, 18rem));
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 26px 60px rgba(0, 0, 0, 0.54));
}

.screen-copy p:first-child {
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.screen-copy h2 {
  margin-bottom: 0.8rem;
  color: color-mix(in srgb, var(--active-platform-color) 35%, var(--paper));
}

.screen-copy p {
  max-width: 30rem;
}

.program-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  align-self: end;
  padding: 1rem;
}

.program-rail span {
  min-height: 4.4rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 241, 214, 0.13);
  border-radius: var(--radius);
  color: var(--paper);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--active-platform-color) 18%, transparent), rgba(255, 241, 214, 0.04));
  font-weight: 900;
  overflow-wrap: anywhere;
}

.hero-remote {
  display: grid;
  gap: 0.55rem;
  align-content: center;
  padding: 0.75rem;
  border: 1px solid rgba(255, 241, 214, 0.18);
  border-radius: 2.3rem;
  background:
    linear-gradient(180deg, rgba(255, 241, 214, 0.14), rgba(255, 241, 214, 0.03)),
    #14120f;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.hero-remote button,
.guide-row,
.pocket-remote button {
  border: 1px solid rgba(255, 241, 214, 0.14);
  color: var(--muted);
  background: rgba(255, 241, 214, 0.06);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.hero-remote button {
  min-height: 3.45rem;
  min-width: 0;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
}

.hero-remote button:hover,
.hero-remote button.active,
.guide-row:hover,
.guide-row.active {
  color: var(--paper);
  border-color: color-mix(in srgb, var(--active-platform-color) 55%, transparent);
  background: color-mix(in srgb, var(--active-platform-color) 20%, rgba(255, 241, 214, 0.06));
  transform: translateY(-2px);
}

.section-intro {
  width: min(100%, 58rem);
  margin-bottom: clamp(2rem, 5vw, 3.8rem);
}

.section-intro.right {
  margin-left: auto;
  text-align: right;
}

.section-intro p:not(.eyebrow) {
  max-width: 43rem;
}

.section-intro.right p:not(.eyebrow) {
  margin-left: auto;
}

.guide-board {
  overflow: hidden;
  border: 1px solid rgba(255, 241, 214, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 241, 214, 0.07), rgba(255, 241, 214, 0.02)),
    #0d0c09;
  box-shadow: var(--shadow);
}

.guide-timebar,
.guide-row {
  display: grid;
  grid-template-columns: 4.5rem 10rem minmax(0, 1fr) 11rem;
  gap: 1rem;
  align-items: center;
}

.guide-timebar {
  padding: 0.85rem 1rem;
  color: var(--gold);
  background: rgba(242, 36, 29, 0.16);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.guide-row {
  width: 100%;
  min-height: 5.2rem;
  padding: 0.95rem 1rem;
  border-width: 1px 0 0;
  border-radius: 0;
  text-align: left;
}

.guide-channel {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-weight: 950;
}

.guide-row strong {
  color: var(--paper);
  font-size: 1.12rem;
  min-width: 0;
}

.guide-row span:nth-child(3) {
  color: var(--muted);
}

.guide-row em {
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.app-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(14rem, auto);
  gap: 1rem;
}

.app-ticket {
  position: relative;
  display: flex;
  min-height: 14rem;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 1.1rem;
  border: 1px solid rgba(255, 241, 214, 0.15);
  border-left: 0.42rem solid var(--gold);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(212, 164, 93, 0.2), transparent 12rem),
    #100f0c;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  transition:
    transform 190ms ease,
    border-color 190ms ease;
}

.app-ticket::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 241, 214, 0.12) 0 2px, transparent 2.5px);
  background-size: 1.3rem 1.3rem;
  mask-image: linear-gradient(90deg, transparent, black 60%, transparent);
  opacity: 0.35;
}

.app-ticket:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 241, 214, 0.33);
}

.app-ticket.tall {
  grid-row: span 2;
}

.app-ticket.wide {
  grid-column: span 2;
}

.app-ticket.red {
  border-left-color: var(--red);
  background:
    radial-gradient(circle at 100% 0, rgba(242, 36, 29, 0.24), transparent 12rem),
    #100f0c;
}

.app-ticket.green {
  border-left-color: var(--green);
  background:
    radial-gradient(circle at 100% 0, rgba(138, 155, 67, 0.28), transparent 12rem),
    #100f0c;
}

.app-ticket.gold {
  border-left-color: var(--gold);
}

.app-ticket span,
.recipe span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.app-ticket h3,
.app-ticket p {
  position: relative;
  z-index: 1;
}

.mix {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(22rem, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.mix-copy {
  max-width: 35rem;
}

.mixer-panel {
  display: grid;
  grid-template-columns: minmax(11rem, 0.58fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 241, 214, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(255, 241, 214, 0.08), rgba(255, 241, 214, 0.025)),
    #0c0b08;
  box-shadow: var(--shadow);
}

.meter-window {
  display: grid;
  place-items: center;
  min-height: 17rem;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 35%, rgba(242, 36, 29, 0.38), transparent 48%),
    #050504;
}

.meter-window span,
.meter-window small {
  grid-area: 1 / 1;
}

.meter-window span {
  color: #fff;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 950;
}

.meter-window small {
  align-self: end;
  margin-bottom: 2.2rem;
  color: var(--gold);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spice-slider {
  display: grid;
  align-self: start;
  gap: 0.8rem;
  color: var(--paper);
  font-weight: 950;
  text-transform: uppercase;
}

.spice-slider input {
  width: 100%;
  accent-color: var(--red);
}

.equalizer {
  display: grid;
  grid-column: 2;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.65rem;
  align-items: end;
  height: 8rem;
}

.equalizer span {
  height: calc((var(--bar, 1) + var(--spice-level)) * 10%);
  min-height: 1.3rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--red), var(--gold));
}

.equalizer span:nth-child(1) {
  --bar: 0.6;
}

.equalizer span:nth-child(2) {
  --bar: 1.8;
}

.equalizer span:nth-child(3) {
  --bar: 2.5;
}

.equalizer span:nth-child(4) {
  --bar: 1.2;
}

.equalizer span:nth-child(5) {
  --bar: 2.8;
}

.mix-stats {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.mix-stats article {
  padding: 1rem;
  border: 1px solid rgba(255, 241, 214, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 241, 214, 0.055);
}

.mix-stats strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
}

.mix-stats span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.recipe {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.recipe article {
  min-height: 20rem;
  padding: 1rem;
  border: 1px solid rgba(255, 241, 214, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 241, 214, 0.075), rgba(255, 241, 214, 0.02)),
    #0e0d0a;
}

.recipe span {
  display: inline-flex;
  margin-bottom: 5.5rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(12rem, 0.36fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  border: 1px solid rgba(255, 241, 214, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(242, 36, 29, 0.18), rgba(138, 155, 67, 0.08)),
    #0a0907;
  box-shadow: var(--shadow);
}

.contact-panel img {
  width: min(100%, 19rem);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 241, 214, 0.2);
}

.pocket-remote {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 24;
  display: grid;
  gap: 0.4rem;
  place-items: center;
  padding: 0.55rem;
  border: 1px solid rgba(255, 241, 214, 0.18);
  border-radius: 2rem;
  background: rgba(10, 9, 7, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.remote-ring {
  display: flex;
  gap: 0.4rem;
}

.pocket-remote button {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  color: var(--paper);
  font-size: 0.74rem;
  font-weight: 950;
}

.pocket-remote button:hover {
  color: white;
  border-color: rgba(242, 36, 29, 0.5);
  background: rgba(242, 36, 29, 0.22);
  transform: translateY(-2px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 16px rgba(242, 36, 29, 0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1060px) {
  .broadcast-header {
    grid-template-columns: auto 1fr;
  }

  .channel-nav {
    display: none;
  }

  .on-air-grid,
  .mix,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .zapper-stage {
    grid-template-columns: 1fr;
  }

  .hero-remote {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border-radius: var(--radius);
  }

  .guide-timebar,
  .guide-row {
    grid-template-columns: 4rem 8rem minmax(0, 1fr);
  }

  .guide-timebar span:last-child,
  .guide-row em {
    display: none;
  }

  .app-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recipe {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .broadcast-header,
  .ticker {
    width: calc(100% - 1rem);
  }

  .broadcast-header {
    top: 0.5rem;
    min-height: 3.65rem;
    gap: 0.55rem;
  }

  .brand-lockup span {
    max-width: 39vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-lockup img {
    width: 2.35rem;
    height: 2.35rem;
  }

  .header-cta {
    min-height: 2.35rem;
    padding: 0.62rem 0.72rem;
    font-size: 0.76rem;
  }

  .ticker {
    top: 4.65rem;
  }

  .hero {
    padding-top: 8.4rem;
  }

  .section,
  .on-air-grid {
    width: calc(100% - 2rem);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 14vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.6rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .broadcast-screen {
    min-height: auto;
  }

  .screen-main,
  .mixer-panel {
    grid-template-columns: 1fr;
  }

  .screen-logo img {
    width: min(52vw, 13rem);
  }

  .program-rail,
  .mix-stats,
  .recipe,
  .app-wall {
    grid-template-columns: 1fr;
  }

  .program-rail,
  .hero-remote {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .program-rail span {
    min-height: 3.4rem;
    padding: 0.6rem;
    font-size: 0.78rem;
  }

  .equalizer {
    grid-column: 1;
  }

  .app-ticket.tall,
  .app-ticket.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .guide-timebar {
    display: none;
  }

  .guide-row {
    grid-template-columns: 3.6rem 1fr;
    gap: 0.7rem;
  }

  .guide-row span:nth-child(3) {
    grid-column: 1 / -1;
  }

  .pocket-remote {
    right: 0.5rem;
    bottom: 0.5rem;
    transform: scale(0.88);
    transform-origin: right bottom;
  }
}

@media (max-width: 1220px) {
  h1 {
    font-size: clamp(3rem, 5vw, 4.9rem);
  }

  h2 {
    font-size: clamp(2.1rem, 4.8vw, 4.35rem);
  }

  .on-air-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(25rem, 1.18fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
  }

  .broadcast-screen {
    min-height: clamp(24rem, 38vw, 30rem);
  }
}

@media (max-width: 1060px) {
  :root {
    --page-gutter: clamp(1rem, 5vw, 2.25rem);
  }

  .on-air-grid,
  .mix,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .zapper-stage {
    grid-template-columns: 1fr;
  }

  .hero-remote {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border-radius: var(--radius);
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 48rem;
  }

  h1 {
    max-width: 13ch;
    font-size: clamp(3.2rem, 8vw, 5.6rem);
  }

  .guide-timebar,
  .guide-row {
    grid-template-columns: 4rem minmax(7rem, 0.32fr) minmax(0, 1fr);
  }

  .contact-panel img {
    width: min(18rem, 54vw);
  }
}

@media (max-width: 860px) {
  h1 {
    max-width: 15ch;
    font-size: clamp(2.8rem, 8.6vw, 4.6rem);
  }

  .hero {
    padding-top: 8.7rem;
  }

  .broadcast-screen {
    border-radius: 1rem;
  }

  .screen-main {
    grid-template-columns: minmax(7rem, 0.5fr) minmax(0, 1fr);
    padding: clamp(1rem, 4vw, 2rem);
  }

  .screen-logo img {
    width: min(100%, 13rem);
  }

  .program-rail span {
    min-height: 3.5rem;
    font-size: 0.84rem;
  }

  .mixer-panel {
    grid-template-columns: minmax(10rem, 0.48fr) minmax(0, 1fr);
  }

  .meter-window {
    min-height: 13rem;
  }
}

@media (max-width: 700px) {
  :root {
    --page-gutter: 1rem;
  }

  .broadcast-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand-lockup span {
    max-width: 48vw;
  }

  h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.55rem);
    line-height: 0.92;
  }

  h2 {
    font-size: clamp(1.85rem, 8.8vw, 3rem);
    line-height: 0.96;
  }

  .section {
    padding: clamp(4rem, 15vw, 6rem) 0;
  }

  .screen-logo img {
    width: min(44vw, 11rem);
  }

  .screen-copy {
    text-align: center;
  }

  .screen-copy p {
    margin-inline: auto;
  }

  .program-rail span {
    min-height: 3.1rem;
    font-size: 0.76rem;
  }

  .hero-remote {
    gap: 0.45rem;
    padding: 0.55rem;
  }

  .hero-remote button {
    min-height: 2.75rem;
    padding-inline: 0.35rem;
    font-size: 0.76rem;
  }

  .guide-row {
    min-height: auto;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .header-cta {
    max-width: 8.1rem;
    white-space: normal;
    line-height: 1.05;
  }

  .ticker span {
    padding: 0.48rem 0.9rem;
    font-size: 0.68rem;
  }

  .hero {
    padding-top: 8.1rem;
  }

  h1 {
    font-size: clamp(2.1rem, 10vw, 2.95rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .button {
    min-height: 2.85rem;
    padding: 0.8rem 0.9rem;
  }

  .screen-topline {
    gap: 0.6rem;
    padding: 0.8rem;
    font-size: 0.68rem;
  }

  .screen-main {
    padding: 1rem;
  }

  .program-rail {
    gap: 0.45rem;
    padding: 0.75rem;
  }

  .program-rail span {
    min-height: 2.8rem;
    padding: 0.52rem;
    font-size: 0.7rem;
  }

  .app-ticket,
  .recipe article {
    min-height: 13rem;
  }

  .recipe span {
    margin-bottom: 3.2rem;
  }

  .meter-window {
    min-height: 12rem;
  }

  .meter-window span {
    font-size: 5rem;
  }

  .mix-stats {
    grid-template-columns: 1fr;
  }

  .contact-panel img {
    width: min(13rem, 68vw);
  }
}

@media (max-width: 360px) {
  .brand-lockup span {
    display: none;
  }

  .header-cta {
    max-width: 7.4rem;
    font-size: 0.7rem;
  }

  .hero-remote,
  .program-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screen-topline {
    letter-spacing: 0.08em;
  }

  .pocket-remote {
    display: none;
  }
}

@media (max-height: 720px) and (min-width: 900px) {
  .hero {
    min-height: 100vh;
    padding-top: 8.8rem;
  }

  .broadcast-screen {
    min-height: 25rem;
  }

  h1 {
    font-size: clamp(3rem, 4.8vw, 5.1rem);
  }
}

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

  #spice-canvas,
  .cursor-light {
    display: none;
  }
}
