/* ==========================================================================
   Club Copy — Release Archive (dark continuum)
   Matches the home page system: #050505 ground, blurred artwork ambience,
   Space Grotesk display, Oswald callsigns, chrome pill buttons.
   Scoped to body.archive-release.
   ========================================================================== */

body.archive-release {
  --ra-bg: #050505;
  --ra-surface: #0E0E0E;
  --ra-surface-hi: #161616;
  --ra-ink: #F4F1E9;
  --ra-muted: rgba(244, 241, 233, .68);
  --ra-dim: rgba(244, 241, 233, .48);
  --ra-line: rgba(255, 255, 255, .1);
  --ra-line-soft: rgba(255, 255, 255, .06);
  --ra-green: #97AC92;
  --ra-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
  --ra-ease: cubic-bezier(.22, 1, .36, 1);

  background: var(--ra-bg);
  color: var(--ra-ink);
  font-family: var(--sans, 'Space Grotesk', sans-serif);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -.011em;
  font-weight: 400;
}

body.archive-release ::selection { background: rgba(151, 172, 146, .35); }

/* Nav — transparent over hero, frosted dark after scroll (home treatment) */
body.archive-release .nav {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
body.archive-release .nav.scrolled {
  background: rgba(8, 8, 10, .72);
  border-bottom-color: rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 8px 28px rgba(0, 0, 0, .25);
}
body.archive-release .nav-links a { color: rgba(255, 255, 255, .72); }
body.archive-release .nav-links a:hover,
body.archive-release .nav-links a[aria-current="page"] { color: #fff; background: rgba(255, 255, 255, .1); }
body.archive-release .nav-cart { color: #fff; }
body.archive-release .nav-ham span { background: #fff; }
body.archive-release .nav-cart-count { background: #fff; color: #000; }
body.archive-release .nav-drawer {
  background: rgba(8, 8, 10, .92);
  border-bottom-color: rgba(255, 255, 255, .08);
}
body.archive-release .nav-drawer a { color: #fff; border-bottom-color: rgba(255, 255, 255, .08); }

/* Layout ------------------------------------------------------------------- */
.ra-wrap {
  max-width: var(--wrap, 1200px);
  margin: 0 auto;
  padding: 0 max(24px, env(safe-area-inset-left)) 0 max(24px, env(safe-area-inset-right));
}
@media (min-width: 800px) {
  .ra-wrap { padding-left: 40px; padding-right: 40px; }
}

/* Section heads — home's station-ID strip, dark ----------------------------- */
.ra-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 72px 0 28px;
  margin-bottom: 44px;
  box-shadow: inset 0 -1px 0 var(--ra-line);
}
.ra-head .eyebrow {
  font-family: var(--callsign, 'Oswald', sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ra-dim);
  margin-bottom: 12px;
}
.ra-head h2 {
  font-family: var(--display, 'Space Grotesk', sans-serif);
  /* Home section heads are clamp(32px, 5vw, 56px); a step smaller here */
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--ra-ink);
}
.ra-head .head-note {
  font-family: var(--sans, 'Space Grotesk', sans-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ra-dim);
}

/* Scroll reveal */
.ra-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ra-ease), transform .9s var(--ra-ease);
}
.ra-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .ra-reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   1. ReleaseHero — cinematic, ambient artwork glow (home hero language)
   ========================================================================== */
.ra-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--nav-h, 64px) + 40px) 0 72px;
}
.ra-hero-ambient {
  position: absolute;
  inset: -14%;
  z-index: -2;
  pointer-events: none;
  background: url('../together-cover.webp') center 55% / cover no-repeat;
  filter: blur(52px) saturate(1.25) brightness(.5) contrast(1.05);
  transform: scale(1.45);
  animation: ra-ambient 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes ra-ambient {
  from { transform: scale(1.42); }
  to   { transform: scale(1.54) translate(-1%, .8%); }
}
.ra-hero-ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 64% 54% at 50% 48%, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .4) 50%, rgba(0, 0, 0, .84) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .5) 0%, transparent 42%, rgba(0, 0, 0, .8) 100%);
}
.ra-hero-vhs {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url('../hero-vhs.webp') center / cover no-repeat;
  opacity: .05;
  mix-blend-mode: soft-light;
}
@media (prefers-reduced-motion: reduce) {
  .ra-hero-ambient { animation: none; }
}

