.radio-hero {
  position: relative;
  overflow: hidden;
  padding-top: 84px;
}
.radio-hero::before {
  content: "";
  position: absolute;
  width: 36rem;
  height: 36rem;
  right: -10rem;
  top: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89,215,209,.09), transparent 68%);
  pointer-events: none;
}
.radio-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: 78px;
  min-height: 610px;
}
.radio-hero-copy h1 {
  max-width: 800px;
  margin-bottom: 26px;
  font-size: clamp(3.6rem, 6.4vw, 6.7rem);
}
.radio-hero-copy h1 span {
  color: transparent;
  background: linear-gradient(110deg, #c6bdff 0%, #8b7cff 45%, #65ded9 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.radio-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6e8c;
  box-shadow: 0 0 0 5px rgba(255,110,140,.11);
}
.radio-lead {
  max-width: 680px;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
}
.radio-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.radio-hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.radio-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  z-index: -1;
}
.radio-orbit-one { width: 390px; height: 390px; }
.radio-orbit-two { width: 485px; height: 485px; border-color: rgba(139,124,255,.08); }
.radio-console {
  width: min(100%, 390px);
  padding: 24px;
  border: 1px solid var(--border-strong);
  border-radius: 32px;
  background:
    radial-gradient(circle at 80% 10%, rgba(89,215,209,.1), transparent 14rem),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.radio-console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .12em;
}
.radio-console-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffb0c0;
}
.radio-console-status i,
.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6e8c;
  box-shadow: 0 0 0 4px rgba(255,110,140,.1);
}
.radio-wave {
  height: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 22px;
  background: rgba(5,8,13,.55);
}
.radio-wave span {
  width: 8px;
  height: 35%;
  border-radius: 999px;
  background: linear-gradient(180deg, #a99fff, #67ddd7);
  animation: radioPulse 1.35s ease-in-out infinite alternate;
  transform-origin: center;
}
.radio-wave span:nth-child(2n) { animation-delay: -.7s; height: 70%; }
.radio-wave span:nth-child(3n) { animation-delay: -.35s; height: 48%; }
.radio-wave span:nth-child(4n) { animation-delay: -.95s; height: 88%; }
.radio-console-copy { display: grid; gap: 3px; padding-top: 20px; }
.radio-console-copy strong { font-size: 1rem; }
.radio-console-copy small { color: var(--text-muted); }
@keyframes radioPulse {
  from { transform: scaleY(.5); opacity: .72; }
  to { transform: scaleY(1.18); opacity: 1; }
}

.radio-section-note {
  max-width: 280px;
  margin: 0;
  color: var(--text-muted);
  text-align: right;
  font-size: .86rem;
}
.station-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.station-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255,255,255,.035);
  transition: transform .28s ease, border-color .25s ease, background .25s ease;
}
.station-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: rgba(255,255,255,.05);
}
.station-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -110px;
  top: -110px;
  border-radius: 50%;
  opacity: .28;
  pointer-events: none;
}
.station-brazil::before { background: radial-gradient(circle, #4fe08f, transparent 68%); }
.station-mix::before { background: radial-gradient(circle, #9f86ff, transparent 68%); }
.station-japan::before { background: radial-gradient(circle, #ff6e8c, transparent 68%); }
.station-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.station-code {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(9,11,16,.42);
  font-size: .7rem;
  font-weight: 700;
}
.station-art {
  position: relative;
  height: 210px;
  display: grid;
  place-items: center;
  margin: 20px 0 26px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.025), rgba(255,255,255,.055));
  overflow: hidden;
}
.station-disc {
  width: 142px;
  height: 142px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.13);
  background:
    radial-gradient(circle at center, #0e1118 0 15px, rgba(255,255,255,.15) 16px 17px, transparent 18px),
    repeating-radial-gradient(circle at center, rgba(255,255,255,.08) 0 1px, transparent 2px 7px),
    #11151e;
  box-shadow: 0 18px 45px rgba(0,0,0,.3);
}
.station-brazil .station-disc { outline: 1px solid rgba(79,224,143,.24); }
.station-mix .station-disc { outline: 1px solid rgba(159,134,255,.26); }
.station-japan .station-disc { outline: 1px solid rgba(255,110,140,.25); }
.station-bars {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  height: 26px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 5px;
  opacity: .58;
}
.station-bars span { width: 4px; height: 30%; border-radius: 4px; background: currentColor; }
.station-bars span:nth-child(2) { height: 62%; }
.station-bars span:nth-child(3) { height: 92%; }
.station-bars span:nth-child(4) { height: 55%; }
.station-bars span:nth-child(5) { height: 78%; }
.station-brazil .station-bars { color: #65e69a; }
.station-mix .station-bars { color: #a99fff; }
.station-japan .station-bars { color: #ff8aa1; }
.station-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}
.station-kicker {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: .74rem;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.station-copy h3 { margin-bottom: 13px; font-size: clamp(1.55rem, 2vw, 2rem); }
.station-copy h3 a { transition: color .2s ease; }
.station-copy h3 a:hover,
.station-copy h3 a:focus-visible { color: #d9d4ff; }
.station-copy > p:not(.station-kicker) { margin: 0 0 20px; color: var(--text-soft); }
.genre-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 25px; }
.genre-list span {
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(255,255,255,.025);
  font-size: .71rem;
  font-weight: 650;
}
.station-button {
  min-height: 50px;
  margin-top: auto;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  font-size: .86rem;
  font-weight: 750;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.station-button:hover { transform: translateY(-2px); border-color: var(--border-strong); background: rgba(255,255,255,.06); }
.station-brazil .station-button span { color: #65e69a; }
.station-mix .station-button span { color: #b5a9ff; }
.station-japan .station-button span { color: #ff9aae; }

.radio-story { border-bottom: 1px solid rgba(255,255,255,.055); }
.radio-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}
.radio-story-heading h2 { max-width: 590px; }
.radio-story-copy { padding-top: 44px; }
.radio-story-copy p { max-width: 670px; margin: 0 0 18px; color: var(--text-soft); font-size: 1.02rem; }
.radio-story-copy .text-link { margin-top: 8px; }

.radio-cta { padding-top: 72px; }
.radio-cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: 54px;
  border: 1px solid var(--border-strong);
  border-radius: 34px;
  background:
    radial-gradient(circle at 95% 0%, rgba(89,215,209,.08), transparent 22rem),
    radial-gradient(circle at 0% 100%, rgba(139,124,255,.12), transparent 25rem),
    rgba(255,255,255,.025);
}
.radio-cta-inner h2 { max-width: 660px; }
.radio-cta-actions {
  width: min(100%, 430px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.radio-cta-actions .button {
  width: 100%;
  min-width: 0;
  padding-inline: 16px;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .radio-hero-grid { grid-template-columns: 1fr; gap: 34px; min-height: auto; }
  .radio-hero-visual { min-height: 490px; }
  .station-grid { grid-template-columns: 1fr; }
  .station-card { display: grid; grid-template-columns: minmax(230px, .7fr) minmax(0, 1.3fr); column-gap: 28px; }
  .station-topline { grid-column: 1 / -1; }
  .station-art { margin-bottom: 0; }
  .station-copy { align-self: center; }
  .radio-story-grid { grid-template-columns: 1fr; gap: 20px; }
  .radio-story-copy { padding-top: 0; }
  .radio-cta-inner { align-items: flex-start; flex-direction: column; }
  .radio-cta-actions {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .radio-hero { padding-top: 54px; }
  .radio-hero-copy h1 { font-size: clamp(3rem, 14vw, 4.9rem); }
  .radio-hero-actions .button { width: 100%; }
  .radio-hero-visual { min-height: 420px; }
  .radio-orbit-one { width: 300px; height: 300px; }
  .radio-orbit-two { width: 380px; height: 380px; }
  .radio-console { width: min(100%, 330px); padding: 18px; border-radius: 26px; }
  .radio-wave { height: 150px; }
  .radio-section-note { max-width: none; text-align: left; }
  .station-card { display: block; padding: 20px; border-radius: 26px; }
  .station-art { height: 190px; margin: 18px 0 24px; }
  .radio-cta-inner { padding: 34px 24px; }
  .radio-cta-actions {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .radio-cta-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .radio-wave span { animation: none !important; }
}
