/* ============================================================
   WHITEHORSE FM — style.css (v2)
   Independent music label aesthetic.
   Almost black. White type. One accent: brass.
   No frameworks. No dependencies.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* MIDNIGHT NEON (v1.3.0) — a premium 1985 listening bar:
     deep blue-violet night, magenta + electric cyan, soft glow. */
  --black: #0A0A12;        /* page: midnight, not pure black */
  --panel: #10101A;        /* raised surfaces */
  --panel-2: #161624;      /* hover */
  --line: #232338;         /* hairlines, violet-tinted */
  --white: #F0F2FF;        /* cool white — the neon horse */
  --grey: #8E8EA8;         /* secondary, dusk violet */
  --brass: #FF3D9A;        /* primary accent: neon magenta (var name kept for compatibility) */
  --neon2: #29D9FF;        /* electric cyan — reserved for LIVE indicators */

  --serif: Didot, "Bodoni MT", "Playfair Display", "Times New Roman", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --w: 1200px;
  --nav-h: 72px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 1px solid var(--brass); outline-offset: 4px; }

.wrap { max-width: var(--w); margin: 0 auto; padding: 0 28px; }

/* Serif display voice */
h1, h2, .serif { font-family: var(--serif); font-weight: 400; letter-spacing: 0.01em; }

/* Label eyebrow: small caps, letterspaced, brass */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--brass);
}

/* Catalog number */
.cat { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.22em; color: var(--brass); }

/* ---------- Motion ---------- */
.fade { opacity: 0; transform: translateY(12px); transition: opacity .8s ease, transform .8s ease; }
.fade.in { opacity: 1; transform: none; }

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(12,12,12,.88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 26px; height: 26px; }
.brand span { font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0.14em; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--grey); transition: color .3s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }

/* On Air indicator */
.onair { display: inline-flex; align-items: center; gap: 8px; }
.onair::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brass); animation: pulse 2.4s ease-in-out infinite;
}
.nav-links a.onair { color: var(--brass); }
.nav-links a.onair:hover { color: var(--white); }

/* Hamburger */
.burger { display: none; width: 44px; height: 44px; position: relative; }
.burger i, .burger i::before, .burger i::after {
  content: ""; position: absolute; left: 11px; width: 22px; height: 1.5px;
  background: var(--white); transition: transform .3s ease, opacity .3s ease;
}
.burger i { top: 21px; }
.burger i::before { top: -7px; left: 0; }
.burger i::after { top: 7px; left: 0; }
.burger[aria-expanded="true"] i { background: transparent; }
.burger[aria-expanded="true"] i::before { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] i::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: block; }
  .nav-links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(12,12,12,.98); border-bottom: 1px solid var(--line);
    display: none; padding: 8px 28px 22px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 14px 0; font-size: 0.9rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 34px; border-radius: 2px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.btn-solid { background: var(--white); color: var(--black); }
.btn-solid:hover { background: var(--brass); color: var(--black); }
.btn-line { border: 1px solid var(--line); color: var(--white); }
.btn-line:hover { border-color: var(--brass); color: var(--brass); }
.btn-sm { padding: 12px 22px; font-size: 0.72rem; }

/* ---------- Hero ---------- */
.hero {
  min-height: calc(96vh - var(--nav-h));
  display: flex; align-items: center; text-align: center;
}
.hero-in { width: 100%; padding: 80px 0; }
.hero .eyebrow { display: block; margin-bottom: 34px; }
.hero h1 {
  font-size: clamp(3.4rem, 11vw, 8.5rem);
  line-height: 0.98; letter-spacing: 0.04em;
}
.hero .rule {
  width: 64px; height: 1px; background: var(--brass);
  margin: 44px auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Home: latest release strip */
.strip { border-top: 1px solid var(--line); padding: 100px 0; }
.strip-in { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: center; }
.strip img { width: 100%; }
.strip h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 14px 0 18px; }
.strip p { color: var(--grey); max-width: 52ch; }
.strip .btn { margin-top: 30px; }
@media (max-width: 800px) { .strip-in { grid-template-columns: 1fr; gap: 36px; } .strip img { max-width: 340px; } }

/* ---------- Section scaffolding ---------- */
.page { padding: 90px 0 110px; }
.page-head { margin-bottom: 64px; }
.page-head h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); margin-top: 14px; }
.page-head p { color: var(--grey); max-width: 56ch; margin-top: 18px; }

/* ============================================================
   PLAYER — the heart
   ============================================================ */