.ra-hero-grid {
  display: grid;
  gap: 44px;
  width: 100%;
  align-items: center;
}
@media (min-width: 960px) {
  .ra-hero-grid { grid-template-columns: 1.05fr 1fr; gap: 72px; }
}

/* Cassette object ---------------------------------------------------------- */
.ra-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: 4vh 0 3vh;
  perspective: 1200px;
}
.ra-cassette {
  position: relative;
  container-type: inline-size;
  width: min(500px, 86vw);
  aspect-ratio: 100 / 63;
  background:
    radial-gradient(120% 80% at 18% 12%, rgba(255, 255, 255, .07), transparent 42%),
    radial-gradient(90% 70% at 82% 88%, rgba(0, 0, 0, .35), transparent 50%),
    repeating-linear-gradient(
      118deg,
      rgba(255, 255, 255, .015) 0 1px,
      transparent 1px 3px
    ),
    linear-gradient(172deg, #2a2a28 0%, #171715 42%, #0f0f0d 72%, #1a1a18 100%);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .16) inset,
    0 -2px 0 rgba(0, 0, 0, .55) inset,
    0 0 0 1px rgba(255, 255, 255, .04) inset,
    0 34px 70px -18px rgba(0, 0, 0, .82),
    0 8px 18px rgba(0, 0, 0, .45);
  transform-style: preserve-3d;
  transition: transform .8s var(--ra-ease), box-shadow .8s var(--ra-ease);
  will-change: transform;
}
.ra-stage:hover .ra-cassette {
  transform: rotateX(4deg) rotateY(-5deg) translateY(-6px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .18) inset,
    0 -2px 0 rgba(0, 0, 0, .55) inset,
    0 42px 80px -16px rgba(0, 0, 0, .88),
    0 12px 24px rgba(0, 0, 0, .5);
}
/* plastic scuffs + edge bevel */
.ra-cassette::before,
.ra-cassette::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #6a6a62, #2c2c28 42%, #080807 72%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .65),
    0 1px 0 rgba(255, 255, 255, .18) inset;
  top: 9px;
  z-index: 2;
}
.ra-cassette::before {
  left: 11px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .65),
    0 1px 0 rgba(255, 255, 255, .18) inset,
    0 calc(100% + 380%) 0 0 #121210,
    0 calc(100% + 380%) 0 1px rgba(0, 0, 0, .6);
}
.ra-cassette::after { right: 11px; }

.ra-cassette-label {
  position: absolute;
  inset: 7% 6% 34% 6%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .55),
    0 1px 2px rgba(0, 0, 0, .35) inset,
    0 2px 6px rgba(0, 0, 0, .25);
}
/* Blank generic label: aged paper, ruled lines, dymo strip */
.ra-cassette-label--blank {
  background:
    radial-gradient(ellipse at 20% 15%, rgba(255, 248, 220, .55), transparent 45%),
    radial-gradient(ellipse at 85% 70%, rgba(140, 110, 60, .12), transparent 40%),
    repeating-linear-gradient(
      0deg,
      rgba(80, 60, 30, .03) 0 1px,
      transparent 1px 2px
    ),
    linear-gradient(160deg, #F4EED8 0%, #E8DFC4 48%, #D9CEB0 100%);
  display: block;
}
.ra-cassette-label--blank::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, .18) 48%, transparent 56%),
    radial-gradient(circle at 70% 30%, rgba(0, 0, 0, .04), transparent 30%);
  pointer-events: none;
  mix-blend-mode: soft-light;
}
.ra-cassette-label--blank .side {
  position: absolute;
  right: 5.5%;
  bottom: 12%;
  font-family: var(--ra-mono);
  font-size: clamp(8px, 2.4cqw, 13px);
  border: 1px solid rgba(40, 34, 22, .85);
  color: #2a2418;
  background: rgba(255, 250, 235, .35);
  padding: 1px 7px;
  line-height: 1.5;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .35) inset;
}
.ra-label-lines {
  position: absolute;
  left: 7%; right: 22%;
  bottom: 14%;
  display: grid;
  gap: clamp(8px, 2vw, 14px);
}
.ra-label-lines span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(60, 48, 28, .38), rgba(60, 48, 28, .18));
}
/* Label-maker (embossed tape) strip — 90s Dymo feel */
.ra-dymo {
  position: absolute;
  left: 7%;
  top: 18%;
  max-width: 78%;
  transform: rotate(-0.8deg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 35%),
    linear-gradient(180deg, #2a2a24 0%, #0c0c09 46%, #1a1a14 100%);
  color: #EDE8D8;
  font-family: var(--ra-mono);
  font-weight: 500;
  font-size: clamp(11px, 3.4cqw, 18px);
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: .5em .95em .42em;
  border-radius: 1px;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .35),
    0 -1px 1px rgba(0, 0, 0, .95),
    1px 0 0 rgba(0, 0, 0, .35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .2) inset,
    0 -1px 0 rgba(0, 0, 0, .7) inset,
    0 0 0 1px rgba(0, 0, 0, .55),
    0 2px 4px rgba(0, 0, 0, .4),
    1px 2px 0 rgba(0, 0, 0, .12);
  filter: contrast(1.05);
}

