:root {
  --bg: #0d0f14;
  --bg-soft: #141821;
  --panel: #171b25;
  --panel-2: #202633;
  --text: #f7f8fb;
  --muted: #aeb6c4;
  --yellow: #f2da32;
  --yellow-soft: #ffe96a;
  --red: #d94a48;
  --purple: #5b4da8;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 16% 10%, rgba(91, 77, 168, 0.17), transparent 30%),
    radial-gradient(circle at 84% 22%, rgba(242, 218, 50, 0.08), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  background: var(--yellow);
  color: #111;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 110px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(13, 15, 20, 0.46);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(13, 15, 20, 0.9);
  border-color: var(--line);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  text-decoration: none;
}

.brand-pulse {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(217, 74, 72, 0.12), 0 0 24px rgba(217, 74, 72, 0.65);
  animation: pulse 1.8s ease-in-out infinite;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.brand-text small {
  margin-top: 3px;
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 0.2em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  position: relative;
  color: #dfe3eb;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--yellow);
  transition: right 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 130px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  left: -290px;
  top: 80px;
  border: 1px solid rgba(242, 218, 50, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(242, 218, 50, 0.017), 0 0 0 180px rgba(91, 77, 168, 0.018);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -15vw -260px auto;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 77, 168, 0.28), transparent 68%);
  filter: blur(12px);
  z-index: -1;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  align-items: center;
  gap: 70px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 900;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(217, 74, 72, 0.12);
}

.hero h1 {
  max-width: 780px;
  margin: 18px 0 22px;
  font-size: clamp(3.8rem, 8.2vw, 8.8rem);
  line-height: 0.83;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
  text-shadow: 0 0 32px rgba(242, 218, 50, 0.1);
}

.hero-lead {
  max-width: 690px;
  margin: 0;
  color: #d5dae3;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.hero-lead strong {
  color: #fff;
}

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

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--yellow-soft), var(--yellow));
  box-shadow: 0 14px 36px rgba(242, 218, 50, 0.17);
}

.btn-primary:hover {
  box-shadow: 0 18px 44px rgba(242, 218, 50, 0.27);
}

.btn-ghost {
  color: #fff;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.btn-large {
  min-width: 190px;
  min-height: 58px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 42px;
  max-width: 760px;
}

.quick-facts > div {
  min-height: 98px;
  display: grid;
  align-content: center;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.025);
}

.quick-facts span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.quick-facts strong {
  margin-top: 4px;
  font-size: 1rem;
}

.hero-frequency {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.frequency-card {
  position: relative;
  z-index: 3;
  width: min(100%, 410px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 36%, rgba(255,255,255,0.12), transparent 22%),
    linear-gradient(145deg, rgba(91,77,168,0.54), rgba(23,27,37,0.94) 46%, rgba(217,74,72,0.15));
  box-shadow: inset 0 0 70px rgba(255,255,255,0.03), 0 40px 90px rgba(0,0,0,0.42);
}

.frequency-label {
  max-width: 190px;
  color: #dce1ea;
  font-weight: 700;
  line-height: 1.3;
}

.frequency-number {
  margin: 6px 0 -8px;
  color: var(--yellow);
  font-size: clamp(5.2rem, 9vw, 7.2rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  text-shadow: 0 0 35px rgba(242, 218, 50, 0.15);
}

.frequency-fm {
  color: #fff;
  font-size: 1.28rem;
  font-weight: 1000;
  letter-spacing: 0.38em;
  margin-left: 0.38em;
}

.frequency-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242, 218, 50, 0.15);
  animation: spin 18s linear infinite;
}

.orbit-one {
  width: 470px;
  height: 470px;
  border-style: dashed;
}

.orbit-two {
  width: 535px;
  height: 535px;
  border-color: rgba(91, 77, 168, 0.2);
  animation-duration: 26s;
  animation-direction: reverse;
}

.equalizer {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 22px;
}

.equalizer i {
  width: 4px;
  height: 12px;
  display: block;
  border-radius: 999px;
  background: var(--red);
  transform-origin: center;
  animation: eq 1.05s ease-in-out infinite alternate;
}

.equalizer i:nth-child(2n) { animation-delay: -0.22s; }
.equalizer i:nth-child(3n) { animation-delay: -0.47s; }
.equalizer i:nth-child(4n) { animation-delay: -0.68s; }

