/* =========================================
   PLUG RADIO STATION — ELITE WEBSITE STYLES
   File: style.css
   Role: Premium radio station multi-page styling
========================================= */

:root {
  --bg: #04050a;
  --bg-soft: #0a0d14;
  --bg-elevated: #111622;
  --bg-deep: #06080e;
  --bg-card: rgba(12, 15, 24, 0.84);

  --panel: rgba(15, 18, 28, 0.8);
  --panel-strong: rgba(12, 15, 24, 0.94);
  --panel-light: rgba(255, 255, 255, 0.04);

  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --line-soft: rgba(255, 255, 255, 0.05);

  --text: #f5f7fb;
  --text-soft: #dde4f1;
  --muted: #aeb7c7;
  --muted-2: #7e889c;

  --primary: #ff7a18;
  --primary-2: #ffb347;
  --accent: #ff4d6d;
  --accent-2: #8b5cf6;
  --success: #2dd4bf;
  --warning: #fbbf24;

  --shadow-lg: 0 28px 88px rgba(0, 0, 0, 0.48);
  --shadow-md: 0 18px 52px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.18);
  --shadow-glow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 18px 45px rgba(0, 0, 0, 0.3);

  --radius-2xl: 36px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --container: 1240px;
  --header-height: 92px;
  --section-space: 112px;

  --gradient-main: linear-gradient(
    135deg,
    rgba(255, 122, 24, 1) 0%,
    rgba(255, 179, 71, 1) 42%,
    rgba(255, 77, 109, 1) 100%
  );

  --gradient-main-soft: linear-gradient(
    135deg,
    rgba(255, 122, 24, 0.18) 0%,
    rgba(255, 179, 71, 0.12) 42%,
    rgba(255, 77, 109, 0.16) 100%
  );

  --gradient-border: linear-gradient(
    135deg,
    rgba(255, 179, 71, 0.55),
    rgba(255, 77, 109, 0.4),
    rgba(139, 92, 246, 0.3)
  );

  --gradient-glow:
    radial-gradient(circle at 18% 16%, rgba(255, 122, 24, 0.18), transparent 30%),
    radial-gradient(circle at 80% 14%, rgba(139, 92, 246, 0.16), transparent 28%),
    radial-gradient(circle at 55% 76%, rgba(255, 77, 109, 0.14), transparent 34%),
    radial-gradient(circle at 70% 54%, rgba(45, 212, 191, 0.08), transparent 22%);

  --font-body:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  --font-display:
    "Space Grotesk",
    "Inter",
    system-ui,
    sans-serif;
}

/* =========================
   RESET / BASE
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 18%),
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.025), transparent 26%),
    linear-gradient(135deg, #05060b 0%, #0a0d14 42%, #06070b 100%);
}

body.nav-open {
  overflow: hidden;
}

img,
svg,
video,
canvas,
audio,
iframe {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

input,
textarea,
select {
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

::selection {
  background: rgba(255, 122, 24, 0.28);
  color: #fff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
iframe:focus-visible {
  outline: 2px solid rgba(255, 179, 71, 0.92);
  outline-offset: 3px;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(255, 122, 24, 0.82),
    rgba(255, 77, 109, 0.72)
  );
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

/* =========================
   KEYFRAMES
========================= */

@keyframes radioPulse {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.72;
  }
  50% {
    transform: scaleY(1.08);
    opacity: 1;
  }
}

@keyframes glowBreath {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(255, 122, 24, 0.18),
      0 10px 30px rgba(0, 0, 0, 0.18);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(255, 122, 24, 0),
      0 18px 40px rgba(0, 0, 0, 0.28);
  }
}

@keyframes liveBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  45% {
    opacity: 0.72;
    transform: scale(0.92);
  }
}

@keyframes orbFloatLeft {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(34px, -18px, 0) scale(1.06);
  }
}

@keyframes orbFloatRight {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-34px, 22px, 0) scale(1.08);
  }
}

@keyframes floatCardA {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatCardB {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(12px);
  }
}

@keyframes heroPanelGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.02),
      0 28px 88px rgba(0, 0, 0, 0.48);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 179, 71, 0.08),
      0 28px 88px rgba(0, 0, 0, 0.48),
      0 0 80px rgba(255, 122, 24, 0.08);
  }
}

@keyframes shineSweep {
  0% {
    transform: translateX(-135%) skewX(-18deg);
  }
  100% {
    transform: translateX(155%) skewX(-18deg);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.18);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 0 0 10px rgba(45, 212, 191, 0);
  }
}

