:root {
  --ink: #0c1726;
  --navy: #162f52;
  --navy-2: #0f223c;
  --red: #d91f2b;
  --red-dark: #a80e18;
  --paper: #f8fafc;
  --panel: #ffffff;
  --muted: #637083;
  --line: rgba(12, 23, 38, 0.12);
  --cyan: #6ed3ff;
  --yellow: #f4c95d;
  --shadow: 0 24px 70px rgba(12, 23, 38, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 55px rgba(12, 23, 38, 0.14);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: min-height 180ms ease, top 180ms ease, box-shadow 180ms ease;
}

.topbar.is-compact {
  top: 10px;
  min-height: 62px;
  box-shadow: 0 14px 42px rgba(12, 23, 38, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
}

.brand img {
  width: 148px;
  height: auto;
}

.brand span {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  white-space: nowrap;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.74);
}

.main-nav a {
  padding: 9px 12px;
  border-radius: 6px;
  color: #31435b;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover {
  background: #fff;
  color: var(--navy);
}

.live-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--red);
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(217, 31, 43, 0.28);
}

.live-dot,
.status-pill span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.18);
  animation: pulse 1.6s infinite;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 430px);
  align-items: end;
  gap: 36px;
  min-height: 760px;
  padding: 150px max(24px, calc((100vw - 1180px) / 2)) 58px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 23, 38, 0.94), rgba(22, 47, 82, 0.76) 48%, rgba(12, 23, 38, 0.52)),
    var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, var(--paper), rgba(248, 250, 252, 0));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.88;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 42%;
  filter: saturate(0.82) contrast(1.06);
}

.scanline {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 7px;
  mix-blend-mode: overlay;
}

.hero-content,
.hero-control {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker,
.category {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cyan);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(44px, 6.6vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.6vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 850;
}

.button.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 16px 32px rgba(217, 31, 43, 0.3);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  box-shadow: none;
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
}

.button-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.play-icon::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 5px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.press-icon::before,
.press-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  border: 2px solid currentColor;
}

.press-icon::before {
  top: 3px;
  height: 11px;
}

.press-icon::after {
  top: 7px;
  height: 0;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 10px;
  margin-top: 54px;
}

.signal-grid div {
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.signal-grid strong {
  display: block;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.signal-grid span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.hero-control {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 16, 30, 0.72);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
}

.control-head,
.now-playing,
.ticker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.control-head {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(217, 31, 43, 0.9);
}

.status-pill span {
  width: 7px;
  height: 7px;
}

.broadcast-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  background: #08101d;
}

.broadcast-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  background: rgba(217, 31, 43, 0.92);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.play-button:hover,
.watch-badge:hover {
  filter: brightness(1.05);
  transform: translate(-50%, -50%) scale(1.04);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
}

.now-playing {
  align-items: flex-start;
  flex-direction: column;
  margin: 16px 0;
}

.now-playing p,
.now-playing h2 {
  margin: 0;
}

