:root {
  --bg: #090b10;
  --bg-soft: rgba(9, 11, 16, 0.78);
  --panel: rgba(19, 24, 31, 0.78);
  --text: #f5f1e8;
  --muted: rgba(245, 241, 232, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --accent: #c8922a;
  --glow: rgba(200, 146, 42, 0.35);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
  --topbar-height: 0px;
  --sticky-player-height: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(180deg, #08090d 0%, #0f131a 45%, #090b10 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, var(--glow), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
  transition: background 240ms ease;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.atmosphere__gradient,
.atmosphere__art,
.atmosphere__scanlines,
.atmosphere__grain {
  position: absolute;
  inset: 0;
}

.atmosphere__gradient {
  background:
    radial-gradient(circle at 18% 18%, var(--glow), transparent 30%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 55%);
  transition: background 300ms ease;
}

.atmosphere__art {
  background-position: center;
  background-size: cover;
  opacity: 0.18;
  filter: blur(18px) saturate(1.1);
  transform: scale(1.08);
  transition: background-image 320ms ease, opacity 320ms ease;
}

.atmosphere__scanlines {
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01) 1px,
    transparent 1px,
    transparent 4px
  );
  opacity: 0.08;
}

.atmosphere__grain {
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px);
  background-size: 22px 22px, 18px 18px;
  mix-blend-mode: soft-light;
  opacity: 0.18;
}

.topbar,
.section {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.topbar {
  display: none;
}

body.has-sticky-player main {
  padding-top: var(--sticky-player-height);
}

.sticky-player {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 19;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.sticky-player.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-player__inner {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -18px 36px rgba(0, 0, 0, 0.18),
    var(--shadow);
  backdrop-filter: blur(18px);
}

.sticky-player__meta,
.sticky-player__copy,
.hero-player__stack {
  display: flex;
}

.sticky-player__meta {
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.sticky-player__station-block,
.sticky-player__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sticky-player__station-block strong,
.sticky-player__copy strong,
.sticky-player__frequency {
  font-family: "Barlow Condensed", sans-serif;
}

.sticky-player__frequency {
  color: rgba(245, 241, 232, 0.92);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.sticky-player__station-block strong,
.sticky-player__copy strong {
  font-size: 1.2rem;
  line-height: 0.95;
}

.sticky-player__station-block strong {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sticky-player__station-block #sticky-frequency,
.sticky-player__station-block #sticky-station {
  display: block;
  width: 100%;
}

.sticky-player__copy span {
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-player__art {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.24);
}

.sticky-player__station-nav,
.sticky-player__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sticky-player__station-nav {
  justify-content: center;
  min-width: 220px;
}

.sticky-player__station-nav .sticky-player__station-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 12px 40px var(--glow);
}

.brand__text,
.dial-readout {
  display: flex;
  flex-direction: column;
}

.brand__text strong,
.nav a,
.section-heading h2,
.dial-readout__name,
.player-track,
.about-card h3,
.station-panel__name,
.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
}

.brand__text strong {
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.brand__text small,
.nav a,
.hero__description,
.station-panel__tagline,
.about-card p {
  color: var(--muted);
}

.nav {
  display: inline-flex;
  gap: 22px;
}

.section {
  padding: 42px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 28px;
  width: 100%;
  margin: 0;
  padding:
    clamp(44px, 7vw, 72px)
    max(16px, calc((100vw - var(--container)) / 2))
    clamp(28px, 4vw, 44px);
  align-items: stretch;
  position: relative;
  overflow: hidden;
  min-height: auto;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  border-radius: 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.88) 0%, rgba(7, 9, 13, 0.72) 42%, rgba(7, 9, 13, 0.48) 100%),
    linear-gradient(180deg, rgba(4, 6, 10, 0.28) 0%, rgba(4, 6, 10, 0.6) 100%);
}

.hero::after {
  background:
    radial-gradient(circle at 16% 24%, var(--glow), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.26)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 34%);
  mix-blend-mode: screen;
  opacity: 0.55;
}

.hero-player__stack {
  flex-direction: column;
  gap: 28px;
}