/* tape window + reels */
.ra-cassette-window {
  position: absolute;
  left: 22%; right: 22%;
  top: 42%; height: 26%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), transparent 28%),
    linear-gradient(180deg, #080808, #141412 55%, #0a0a09);
  border-radius: 999px;
  box-shadow:
    0 0 0 2px #3a3a36,
    0 0 0 4px #1c1c1a,
    0 3px 8px rgba(0, 0, 0, .85) inset,
    0 1px 0 rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7%;
  overflow: hidden;
}
.ra-cassette-window::before {
  content: "";
  position: absolute;
  left: 28%;
  right: 28%;
  top: 42%;
  height: 28%;
  background:
    linear-gradient(180deg, #6b4a28, #3d2a16 55%, #2a1c0e);
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .5) inset;
  opacity: .9;
  z-index: 0;
}
.ra-reel {
  position: relative;
  z-index: 1;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #0a0a0a 0 28%, transparent 29%),
    radial-gradient(circle at 40% 35%, rgba(255, 255, 255, .12), transparent 45%),
    repeating-conic-gradient(#E8E2D0 0 12deg, #1a1a18 12deg 55deg);
  box-shadow:
    0 0 0 2px #E8E2D0,
    0 0 0 5px #2a2a26,
    0 2px 4px rgba(0, 0, 0, .55) inset;
  animation: ra-reel-spin 3.2s linear infinite;
  animation-play-state: paused;
}
.ra-reel--b { animation-duration: 2.4s; }
@keyframes ra-reel-spin { to { transform: rotate(360deg); } }
.is-spinning .ra-reel { animation-play-state: running; }

.ra-cassette-foot {
  position: absolute;
  left: 26%; right: 26%; bottom: 5%;
  height: 15%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05), transparent 30%),
    linear-gradient(180deg, #181816, #070706);
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .07) inset,
    0 -1px 0 rgba(0, 0, 0, .5) inset;
}

.ra-stage-shadow {
  position: absolute;
  bottom: 0;
  width: min(400px, 68vw);
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .7), transparent 68%);
  filter: blur(8px);
}

/* play hit on the object */
.ra-stage-hit {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.ra-stage-hit .glyph {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(244, 241, 233, .92);
  color: #0a0a0a;
  opacity: 0;
  transform: scale(.92);
  transition: opacity .35s var(--ra-ease), transform .35s var(--ra-ease);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .5);
}
.ra-stage-hit:hover .glyph,
.ra-stage-hit:focus-visible .glyph { opacity: 1; transform: scale(1); }
.ra-stage-hit svg { width: 20px; height: 20px; fill: currentColor; }
.ra-stage-hit .i-pause { display: none; }
.ra-stage-hit.on .i-pause { display: block; }
.ra-stage-hit.on .i-play { display: none; }
.ra-stage-hit.on .glyph { opacity: 1; transform: scale(1); }

