:root {
  --navy: #253c57;
  --navy-deep: #07111d;
  --red: #da221b;
  --black: #000000;
  --white: #ffffff;
  --paper: #f5f7fa;
  --line: #d9e0e8;
  --text: #152232;
  --muted: #647184;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ffffff);
  box-shadow: 0 0 18px rgba(218, 34, 27, 0.52);
}

img,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

button {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(218, 34, 27, 0.5);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.top-strip {
  display: flex;
  gap: 18px;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  background: var(--black);
  color: var(--white);
  padding: 8px 16px;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.top-strip span:first-child {
  color: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(20, 34, 50, 0.1);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 12px 16px;
}

.brand img {
  display: block;
  width: clamp(150px, 44vw, 220px);
  height: auto;
}

.menu-toggle {
  display: inline-grid;
  place-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-menu {
  position: fixed;
  inset: 95px 16px auto 16px;
  display: grid;
  gap: 6px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-menu a {
  position: relative;
  padding: 12px;
  border-radius: 6px;
  color: var(--navy);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.site-menu a:hover {
  background: #eef3f8;
}

.site-menu a.is-active {
  color: var(--red);
}

.site-menu a.is-active::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 6px;
  left: 12px;
  height: 2px;
  background: var(--red);
}

.header-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.header-cta {
  padding: 10px 12px;
  background: var(--red);
  color: var(--white);
  font-size: 0.82rem;
}

.hero {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(135deg, rgba(37, 60, 87, 0.94), rgba(0, 0, 0, 0.96)),
    radial-gradient(circle at 20% 20%, rgba(218, 34, 27, 0.22), transparent 28%);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  right: -18vw;
  bottom: -28vw;
  width: 56vw;
  height: 56vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 62%);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 22px;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 26px 16px 44px;
}

.hero-copy {
  display: grid;
  gap: 12px;
  order: 2;
}

.live-pill,
.eyebrow {
  margin: 0;
  color: var(--red);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.coverage-eyebrow {
  color: var(--navy);
}

.live-pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  background: rgba(218, 34, 27, 0.14);
  border: 1px solid rgba(218, 34, 27, 0.38);
  border-radius: 999px;
  color: var(--white);
}

.live-pill span,
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(218, 34, 27, 0.22);
}

.live-pill span,
.status-dot {
  animation: livePulse 1.8s ease-in-out infinite;
}

.hero-brand-lockup {
  display: grid;
  gap: 4px;
  width: fit-content;
}

.hero-brand-lockup strong {
  color: var(--white);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero-logo {
  width: min(280px, 78vw);
  height: auto;
  padding: 8px 0;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.28));
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Archivo Black", Arial, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.55rem, 16vw, 4.8rem);
}

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

h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-lead,
.hero-text,
.section-heading p,
.about-card p,
.contact-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.hero-lead {
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 6px;
}

.primary-btn {
  background: var(--red);
  color: var(--white);
  padding: 13px 18px;
  box-shadow: 0 14px 30px rgba(218, 34, 27, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  padding: 13px 18px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-btn:hover,
.secondary-btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.primary-btn:hover,
.header-cta:hover {
  background: #f0342d;
  box-shadow: 0 18px 38px rgba(218, 34, 27, 0.34);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-insights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 4px;
}

.hero-insights article {
  padding: 12px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.hero-insights span,
.news-brief span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-insights strong {
  display: block;
  color: var(--white);
  font-family: "Archivo Black", Arial, sans-serif;
  font-size: clamp(1rem, 4vw, 1.35rem);
  line-height: 1.05;
}

.player-panel {
  position: relative;
  isolation: isolate;
  order: 1;
  scroll-margin-top: 104px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.player-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(218, 34, 27, 0.42), rgba(37, 60, 87, 0.2));
  opacity: 0.7;
}

.player-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
}

.player-head {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.4);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.expand-live {
  margin-left: auto;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.expand-live:hover {
  background: #f0342d;
}

.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

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

.scroll-cue {
  position: relative;
  display: none;
  width: fit-content;
  margin: -36px auto 22px;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 26px;
  margin: 0 auto 7px;
  background: linear-gradient(to bottom, var(--red), rgba(255, 255, 255, 0.28));
  animation: cueDrop 1.8s ease-in-out infinite;
}

.section-pad {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 54px 16px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.section-heading p:not(.eyebrow),
.about-card p,
.contact-copy p {
  color: var(--muted);
}

.news-card,
.about-card,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(20, 34, 50, 0.08);
}

.news-card {
  padding: 10px;
  overflow: hidden;
}

.news-shell {
  display: grid;
  gap: 16px;
}

.news-brief {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(20, 34, 50, 0.16);
}

.news-brief strong {
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.news-brief p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.news-card iframe {
  display: block;
  min-height: 420px;
}

.about-section {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(135deg, rgba(37, 60, 87, 0.08), rgba(218, 34, 27, 0.05)),
    #f8fafc;
}

.about-card {
  position: relative;
  display: grid;
  gap: 24px;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(37, 60, 87, 0.98), rgba(8, 17, 29, 0.98)),
    var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(20, 34, 50, 0.18);
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 38px 38px;
}

.about-copy,
.about-highlights {
  position: relative;
}

.about-copy {
  display: grid;
  gap: 14px;
}

.about-copy h2 {
  color: var(--white);
}

.about-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.about-highlights {
  display: grid;
  gap: 14px;
}

.about-live-card,
.about-highlights ul {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.about-live-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  transition: transform 180ms ease, background 180ms ease;
}

.about-live-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.about-live-card span {
  width: fit-content;
  padding: 6px 10px;
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: 700;
}

.about-live-card strong {
  color: var(--white);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.about-live-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.about-highlights ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px 18px 18px 34px;
  color: rgba(255, 255, 255, 0.84);
}

.about-highlights li::marker {
  color: var(--red);
}

.coverage-section {
  position: relative;
}

.coverage-section::before {
  content: "";
  position: absolute;
  inset: 24px 16px auto 16px;
  height: 150px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(37, 60, 87, 0.08), rgba(218, 34, 27, 0.06));
  border-radius: var(--radius);
}

.coverage-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(37, 60, 87, 0.14);
}

.coverage-heading h2 {
  max-width: 780px;
}

.coverage-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.coverage-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  min-height: 188px;
  padding: 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.96)),
    var(--white);
  border: 1px solid rgba(37, 60, 87, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(20, 34, 50, 0.08);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.coverage-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 82px;
  height: 82px;
  background: linear-gradient(135deg, rgba(218, 34, 27, 0.12), transparent 62%);
}

