:root {
  color-scheme: dark;
  --bg: #07090e;
  --bg-soft: #0a0e16;
  --surface: #10151e;
  --surface-2: #151c28;
  --surface-3: #1b2432;
  --text: #f7f8fb;
  --muted: #a7b0c0;
  --subtle: #717c8e;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --gold: #f6ad18;
  --gold-bright: #ffd66b;
  --blue: #6c8cff;
  --blue-bright: #8ea7ff;
  --red: #ff4c44;
  --green: #4bdb9a;
  --station-color: #f6ad18;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --max: 1240px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(55, 87, 174, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--gold);
  color: #080b12;
}

body.has-dock {
  padding-bottom: 96px;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  width: 1.2em;
  height: 1.2em;
  fill: currentColor;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

a {
  color: inherit;
}

button:not(:disabled),
a {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
strong {
  text-wrap: balance;
}

h1,
h2 {
  letter-spacing: -0.055em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4rem, 8vw, 7.8rem);
  font-weight: 850;
  line-height: 0.88;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 830;
  line-height: 0.96;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.1;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 200;
  padding: 12px 16px;
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
  text-decoration: none;
}

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

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: var(--header-height);
  padding: max(10px, env(safe-area-inset-top)) clamp(18px, 3.5vw, 54px) 10px;
  background: rgba(7, 9, 14, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px) saturate(140%);
}

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

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 1px solid rgba(246, 173, 24, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(246, 173, 24, 0.12);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand small {
  margin-top: 2px;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  flex: 1;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: #c9d0dc;
  font-size: 0.88rem;
  font-weight: 720;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

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

.network-chip,
.live-label,
.eyebrow {
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.network-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  color: #d8e0ec;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.network-chip span,
.live-label span,
.status-orb,
.live-pulse,
.visual-tag span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(75, 219, 154, 0.12);
}

.network-chip.is-offline span {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255, 76, 68, 0.12);
}

.install-button,
.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 820;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.install-button,
.primary-link {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #0d0e10;
  box-shadow: 0 12px 34px rgba(246, 173, 24, 0.18);
}

.install-button:hover,
.primary-link:hover {
  transform: translateY(-2px);
  background: #ffd978;
}

.secondary-link {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--text);
}

.secondary-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 214, 107, 0.45);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(910px, calc(100svh - var(--header-height)));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
  background: url("./assets/hero-banner.png") center / cover no-repeat, #080b12;
  transform: scale(1.01);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.94) 0%, rgba(5, 7, 12, 0.55) 44%, rgba(5, 7, 12, 0.28) 67%, rgba(5, 7, 12, 0.66) 100%),
    linear-gradient(0deg, rgba(5, 7, 12, 0.96) 0%, transparent 42%, rgba(5, 7, 12, 0.18) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 78% 50%, transparent 20%, rgba(3, 5, 9, 0.36) 72%);
}

.hero-content {
  width: min(var(--max), calc(100% - 36px));
  min-height: inherit;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 510px);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  padding: 58px 0 72px;
}

.hero-message {
  align-self: end;
  max-width: 690px;
  padding-bottom: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold-bright);
}

.live-pulse {
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(255, 76, 68, 0.15);
  animation: live-pulse 1.7s ease-in-out infinite;
}

@keyframes live-pulse {
  50% { transform: scale(1.25); box-shadow: 0 0 0 9px rgba(255, 76, 68, 0.06); }
}

.hero-message h1 {
  max-width: 660px;
}

.hero-message > p {
  max-width: 620px;
  margin-bottom: 28px;
  color: #c9d1de;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  background: rgba(8, 11, 18, 0.58);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dde3ed;
  font-size: 0.78rem;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.hero-proof svg {
  color: var(--gold-bright);
}

.player-card {
  position: relative;
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0%, color-mix(in srgb, var(--station-color) 16%, transparent), transparent 45%),
    rgba(10, 14, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(30px) saturate(145%);
}

.player-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 11%;
  left: 11%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--station-color), transparent);
  opacity: 0.8;
}