.player { display: grid; grid-template-columns: minmax(380px, 460px) 1fr; gap: 72px; align-items: start; }
@media (max-width: 980px) { .player { grid-template-columns: 1fr; gap: 48px; } }

.p-art { width: 100%; border: 1px solid var(--line); }

/* Transport */
.transport { margin-top: 26px; }
.t-row { display: flex; align-items: center; justify-content: center; gap: 26px; }
.t-btn {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  color: var(--grey); font-size: 1rem; transition: color .3s ease;
}
.t-btn:hover { color: var(--white); }
.t-btn.active { color: var(--brass); }
.t-play {
  width: 62px; height: 62px; border-radius: 50%;
  border: 1px solid var(--white); color: var(--white); font-size: 1.15rem;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.t-play:hover { background: var(--white); color: var(--black); }

/* Progress + volume */
.t-progress { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.t-time { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--grey); min-width: 38px; }
input[type="range"] {
  -webkit-appearance: none; appearance: none; flex: 1;
  height: 2px; background: var(--line); outline-offset: 8px;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 11px; height: 11px; border-radius: 50%; background: var(--white);
  transition: background .3s ease;
}
input[type="range"]::-moz-range-thumb {
  width: 11px; height: 11px; border-radius: 50%; background: var(--white); border: 0;
}
input[type="range"]:hover::-webkit-slider-thumb { background: var(--brass); }
.t-vol { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.t-vol span { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--grey); }
.t-vol input { max-width: 130px; }

/* Track list */
.tracklist { list-style: none; margin-top: 34px; border-top: 1px solid var(--line); }
.tracklist li { border-bottom: 1px solid var(--line); }
.tracklist button {
  width: 100%; display: flex; align-items: baseline; gap: 18px;
  padding: 15px 6px; text-align: left;
  color: var(--grey); transition: color .3s ease;
}
.tracklist button:hover { color: var(--white); }
.tracklist li.playing button { color: var(--white); }
.tracklist li.playing .cat::before { content: "▶ "; font-size: 0.6rem; }
.tracklist .t-title { flex: 1; font-size: 0.95rem; }
.tracklist .t-dur { font-size: 0.72rem; letter-spacing: 0.1em; }

/* Right panel: the story */
.p-info .cat { display: block; margin-bottom: 12px; }
.p-info h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.1; }
.p-info h3 {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--grey);
  margin: 44px 0 16px;
}
.p-info .story { color: var(--grey); max-width: 62ch; }
.p-info .lyrics {
  font-family: var(--serif); font-size: 1.1rem; line-height: 2;
  white-space: pre-line; color: var(--white); max-width: 52ch;
}
.p-links { display: flex; flex-wrap: wrap; gap: 12px; }
.p-links a {
  padding: 10px 18px; border: 1px solid var(--line);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey);
  transition: color .3s ease, border-color .3s ease;
}
.p-links a:hover { color: var(--brass); border-color: var(--brass); }

/* ============================================================
   JOURNAL — magazine
   ============================================================ */
.journal { list-style: none; border-top: 1px solid var(--line); }
.journal li { border-bottom: 1px solid var(--line); }
.journal a { display: block; padding: 52px 0; transition: padding-left .35s ease; }
.journal a:hover { padding-left: 18px; }
.journal .cat { display: block; margin-bottom: 10px; }
.journal h2 { font-size: clamp(1.9rem, 5vw, 3.4rem); line-height: 1.08; }
.journal p { color: var(--grey); max-width: 60ch; margin-top: 14px; }