/* Vinyl object (album releases) --------------------------------------------- */
.ra-vinyl {
  position: relative;
  container-type: inline-size;
  width: min(460px, 80vw);
  aspect-ratio: 1;
  transition: transform .8s var(--ra-ease);
  will-change: transform;
}
.ra-vinyl-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, .09), transparent 42%),
    repeating-radial-gradient(circle at 50% 50%, #0B0B0B 0 1.6px, #141414 1.6px 3.4px),
    #0B0B0B;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .08) inset,
    0 34px 70px -18px rgba(0, 0, 0, .85),
    0 8px 18px rgba(0, 0, 0, .4);
  animation: ra-vinyl-spin 3.6s linear infinite;
  animation-play-state: paused;
}
@keyframes ra-vinyl-spin { to { transform: rotate(360deg); } }
.ra-vinyl.is-spinning .ra-vinyl-disc { animation-play-state: running; }
/* run-in / run-out rings */
.ra-vinyl-disc::before {
  content: "";
  position: absolute;
  inset: 2.5%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .05);
  box-shadow: 0 0 0 14px rgba(255, 255, 255, .015) inset;
}
.ra-vinyl-label {
  position: absolute;
  inset: 31%;
  border-radius: 50%;
  background:
    linear-gradient(160deg, rgba(22, 21, 15, .06), transparent 50%),
    #F1EDE1;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .55);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--ra-mono);
  color: #16150F;
  padding: 9%;
}
.ra-vinyl-label .l1 {
  font-size: clamp(10px, 3.4cqw, 16px);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
}
.ra-vinyl-label .l2 {
  font-size: clamp(6px, 1.8cqw, 9px);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(22, 21, 15, .55);
  margin-top: 8px;
  line-height: 1.9;
}
/* spindle hole */
.ra-vinyl-label::after {
  content: "";
  position: absolute;
  width: 8%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #0B0B0B;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, .3), 0 1px 1px rgba(255, 255, 255, .35) inset;
}
.ra-stage:hover .ra-vinyl { transform: rotateX(4deg) rotateY(-5deg) translateY(-6px); }

/* Digital cover object ----------------------------------------------------- */
.ra-cover {
  position: relative;
  width: min(460px, 80vw);
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  background: #0B0B0B;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .08) inset,
    0 34px 70px -18px rgba(0, 0, 0, .85),
    0 8px 18px rgba(0, 0, 0, .4);
  transition: transform .8s var(--ra-ease), box-shadow .8s var(--ra-ease);
  will-change: transform;
}
.ra-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ra-stage:hover .ra-cover { transform: rotateX(4deg) rotateY(-5deg) translateY(-6px); }
.ra-cover.is-spinning {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .12) inset,
    0 40px 80px -16px rgba(0, 0, 0, .9),
    0 10px 22px rgba(0, 0, 0, .45);
}

/* Single-format purchase (digital-only) ------------------------------------ */
.ra-purchase-grid--solo {
  max-width: 480px;
}
@media (min-width: 900px) {
  .ra-purchase-grid--solo { grid-template-columns: 1fr; }
}

/* Hero — right column ------------------------------------------------------ */
.ra-hero-info { max-width: 560px; }
.ra-hero-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--sans, 'Space Grotesk', sans-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ra-muted);
  margin-bottom: 18px;
}
.ra-hero-meta .artist { color: var(--ra-ink); }

.ra-hero-title {
  font-family: var(--display, 'Space Grotesk', sans-serif);
  /* Smaller than the prior archive display; still hero-strong */
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 600;
  text-transform: none;
  margin: 0 0 20px;
  color: #fff;
}

.ra-hero-facts {
  font-family: var(--sans, 'Space Grotesk', sans-serif);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -.011em;
  line-height: 1.55;
  color: rgba(244, 241, 233, .78);
  margin-bottom: 32px;
}
.ra-hero-facts .scarce { color: var(--ra-green); font-weight: 500; }

.ra-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
/* light primary pill on dark ground (mirrors home hero CTA weight) */
.ra-hero-ctas .btn-light {
  background: linear-gradient(180deg, #FFFFFF 0%, #E9E5DA 100%);
  color: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, .4);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset, 0 10px 28px rgba(0, 0, 0, .4);
}
.ra-hero-ctas .btn-light:hover { opacity: .92; }
.ra-hero-ctas .btn-outline {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ra-hero-ctas .btn-outline:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .5); }

/* ==========================================================================
   2. TapePlayer + TrackList — one listening module
   ========================================================================== */