.hero__headline {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero__frequency-badge {
  min-width: 110px;
}

.hero__copy,
.station-panel,
.station-info-panel,
.dial-card,
.player-card,
.about-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.07), transparent 34%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -26px 40px rgba(0, 0, 0, 0.14),
    var(--shadow);
  backdrop-filter: blur(18px);
}

.hero__copy {
  z-index: 1;
  padding: clamp(28px, 4vw, 46px);
  align-self: end;
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.46), rgba(6, 8, 12, 0.22));
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.dial-card::before,
.player-card::before,
.station-panel::before,
.station-info-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.14), transparent 18%, transparent 70%, rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.12), transparent 42%);
  opacity: 0.55;
  pointer-events: none;
}

.dial-card::after,
.player-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  max-width: 10ch;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.4);
}

.hero h1 span {
  color: var(--accent);
}

.hero__lede {
  margin: 14px 0 0;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  max-width: 24ch;
  color: rgba(245, 241, 232, 0.92);
}

.station-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.station-meta span,
.frequency-badge,
.preset-button,
.quick-strip__button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.station-meta span {
  padding: 10px 16px;
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
}

.hero__description {
  margin: 0 0 20px;
  max-width: 54ch;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.transport__button:hover,
.dial-arrow:hover,
.preset-button:hover,
.quick-strip__button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), rgba(255, 255, 255, 0.25));
  color: #120d05;
  font-weight: 700;
  box-shadow:
    0 0 24px rgba(255, 204, 122, 0.16),
    0 12px 26px rgba(0, 0, 0, 0.24);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.station-panel,
.station-info-panel,
.dial-card,
.player-card,
.about-card {
  padding: 28px;
}

.hero-player-card {
  min-width: 0;
  z-index: 1;
  align-self: center;
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.54), rgba(7, 10, 14, 0.3)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 36%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -26px 40px rgba(0, 0, 0, 0.2),
    0 30px 80px rgba(0, 0, 0, 0.42);
}

.hero-player-card__brandbar {
  position: relative;
  z-index: 1;
  margin: -28px -28px 18px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.hero-player-card__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-player-card__brand-hello {
  color: #d64747;
}

.hero-player-card__brand-texas {
  color: #f5f1e8;
}

.hero-player-card__brand-records {
  color: #4f8ee8;
}

.hero-player-card .station-panel__body {
  width: 100%;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.hero-player-card .player-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

.hero-player-card .player-card__main,
.hero-player-card .player-controls {
  position: relative;
  z-index: 1;
}

.hero-player-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.7fr) 92px;
  gap: 18px;
  align-items: center;
}

.hero-player-layout__track {
  align-items: flex-start;
}

.hero-player-layout__station {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.hero-player-layout__frequency {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 0.85;
  letter-spacing: 0.08em;
  color: #6ECFFF;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
}

.hero-player-layout__art {
  width: 100%;
  max-width: 92px;
  justify-self: end;
}

.hero-player-card .player-station {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: rgba(245, 241, 232, 0.88);
}

.hero-player-card .player-track {
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
}

.player-artist {
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: rgba(245, 241, 232, 0.9);
}

.hero-player-card .player-album {
  margin-top: 6px;
  font-size: 0.9rem;
  color: rgba(245, 241, 232, 0.76);
}

.station-panel__header,
.dial-topline,
.player-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dial-topline {
  margin-bottom: 10px;
}

.frequency-badge {
  min-width: 92px;
  padding: 10px 14px;
  text-align: center;
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}

.station-panel__body {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 22px;
  margin-top: 18px;
}

.station-panel__cover,
.player-art {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.station-panel__name {
  margin: 0;
  font-size: 2.2rem;
  line-height: 0.95;
}

.station-panel__tagline {
  margin: 10px 0 18px;
  font-size: 1rem;
  line-height: 1.5;
}

.station-facts {
  display: grid;
  gap: 14px;
  margin: 0;
}

.station-facts div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.station-facts dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.station-facts dd {
  margin: 0;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  max-width: 12ch;
}

.dial-readout {
  align-items: center;
  gap: 6px;
}

.dial-readout__frequency {
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.2rem, 7vw, 3.6rem);
  letter-spacing: 0.1em;
  text-shadow: 0 0 18px var(--glow);
}

.dial-readout__name {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.88);
}