/* Article */
.article { max-width: 700px; }
.article .cat { display: block; margin-bottom: 14px; }
.article h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.06; margin-bottom: 34px; }
.article .lede { font-family: var(--serif); font-size: 1.35rem; line-height: 1.7; margin-bottom: 40px; }
.article p { color: #C9C7C1; margin-bottom: 26px; }
.article p:first-of-type::first-letter {
  font-family: var(--serif); font-size: 3.4em; line-height: 0.8;
  float: left; padding: 8px 12px 0 0; color: var(--brass);
}

/* ============================================================
   BOOKS
   ============================================================ */
.books { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 64px; }
.book { display: grid; grid-template-columns: 180px 1fr; gap: 30px; align-items: start; }
.book img { border: 1px solid var(--line); }
.book h2 { font-size: 1.5rem; margin: 6px 0 12px; }
.book p { color: var(--grey); font-size: 0.95rem; }
.book .btn { margin-top: 22px; }
@media (max-width: 520px) { .book { grid-template-columns: 1fr; } .book img { max-width: 200px; } }

/* ============================================================
   MERCH — premium cards
   ============================================================ */
.merch { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 900px) { .merch { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .merch { grid-template-columns: 1fr; } }
.m-item { background: var(--black); padding: 0 0 30px; text-align: center; transition: background .35s ease; }
.m-item:hover { background: var(--panel); }
.m-item img { width: 100%; }
.m-item h2 { font-size: 1.15rem; margin-top: 4px; }
.m-item .m-desc { color: var(--grey); font-size: 0.85rem; margin: 8px auto 0; max-width: 30ch; }
.m-item .m-price { display: block; margin: 16px 0 18px; font-size: 0.85rem; letter-spacing: 0.12em; color: var(--brass); }

/* ============================================================
   SUPPORT
   ============================================================ */
.support { text-align: center; max-width: 620px; margin: 0 auto; padding: 40px 0; }
.support h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); margin-top: 14px; }
.support p { color: var(--grey); margin: 24px 0 44px; }
.support .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { list-style: none; border-top: 1px solid var(--line); max-width: 700px; }
.contact li { border-bottom: 1px solid var(--line); }
.contact a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 26px 6px; color: var(--grey);
  transition: color .3s ease, padding-left .35s ease;
}
.contact a:hover { color: var(--white); padding-left: 18px; }
.contact .label { font-family: var(--serif); font-size: 1.3rem; color: var(--white); }
.contact .hint { font-size: 0.78rem; letter-spacing: 0.1em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---------- Terms ---------- */
.terms { max-width: 700px; }
.terms h2 { font-size: 1.4rem; margin: 44px 0 14px; }
.terms p, .terms li { color: var(--grey); }
.terms ul { margin: 10px 0 10px 20px; }
.terms li { margin-bottom: 8px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 54px 0 46px; }
.f-in { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.f-brand { font-family: var(--serif); letter-spacing: 0.14em; font-size: 0.95rem; }
.f-nav { display: flex; gap: 24px; flex-wrap: wrap; list-style: none; }
.f-nav a { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); transition: color .3s ease; }
.f-nav a:hover { color: var(--white); }
.f-copy { width: 100%; margin-top: 26px; font-size: 0.7rem; letter-spacing: 0.14em; color: #5C5B57; }

/* ============================================================
   v3 — RADIO SPA additions
   ============================================================ */

/* Router views */
.view[hidden] { display: none; }

/* ---------- Radio layout: playlist left, stage center ---------- */
.radio { display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: start; }
@media (max-width: 940px) { .radio { grid-template-columns: 1fr; gap: 44px; } }

/* Playlist */
.pl-search {
  width: 100%; background: none; border: 0; border-bottom: 1px solid var(--line);
  color: var(--white); font: inherit; font-size: 0.85rem; letter-spacing: 0.06em;
  padding: 10px 2px; margin-bottom: 6px;
}
.pl-search::placeholder { color: #5C5B57; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.7rem; }
.playlist { list-style: none; border-top: 1px solid var(--line); max-height: 62vh; overflow-y: auto; }
.playlist::-webkit-scrollbar { width: 4px; }
.playlist::-webkit-scrollbar-thumb { background: var(--line); }
.playlist li { border-bottom: 1px solid var(--line); }
.playlist button {
  width: 100%; display: flex; align-items: baseline; gap: 14px;
  padding: 14px 4px; text-align: left; color: var(--grey);
  transition: color .3s ease, padding-left .3s ease;
}
.playlist button:hover { color: var(--white); padding-left: 12px; }
.playlist li.playing button { color: var(--white); }
.playlist li.playing .cat::before { content: "▶ "; font-size: 0.55rem; }
.playlist .pl-title { flex: 1; font-size: 0.92rem; }
.playlist .empty { padding: 22px 4px; color: var(--grey); font-size: 0.85rem; border: 0; cursor: default; }

/* Stage */
.stage { text-align: center; max-width: 560px; margin: 0 auto; width: 100%; }
.stage .cover { width: 100%; max-width: 440px; margin: 0 auto; border: 1px solid var(--line); }
.stage .now-title { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-top: 30px; line-height: 1.15; }
.stage .now-cat { display: block; margin-top: 10px; }
.stage .transport { max-width: 460px; margin: 26px auto 0; }

/* ---------- Persistent mini bar (other sections) ---------- */
.bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(12,12,12,.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(100%); transition: transform .4s ease;
}
.bar.show { transform: none; }
.bar-in { display: flex; align-items: center; gap: 18px; padding: 10px 28px; max-width: var(--w); margin: 0 auto; }
.bar img { width: 42px; height: 42px; border: 1px solid var(--line); }
.bar .b-meta { flex: 1; min-width: 0; }
.bar .b-meta strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bar .b-meta span { font-size: 0.65rem; letter-spacing: 0.22em; color: var(--brass); text-transform: uppercase; }
.bar .t-btn { width: 38px; height: 38px; }
.bar .b-play { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--white); font-size: 0.85rem; }
.bar .b-play:hover { background: var(--white); color: var(--black); }
body.has-bar { padding-bottom: 76px; }

/* ============================================================
   Broadcast schedule (replaces the playlist)
   Not a media library — a programme. NOW dominates; the rest
   read as upcoming broadcasts with estimated air times.
   ============================================================ */
.sched-head { margin-bottom: 22px; }
.sched-empty { color: var(--grey); font-size: 0.9rem; padding: 18px 0; }

.sched-now {
  border-top: 1px solid var(--brass);
  padding: 22px 2px 26px;
  margin-bottom: 30px;
}
.sched-now strong {
  display: block; font-weight: 400;
  font-size: 1.55rem; line-height: 1.2; margin-top: 12px;
}

.sched-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass);
}
.sched-tag.live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brass); animation: pulse 2.4s ease-in-out infinite;
}
.sched-tag.dim { color: #5C5B57; }

.sched-list { list-style: none; margin-top: 14px; }
.sched-list li { border-top: 1px solid var(--line); }
.sched-list button {
  width: 100%; display: flex; align-items: baseline; gap: 16px;
  padding: 15px 2px; text-align: left; color: var(--grey);
  transition: color .3s ease, padding-left .3s ease;
}
.sched-list button:hover { color: var(--white); padding-left: 10px; }
.sched-time {
  min-width: 58px; font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: #5C5B57;
  font-variant-numeric: tabular-nums;
}
.sched-list button:hover .sched-time { color: var(--brass); }
.sched-title { flex: 1; font-family: var(--serif); font-size: 1.02rem; }

/* ============================================================
   The living station
   ============================================================ */

/* Artwork is the center of gravity: bigger stage, quieter sides */
.radio { grid-template-columns: 290px 1fr; }
.stage .cover { max-width: 520px; box-shadow: 0 30px 80px rgba(0,0,0,.55); }
.station-line { color: var(--grey); font-size: 0.8rem; letter-spacing: 0.24em; text-transform: uppercase; margin-top: 16px; }

/* Live status above the artwork */
.live-status {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 22px;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--grey);
}
.live-status.live { color: var(--brass); }
.live-status.live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--brass); animation: pulse 2.2s ease-in-out infinite;
}