.ra-player-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 960px) {
  .ra-player-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
}

.ra-deck {
  background: var(--ra-surface);
  border: 1px solid var(--ra-line);
  border-radius: var(--radius-lg, 10px);
  color: var(--ra-ink);
  padding: 26px 26px 24px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .05) inset, 0 28px 56px -22px rgba(0, 0, 0, .8);
}
.ra-deck-head {
  display: flex;
  justify-content: space-between;
  font-family: var(--callsign, 'Oswald', sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ra-dim);
  margin-bottom: 20px;
}
.ra-deck-head .live { color: var(--ra-green); }

.ra-deck-window {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #050505;
  border-radius: 999px;
  padding: 14px 12%;
  margin-bottom: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .8) inset, 0 0 0 1px var(--ra-line-soft);
}
.ra-deck-window .ra-reel {
  width: 52px;
  box-shadow: 0 0 0 2px #E9E5D8, 0 0 0 5px #1d1d1d;
}
.ra-deck-tape {
  flex: 1;
  height: 3px;
  margin: 0 14px;
  background: repeating-linear-gradient(90deg, #3c3c34 0 6px, transparent 6px 10px);
  opacity: .7;
}
.release-console.is-live .ra-reel { animation-play-state: running; }

.ra-deck-now { font-family: var(--sans, 'Space Grotesk', sans-serif); }
.ra-deck-now .idx {
  font-family: var(--callsign, 'Oswald', sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ra-dim);
}
.ra-deck-now .name {
  font-family: var(--display, 'Space Grotesk', sans-serif);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 6px 0 4px;
  color: #fff;
}
.ra-deck-now .sub {
  font-family: var(--sans, 'Space Grotesk', sans-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ra-dim);
}

/* waveform — the scrubber */
.ra-wave {
  display: block;
  width: 100%;
  height: 60px;
  margin: 18px 0 6px;
  cursor: pointer;
}
.ra-deck-times {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans, 'Space Grotesk', sans-serif);
  font-size: 12px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
  color: var(--ra-dim);
  margin: 0 0 18px;
}

/* transport */
.ra-transport {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ra-key {
  flex: 1;
  height: 52px;
  border: 1px solid var(--ra-line);
  background: linear-gradient(180deg, #1e1e1e, #121212);
  color: var(--ra-ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, .6);
  transition: transform .1s var(--ra-ease), box-shadow .1s var(--ra-ease), background .25s var(--ra-ease);
}
.ra-key:hover { background: linear-gradient(180deg, #262626, #161616); }
.ra-key:active { transform: translateY(3px); box-shadow: 0 0 0 rgba(0, 0, 0, .6); }
.ra-key svg { width: 18px; height: 18px; fill: currentColor; }
.ra-key--play { flex: 1.6; }
.ra-key--play .i-pause { display: none; }
.ra-key--play.on .i-pause { display: block; }
.ra-key--play.on .i-play { display: none; }
.ra-key--play.on {
  background: #E9E5D8;
  color: #0a0a0a;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .6);
  transform: translateY(2px);
}
.ra-deck .p-msg {
  font-family: var(--sans, 'Space Grotesk', sans-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ra-dim);
  min-height: 14px;
  margin-top: 14px;
}
.ra-deck .p-msg.err { color: #C98A7D; }

/* Track list — cue sheet ---------------------------------------------------- */
.ra-tracks { font-family: var(--sans, 'Space Grotesk', sans-serif); }
.ra-side-label {
  font-family: var(--callsign, 'Oswald', sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ra-dim);
  padding: 14px 0 8px;
}
.ra-tracks .track-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 12px;
  border-top: 1px solid var(--ra-line-soft);
  cursor: pointer;
  border-radius: 6px;
  transition: background .25s var(--ra-ease);
  position: relative;
}
.ra-tracks .track-row:last-of-type { border-bottom: 1px solid var(--ra-line-soft); }
.ra-tracks .track-row:hover { background: rgba(255, 255, 255, .05); }
.ra-tracks .track-no {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ra-dim);
  font-variant-numeric: tabular-nums;
}
.ra-tracks .track-title {
  font-family: var(--display, 'Space Grotesk', sans-serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--ra-ink);
}
.ra-tracks .track-dur {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ra-dim);
  font-variant-numeric: tabular-nums;
}
.ra-tracks .track-row.is-active { background: rgba(255, 255, 255, .06); }
.ra-tracks .track-row.is-active .track-no { color: var(--ra-green); }
.ra-tracks .track-row.is-playing::before {
  content: "";
  position: absolute;
  left: 0; top: 10px; bottom: 10px;
  width: 2px;
  background: var(--ra-green);
}
.ra-tracks .track-play-btn { display: none; }
.ra-tracks-note {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ra-dim);
  line-height: 1.5;
}

/* ==========================================================================
   3. About — editorial notes + spec sheet in one spread
   ========================================================================== */
.ra-about-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 900px) {
  .ra-about-grid { grid-template-columns: 7fr 5fr; gap: 80px; }
}
.ra-notes p {
  font-family: var(--sans, 'Space Grotesk', sans-serif);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -.011em;
  font-weight: 400;
  color: rgba(244, 241, 233, .88);
  margin: 0 0 1.1em;
  max-width: 36em;
}
.ra-notes .credo {
  font-family: var(--sans, 'Space Grotesk', sans-serif);
  font-size: 15px;
  letter-spacing: -.01em;
  line-height: 1.55;
  color: var(--ra-dim);
  font-weight: 400;
  text-transform: none;
}
.ra-specs {
  font-family: var(--sans, 'Space Grotesk', sans-serif);
  border-top: 1px solid var(--ra-line);
  margin: 0;
}
.ra-specs > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 2px;
  border-bottom: 1px solid var(--ra-line-soft);
}
.ra-specs dt {
  font-family: var(--callsign, 'Oswald', sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ra-dim);
}
.ra-specs dd {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ra-ink);
  text-align: right;
  text-transform: none;
}