.player-topline,
.now-playing,
.player-controls,
.volume-row,
.player-actions {
  display: flex;
  align-items: center;
}

.player-topline {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 25px;
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
}

.live-label span {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255, 76, 68, 0.12);
}

.quality-label {
  color: var(--subtle);
  font-size: 0.73rem;
  font-weight: 730;
}

.now-playing {
  min-height: 112px;
  gap: 19px;
}

.artwork-wrap {
  position: relative;
  flex: 0 0 112px;
  width: 112px;
  height: 112px;
}

.artwork-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #05070b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.42);
}

.artwork-ring {
  position: absolute;
  inset: -6px;
  z-index: -1;
  border: 1px solid color-mix(in srgb, var(--station-color) 65%, transparent);
  border-radius: 25px;
  opacity: 0.45;
}

.now-copy {
  min-width: 0;
}

.now-copy > span {
  display: block;
  margin-bottom: 7px;
  color: var(--station-color);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.now-copy h2 {
  display: -webkit-box;
  margin-bottom: 7px;
  overflow: hidden;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 790;
  letter-spacing: -0.035em;
  line-height: 1.08;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.now-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.player-controls {
  justify-content: center;
  gap: 14px;
  margin: 26px 0 20px;
}

.round-control,
.play-control,
.bare-control,
.player-actions button,
.dock-player button,
.station-play,
.station-switch {
  border: 0;
}

.round-control,
.play-control {
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.round-control {
  width: 49px;
  height: 49px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
}

.round-control:hover {
  background: rgba(255, 255, 255, 0.13);
}

.play-control {
  position: relative;
  width: 76px;
  height: 76px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--gold-bright), var(--station-color));
  color: #090b0f;
  box-shadow: 0 14px 36px color-mix(in srgb, var(--station-color) 28%, transparent);
  transition: transform 180ms ease;
}

.play-control:hover {
  transform: scale(1.045);
}

.play-control svg {
  width: 28px;
  height: 28px;
}

.pause-symbol,
.control-spinner,
body.is-playing .play-symbol,
body.is-connecting .play-control .play-symbol {
  display: none;
}

body.is-playing .pause-symbol {
  display: block;
}

body.is-connecting .control-spinner {
  display: block;
  width: 28px;
  height: 28px;
  border: 3px solid rgba(8, 11, 18, 0.25);
  border-top-color: #080b12;
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

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

.volume-row {
  gap: 12px;
  min-height: 42px;
  padding: 0 4px;
}

.bare-control {
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  background: transparent;
  color: var(--muted);
}

.volume-row input {
  min-width: 0;
  flex: 1;
  height: 4px;
  accent-color: var(--station-color);
}

.volume-row > span {
  width: 36px;
  color: var(--subtle);
  font-size: 0.7rem;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

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

.station-switch {
  min-width: 0;
  min-height: 62px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: left;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.station-switch span {
  display: block;
  width: 10px;
  height: 3px;
  margin-bottom: 8px;
  background: var(--switch-color);
  border-radius: 99px;
  transition: width 180ms ease;
}

.station-switch:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.station-switch.is-active {
  background: color-mix(in srgb, var(--switch-color) 12%, rgba(255, 255, 255, 0.04));
  border-color: color-mix(in srgb, var(--switch-color) 50%, transparent);
  color: #fff;
}

.station-switch.is-active span {
  width: 28px;
}

.player-actions {
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.player-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  flex: 1;
  padding: 0 9px;
  background: transparent;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
}

.player-actions button:hover,
.player-actions button.is-active {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.player-actions button.is-active svg {
  color: var(--gold-bright);
}

.broadcast-strip {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  min-height: 88px;
  margin: -1px auto 0;
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) 0.55fr 0.55fr auto;
  align-items: center;
  background: #0e131c;
  border: 1px solid var(--line);
  border-top: 2px solid rgba(246, 173, 24, 0.55);
}

.broadcast-strip > div,
.broadcast-strip > a {
  min-height: 58px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.broadcast-strip > div {
  display: grid;
  align-content: center;
}

.broadcast-strip > div:first-child {
  position: relative;
  padding-left: 54px;
}

.broadcast-strip strong,
.broadcast-strip small {
  display: block;
}

.broadcast-strip strong {
  font-size: 0.88rem;
}

.broadcast-strip small {
  color: var(--subtle);
  font-size: 0.7rem;
}

.status-orb {
  position: absolute;
  left: 25px;
  top: 25px;
}

.broadcast-strip > div:not(:first-child) strong {
  font-size: 1.2rem;
  font-variant-numeric: tabular-nums;
}

.broadcast-strip > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-right: 0;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.broadcast-strip > a:hover svg {
  transform: translateX(3px);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(90px, 11vw, 150px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 1.03rem;
}

.station-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.station-card {
  position: relative;
  min-width: 0;
  padding: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, #111721, #0c1018);
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.station-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--card-color) 50%, rgba(255, 255, 255, 0.18));
}

.station-image {
  position: relative;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  background: #05070b;
  border-radius: 15px;
}

.station-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 7, 11, 0.72), transparent 55%);
}

.station-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.station-card:hover .station-image img {
  transform: scale(1.035);
}

.station-live {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 29px;
  padding: 0 10px;
  background: rgba(5, 7, 11, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.station-live span {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.station-card-body {
  padding: 23px 10px 10px;
}

.station-tagline {
  display: block;
  margin-bottom: 9px;
  color: var(--card-color);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.station-card h3 {
  margin-bottom: 11px;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  letter-spacing: -0.045em;
}

.station-card p {
  min-height: 76px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.89rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}

.tag-row span {
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c3cbd7;
  font-size: 0.66rem;
  font-weight: 720;
}

.station-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.station-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  background: var(--card-color);
  border-radius: 999px;
  color: #080b10;
  font-size: 0.78rem;
  font-weight: 850;
}

.station-card-actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 770;
  text-decoration: none;
}

.recent-section {
  padding-top: 0;
}

.recent-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) 1.2fr;
  gap: clamp(30px, 6vw, 90px);
  padding: clamp(28px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(108, 140, 255, 0.11), transparent 38%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.recent-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.recent-heading p {
  color: var(--muted);
}

.history-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: history;
}

.history-list li {
  counter-increment: history;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
}

.history-list li::before {
  content: counter(history, decimal-leading-zero);
  color: var(--subtle);
  font-size: 0.68rem;
  font-weight: 780;
}

.history-list li:first-child span {
  color: var(--gold-bright);
}

.history-list span {
  min-width: 0;
  overflow: hidden;
  font-size: 0.88rem;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.history-list small {
  color: var(--subtle);
  font-size: 0.66rem;
  font-weight: 720;
}

.discover-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(40px, 7vw, 94px);
  align-items: center;
}

.discover-visual {
  position: relative;
}

.discover-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -26px 26px 26px -26px;
  border: 1px solid rgba(108, 140, 255, 0.3);
  border-radius: 26px;
}

.discover-visual img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.visual-tag {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 14px;
  background: rgba(7, 9, 14, 0.78);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.visual-tag span {
  background: var(--blue-bright);
  box-shadow: 0 0 0 5px rgba(108, 140, 255, 0.16);
}

.discover-copy .lead {
  margin-bottom: 26px;
  color: #c5ccd8;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.genre-row,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.genre-row {
  margin-bottom: 32px;
}

.genre-row span {
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 720;
}

.primary-link {
  border: 0;
}

.live-moments {
  display: grid;
  grid-template-columns: minmax(310px, 1fr) minmax(300px, 0.8fr) minmax(270px, 0.75fr);
  gap: 18px;
  align-items: stretch;
  padding: 28px;
  background:
    radial-gradient(circle at 15% 10%, rgba(246, 173, 24, 0.12), transparent 35%),
    #10151d;
  border: 1px solid var(--line);
  border-radius: 28px;
}

.live-moments-copy {
  padding: 22px;
}

.live-moments-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3.35rem);
}