/* Seamless transitions: artwork and title crossfade between tracks */
.cover, .now-title, .now-cat { transition: opacity .45s ease, transform .45s ease; }
.swap { opacity: 0; }
.now-title.swap { transform: translateY(8px); }

/* Archive control: the past stays out of the present */
.sched-more {
  width: 100%; margin-top: 18px; padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: #5C5B57; text-align: left;
  transition: color .3s ease;
}
.sched-more:hover { color: var(--brass); }

/* ============================================================
   Final reduction
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* Radio: nothing above the broadcast — let it breathe */
[data-view="radio"] .page { padding-top: 70px; }

/* Support dissolves into one quiet sentence at the end of the Store */
.store-support {
  margin-top: 64px; text-align: center;
  color: var(--grey); font-size: 0.9rem; letter-spacing: 0.02em;
}
.store-support a { color: var(--brass); border-bottom: 1px solid var(--brass); padding-bottom: 1px; }
.store-support a:hover { color: var(--white); border-color: var(--white); }

/* ============================================================
   THE FIRE HORSE SPEAKS — editorial broadcasts
   ============================================================ */

/* In the programme, a spoken broadcast carries a quiet brass mark */
.sched-list button.voice .sched-title { color: var(--white); }
.sched-list button.voice .sched-title::before {
  content: "◆"; color: var(--brass);
  font-size: 0.55rem; vertical-align: middle; margin-right: 9px;
}

/* Episode list: presented as broadcasts, not files */
.voice-list { border-top: 1px solid var(--line); max-width: 760px; }
.ep { border-bottom: 1px solid var(--line); padding: 44px 0; }
.ep h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1.12; margin: 12px 0 24px; }

/* ============================================================
   The quiet heart + Advertise page
   ============================================================ */