/* ==========================================================================
   4. PurchaseModule — flows directly under the Listen section
   ========================================================================== */
.ra-acquire-flow { padding-top: 56px; }
.ra-purchase-grid {
  display: grid;
  gap: 44px;
}
@media (min-width: 900px) {
  .ra-purchase-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.ra-format { font-family: var(--sans, 'Space Grotesk', sans-serif); }
.ra-format-opt {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  padding: 20px 6px;
  border: 0;
  border-bottom: 1px solid var(--ra-line);
  background: none;
  cursor: pointer;
  font-family: var(--sans, 'Space Grotesk', sans-serif);
  border-radius: 6px 6px 0 0;
  transition: background .25s var(--ra-ease);
}
.ra-format-opt:first-of-type { border-top: 1px solid var(--ra-line); }
.ra-format-opt:hover { background: rgba(255, 255, 255, .04); }
.ra-format-opt .dot {
  width: 16px; height: 16px;
  border: 1px solid var(--ra-ink);
  border-radius: 50%;
  transition: background .2s var(--ra-ease), box-shadow .2s var(--ra-ease);
}
.ra-format-opt[aria-checked="true"] .dot {
  background: var(--ra-ink);
  box-shadow: 0 0 0 3px var(--ra-bg) inset;
}
.ra-format-opt .fmt {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.015em;
  text-transform: none;
  color: var(--ra-ink);
}
.ra-format-opt .fmt small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--ra-dim);
  margin-top: 4px;
}
.ra-format-opt .price {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ra-ink);
  font-variant-numeric: tabular-nums;
}
.ra-collect-btn {
  width: 100%;
  margin-top: 28px;
  height: 52px;
  font-family: var(--sans, 'Space Grotesk', sans-serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.01em;
  text-transform: none;
}
.ra-purchase-fine {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans, 'Space Grotesk', sans-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ra-dim);
  margin-top: 16px;
}
.ra-purchase-fine a { text-decoration: underline; text-underline-offset: 3px; }