.live-moments-copy p {
  color: var(--muted);
}

.time-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.time-cards > div,
.schedule-card {
  display: flex;
  min-height: 190px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.time-cards > div {
  flex-direction: column;
  justify-content: center;
}

.time-cards span,
.time-cards small,
.schedule-card small {
  color: var(--subtle);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.time-cards strong {
  margin: 7px 0 2px;
  color: var(--gold-bright);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.schedule-card {
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.schedule-card > svg:first-child {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: rgba(108, 140, 255, 0.14);
  border-radius: 12px;
  color: var(--blue-bright);
}

.schedule-card span {
  min-width: 0;
  flex: 1;
}

.schedule-card small,
.schedule-card strong {
  display: block;
}

.schedule-card strong {
  margin-top: 4px;
  line-height: 1.2;
}

.schedule-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(108, 140, 255, 0.42);
}

.app-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.app-copy p {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.02rem;
}

.app-copy > small {
  display: block;
  margin-top: 13px;
  color: var(--subtle);
  font-size: 0.68rem;
}

.app-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.app-features article {
  min-height: 200px;
  padding: 25px;
  background: linear-gradient(145deg, var(--surface-2), #0d121a);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.app-features svg {
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  padding: 9px;
  background: rgba(246, 173, 24, 0.12);
  border-radius: 10px;
  color: var(--gold-bright);
}

.app-features strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1rem;
}

.app-features p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.connect-section {
  padding-top: 30px;
}

.connect-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.connect-heading p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-grid a {
  position: relative;
  min-height: 250px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  text-decoration: none;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.service-grid a:hover {
  transform: translateY(-4px);
  background: var(--surface-2);
  border-color: rgba(246, 173, 24, 0.38);
}

.service-grid a > span {
  display: block;
  margin-bottom: 64px;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 850;
}

.service-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.service-grid p {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.service-grid svg {
  position: absolute;
  right: 26px;
  bottom: 27px;
  color: var(--gold-bright);
}

.contact-cta {
  width: min(var(--max), calc(100% - 36px));
  min-height: 410px;
  margin: 0 auto clamp(80px, 10vw, 130px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  background: #111721;
  border: 1px solid var(--line);
  border-radius: 28px;
}

.contact-cta > img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}

.contact-cta > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 6vw, 76px);
  background: radial-gradient(circle at 100% 0%, rgba(108, 140, 255, 0.16), transparent 50%);
}

.contact-cta p {
  color: var(--muted);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-links a {
  min-height: 42px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 760;
  text-decoration: none;
}

.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 46px 0 calc(32px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  border-radius: 50%;
}

.footer-brand strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.footer-brand p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 730;
  text-decoration: none;
}

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

.footer-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--subtle);
  font-size: 0.67rem;
}

.dock-player {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  width: min(680px, calc(100% - 28px));
  min-height: 72px;
  padding: 9px 10px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 48px 36px;
  gap: 12px;
  align-items: center;
  background: rgba(12, 16, 24, 0.94);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(22px);
  transform: translate(-50%, calc(100% + 32px));
  opacity: 0;
  pointer-events: none;
  transition: transform 240ms ease, opacity 240ms ease;
}

.dock-player.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.dock-player img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  background: #05070b;
  border-radius: 12px;
}