.identity-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.022);
}

.identity-grid {
  min-height: 152px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 34px;
}

.identity-item {
  display: grid;
  text-align: center;
}

.identity-item span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.identity-item strong {
  margin-top: 4px;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.05;
}

.identity-divider {
  width: 1px;
  height: 64px;
  background: var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 76px;
}

.section-heading h2 {
  margin: 12px 0 18px;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-heading h2 span {
  color: var(--yellow);
}

.section-heading p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading p strong {
  color: #fff;
}

.centered {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.program {
  position: relative;
}

.radio-card {
  position: relative;
  min-height: 470px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015)),
    var(--panel);
  box-shadow: var(--shadow);
}

.radio-card::before {
  content: "";
  position: absolute;
  inset: auto -60px -130px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(242,218,50,0.05);
  border: 1px solid rgba(242,218,50,0.09);
  box-shadow: 0 0 0 52px rgba(91,77,168,0.06), 0 0 0 104px rgba(217,74,72,0.025);
}

.radio-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.radio-topline span:first-child {
  color: var(--yellow);
}

.waveform {
  position: absolute;
  inset: 118px 30px auto 30px;
  height: 110px;
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0.82;
}

.waveform span {
  flex: 1;
  min-width: 3px;
  max-width: 8px;
  height: 24%;
  border-radius: 999px;
  background: linear-gradient(to top, var(--purple), var(--yellow));
  animation: wave 1.8s ease-in-out infinite alternate;
}

.waveform span:nth-child(2n) { animation-delay: -0.3s; }
.waveform span:nth-child(3n) { animation-delay: -0.7s; }
.waveform span:nth-child(5n) { animation-delay: -1.1s; }

.radio-dial {
  position: absolute;
  right: 48px;
  bottom: 38px;
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.2);
  box-shadow: inset 0 0 45px rgba(255,255,255,0.025);
}

.dial-center {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #11141b;
  border: 1px solid rgba(242,218,50,0.18);
  color: var(--yellow);
  font-size: 3rem;
  font-weight: 1000;
  letter-spacing: -0.06em;
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.schedule {
  background:
    radial-gradient(circle at 50% -40%, rgba(91, 77, 168, 0.18), transparent 46%),
    #11141b;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 18px;
}

.schedule-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  overflow: hidden;
  position: relative;
}

.schedule-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  right: -42px;
  top: -42px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 0 0 28px rgba(255,255,255,0.018);
}

.schedule-label,
.host-label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.schedule-card strong {
  margin-top: 6px;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.04;
}

.schedule-card small {
  margin-top: 12px;
  color: #c7cdd8;
}

.station-card {
  background:
    radial-gradient(circle at 90% 10%, rgba(242,218,50,0.18), transparent 36%),
    linear-gradient(160deg, rgba(91,77,168,0.28), rgba(255,255,255,0.02));
}

.station-card strong {
  color: var(--yellow);
}

.hosts {
  position: relative;
}

.hosts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.host-card {
  min-height: 230px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 26px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  box-shadow: 0 18px 55px rgba(0,0,0,0.16);
}

.host-card h3 {
  margin: 7px 0 0;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.mic-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(242,218,50,0.18);
  background: rgba(242,218,50,0.055);
}

.mic-icon span {
  position: relative;
  width: 24px;
  height: 42px;
  border: 3px solid var(--yellow);
  border-radius: 18px;
}

.mic-icon span::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 36px;
  height: 22px;
  transform: translateX(-50%);
  border: 3px solid var(--yellow);
  border-top: 0;
  border-radius: 0 0 20px 20px;
}

.mic-icon span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -23px;
  width: 3px;
  height: 10px;
  transform: translateX(-50%);
  background: var(--yellow);
  box-shadow: -9px 10px 0 0 var(--yellow), 9px 10px 0 0 var(--yellow);
}

.studio {
  background:
    linear-gradient(rgba(255,255,255,0.015), rgba(255,255,255,0.015)),
    #0a0c11;
  border-top: 1px solid var(--line);
}

.studio-heading {
  margin-bottom: 34px;
}