.dial-arrow,
.transport__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  color: var(--text);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 22px rgba(0, 0, 0, 0.2);
}

.dial-arrow {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  font-size: 1.4rem;
}

.dial {
  position: relative;
  margin: 34px 0 28px;
  padding: 42px 12px 18px;
  touch-action: pan-y;
  overflow: visible;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 38%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -20px 34px rgba(0, 0, 0, 0.18);
}

.dial__track {
  position: relative;
  z-index: 1;
  height: 16px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06) 35%, rgba(0, 0, 0, 0.2)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.08),
    inset 0 -4px 8px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(0, 0, 0, 0.18);
}

.dial__track::before {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  top: -18px;
  height: 6px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.42) 0 2px,
      transparent 2px 34px
    );
  opacity: 0.65;
}

.dial__track::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--glow), transparent);
  opacity: 0.4;
  filter: blur(8px);
}

.dial__ticks {
  position: absolute;
  inset: 0 12px;
  z-index: 2;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 4.6%,
      rgba(255, 255, 255, 0.08) 4.6% 4.75%,
      transparent 4.75% 9.2%
    );
  border-radius: 18px;
  opacity: 0.5;
}

.dial__tick {
  position: absolute;
  bottom: 30px;
  transform: translateX(-50%);
  text-align: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  z-index: 3;
}

.dial__tick::before {
  content: "";
  display: block;
  width: 2px;
  height: 24px;
  margin: 0 auto 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.18));
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.dial__tick span {
  display: block;
  color: rgba(245, 241, 232, 0.9);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: none;
  white-space: nowrap;
}

.dial__tick.is-active span {
  color: var(--accent);
  text-shadow: 0 0 12px var(--glow);
}

.dial__knob {
  position: absolute;
  top: 26px;
  left: 12px;
  z-index: 4;
  width: 30px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.55) 20%, var(--accent) 82%, rgba(88, 55, 7, 0.92)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.16));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -8px 12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.25),
    0 0 28px var(--glow),
    0 18px 30px rgba(0, 0, 0, 0.28);
  cursor: grab;
  transform: translateX(-50%);
}

.dial__knob:active {
  cursor: grabbing;
}

.preset-row,
.quick-strip,
.about-grid {
  display: grid;
  gap: 12px;
}

.preset-row {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
}

.preset-button,
.quick-strip__button {
  color: var(--text);
  cursor: pointer;
}

.preset-button {
  min-height: 58px;
  padding: 12px 16px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.14);
}

.preset-button strong,
.quick-strip__button strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.preset-button span,
.quick-strip__button span {
  color: var(--muted);
  font-size: 0.84rem;
}

.preset-button.is-active,
.quick-strip__button.is-active {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 10px 28px var(--glow);
}

.quick-strip {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 22px;
  opacity: 0.92;
}

.roster-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 320px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 46%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 44px rgba(0, 0, 0, 0.2);
}

.roster-card::before,
.roster-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.roster-card::before {
  background-image: var(--roster-card-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  filter: saturate(1.04);
  opacity: 0.78;
}

.roster-card::after {
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.12) 0%, rgba(5, 7, 11, 0.34) 42%, rgba(5, 7, 11, 0.9) 100%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 28%);
}

.roster-card__art,
.roster-card__body {
  position: relative;
  z-index: 1;
}

.roster-card__body {
  display: grid;
  gap: 18px;
  width: 100%;
  padding: 22px;
}

.roster-card__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.roster-card__frequency,
.roster-card__genre {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 10, 16, 0.34);
  backdrop-filter: blur(10px);
}

.roster-card__frequency {
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.08em;
}

.roster-card__genre {
  color: rgba(245, 241, 232, 0.82);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.roster-card__copy {
  display: grid;
  gap: 10px;
}

.roster-card__copy strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.36);
}