/* Redeem — archive claim form */
.ra-redeem {
  border: 1px solid var(--ra-line);
  border-radius: var(--radius-lg, 10px);
  padding: 30px 28px 26px;
  font-family: var(--sans, 'Space Grotesk', sans-serif);
  background: var(--ra-surface);
}
.ra-redeem h3 {
  font-family: var(--display, 'Space Grotesk', sans-serif);
  font-size: clamp(18px, 2.4vw, 22px);
  letter-spacing: -.02em;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ra-ink);
  text-transform: none;
}
.ra-redeem .hint {
  font-size: 14px;
  letter-spacing: -.01em;
  color: var(--ra-dim);
  line-height: 1.55;
  margin: 0 0 20px;
  text-transform: none;
}
.ra-redeem input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ra-line);
  background: transparent;
  font-family: var(--sans, 'Space Grotesk', sans-serif);
  font-size: 15px;
  letter-spacing: -.01em;
  text-transform: none;
  padding: 12px 2px;
  margin-bottom: 16px;
  color: var(--ra-ink);
  border-radius: 0;
}
.ra-redeem input::placeholder { color: var(--ra-dim); text-transform: none; letter-spacing: -.01em; }
.ra-redeem input:focus { outline: none; border-bottom-color: var(--ra-green); }
.ra-redeem .hidden { display: none; }
.ra-redeem .btn { width: 100%; }
.redeem-status {
  font-size: 13px;
  letter-spacing: -.01em;
  margin: 14px 0 0;
  min-height: 14px;
  color: var(--ra-dim);
  text-transform: none;
}
.redeem-status.ok { color: var(--ra-green); }
.redeem-status.err { color: #C98A7D; }

/* buttons on dark surfaces */
body.archive-release .btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: var(--ra-ink);
  border: 1px solid rgba(255, 255, 255, .22);
}
body.archive-release .btn-ghost:hover {
  background: rgba(255, 255, 255, .92);
  color: #0a0a0a;
  border-color: transparent;
}
body.archive-release .btn-fill,
body.archive-release .btn-dark {
  background: linear-gradient(180deg, #FFFFFF 0%, #E9E5DA 100%);
  color: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, .4);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset, 0 10px 28px rgba(0, 0, 0, .4);
}
body.archive-release .btn-fill:hover,
body.archive-release .btn-dark:hover { opacity: .92; }

/* ==========================================================================
   Purchase-complete modal — dark
   ========================================================================== */
body.archive-release .modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, .7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
body.archive-release .modal-overlay.show { display: flex; }
body.archive-release .modal {
  background: var(--ra-surface-hi);
  border: 1px solid var(--ra-line);
  border-radius: var(--radius-lg, 10px);
  max-width: 420px;
  width: 100%;
  padding: 44px 36px 36px;
  position: relative;
  text-align: center;
  font-family: var(--sans, 'Space Grotesk', sans-serif);
  color: var(--ra-ink);
}
body.archive-release .modal h2 {
  font-family: var(--display, 'Space Grotesk', sans-serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 0 0 12px;
}
body.archive-release .modal p {
  font-size: 15px;
  letter-spacing: -.01em;
  color: var(--ra-muted);
  line-height: 1.55;
  margin: 0 0 24px;
}
body.archive-release .modal-check { display: none; }
body.archive-release .modal-close {
  position: absolute;
  top: 10px; right: 14px;
  font-size: 22px;
  color: var(--ra-dim);
  cursor: pointer;
}
body.archive-release .modal-btns { display: grid; gap: 10px; }

/* Footer on dark ------------------------------------------------------------ */
body.archive-release .footer {
  border-top: 1px solid var(--ra-line-soft);
  margin-top: 90px;
}
body.archive-release .footer,
body.archive-release .footer a,
body.archive-release .footer p,
body.archive-release .footer label { color: var(--ra-muted); }
body.archive-release .footer-logo { filter: invert(1); opacity: .8; }
body.archive-release .footer-form input {
  background: rgba(255, 255, 255, .06);
  border-color: var(--ra-line);
  color: var(--ra-ink);
}
body.archive-release .footer-form button {
  background: #fff;
  color: #000;
}

/* Section rhythm ------------------------------------------------------------ */
.ra-section { padding-bottom: 24px; }

/* Mobile refinements --------------------------------------------------------- */
@media (max-width: 959px) {
  .ra-hero { min-height: 0; padding-top: calc(var(--nav-h, 64px) + 16px); }
  .ra-hero-title { font-size: clamp(36px, 11vw, 56px); }
  .ra-hero-ctas .btn { flex: 1 1 100%; }
  .ra-deck { padding: 22px 18px 20px; }
  .ra-head { padding-top: 56px; margin-bottom: 32px; }
}