/* Save to collection: a quiet line of text, not a social button */
.save {
  margin-top: 26px;
  opacity: 0; visibility: hidden;
  transition: opacity 1.2s ease, color .3s ease, border-color .3s ease;
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: #5C5B57;
  border-bottom: 1px solid transparent; padding-bottom: 3px;
  transition: color .3s ease, border-color .3s ease;
}
.save.visible { opacity: 1; visibility: visible; }
.save:hover { color: var(--brass); }
.save.on { color: var(--brass); border-color: var(--brass); }

.bar .b-save {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: #5C5B57; padding: 8px 6px; transition: color .3s ease;
}
.bar .b-save:hover { color: var(--brass); }
.bar .b-save.on { color: var(--brass); }

.adv { max-width: 720px; }
.adv-stats { display: flex; gap: 2px; border: 1px solid var(--line); background: var(--line); margin: 12px 0 44px; }
.adv-stats > div { flex: 1; background: var(--black); padding: 26px 22px; }
.adv-stats dt { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--grey); }
.adv-stats dd { font-family: var(--serif); font-size: 2rem; margin-top: 10px; }
@media (max-width: 620px) { .adv-stats { flex-direction: column; } }
.adv-note { color: var(--grey); max-width: 58ch; margin-bottom: 36px; }

/* ============================================================
   Lyrics — cinema subtitles (v1.1.0)
   A quiet window under the transport; lines dissolve at the
   edges and travel with the song.
   ============================================================ */
.lyrics-box {
  height: 168px; overflow: hidden;
  max-width: 430px; margin: 36px auto 0;
  -webkit-mask-image: linear-gradient(transparent, #000 22%, #000 78%, transparent);
          mask-image: linear-gradient(transparent, #000 22%, #000 78%, transparent);
}
.lyrics-inner {
  padding: 70px 0;
  transition: transform 0.9s linear;
  will-change: transform;
}
.lyrics-inner p {
  font-family: var(--serif);
  font-size: 1.06rem; line-height: 1.95;
  color: #C9C7C1; text-align: center;
}
.lyrics-inner .lyr-gap { line-height: 1.2; }
.lyrics-inner .lyr-tag {
  display: block; margin: 16px 0 4px;
  font-family: var(--sans);
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass); text-align: center;
}
@media (prefers-reduced-motion: reduce) {
  .lyrics-inner { transition: none; }
}

/* v1.2.0 — timestamped lyrics: the current line, in brass */
.lyrics-inner p { transition: color .4s ease, opacity .4s ease; opacity: 0.55; }
.lyrics-inner p.cur { color: var(--brass); opacity: 1; }
/* txt fallback keeps its softer look */
.lyrics-inner:not(:has(.cur)) p { opacity: 1; }

/* Contact groups — quiet section labels */
.contact-group { display: block; margin: 44px 0 12px; }


/* ============================================================
   MIDNIGHT NEON layer (v1.3.0)
   Glow is soft and steady — a quality sign, not a casino.
   ============================================================ */

/* LIVE runs on cyan — the second neon of the Miami pair */
.onair::before,
.live-status.live::before,
.sched-tag.live::before {
  background: var(--neon2);
  box-shadow: 0 0 10px var(--neon2), 0 0 26px rgba(41, 217, 255, 0.35);
}
.nav-links a.onair { color: var(--neon2); }
.nav-links a.onair:hover { color: var(--white); }
.live-status.live { color: var(--neon2); }
.bar .b-meta span { color: var(--neon2); }

/* Magenta breathes, gently */
.hero {
  background:
    radial-gradient(55% 50% at 50% 0%, rgba(255, 61, 154, 0.14), transparent 70%),
    radial-gradient(40% 40% at 82% 30%, rgba(41, 217, 255, 0.08), transparent 70%),
    var(--black);
}
.hero .rule {
  background: linear-gradient(90deg, var(--brass), var(--neon2));
  box-shadow: 0 0 14px rgba(255, 61, 154, 0.5);
}
.btn-solid:hover {
  background: var(--brass); color: #0A0A12;
  box-shadow: 0 0 26px rgba(255, 61, 154, 0.45);
}
.t-play:hover {
  background: var(--white); color: #0A0A12;
  box-shadow: 0 0 22px rgba(240, 242, 255, 0.35);
}
.stage .cover {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 61, 154, 0.10);
}
.lyrics-inner p.cur {
  color: var(--brass);
  text-shadow: 0 0 14px rgba(255, 61, 154, 0.55);
}
.sched-now { border-top-color: var(--brass); }
.save.on, .bar .b-save.on { text-shadow: 0 0 10px rgba(255, 61, 154, 0.5); }