.roster-card__copy span {
  max-width: 30ch;
  color: rgba(245, 241, 232, 0.8);
  line-height: 1.55;
}

.roster-card__now-playing {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 28ch;
}

.roster-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.roster-card__button,
.roster-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 10, 16, 0.42);
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.roster-card__button:hover,
.roster-card__link:hover {
  transform: translateY(-1px);
}

.roster-card__button {
  font-weight: 700;
}

.roster-card__button--ghost {
  background: rgba(255, 255, 255, 0.08);
}

.roster-card__link {
  color: rgba(245, 241, 232, 0.9);
}

.roster-card.is-active {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 20px 38px rgba(0, 0, 0, 0.24),
    0 0 32px var(--glow);
}

.roster-card.is-active .roster-card__frequency {
  box-shadow: 0 0 20px var(--glow);
}

.player-card {
  gap: 24px;
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 55%);
}

.player-card__main {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  flex: 1 1 44%;
}

.player-copy {
  min-width: 0;
}

.player-station {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.player-track {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.04);
}

.player-album {
  margin: 14px 0 0;
  color: var(--muted);
}

.player-controls {
  display: flex;
  flex: 1 1 56%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.transport {
  display: flex;
  align-items: center;
  gap: 10px;
}

.transport__button {
  min-width: 46px;
  height: 46px;
  border-radius: 999px;
}

.transport__button--play {
  min-width: 94px;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--accent), rgba(255, 255, 255, 0.25));
  color: #120d05;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 0 26px rgba(255, 202, 102, 0.18),
    0 12px 24px rgba(0, 0, 0, 0.18);
}

.progress,
.volume {
  display: grid;
  gap: 12px;
}

.progress {
  grid-template-columns: 44px minmax(180px, 1fr) 44px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.progress span,
.volume label {
  color: var(--muted);
  font-size: 0.88rem;
}

.progress__slider,
.volume__slider {
  width: 100%;
  accent-color: var(--accent);
}

.volume {
  padding: 10px 12px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.about-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-card h3 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
}

.about-card p {
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .hero,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }

  .player-card {
    flex-direction: column;
  }

  .hero-player-card .station-panel__body {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding:
      24px 16px 28px;
    min-height: auto;
  }

  .hero__copy,
  .station-panel,
  .dial-card,
  .player-card,
  .about-card,
  .sticky-player__inner {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-player-card__brandbar {
    margin: -22px -22px 16px;
    padding: 10px 16px;
  }

  .hero__headline {
    align-items: flex-start;
    gap: 14px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .sticky-player {
    top: 8px;
  }

  .sticky-player__inner {
    width: calc(100% - 16px);
    padding: 10px 12px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "copy art"
      "station station"
      "controls controls";
    align-items: center;
    gap: 8px 10px;
  }

  .sticky-player__meta {
    grid-area: copy;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
  }

  .sticky-player__art {
    grid-area: art;
    width: 46px;
    height: 46px;
    justify-self: end;
    order: 2;
  }

  .sticky-player__copy {
    min-width: 0;
  }

  .sticky-player__copy span {
    white-space: nowrap;
  }

  .sticky-player__station-nav {
    grid-area: station;
    width: 100%;
    min-width: 0;
    justify-content: center;
    gap: 8px;
  }

  .sticky-player__station-nav .sticky-player__station-block {
    min-width: 0;
  }

  .sticky-player__station-block #sticky-frequency,
  .sticky-player__station-block #sticky-station {
    width: auto;
    white-space: nowrap;
  }

  .sticky-player__controls {
    grid-area: controls;
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .sticky-player .transport__button {
    min-width: 42px;
    min-height: 42px;
  }

  .sticky-player #sticky-play {
    min-width: 92px;
  }

  .radio-top .hero-player-card__brandbar {
    display: flex;
  }

  .station-panel__body,
  .player-card__main {
    grid-template-columns: 1fr;
  }

  .hero-player-card .station-panel__body {
    gap: 18px;
  }

  .hero-player-layout {
    grid-template-columns: 1fr;
  }

  .hero-player-layout__station {
    align-items: flex-start;
    text-align: left;
  }

  .hero-player-layout__art {
    justify-self: start;
    max-width: 76px;
  }

  .quick-strip {
    grid-template-columns: 1fr;
  }

  .roster-card {
    min-height: 280px;
  }

  .station-panel__cover,
  .player-art {
    max-width: 180px;
  }

  .dial {
    padding: 36px 4px 14px;
  }

  .dial__ticks {
    inset: 0 4px;
  }

  .dial__tick span {
    font-size: 0.72rem;
  }

  .progress {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }
}

/* Layout refresh */
.section {
  padding: 24px 0;
}

.radio-top.section {
  padding-bottom: 12px;
}

.radio-top__header {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 14px;
}

.radio-top__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: fit-content;
  min-width: 0;
  flex: 0 0 auto;
}