.dock-player > div {
  min-width: 0;
}

.dock-player strong,
.dock-player span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dock-player strong {
  font-size: 0.8rem;
}

.dock-player span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.7rem;
}

.dock-player button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.dock-player button:nth-last-child(2) {
  background: var(--station-color);
  color: #080b10;
}

.dock-player button:last-child {
  width: 34px;
  height: 34px;
  background: transparent;
  color: var(--subtle);
}

.toast {
  position: fixed;
  z-index: 120;
  top: calc(var(--header-height) + 16px);
  right: 20px;
  max-width: min(360px, calc(100% - 40px));
  padding: 13px 16px;
  background: rgba(14, 19, 28, 0.96);
  border: 1px solid rgba(246, 173, 24, 0.35);
  border-radius: 13px;
  box-shadow: var(--shadow);
  color: #eef1f6;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .network-chip {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
    gap: 34px;
    padding: 70px 0;
  }

  .hero-message {
    align-self: center;
  }

  .hero-message h1 {
    font-size: clamp(3.6rem, 8vw, 6rem);
  }

  .broadcast-strip {
    grid-template-columns: 1.35fr 0.55fr 0.55fr;
  }

  .broadcast-strip > a {
    grid-column: 1 / -1;
    min-height: 48px;
    border-top: 1px solid var(--line);
  }

  .station-grid,
  .service-grid {
    gap: 12px;
  }

  .live-moments {
    grid-template-columns: 1fr 1fr;
  }

  .schedule-card {
    grid-column: 1 / -1;
    min-height: 100px;
  }
}