/* ============================================================
   THE ARTIST — connection block under the radio stage (v1.3.1)
   Short by design: the listener came to listen, not to read.
   ============================================================ */
.artist {
  max-width: 720px; margin: 88px auto 0; padding: 44px 28px 8px;
  border-top: 1px solid var(--line); text-align: center;
}
.artist-name {
  font-size: clamp(2rem, 5vw, 3rem); line-height: 1.1;
  letter-spacing: 0.02em;
}
.artist-tagline {
  font-family: var(--serif); font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: var(--brass); margin-top: 12px; letter-spacing: 0.02em;
}
.artist-line {
  color: var(--grey); font-size: 0.95rem; line-height: 1.6;
  max-width: 520px; margin: 14px auto 0;
}

/* Signature tags */
.artist-tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px;
  list-style: none; margin: 26px 0 0;
}
.artist-tags li {
  color: var(--grey); font-size: 0.76rem; letter-spacing: 0.12em;
  white-space: nowrap;
}

/* Call to action */
.artist-cta { display: block; margin-top: 36px; }

/* Platform buttons */
.artist-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 18px;
}
.a-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 148px;
  padding: 13px 26px; border: 1px solid var(--line); background: var(--panel);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  transition: border-color .3s ease, color .3s ease, background .3s ease, transform .3s ease;
}
.a-link:hover {
  border-color: var(--brass); color: var(--brass);
  background: var(--panel-2); transform: translateY(-2px);
}

@media (max-width: 620px) {
  .artist { margin-top: 64px; padding: 36px 4px 8px; }
  .artist-tags { gap: 8px 14px; }
  .artist-tags li { font-size: 0.72rem; }
  .artist-links { gap: 10px; }
  .a-link { min-width: 120px; padding: 12px 18px; font-size: 0.68rem; letter-spacing: 0.16em; }
}
.artist-official { display: block; margin-bottom: 14px; }

/* ============================================================
   OWN THE MUSIC — direct support / purchase (v1.3.2)
   Restrained on purpose: supporting an artist, not a storefront.
   ============================================================ */
.own {
  max-width: 720px; margin: 64px auto 0; padding: 44px 28px 8px;
  border-top: 1px solid var(--line); text-align: center;
}
.own-line {
  color: var(--grey); font-size: 0.95rem; line-height: 1.6;
  max-width: 520px; margin: 16px auto 0;
}
.own-cards {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 36px;
}
.own-card {
  flex: 1 1 260px; max-width: 320px;
  border: 1px solid var(--line); background: var(--panel);
  padding: 34px 26px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.own-card:hover { border-color: var(--line); transform: translateY(-3px); background: var(--panel-2); }
.own-card--feature { border-color: rgba(255,61,154,0.35); }
.own-title { font-size: 1.15rem; line-height: 1.3; }
.own-price {
  font-family: var(--serif); font-size: 2.4rem; color: var(--white);
  margin-top: 14px; letter-spacing: 0.01em;
}
.own-desc {
  color: var(--grey); font-size: 0.86rem; line-height: 1.55;
  margin-top: 14px; min-height: 3.2em;
}
.own-buy {
  margin-top: 26px; display: inline-flex; align-items: center; justify-content: center;
  min-width: 190px; padding: 14px 26px;
  border: 1px solid var(--line); background: transparent;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  transition: border-color .3s ease, color .3s ease, background .3s ease, transform .3s ease;
}
.own-buy:hover { border-color: var(--brass); color: var(--brass); background: var(--panel); transform: translateY(-2px); }
.own-buy--feature { border-color: var(--brass); color: var(--brass); }
.own-buy--feature:hover { background: var(--brass); color: var(--black); }
.own-thanks {
  color: var(--grey); font-size: 0.82rem; letter-spacing: 0.04em; margin-top: 40px;
}
.own .own-contact { margin-top: 10px; }
.own-contact {
  color: var(--grey); font-size: 0.82rem; letter-spacing: 0.04em; margin-top: 40px;
}
.own-contact a { color: var(--brass); border-bottom: 1px solid transparent; }
.own-contact a:hover { border-bottom-color: var(--brass); }

@media (max-width: 620px) {
  .own { margin-top: 48px; padding: 36px 4px 8px; }
  .own-cards { gap: 14px; }
  .own-card { flex-basis: 100%; max-width: 380px; padding: 30px 22px; }
  .own-desc { min-height: 0; }
}