.radio-top__center {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: auto;
}

.radio-top__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 4px;
}

.radio-top__meta-line {
  margin: 3px 0;
  font-size: 0.9rem;
  color: rgba(245, 241, 232, 0.9);
  line-height: 1.3;
}

.radio-top__brandbar {
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: center;
}

.radio-top__station-nav {
  width: auto;
  display: inline-flex;
  justify-content: center;
}

.radio-top__station-block {
  gap: 6px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: auto;
  min-width: max-content;
  max-width: none;
}

.radio-top__art {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  width: 184px;
  margin: 0;
}

.radio-top__art-image {
  width: 184px;
  max-width: 184px;
  max-height: 184px;
}

.radio-top__copy .player-track,
.radio-top__copy .player-artist,
.radio-top__copy .player-album {
  font-family: "Manrope", sans-serif;
  font-size: 1rem !important;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: none;
}

.radio-top__copy .player-track {
  margin: 0;
  max-width: 100%;
}

.radio-top__copy .player-artist {
  margin: 6px 0 0;
}

.radio-top__copy .player-album {
  margin: 6px 0 0;
  color: rgba(245, 241, 232, 0.72);
}

.radio-top .hero-player-card__brandbar {
  display: none;
}

.radio-top__play-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.radio-top .radio-top__station-block {
  gap: 4px;
}

.radio-top__controls {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(180px, 220px);
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.radio-top__controls .progress {
  order: 1;
}

.radio-top__controls .transport--hero {
  order: 2;
  justify-self: center;
}

.radio-top__controls .volume {
  order: 3;
}

.radio-top .player-station {
  display: inline-block;
  width: max-content;
  min-width: max-content;
  max-width: none;
  white-space: nowrap !important;
  text-wrap: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.radio-top .transport__button--hero-play {
  min-width: 108px;
  min-height: 36px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.radio-top .dial-card {
  background:
    linear-gradient(180deg, rgba(16, 16, 18, 0.96), rgba(9, 9, 11, 0.9)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.025), transparent 28%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 -22px 34px rgba(0, 0, 0, 0.32),
    0 24px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px) saturate(0.78);
}

.radio-top .dial-card::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%, transparent 78%, rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 50% -12%, rgba(255, 255, 255, 0.04), transparent 38%);
  opacity: 0.38;
}

.radio-top .dial-card::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.hero {
  grid-template-columns: 1fr;
  gap: 18px;
  padding:
    12px
    max(16px, calc((100vw - var(--container)) / 2))
    16px;
  background-position: center;
  background-size: cover;
  min-height: 0;
}

.hero h1 {
  max-width: none;
}

.hero__copy {
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.station-panel__header--wide {
  align-items: flex-start;
  gap: 16px;
}

.station-panel__heading {
  display: grid;
  gap: 10px;
}

.station-panel__body--wide {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.station-panel__copy {
  min-width: 0;
}

.station-panel__copy--summary {
  display: grid;
  gap: 12px;
}

.station-panel__actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.station-panel__description {
  margin-bottom: 0;
  max-width: none;
}

.station-meta--compact {
  margin: 0 0 14px;
}

.station-meta--compact span {
  padding: 8px 12px;
  font-size: 0.82rem;
}

.hero-player-card__brandbar {
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 14px;
  padding-bottom: 14px;
}

.hero-player-card__brand {
  width: 100%;
  justify-content: center;
  font-size: 1.65rem;
  letter-spacing: 0.08em;
}

.hero-player-card__brand-radio {
  color: #4f8ee8;
}

.hero-player-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.9fr) 120px;
  gap: 20px;
  align-items: center;
}