/* =========================
   BACKGROUND EFFECTS
========================= */

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    var(--gradient-glow),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 30%);
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.35;
}

.site-bg::before {
  width: 360px;
  height: 360px;
  left: -80px;
  top: 120px;
  background: rgba(255, 122, 24, 0.14);
  animation: orbFloatLeft 14s ease-in-out infinite;
}

.site-bg::after {
  width: 320px;
  height: 320px;
  right: -70px;
  top: 220px;
  background: rgba(139, 92, 246, 0.12);
  animation: orbFloatRight 16s ease-in-out infinite;
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.045;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, #000, transparent 90%);
}

/* =========================
   LAYOUT
========================= */

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

.section {
  position: relative;
  padding: var(--section-space) 0;
}

.section > .container,
.page-hero > .container {
  position: relative;
  z-index: 1;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.85;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 24, 0.05), transparent 28%);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 16%),
    rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(255, 255, 255, 0.035);
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.section-text {
  font-size: 1.04rem;
  color: var(--muted);
}

.page-hero {
  position: relative;
  padding: 88px 0 72px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 34px;
  align-items: center;
}

.page-hero-copy h1 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 12ch;
}

.page-hero-copy p {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.page-shell {
  display: grid;
  gap: 24px;
}

.page-stack {
  display: grid;
  gap: 18px;
}

.page-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.84fr);
  gap: 24px;
  align-items: start;
}

/* =========================
   ACCESSIBILITY
========================= */

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 9, 14, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 9, 14, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 42px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-text {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.status-dot,
.signal-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--success);
  box-shadow:
    0 0 0 6px rgba(45, 212, 191, 0.08),
    0 0 18px rgba(45, 212, 191, 0.42);
  flex: 0 0 auto;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-links a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.topbar-links a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.nav-wrap {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.08em;
  background:
    linear-gradient(145deg, rgba(255, 122, 24, 0.22), rgba(255, 77, 109, 0.16)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    var(--shadow-sm);
  animation: glowBreath 4.2s ease-in-out infinite;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-eyebrow {
  color: var(--muted-2);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.04rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   TYPOGRAPHY / BUTTONS / TAGS
========================= */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #ffd7b3;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 179, 71, 1), transparent);
}

.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    color 0.24s ease,
    filter 0.24s ease;
  will-change: transform;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.09) 50%,
    transparent 100%
  );
}

.btn:hover::before {
  animation: shineSweep 0.8s ease forwards;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #150d08;
  background: var(--gradient-main);
  box-shadow:
    0 12px 30px rgba(255, 122, 24, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  animation: glowBreath 3.8s ease-in-out infinite;
}

.btn-primary:hover {
  box-shadow:
    0 18px 42px rgba(255, 122, 24, 0.34),
    0 0 24px rgba(255, 122, 24, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  filter: saturate(1.04);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

.btn-lg {
  min-height: 56px;
  padding: 0 26px;
}

.btn-block {
  width: 100%;
}

.text-link {
  color: #ffd5b0;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.text-link:hover {
  color: #fff;
  transform: translateX(2px);
}

.panel-kicker,
.info-kicker,
.mini-label,
.floating-label,
.social-label,
.contact-title,
.show-badge,
.app-chip,
.stat-label,
.timeline-label,
.genre-pill,
.platform-pill,
.live-meta-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f7d3ae;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.09);
  color: #a9fff0;
  border: 1px solid rgba(45, 212, 191, 0.16);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: badgePulse 2.4s ease-in-out infinite;
}

.live-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 14px rgba(45, 212, 191, 0.6);
  animation: liveBlink 1.6s ease-in-out infinite;
}

/* =========================
   ELITE RADIO UTILITIES
========================= */

.station-ticker,
.platform-strip,
.genre-strip,
.live-meta-row,
.station-badges,
.audio-stats,
.platform-grid,
.station-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.station-ticker {
  position: relative;
  align-items: center;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.station-ticker::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 100%
  );
  animation: shineSweep 4.8s linear infinite;
}

.station-ticker span {
  white-space: nowrap;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.station-ticker .live-pill {
  flex: 0 0 auto;
}

.genre-pill,
.platform-pill,
.live-meta-chip {
  color: #fff0dc;
  background: rgba(255, 255, 255, 0.035);
}

.station-metric {
  min-width: 140px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.015);
}

.station-metric strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.station-metric span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.equalizer-bars span {
  width: 10px;
  border-radius: 999px;
  background: var(--gradient-main);
  box-shadow: 0 0 18px rgba(255, 122, 24, 0.22);
  animation: radioPulse 1.7s ease-in-out infinite;
}