.studio-photo {
  position: relative;
  margin: 0;
  padding: 10px;
  border-radius: 28px;
  border: 1px solid rgba(242,218,50,0.28);
  background: rgba(255,255,255,0.025);
  box-shadow:
    0 0 0 1px rgba(91,77,168,0.08),
    0 18px 80px rgba(0,0,0,0.46),
    0 0 50px rgba(91,77,168,0.13),
    0 0 40px rgba(242,218,50,0.045);
}

.studio-photo::before {
  content: "";
  position: absolute;
  inset: 4% 6% -3%;
  z-index: -1;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(91,77,168,0.22), rgba(242,218,50,0.12), rgba(217,74,72,0.13));
  filter: blur(36px);
  opacity: 0.62;
}

.studio-photo img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: contain;
}

.frequency-band {
  overflow: hidden;
  border-top: 1px solid rgba(242,218,50,0.14);
  border-bottom: 1px solid rgba(242,218,50,0.14);
  background: var(--yellow);
  color: #111;
}

.frequency-track {
  width: max-content;
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding-inline: 20px;
  animation: marquee 17s linear infinite;
}

.frequency-track span {
  font-size: clamp(1.8rem, 4vw, 3.7rem);
  font-weight: 1000;
  letter-spacing: -0.055em;
}

.frequency-track i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.social {
  padding-top: 95px;
  padding-bottom: 95px;
}

.social-card {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 20%, rgba(242,218,50,0.11), transparent 28%),
    linear-gradient(145deg, rgba(91,77,168,0.22), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
}

.social-card h2 {
  margin: 8px 0 6px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.social-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #090b0f;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.footer-grid strong {
  letter-spacing: 0.08em;
}

.footer-grid span {
  color: var(--yellow);
  font-weight: 900;
}

.footer-grid a {
  color: #fff;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  animation: revealIn 0.7s cubic-bezier(.2,.7,.2,1) both;
}

@keyframes revealIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes eq {
  from { height: 8px; opacity: 0.62; }
  to { height: 34px; opacity: 1; }
}

@keyframes wave {
  from { height: 16%; opacity: 0.5; }
  to { height: 88%; opacity: 1; }
}

@keyframes marquee {
  to { transform: translateX(-32%); }
}

@media (max-width: 980px) {
  .section-pad { padding: 88px 0; }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(13,15,20,0.98);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .menu-toggle { display: block; }

  .menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero-grid,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid { gap: 28px; }
  .hero-frequency { min-height: 470px; }
  .section-grid { gap: 44px; }

  .schedule-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hosts-grid { grid-template-columns: 1fr; }

  .identity-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }

  .identity-divider { display: none; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 72px 0; }
  .nav-wrap { min-height: 70px; }
  .main-nav { top: 70px; }

  .brand-text strong { font-size: 0.76rem; }
  .brand-text small { font-size: 0.68rem; }

  .hero {
    min-height: auto;
    padding-top: 122px;
    padding-bottom: 78px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 5.4rem);
    line-height: 0.86;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quick-facts {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .quick-facts > div {
    min-height: 76px;
  }

  .hero-frequency {
    min-height: 390px;
  }

  .frequency-card {
    width: min(88vw, 350px);
  }

  .orbit-one { width: 390px; height: 390px; }
  .orbit-two { width: 430px; height: 430px; }

  .identity-grid {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }

  .identity-item {
    padding: 12px 0;
  }

  .section-heading h2 {
    font-size: clamp(2.35rem, 13vw, 4.1rem);
  }

  .radio-card { min-height: 420px; padding: 22px; }
  .radio-topline { align-items: flex-start; flex-direction: column; gap: 6px; }
  .waveform { inset: 130px 22px auto 22px; gap: 4px; }
  .radio-dial { right: 25px; bottom: 30px; width: 180px; height: 180px; }
  .dial-center { width: 128px; height: 128px; font-size: 2.6rem; }

  .schedule-grid { grid-template-columns: 1fr; }
  .station-card { grid-column: auto; }
  .schedule-card { min-height: 180px; }

  .host-card {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
  }

  .mic-icon { width: 74px; height: 74px; }

  .studio-photo {
    padding: 6px;
    border-radius: 20px;
  }

  .studio-photo img { border-radius: 14px; }

  .social-card {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 24px;
  }

  .btn-large { width: 100%; }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