.hero-player-layout__station-nav {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 6px;
}

.player-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.player-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.player-track {
  font-size: 1.12rem;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: none;
}

.player-artist {
  margin: 10px 0 0;
  font-size: 1.12rem;
  color: rgba(245, 241, 232, 0.92);
}

.player-album {
  margin: 8px 0 0;
  font-size: 1.12rem;
  color: rgba(245, 241, 232, 0.72);
}

.hero-player-layout__station {
  gap: 4px;
}

.hero-player-layout__art {
  max-width: 120px;
}

.hero-player-card .player-card__main.hero-player-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.85fr) 128px;
  gap: 18px;
  align-items: center;
}

.hero-player-card .hero-player-layout__track {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-player-card .hero-player-layout__station-nav {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 4px;
}

.hero-player-card .hero-player-layout__station {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}

.hero-player-card .hero-player-layout__art {
  width: 128px;
  max-width: 128px;
  justify-self: end;
}

.station-panel__embedded-player {
  margin-top: 20px;
}

.radio-top__player {
  margin-top: 18px;
  border-radius: 24px;
}

.station-panel__cover--hidden {
  display: none;
}

.player-controls--integrated {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) minmax(180px, 220px);
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.transport--hero {
  gap: 12px;
}

.transport__button--hero-play {
  min-width: 130px;
  min-height: 40px;
  font-size: 1rem;
}

.hero-player-card .player-station {
  margin: 0;
}

.hero-player-card .transport__button--hero-play {
  min-width: 140px;
}

.hero-player-card .progress,
.hero-player-card .volume {
  margin: 0;
}

.dial-card {
  padding: 22px;
}

.preset-row {
  gap: 10px;
}

.preset-button {
  min-height: 48px;
  padding: 10px 12px;
}

.preset-button strong {
  font-size: 0.98rem;
}

.preset-button span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.quick-strip {
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 12px;
}

.roster-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: stretch;
  min-height: 0;
  overflow: hidden;
}

.roster-card::before,
.roster-card::after {
  display: none;
}

.roster-card__media {
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 42%);
}

.roster-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roster-card__body {
  gap: 14px;
  padding: 18px 20px;
}

.roster-card__copy strong {
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
}

.roster-card__copy span {
  max-width: none;
}

.about.section {
  padding-top: 12px;
  padding-bottom: 28px;
}

.about-grid {
  grid-template-columns: 1fr;
}

.about-card--wide {
  padding: 22px 28px;
}

.about-card--wide p {
  max-width: none;
}

@media (max-width: 980px) {
  .radio-top__header,
  .radio-top__controls,
  .station-panel__body--wide,
  .player-controls--integrated {
    grid-template-columns: 1fr;
  }

  .radio-top__header {
    justify-content: stretch;
  }

  .station-panel__actions {
    justify-items: stretch;
  }

  .hero-player-layout {
    grid-template-columns: 1fr;
  }

  .hero-player-layout__art {
    justify-self: start;
  }

  .hero-player-card .player-card__main.hero-player-layout {
    grid-template-columns: 1fr;
  }

  .hero-player-card .hero-player-layout__station-nav {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .hero-player-card .hero-player-layout__art {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 18px 0;
  }

  .station-panel__body--wide {
    grid-template-columns: 1fr;
  }

  .station-panel__cover {
    max-width: 180px;
  }

  .hero-player-card__brandbar {
    margin: -22px -22px 14px;
  }

  .hero-player-layout__station-nav {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .radio-top__header {
    flex-direction: column;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .radio-top__copy,
  .radio-top__art {
    display: none;
  }

  .radio-top__center {
    width: 100%;
    justify-content: center;
  }

  .roster-card {
    grid-template-columns: 1fr;
  }

  .roster-card__media {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