.equalizer-bars span:nth-child(1) {
  height: 28px;
  animation-delay: 0s;
}

.equalizer-bars span:nth-child(2) {
  height: 54px;
  animation-delay: 0.14s;
}

.equalizer-bars span:nth-child(3) {
  height: 38px;
  animation-delay: 0.28s;
}

.equalizer-bars span:nth-child(4) {
  height: 72px;
  animation-delay: 0.42s;
}

.equalizer-bars span:nth-child(5) {
  height: 46px;
  animation-delay: 0.56s;
}

.equalizer-bars span:nth-child(6) {
  height: 62px;
  animation-delay: 0.7s;
}

.rank-badge,
.app-rank,
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  background:
    linear-gradient(135deg, rgba(255, 122, 24, 0.18), rgba(255, 77, 109, 0.14)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rank-badge::before,
.app-rank::before,
.live-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.52);
}

.station-callout,
.radio-note,
.editorial-note {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
}

.station-callout strong,
.radio-note strong,
.editorial-note strong {
  display: block;
  margin-bottom: 8px;
}

.station-quote {
  position: relative;
  padding: 24px 24px 24px 72px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.station-quote::before {
  content: "“";
  position: absolute;
  left: 22px;
  top: 10px;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 179, 71, 0.4);
}

.station-quote p {
  color: var(--text-soft);
  font-size: 1rem;
}

.station-quote span {
  display: inline-block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.radio-divider {
  height: 1px;
  border: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.16),
    transparent
  );
  margin: 0;
}

/* =========================
   SHARED CARD SYSTEM
========================= */

.listen-card,
.info-card,
.submit-form-card,
.contact-card,
.social-card,
.show-card,
.benefit-card,
.page-card,
.content-card,
.stat-card,
.detail-card,
.list-card,
.cta-band,
.schedule-card,
.timeline-item,
.media-frame,
.form-shell,
.proof-card,
.mini-card,
.quick-link,
.contact-item,
.station-metric,
.station-callout,
.radio-note,
.editorial-note,
.station-quote {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(10, 12, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(15px);
}

.listen-card::before,
.info-card::before,
.submit-form-card::before,
.contact-card::before,
.social-card::before,
.show-card::before,
.benefit-card::before,
.page-card::before,
.content-card::before,
.stat-card::before,
.detail-card::before,
.list-card::before,
.cta-band::before,
.schedule-card::before,
.timeline-item::before,
.form-shell::before,
.proof-card::before,
.mini-card::before,
.quick-link::before,
.contact-item::before,
.station-metric::before,
.station-callout::before,
.radio-note::before,
.editorial-note::before,
.station-quote::before {
  pointer-events: none;
}

.listen-card,
.info-card,
.submit-form-card,
.contact-card,
.social-card,
.show-card,
.benefit-card,
.page-card,
.content-card,
.stat-card,
.detail-card,
.list-card,
.cta-band,
.schedule-card,
.timeline-item,
.form-shell {
  border-radius: 28px;
}

.proof-card,
.mini-card,
.quick-link,
.contact-item,
.station-metric,
.station-callout,
.radio-note,
.editorial-note,
.station-quote {
  border-radius: 22px;
}

.page-card,
.content-card,
.detail-card,
.list-card,
.cta-band,
.schedule-card,
.timeline-item,
.media-frame,
.form-shell,
.stat-card {
  padding: 26px;
}

.page-card h3,
.content-card h3,
.detail-card h3,
.list-card h3,
.cta-band h3,
.schedule-card h3,
.timeline-item h3,
.stat-card h3 {
  margin: 14px 0 10px;
  font-size: 1.24rem;
  letter-spacing: -0.02em;
}

.page-card p,
.content-card p,
.detail-card p,
.list-card p,
.cta-band p,
.schedule-card p,
.timeline-item p,
.stat-card p {
  color: var(--muted);
}

.show-card,
.social-card,
.detail-card,
.page-card,
.stat-card,
.quick-link,
.info-card,
.contact-item,
.benefit-card,
.list-card,
.schedule-card,
.cta-band,
.submit-form-card,
.form-shell,
.station-metric,
.station-callout,
.radio-note,
.editorial-note,
.station-quote,
.proof-card,
.mini-card {
  transition:
    transform 0.26s ease,
    border-color 0.26s ease,
    box-shadow 0.26s ease,
    background 0.26s ease;
}

.show-card:hover,
.social-card:hover,
.detail-card:hover,
.page-card:hover,
.stat-card:hover,
.quick-link:hover,
.info-card:hover,
.contact-item:hover,
.benefit-card:hover,
.list-card:hover,
.schedule-card:hover,
.cta-band:hover,
.submit-form-card:hover,
.form-shell:hover,
.station-metric:hover,
.station-callout:hover,
.radio-note:hover,
.editorial-note:hover,
.station-quote:hover,
.proof-card:hover,
.mini-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 24px rgba(255, 122, 24, 0.04);
}