.now-playing p {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.now-playing h2 {
  color: #fff;
  font-size: 26px;
  line-height: 1.1;
}

.now-playing span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.ticker {
  overflow: hidden;
  justify-content: flex-start;
  min-height: 40px;
  border-radius: 6px;
  color: #07101d;
  background: var(--yellow);
  white-space: nowrap;
}

.ticker span {
  flex: 0 0 auto;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 850;
  animation: ticker 16s linear infinite;
}

.program-strip,
.poll-section,
.content-band,
.archive-section,
.press-section,
.studio-section,
.contact-section {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.program-strip {
  margin-top: -44px;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.program-strip .section-kicker {
  margin-left: 4px;
}

.schedule {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.schedule article {
  min-height: 124px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.schedule article.is-active {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.schedule time {
  display: block;
  color: var(--red);
  font-weight: 900;
}

.schedule article.is-active time {
  color: var(--cyan);
}

.schedule h3,
.schedule p,
.feature-grid h3,
.side-stories p,
.archive-grid h3,
.archive-grid p,
.press-copy h2,
.press-copy p,
.studio-card h2,
.studio-card h3,
.studio-card p,
.contact-section h2 {
  margin: 0;
}

.schedule h3 {
  margin-top: 8px;
  font-size: 18px;
}

.schedule p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.schedule article.is-active p {
  color: rgba(255, 255, 255, 0.68);
}

.poll-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(540px, 1fr);
  gap: clamp(28px, 4.2vw, 70px);
  align-items: start;
  padding: 76px 0 32px;
}

.poll-copy {
  position: sticky;
  top: 110px;
}

.poll-copy h2,
.poll-copy p {
  margin: 0;
}

.poll-copy h2 {
  max-width: 10.8ch;
  font-size: clamp(30px, 3.2vw, 50px);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
}

.poll-copy > p:not(.section-kicker) {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.poll-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 55px rgba(12, 23, 38, 0.08);
}

.poll-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.poll-option {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  min-height: 82px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.poll-option:hover {
  border-color: rgba(22, 47, 82, 0.28);
  background: #fff;
  transform: translateY(-2px);
}

.poll-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.poll-option:has(input:checked) {
  border-color: var(--party-color);
  background: color-mix(in srgb, var(--party-color) 8%, #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--party-color) 40%, transparent);
}

.party-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--party-color);
  border: 1px solid color-mix(in srgb, var(--party-color) 22%, #d9e0ea);
  background: #fff;
  font-size: 16px;
  font-weight: 950;
}

.party-mark img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.poll-option.is-featured .party-mark img {
  width: 92%;
  height: 92%;
}

.poll-option strong,
.poll-option small {
  display: block;
  min-width: 0;
}

.poll-option strong {
  overflow-wrap: anywhere;
  font-size: 16px;
  line-height: 1.12;
}

.poll-option small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.poll-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.poll-actions p {
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-align: right;
}

.poll-results {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.poll-result {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 58px;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.poll-result span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.poll-bar {
  position: relative;
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: #edf1f6;
}

.poll-bar i {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: var(--party-color, var(--navy));
}

.content-band {
  padding: 92px 0 58px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading h2,
.archive-head h2,
.press-copy h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  gap: 18px;
}

.lead-story {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 55px rgba(12, 23, 38, 0.1);
}

.lead-story img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.lead-story div {
  padding: 28px;
}

.lead-story h3 {
  max-width: 720px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
}

.lead-story p {
  max-width: 660px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.side-stories {
  display: grid;
  gap: 14px;
}

.side-stories article {
  min-height: 166px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.side-stories span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.side-stories h3 {
  font-size: 25px;
  line-height: 1.1;
}

.side-stories p {
  margin-top: 9px;
  color: var(--muted);
}

.archive-section {
  padding: 30px 0 78px;
}

.archive-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.filter-tabs button {
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 850;
}

.filter-tabs button.is-selected {
  color: #fff;
  background: var(--navy);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.archive-grid article {
  min-width: 0;
  padding: 10px 10px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  transition: opacity 150ms ease, transform 150ms ease;
}

.archive-grid article.is-hidden {
  display: none;
}

.archive-grid article:hover {
  transform: translateY(-4px);
}

.thumb {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(22, 47, 82, 0.96), rgba(217, 31, 43, 0.82)),
    var(--navy);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb > span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  min-height: 28px;
  padding: 5px 8px;
  border-radius: 4px;
  color: #fff;
  background: rgba(12, 23, 38, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.watch-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  min-height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--red);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(12, 23, 38, 0.24);
  transform: none;
}

.watch-badge::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 7px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #fff;
}

.watch-badge:hover {
  transform: translateY(-1px);
}

.abstract-thumb > span,
.studio-thumb > span {
  position: static;
  min-height: auto;
  color: #fff;
  background: transparent;
  font-size: 54px;
  line-height: 1;
}

.studio-thumb {
  background:
    linear-gradient(90deg, rgba(110, 211, 255, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(110, 211, 255, 0.14) 1px, transparent 1px),
    #111b2b;
  background-size: 26px 26px;
}

.studio-thumb > span {
  padding: 8px 12px;
  border: 2px solid var(--red);
  border-radius: 6px;
  color: var(--red);
  font-size: 28px;
}

.archive-grid p {
  margin: 16px 10px 6px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archive-grid h3 {
  margin-inline: 10px;
  font-size: 19px;
  line-height: 1.16;
}

.press-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: 26px;
  padding: 44px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 34, 60, 0.97), rgba(22, 47, 82, 0.9)),
    var(--navy);
  box-shadow: var(--shadow);
}

.press-copy .section-kicker {
  color: var(--cyan);
}

.press-copy p {
  max-width: 640px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.press-panel {
  display: grid;
  gap: 12px;
}

.press-panel a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 108px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-size: 20px;
  font-weight: 900;
}

.press-panel a:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.press-panel span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 650;
}

.studio-section {
  display: grid;
  grid-template-columns: 1.2fr 0.62fr 0.62fr 0.9fr;
  gap: 14px;
  padding: 76px 0;
}

.studio-card {
  min-height: 190px;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 45px rgba(12, 23, 38, 0.09);
}

.dark-card {
  color: #fff;
  background: var(--ink);
}

.dark-card .section-kicker {
  color: var(--cyan);
}

.dark-card h2 {
  max-width: 430px;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.04;
}

.metric-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: var(--navy);
}

.metric-card.red {
  background: var(--red);
}

.metric-card strong {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.95;
}

.metric-card span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.note-card {
  border: 1px solid var(--line);
}

.note-card h3 {
  font-size: 25px;
}

.note-card p {
  margin-top: 12px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.68fr);
  gap: 32px;
  align-items: center;
  padding: 42px 0 88px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
}

.video-modal.is-open {
  display: grid;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 30, 0.78);
  backdrop-filter: blur(12px);
}

.video-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #07101d;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
}

.video-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px 16px;
  color: #fff;
}

.video-dialog-head .section-kicker {
  margin-bottom: 6px;
  color: var(--cyan);
}

.video-dialog-head h2 {
  margin: 0;
  font-size: clamp(21px, 3vw, 34px);
  line-height: 1.1;
}

.modal-close {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 11px;
  width: 18px;
  height: 2px;
  background: #fff;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.signup-form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.signup-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.signup-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.signup-form input {
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.signup-form input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(22, 47, 82, 0.1);
}

.signup-form p {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 32px max(24px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer img {
  width: 152px;
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: #fff;
}

.footer p {
  margin: 0;
  text-align: right;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.72);
  }
}

@keyframes ticker {
  from {
    transform: translateX(20%);
  }
  to {
    transform: translateX(-260%);
  }
}

@media (max-width: 1280px) {
  .poll-section {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .poll-copy {
    position: static;
  }

  .poll-copy h2 {
    max-width: 720px;
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.08;
  }

  .poll-copy > p:not(.section-kicker) {
    max-width: 680px;
  }
}

@media (max-width: 1020px) {
  .topbar {
    grid-template-columns: auto auto auto;
  }

  .brand img {
    width: 128px;
  }

  .brand span {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    display: none;
    grid-template-columns: 1fr;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 13px 12px;
  }

  .menu-toggle {
    justify-self: end;
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--navy);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 138px;
  }

  .hero-control {
    max-width: 520px;
  }

  .schedule,
  .archive-grid,
  .studio-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading,
  .feature-grid,
  .poll-section,
  .press-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .poll-copy {
    position: static;
  }

  .poll-copy h2 {
    max-width: 100%;
  }

  .archive-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .topbar {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 60px;
    padding: 8px;
  }

  .brand img {
    width: 108px;
  }

  .live-link {
    min-height: 42px;
    padding: 0 10px;
    font-size: 13px;
  }

  .hero {
    gap: 26px;
    padding: 114px 16px 46px;
  }

  .hero h1 {
    font-size: clamp(38px, 14vw, 58px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .signal-grid,
  .schedule,
  .archive-grid,
  .studio-section {
    grid-template-columns: 1fr;
  }

  .signal-grid div {
    min-height: 78px;
  }

  .hero-control {
    padding: 10px;
  }

  .program-strip {
    width: calc(100% - 20px);
    margin-top: -18px;
    padding: 12px;
  }

  .content-band,
  .poll-section,
  .archive-section,
  .studio-section {
    padding-block: 58px;
  }

  .poll-section {
    gap: 18px;
    padding-bottom: 24px;
  }

  .poll-copy h2 {
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1.12;
  }

  .poll-copy > p:not(.section-kicker) {
    font-size: 15px;
  }

  .poll-card {
    padding: 12px;
  }

  .poll-options {
    grid-template-columns: 1fr;
  }

  .poll-option {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 74px;
  }

  .party-mark {
    width: 52px;
    height: 52px;
  }

  .poll-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .poll-actions p {
    text-align: left;
  }

  .poll-result {
    grid-template-columns: 92px minmax(0, 1fr) 50px;
    gap: 8px;
  }

  .lead-story div,
  .press-section,
  .signup-form {
    padding: 20px;
  }

  .filter-tabs {
    width: 100%;
  }

  .filter-tabs button {
    flex: 1 1 auto;
  }

  .press-section,
  .contact-section,
  .footer {
    width: calc(100% - 20px);
  }

  .contact-section {
    padding-top: 0;
  }

  .signup-form div {
    grid-template-columns: 1fr;
  }

  .video-modal {
    padding: 10px;
  }

  .video-dialog-head {
    padding: 14px;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer p {
    text-align: left;
  }
}
