:root {
  --bg: #07070d;
  --panel: rgba(14, 18, 32, .84);
  --panel-soft: rgba(255, 255, 255, .055);
  --text: #f8fbff;
  --muted: #a6b0c3;
  --pink: #ff3ea5;
  --cyan: #19dcff;
  --green: #07f287;
  --amber: #ffd166;
  --line: rgba(255, 255, 255, .13);
  --shadow: 0 28px 90px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 22% 8%, rgba(255, 62, 165, .22), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(25, 220, 255, .18), transparent 30%),
    linear-gradient(180deg, #07070d 0%, #10101c 48%, #07070d 100%);
}

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

button,
input {
  font: inherit;
}

.broadcast-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(25, 220, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 62, 165, .045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 13, .78);
  backdrop-filter: blur(18px);
}

.station-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.station-brand img {
  width: 190px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.station-brand small,
nav,
.hero p,
.player-card p,
.section-head p,
.split p,
.schedule span,
.news-grid p,
.sales-callout p,
.footer span {
  color: var(--muted);
}

nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 800;
}

nav a:hover {
  color: var(--cyan);
}

.top-cta,
.primary,
.secondary,
.footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(25, 220, 255, .46);
  border-radius: 8px;
  background: rgba(25, 220, 255, .08);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.primary {
  border-color: rgba(255, 62, 165, .65);
  background: linear-gradient(135deg, rgba(255, 62, 165, .28), rgba(25, 220, 255, .18));
  box-shadow: 0 0 30px rgba(255, 62, 165, .2);
}

.secondary {
  background: rgba(255, 255, 255, .045);
}

.hero,
.split,
.sales-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.hero {
  min-height: 78vh;
}

.hero-copy {
  max-width: 830px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .95;
}

h2 {
  margin-bottom: 0;
  max-width: 780px;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-copy > p:not(.eyebrow),
.split p,
.sales-callout p {
  max-width: 680px;
  line-height: 1.65;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.player-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 62, 165, .26);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid rgba(7, 242, 135, .45);
  border-radius: 999px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.live-badge span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.album-orbit {
  display: grid;
  place-items: center;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: repeating-radial-gradient(circle, rgba(255, 255, 255, .055) 0 2px, transparent 2px 18px);
}

.disc {
  display: grid;
  place-items: center;
  width: 174px;
  height: 174px;
  border-radius: 50%;
  background: conic-gradient(from 45deg, var(--pink), var(--cyan), var(--green), var(--pink));
  animation: spin 8s linear infinite;
}

.disc span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: var(--text);
  background: #090914;
  font-weight: 900;
  font-size: 18px;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.player-controls button {
  min-width: 64px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--text);
  background: var(--pink);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.player-controls strong,
.player-controls span {
  display: block;
}

.player-controls span {
  color: var(--muted);
  font-size: 13px;
}

.equalizer {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 28px;
}

.equalizer span {
  width: 100%;
  min-height: 6px;
  max-height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--pink));
  animation: equalize 2.4s ease-in-out infinite;
}

.equalizer span:nth-child(2) { animation-delay: .12s; }
.equalizer span:nth-child(3) { animation-delay: .24s; }
.equalizer span:nth-child(4) { animation-delay: .36s; }
.equalizer span:nth-child(5) { animation-delay: .48s; }

.volume-control {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.volume-control input {
  width: 100%;
  accent-color: var(--cyan);
}

.section {
  padding: clamp(56px, 8vw, 98px) clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.section-head {
  margin-bottom: 30px;
}

.schedule,
.host-grid,
.news-grid,
.sponsors,
.media-kit-layout {
  display: grid;
  gap: 16px;
}

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

.schedule article,
.host-grid article,
.news-grid article,
.sponsors span {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.media-kit-section {
  background: rgba(255, 255, 255, .025);
}

.media-kit-layout {
  grid-template-columns: .9fr .75fr 1fr;
  align-items: stretch;
}

.audience-panel,
.format-detail {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.audience-panel {
  display: grid;
  gap: 14px;
}

.audience-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: var(--panel-soft);
}

.audience-stat strong {
  color: var(--green);
  font-size: 32px;
}

.audience-stat span,
.audience-panel p,
.format-detail p,
.format-detail li {
  color: var(--muted);
  line-height: 1.55;
}

.ad-formats {
  display: grid;
  gap: 12px;
}

.format-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: var(--panel);
  text-align: left;
  cursor: pointer;
}

.format-card span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.format-card.active {
  border-color: rgba(255, 62, 165, .6);
  box-shadow: 0 0 34px rgba(255, 62, 165, .12);
}

.format-detail {
  display: grid;
  align-content: start;
  gap: 14px;
}

.format-detail ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.schedule article.active {
  border-color: rgba(7, 242, 135, .48);
  box-shadow: 0 0 40px rgba(7, 242, 135, .1);
}

.schedule time,
.news-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-weight: 900;
}

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

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

.host-grid img,
.news-grid img {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 18px;
}

.host-grid img {
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, .1);
  object-position: center top;
}

.news-grid img {
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, .12);
}

.host-grid article,
.news-grid article {
  display: grid;
  align-content: start;
}

.host-grid p,
.news-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.host-grid small {
  color: var(--muted);
}

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

.featured-news {
  min-height: 260px;
}

.sponsors-section {
  background: rgba(255, 255, 255, .025);
}

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

.sponsors span {
  display: grid;
  place-items: center;
  min-height: 120px;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.sales-callout {
  grid-template-columns: minmax(0, 1fr) auto;
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 62, 165, .1), rgba(25, 220, 255, .07));
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.footer img {
  width: 168px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

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

@keyframes equalize {
  50% { height: 24px; }
}

@media (max-width: 1100px) {
  nav {
    display: none;
  }

  .hero,
  .split,
  .sales-callout,
  .schedule,
  .host-grid,
  .news-grid,
  .sponsors,
  .media-kit-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .topbar,
  .hero-actions,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  h1 {
    font-size: 40px;
  }
}