/* =========================
   HERO
========================= */

.hero {
  padding: 86px 0 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.hero-text {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.proof-card {
  min-height: 132px;
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
}

.proof-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.proof-card span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-main-panel {
  position: relative;
  z-index: 2;
  animation: heroPanelGlow 5.5s ease-in-out infinite;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(10, 12, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.hero-panel::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -35%;
  width: 42%;
  height: 140%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: shineSweep 6.5s linear infinite;
  pointer-events: none;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.hero-panel h2 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-panel > p {
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mini-card {
  min-height: 168px;
  padding: 18px;
}

.mini-card h3 {
  margin: 14px 0 10px;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.floating-card {
  position: absolute;
  min-width: 240px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(12, 14, 22, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  z-index: 1;
}

.floating-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
}

.floating-card-a {
  left: -26px;
  bottom: 76px;
  animation: floatCardA 5.6s ease-in-out infinite;
}

.floating-card-b {
  right: -20px;
  top: 46px;
  animation: floatCardB 6.4s ease-in-out infinite;
}

/* =========================
   LISTEN LIVE
========================= */

.listen-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.listen-card {
  padding: 28px;
}

.card-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #b4ffe8;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.listen-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.card-copy {
  color: var(--muted);
  max-width: 62ch;
}

.radio-player {
  width: 100%;
  margin: 26px 0 20px;
  border-radius: 999px;
  filter: saturate(1.12) contrast(1.02);
}

#listen.is-playing .listen-card {
  border-color: rgba(45, 212, 191, 0.24);
  box-shadow:
    0 0 0 1px rgba(45, 212, 191, 0.05),
    0 20px 48px rgba(0, 0, 0, 0.3),
    0 0 36px rgba(45, 212, 191, 0.08);
}

.listen-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.listen-side {
  display: grid;
  gap: 20px;
}

.info-card {
  padding: 24px;
}

.info-card h3 {
  margin: 16px 0 10px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.info-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(255, 122, 24, 0.45);
  transform: translateY(-50%);
}

/* =========================
   SHOWS / FEATURE BLOCKS
========================= */

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

.show-card {
  padding: 24px;
  min-height: 280px;
}

.show-card h3,
.schedule-card h3 {
  margin: 16px 0 10px;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.show-card p,
.schedule-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.show-card ul,
.schedule-card ul {
  display: grid;
  gap: 10px;
}

.show-card li,
.schedule-card li {
  color: var(--text-soft);
  font-size: 0.96rem;
}

/* =========================
   SUBMIT MUSIC
========================= */

.submit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.submit-steps {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.step-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.016));
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  background: var(--gradient-main);
  color: #160d07;
  box-shadow: 0 10px 28px rgba(255, 122, 24, 0.2);
  animation: glowBreath 4.2s ease-in-out infinite;
}

.step-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.submit-form-card,
.form-shell {
  padding: 28px;
}

.form-card-head {
  margin-bottom: 22px;
}

.form-card-head h3 {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.form-card-head p {
  color: var(--muted);
}

.submit-form {
  display: grid;
  gap: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #eef3fb;
  font-size: 0.94rem;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #98a4b8;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  transform: translateY(-1px);
  border-color: rgba(255, 179, 71, 0.7);
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    0 0 0 4px rgba(255, 179, 71, 0.08),
    0 12px 30px rgba(255, 122, 24, 0.08);
}

/* =========================
   APP
========================= */

.app-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.app-visual {
  display: flex;
  justify-content: center;
}

.app-device {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 0.56 / 1;
  padding: 14px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 16, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow-lg);
  animation: floatCardA 7.2s ease-in-out infinite;
}

.app-device::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 34%;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2;
}

.app-screen {
  height: 100%;
  border-radius: 30px;
  padding: 34px 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 179, 71, 0.18), transparent 22%),
    radial-gradient(circle at bottom left, rgba(255, 77, 109, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    #0c1018;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-screen h3 {
  margin: 18px 0 12px;
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.app-screen p {
  color: var(--muted);
}

.app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.app-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f7e2ca;
  font-size: 0.9rem;
}

.app-copy h2 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.app-benefits {
  display: grid;
  gap: 16px;
  margin: 28px 0 26px;
}

.benefit-card {
  padding: 22px;
}

.benefit-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================
   SOCIAL / DETAIL / STATS
========================= */

.social-grid,
.stat-grid,
.detail-grid,
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.social-card {
  padding: 24px;
  min-height: 240px;
}

.social-card h3,
.detail-card h3,
.stat-card h3 {
  margin: 16px 0 10px;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.social-card p,
.detail-card p,
.stat-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-top: 14px;
  margin-bottom: 10px;
}

.detail-card .text-link,
.social-card .text-link {
  display: inline-block;
  margin-top: auto;
}

/* =========================
   CONTACT
========================= */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 26px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-item {
  padding: 20px 22px;
}

.contact-item .contact-title {
  margin-bottom: 12px;
}

.contact-item p {
  margin: 0;
  color: var(--muted);
}

.contact-card {
  padding: 28px;
}

.contact-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.contact-card > p {
  color: var(--muted);
  margin-bottom: 22px;
}

.quick-links {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.quick-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 18px;
}

.quick-link span {
  color: var(--muted);
  font-size: 0.88rem;
}

.quick-link strong {
  letter-spacing: -0.02em;
  font-size: 1rem;
}

/* =========================
   TIMELINE / LIST / MEDIA
========================= */

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-item strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.timeline-item p {
  margin-top: 8px;
}

.list-card ul {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.list-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.list-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(255, 122, 24, 0.35);
  transform: translateY(-50%);
}

.media-frame {
  overflow: hidden;
  padding: 0;
}

.media-frame img,
.media-frame iframe,
.media-frame video {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border: 0;
}

/* =========================
   CTA BAND
========================= */

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  position: relative;
  padding: 40px 0 26px;
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02) 20%),
    #07080d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: start;
  padding-bottom: 26px;
}