@media (max-width: 840px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    gap: 12px;
    padding-inline: 14px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 0.8rem;
  }

  .brand small {
    font-size: 0.56rem;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .install-button {
    width: 44px;
    min-height: 44px;
    padding: 0;
  }

  .install-button span {
    display: none;
  }

  .hero {
    padding-top: min(46vw, 410px);
    overflow: hidden;
    background: var(--bg);
  }

  .hero-image {
    bottom: auto;
    height: min(54vw, 450px);
    background-position: center;
  }

  .hero-shade {
    bottom: auto;
    height: min(54vw, 450px);
    background: linear-gradient(0deg, var(--bg) 0%, transparent 60%);
  }

  .hero::after {
    bottom: auto;
    height: min(54vw, 450px);
  }

  .hero-content {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 0 42px;
  }

  .hero-message {
    align-self: auto;
    padding: 0;
  }

  .hero-message h1 {
    font-size: clamp(3.3rem, 12vw, 5.5rem);
  }

  .hero-message > p {
    font-size: 1rem;
  }

  .player-card {
    border-radius: 22px;
  }

  .broadcast-strip {
    width: calc(100% - 28px);
    grid-template-columns: 1.25fr 0.75fr;
  }

  .broadcast-strip > div:nth-child(3) {
    display: none;
  }

  .section,
  .contact-cta,
  .site-footer {
    width: calc(100% - 28px);
  }

  .section-heading,
  .recent-panel,
  .discover-section,
  .app-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 24px;
  }

  .section-heading > p {
    max-width: 620px;
  }

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

  .station-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) 1.1fr;
    gap: 8px;
  }

  .station-image {
    height: 100%;
    aspect-ratio: auto;
  }

  .station-card p {
    min-height: 0;
  }

  .recent-panel {
    gap: 20px;
  }

  .discover-section {
    gap: 54px;
  }

  .discover-visual::before {
    inset: -16px 18px 18px -16px;
  }

  .app-section {
    gap: 45px;
  }

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

  .service-grid a {
    min-height: 190px;
  }

  .service-grid a > span {
    margin-bottom: 40px;
  }

  .contact-cta {
    grid-template-columns: 1fr;
  }

  .contact-cta > img {
    min-height: 260px;
    max-height: 330px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 580px) {
  body.has-dock {
    padding-bottom: 88px;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero {
    padding-top: min(62vw, 320px);
  }

  .hero-image,
  .hero-shade,
  .hero::after {
    height: min(70vw, 360px);
  }

  .hero-content {
    width: calc(100% - 24px);
  }

  .hero-message .eyebrow {
    margin-bottom: 12px;
  }

  .hero-message h1 {
    margin-bottom: 16px;
    font-size: clamp(3.1rem, 16vw, 4.6rem);
  }

  .hero-proof span {
    min-height: 35px;
    font-size: 0.68rem;
  }

  .player-card {
    padding: 20px 16px 16px;
  }

  .player-topline {
    margin-bottom: 20px;
  }

  .now-playing {
    min-height: 82px;
    gap: 14px;
  }

  .artwork-wrap {
    flex-basis: 82px;
    width: 82px;
    height: 82px;
  }

  .artwork-wrap img {
    border-radius: 15px;
  }

  .artwork-ring {
    border-radius: 19px;
  }

  .now-copy h2 {
    font-size: 1.22rem;
  }

  .player-controls {
    margin: 22px 0 15px;
  }

  .play-control {
    width: 68px;
    height: 68px;
  }

  .station-switch {
    min-height: 58px;
    padding: 7px;
    font-size: 0.61rem;
  }

  .player-actions button {
    font-size: 0.68rem;
  }

  .broadcast-strip {
    width: calc(100% - 24px);
  }

  .broadcast-strip > div,
  .broadcast-strip > a {
    padding-inline: 14px;
  }

  .broadcast-strip > div:first-child {
    padding-left: 42px;
  }

  .status-orb {
    left: 16px;
  }

  .broadcast-strip strong {
    font-size: 0.75rem;
  }

  .section,
  .contact-cta,
  .site-footer {
    width: calc(100% - 24px);
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .station-card {
    display: block;
  }

  .station-image {
    height: auto;
    aspect-ratio: 1.45 / 1;
  }

  .station-card-body {
    padding: 20px 8px 8px;
  }

  .station-card h3 {
    font-size: 1.65rem;
  }

  .recent-section {
    padding-top: 0;
  }

  .recent-panel {
    padding: 24px 18px;
    border-radius: 21px;
  }

  .history-list li {
    grid-template-columns: 29px minmax(0, 1fr);
  }

  .history-list small {
    display: none;
  }

  .discover-visual img {
    border-radius: 20px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .live-moments {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 22px;
  }

  .live-moments-copy {
    padding: 18px 8px;
  }

  .time-cards {
    grid-template-columns: 1fr 1fr;
  }

  .time-cards > div {
    min-height: 150px;
    padding: 14px;
  }

  .schedule-card {
    grid-column: auto;
    min-height: 95px;
  }

  .app-features {
    grid-template-columns: 1fr;
  }

  .app-features article {
    min-height: 160px;
  }

  .app-features svg {
    margin-bottom: 20px;
  }

  .contact-cta {
    margin-bottom: 72px;
    border-radius: 22px;
  }

  .contact-cta > img {
    min-height: 220px;
  }

  .contact-links {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-links a {
    text-align: center;
  }

  .footer-brand img {
    width: 58px;
    height: 58px;
  }

  .footer-links {
    gap: 14px;
  }

  .dock-player {
    bottom: max(8px, env(safe-area-inset-bottom));
    width: calc(100% - 16px);
    min-height: 68px;
    grid-template-columns: 48px minmax(0, 1fr) 44px 28px;
    gap: 8px;
    border-radius: 17px;
  }

  .dock-player img {
    width: 48px;
    height: 48px;
  }

  .dock-player button:last-child {
    width: 28px;
  }

  .toast {
    right: 12px;
    max-width: calc(100% - 24px);
  }
}

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

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

@media (prefers-contrast: more) {
  :root {
    --muted: #d0d6e0;
    --subtle: #abb5c5;
    --line: rgba(255, 255, 255, 0.24);
  }
}

/* Flagship experience */

body {
  position: relative;
  isolation: isolate;
}

.ambient-backdrop {
  position: fixed;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-backdrop img {
  position: absolute;
  top: 4vh;
  right: -8vw;
  width: min(58vw, 780px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  filter: blur(105px) saturate(170%);
  opacity: 0.11;
  transform: scale(1.14);
  transition: opacity 600ms ease, transform 900ms cubic-bezier(.2,.8,.2,1);
}

body.is-playing .ambient-backdrop img {
  opacity: 0.18;
  transform: scale(1.22) rotate(3deg);
}

.ambient-orb {
  position: absolute;
  width: 36rem;
  height: 36rem;
  border: 1px solid color-mix(in srgb, var(--station-color) 18%, transparent);
  border-radius: 50%;
  opacity: 0.35;
}

.ambient-orb::before,
.ambient-orb::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: inherit;
  border-radius: inherit;
}

.ambient-orb::after {
  inset: 28%;
}

.ambient-orb-one {
  top: 8%;
  right: -18rem;
}

.ambient-orb-two {
  bottom: 16%;
  left: -22rem;
  width: 44rem;
  height: 44rem;
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress::before {
  content: "";
  display: block;
  width: var(--scroll-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--station-color), var(--gold-bright));
  box-shadow: 0 0 14px color-mix(in srgb, var(--station-color) 70%, transparent);
  transition: width 80ms linear;
}

.hero-message h1 {
  background: linear-gradient(135deg, #ffffff 20%, #ffffff 54%, #ffe8a5 82%, var(--gold-bright));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.hero-listen-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 62px;
  padding: 7px 22px 7px 8px;
  background: linear-gradient(135deg, #ffe08a, var(--station-color));
  border: 0;
  border-radius: 999px;
  color: #090b0f;
  box-shadow: 0 18px 48px color-mix(in srgb, var(--station-color) 26%, transparent);
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-listen-button:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 22px 58px color-mix(in srgb, var(--station-color) 34%, transparent);
}

.hero-button-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: rgba(9, 11, 15, 0.92);
  border-radius: 50%;
  color: #fff;
}

.hero-button-icon svg {
  width: 20px;
  height: 20px;
}

.hero-listen-button small,
.hero-listen-button strong {
  display: block;
}

.hero-listen-button small {
  margin-bottom: 1px;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.7;
  text-transform: uppercase;
}

.hero-listen-button strong {
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

.hero-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 4px;
  color: #eef2f8;
  font-size: 0.82rem;
  font-weight: 790;
  text-decoration: none;
}

.hero-explore-link svg {
  color: var(--gold-bright);
  transition: transform 180ms ease;
}

.hero-explore-link:hover svg {
  transform: translateX(4px);
}

.player-card {
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.56),
    0 0 65px color-mix(in srgb, var(--station-color) 8%, transparent),
    inset 0 1px rgba(255, 255, 255, 0.06);
}

.signal-console {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(150px, 1.2fr);
  align-items: end;
  gap: 18px;
  min-height: 76px;
  margin-top: 19px;
  padding: 14px 15px;
  background:
    linear-gradient(110deg, color-mix(in srgb, var(--station-color) 9%, transparent), transparent 56%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.signal-copy span,
.signal-copy strong,
.signal-copy small {
  display: block;
}

.signal-copy span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
  color: var(--station-color);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-copy span i {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 76, 68, 0.11);
}

.signal-copy strong {
  margin-bottom: 1px;
  font-size: 0.8rem;
}

.signal-copy small {
  overflow: hidden;
  color: var(--subtle);
  font-size: 0.63rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.signal-bars {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 3px;
  height: 45px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 100%);
}

.signal-bars i {
  flex: 1 1 4px;
  max-width: 7px;
  height: var(--bar);
  min-height: 5px;
  background: linear-gradient(180deg, var(--gold-bright), var(--station-color));
  border-radius: 99px 99px 2px 2px;
  opacity: 0.32;
  transform-origin: bottom;
}

body.is-connecting .signal-bars i {
  animation: signal-scan 950ms ease-in-out infinite alternate;
  animation-delay: var(--delay);
  opacity: 0.62;
}

body.is-playing .signal-bars i {
  animation: signal-live 720ms cubic-bezier(.45,.05,.55,.95) infinite alternate;
  animation-delay: var(--delay);
  opacity: 0.9;
}

@keyframes signal-live {
  from { transform: scaleY(0.24); opacity: 0.42; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes signal-scan {
  from { transform: scaleY(0.14); }
  to { transform: scaleY(0.72); }
}

.network-marquee {
  overflow: hidden;
  padding: 18px 0;
  background:
    linear-gradient(90deg, rgba(246, 173, 24, 0.07), transparent 26%, rgba(108, 140, 255, 0.06) 72%, transparent),
    #090d14;
  border-bottom: 1px solid var(--line);
}

.network-marquee > div {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  width: max-content;
  animation: network-roll 28s linear infinite;
  white-space: nowrap;
}

.network-marquee strong,
.network-marquee em {
  font-size: clamp(1.05rem, 2.2vw, 1.65rem);
  letter-spacing: -0.035em;
}

.network-marquee strong {
  color: #e8edf5;
}

.network-marquee em {
  color: var(--gold-bright);
  font-style: normal;
  font-weight: 850;
}

.network-marquee span {
  width: 7px;
  height: 7px;
  background: var(--station-color);
  border-radius: 50%;
  box-shadow: 0 0 14px color-mix(in srgb, var(--station-color) 72%, transparent);
}

@keyframes network-roll {
  to { transform: translateX(-50%); }
}

.station-card {
  isolation: isolate;
}

.station-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.station-card:hover::before,
.station-card.is-active::before {
  border-color: color-mix(in srgb, var(--card-color, var(--station-color)) 44%, transparent);
  box-shadow: inset 0 0 40px color-mix(in srgb, var(--card-color, var(--station-color)) 6%, transparent);
}

.dock-player {
  grid-template-columns: 52px minmax(0, 1fr) 58px 48px 36px;
  background:
    linear-gradient(105deg, color-mix(in srgb, var(--station-color) 10%, transparent), transparent 46%),
    rgba(12, 16, 24, 0.95);
  box-shadow:
    0 22px 76px rgba(0, 0, 0, 0.62),
    0 0 40px color-mix(in srgb, var(--station-color) 9%, transparent);
}

.dock-signal {
  display: flex !important;
  align-items: end;
  justify-content: center;
  gap: 3px;
  height: 26px;
  margin: 0 !important;
  overflow: visible !important;
}

.dock-signal i {
  display: block;
  width: 3px;
  height: 34%;
  background: var(--station-color);
  border-radius: 99px;
  opacity: 0.36;
}

.dock-signal i:nth-child(2),
.dock-signal i:nth-child(4) { height: 72%; }
.dock-signal i:nth-child(3) { height: 100%; }

body.is-playing .dock-signal i {
  animation: dock-wave 560ms ease-in-out infinite alternate;
}

body.is-playing .dock-signal i:nth-child(2) { animation-delay: -210ms; }
body.is-playing .dock-signal i:nth-child(3) { animation-delay: -390ms; }
body.is-playing .dock-signal i:nth-child(4) { animation-delay: -120ms; }
body.is-playing .dock-signal i:nth-child(5) { animation-delay: -320ms; }

@keyframes dock-wave {
  from { transform: scaleY(0.28); opacity: 0.4; }
  to { transform: scaleY(1); opacity: 1; }
}

.has-reveal .reveal-target {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1);
}

.has-reveal .reveal-target.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 840px) {
  .hero-actions {
    justify-content: center;
  }

  .ambient-backdrop img {
    top: 12vh;
    right: -36vw;
    width: 98vw;
  }

  .network-marquee {
    padding: 14px 0;
  }
}

@media (max-width: 580px) {
  .hero-listen-button {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-explore-link {
    width: 100%;
    justify-content: center;
  }

  .signal-console {
    grid-template-columns: minmax(105px, 0.8fr) minmax(120px, 1.2fr);
    gap: 10px;
    padding: 12px;
  }

  .signal-bars {
    gap: 2px;
    height: 38px;
  }

  .dock-player {
    grid-template-columns: 48px minmax(0, 1fr) 44px 28px;
  }

  .dock-signal {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-backdrop img,
  .network-marquee > div,
  .signal-bars i,
  .dock-signal i,
  .has-reveal .reveal-target {
    animation: none !important;
    transition: none !important;
  }

  .network-marquee > div {
    transform: none;
  }

  .has-reveal .reveal-target {
    opacity: 1;
    transform: none;
  }
}