.coverage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(218, 34, 27, 0.28);
  box-shadow: 0 22px 42px rgba(20, 34, 50, 0.14);
}

.coverage-icon {
  display: inline-grid;
  grid-row: span 3;
  place-items: center;
  width: 54px;
  height: 54px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: inset 4px 0 0 var(--red);
}

.coverage-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.coverage-card strong {
  width: fit-content;
  padding: 3px 8px;
  background: rgba(37, 60, 87, 0.08);
  color: var(--navy);
  border-radius: 4px;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 0.78rem;
  line-height: 1.2;
}

.coverage-card h3 {
  align-self: end;
}

.coverage-card p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

.coverage-card.urgent {
  background:
    linear-gradient(135deg, rgba(218, 34, 27, 0.94), rgba(37, 60, 87, 0.98)),
    var(--navy);
  border-color: rgba(218, 34, 27, 0.32);
}

.coverage-card.urgent::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 64%);
}

.coverage-card.urgent .coverage-icon {
  background: var(--white);
  color: var(--red);
  box-shadow: inset 4px 0 0 var(--navy);
}

.coverage-card.urgent strong {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.coverage-card.urgent h3,
.coverage-card.urgent p {
  color: var(--white);
}

.contact-section {
  width: 100%;
  max-width: none;
  background: var(--navy-deep);
  color: var(--white);
}

.contact-grid {
  display: grid;
  gap: 22px;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 0 16px;
}

.contact-copy {
  display: grid;
  gap: 12px;
}

.contact-copy h2 {
  color: var(--white);
}

address {
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
}

.contact-panel {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-button {
  display: grid;
  gap: 2px;
  min-height: 72px;
  padding: 14px;
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
  transition: transform 180ms ease, background 180ms ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  background: #f2f5f8;
}

.contact-button span {
  color: var(--red);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-button strong {
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  border-top: 4px solid var(--red);
}

.footer-inner {
  display: grid;
  gap: 14px;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 28px 16px;
}

.footer-brand img {
  display: block;
  width: min(190px, 66vw);
  height: auto;
}

.footer-wtv {
  color: var(--white);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1;
  text-transform: uppercase;
}

.footer-inner p,
.footer-inner small {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--red);
}

.live-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.live-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.live-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 14, 0.72);
  backdrop-filter: blur(16px);
}

.player-panel.is-expanded {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 210;
  width: min(1120px, calc(100vw - 28px));
  max-height: calc(100svh - 28px);
  transform: translate(-50%, -50%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
}

.player-panel.is-expanded .player-frame {
  max-height: calc(100svh - 84px);
}

.player-panel.is-expanded .expand-live {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 759px) {
  .live-modal__backdrop {
    background: rgba(3, 8, 14, 0.78);
  }

  .player-panel.is-expanded {
    top: 40dvh;
    right: 12px;
    left: 12px;
    width: auto;
    max-width: none;
    max-height: calc(100dvh - 24px);
    transform: translateY(-50%);
  }

  .player-panel.is-expanded .player-head {
    min-height: 48px;
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .player-panel.is-expanded .expand-live {
    min-height: 38px;
    padding: 7px 10px;
  }

  .player-panel.is-expanded .player-frame {
    width: 100%;
    max-height: calc(100dvh - 86px);
    aspect-ratio: 16 / 9;
  }
}

.js-ready .premium-reveal,
.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.reveal[data-split] {
  opacity: 1;
  transform: none;
}

@keyframes livePulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(218, 34, 27, 0.2);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(218, 34, 27, 0.08);
  }
}

@keyframes cueDrop {
  0%,
  100% {
    transform: scaleY(0.7);
    opacity: 0.55;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js-ready [data-reveal],
  [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 520px) {
  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

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

@media (min-width: 760px) {
  .hero-copy,
  .player-panel {
    order: initial;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
    align-items: center;
    min-height: calc(100svh - 101px);
    padding-block: 48px 64px;
  }

  h1 {
    max-width: 9ch;
  }

  .section-heading {
    max-width: 740px;
  }

  .scroll-cue {
    display: block;
  }

  .news-shell {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: end;
  }

  .news-shell .section-heading {
    margin-bottom: 0;
  }

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

  .about-card {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    align-items: center;
    padding: 42px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
    align-items: start;
  }
}

@media (min-width: 980px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
    padding-inline: 24px;
  }

  .menu-toggle {
    display: none;
  }

  .site-menu {
    position: static;
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-menu a {
    padding: 10px 12px;
  }

  .header-cta {
    padding-inline: 18px;
  }

  .hero-grid,
  .section-pad,
  .contact-grid,
  .footer-inner {
    padding-inline: 24px;
  }

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

@media (max-width: 360px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 2.25rem;
  }
}