.brand-footer {
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 58ch;
  color: var(--muted);
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 28px;
}

.footer-links h4 {
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #fff;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.92rem;
}

/* =========================
   REVEAL ANIMATION
========================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1180px) {
  .hero-grid,
  .listen-grid,
  .submit-grid,
  .app-grid,
  .contact-grid,
  .page-hero-grid,
  .page-columns,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    max-width: 11ch;
  }

  .hero-visual {
    min-height: auto;
  }

  .floating-card-a,
  .floating-card-b {
    position: static;
    margin-top: 16px;
  }

  .hero-proof,
  .shows-grid,
  .social-grid,
  .stat-grid,
  .detail-grid,
  .contact-methods,
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-band-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    margin-top: 16px;
    padding: 20px;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
      rgba(10, 12, 18, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: 54px;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    max-width: none;
  }

  .hero-proof,
  .shows-grid,
  .social-grid,
  .hero-panel-grid,
  .stat-grid,
  .detail-grid,
  .contact-methods,
  .schedule-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 720px) {
  :root {
    --section-space: 82px;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(2.3rem, 11vw, 4rem);
    line-height: 0.98;
  }

  .section-heading h2,
  .app-copy h2 {
    line-height: 1.08;
  }

  .hero-actions,
  .listen-actions,
  .store-buttons,
  .cta-band-actions,
  .station-ticker,
  .platform-strip,
  .genre-strip,
  .live-meta-row,
  .station-badges,
  .audio-stats,
  .platform-grid,
  .station-metrics {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-proof,
  .shows-grid,
  .social-grid,
  .hero-panel-grid,
  .stat-grid,
  .detail-grid,
  .contact-methods,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .listen-card,
  .info-card,
  .submit-form-card,
  .show-card,
  .social-card,
  .contact-card,
  .benefit-card,
  .page-card,
  .content-card,
  .detail-card,
  .list-card,
  .cta-band,
  .schedule-card,
  .timeline-item,
  .form-shell,
  .stat-card {
    padding: 22px;
  }

  .step-card,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .app-device {
    width: min(100%, 320px);
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

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

  .station-quote {
    padding-left: 24px;
  }

  .station-quote::before {
    display: none;
  }

  .equalizer-bars {
    height: 64px;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .topbar-links {
    gap: 12px;
  }

  .hero-text,
  .section-text,
  .proof-card span,
  .mini-card p,
  .show-card p,
  .social-card p,
  .info-card p,
  .field label,
  .quick-link span,
  .page-card p,
  .content-card p,
  .detail-card p,
  .list-card p,
  .timeline-item p,
  .station-metric span,
  .station-quote p {
    font-size: 0.95rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* =========================
   REDUCED MOTION
========================= */

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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