/* ==========================================================================
   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: 56px 0 18px;
  margin-bottom: 28px;
  box-shadow: inset 0 -1px 0 var(--ra-line);
}
#listen .ra-head {
  padding-top: 48px;
  margin-bottom: 24px;
}
.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: none;
}
@media (min-width: 960px) {
  .ra-purchase-grid--solo {
    grid-template-columns: 1.3fr .8fr;
    gap: 12px;
  }
  .ra-purchase-grid--solo .ra-format { grid-column: 1; }
}

/* 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, rgba(255,255,255,.22) 0%, rgba(230,236,244,.92) 40%, rgba(186,198,214,.88) 100%);
  color: #0a0a0a;
  border: 1px solid rgba(220,230,242,.7);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .85) 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, .08);
  color: #fff;
  border: 1px solid rgba(200, 214, 230, .42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.ra-hero-ctas .btn-outline:hover { background: rgba(255, 255, 255, .14); border-color: rgba(220, 230, 242, .55); }

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

.ra-deck {
  background:
    radial-gradient(120% 80% at 12% 0%, rgba(255, 255, 255, .045), transparent 42%),
    linear-gradient(180deg, #141414 0%, var(--ra-surface) 48%, #0a0a0a 100%);
  border: 1px solid var(--ra-line);
  border-radius: var(--radius-lg, 10px);
  color: var(--ra-ink);
  padding: 22px 22px 20px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .06) inset,
    0 28px 56px -22px rgba(0, 0, 0, .8);
  display: flex;
  flex-direction: column;
}
.ra-deck-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  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: 16px;
}
.ra-deck-head .live {
  color: var(--ra-green);
  font-variant-numeric: tabular-nums;
}

/* Premium mini-cassette in the deck --------------------------------------- */
.ra-deck-cassette {
  position: relative;
  margin: 0 0 18px;
  padding: 10px 10px 12px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .03), transparent 30%),
    linear-gradient(180deg, #050505, #0a0a0a 55%, #080808);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .05),
    0 8px 18px rgba(0, 0, 0, .75) inset,
    0 0 0 1px rgba(255, 255, 255, .04) inset;
  perspective: 1200px;
}
.ra-deck-shell {
  position: relative;
  container-type: inline-size;
  width: 100%;
  aspect-ratio: 100 / 62;
  border-radius: 11px;
  background:
    radial-gradient(100% 80% at 18% 6%, rgba(255, 255, 255, .2), transparent 36%),
    radial-gradient(70% 60% at 84% 94%, rgba(0, 0, 0, .55), transparent 46%),
    repeating-linear-gradient(
      116deg,
      rgba(255, 255, 255, .03) 0 1px,
      transparent 1px 3px
    ),
    linear-gradient(170deg, #4a4a44 0%, #2a2a26 28%, #161613 62%, #242420 100%);
  border: 1px solid rgba(0, 0, 0, .85);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .32) inset,
    0 -4px 0 rgba(0, 0, 0, .55) inset,
    0 0 0 1px rgba(255, 255, 255, .07) inset,
    0 18px 28px -8px rgba(0, 0, 0, .95),
    0 4px 10px rgba(0, 0, 0, .55),
    0 0 0 1px rgba(0, 0, 0, .6);
  overflow: hidden;
  transform: rotateX(6deg) rotateY(-3deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform .7s var(--ra-ease), box-shadow .7s var(--ra-ease);
}
.ra-deck:hover .ra-deck-shell,
.release-console.is-live .ra-deck-shell {
  transform: rotateX(2deg) rotateY(0deg) translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .36) inset,
    0 -4px 0 rgba(0, 0, 0, .55) inset,
    0 0 0 1px rgba(255, 255, 255, .08) inset,
    0 24px 36px -8px rgba(0, 0, 0, .98),
    0 0 42px -10px rgba(151, 172, 146, .45),
    0 0 0 1px rgba(0, 0, 0, .6);
}
.ra-deck-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, transparent 34%, rgba(255, 255, 255, .16) 48%, transparent 62%);
  pointer-events: none;
  opacity: .55;
  mix-blend-mode: soft-light;
  animation: ra-deck-sheen 6.5s var(--ra-ease) infinite;
  z-index: 4;
}
@keyframes ra-deck-sheen {
  0%, 100% { transform: translateX(-24%); opacity: .3; }
  50% { transform: translateX(24%); opacity: .8; }
}
.ra-deck-shell::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, .05);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .4) inset;
  pointer-events: none;
  z-index: 1;
}
.ra-deck-screw {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, #d0d0c6, #6a6a60 38%, #1a1a16 76%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .8),
    0 1px 0 rgba(255, 255, 255, .4) inset,
    0 2px 4px rgba(0, 0, 0, .65);
  z-index: 5;
}
.ra-deck-screw::after {
  content: "";
  position: absolute;
  inset: 3px;
  background:
    linear-gradient(#0a0a08, #0a0a08) center / 100% 2px no-repeat,
    linear-gradient(#0a0a08, #0a0a08) center / 2px 100% no-repeat;
  opacity: .9;
  border-radius: 1px;
}
.ra-deck-screw--tl { top: 10px; left: 12px; }
.ra-deck-screw--tr { top: 10px; right: 12px; }
.ra-deck-screw--bl { bottom: 10px; left: 12px; }
.ra-deck-screw--br { bottom: 10px; right: 12px; }

.ra-deck-face {
  position: absolute;
  inset: 14% 10% 18% 10%;
  display: flex;
  flex-direction: column;
  gap: 7%;
  z-index: 2;
}
.ra-deck-stamp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex: 0 0 26%;
  padding: 0 3.5%;
  border-radius: 2px;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(255, 252, 235, .7), transparent 46%),
    radial-gradient(ellipse at 88% 78%, rgba(120, 95, 50, .14), transparent 42%),
    repeating-linear-gradient(
      0deg,
      rgba(70, 55, 25, .05) 0 1px,
      transparent 1px 3px
    ),
    linear-gradient(160deg, #F7F0DC 0%, #E8DCBA 52%, #D4C498 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .55),
    0 1px 2px rgba(0, 0, 0, .35) inset,
    0 2px 4px rgba(0, 0, 0, .22);
  color: #241e14;
  font-family: var(--ra-mono);
  font-size: clamp(9px, 2.4cqw, 12px);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.ra-deck-stamp-side {
  border: 1px solid rgba(40, 34, 22, .85);
  padding: 2px 7px;
  line-height: 1.35;
  background: rgba(255, 250, 235, .45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .45) inset,
    0 1px 1px rgba(0, 0, 0, .12);
}

.ra-deck-window {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6.5%;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .1), transparent 26%),
    linear-gradient(180deg, #000, #161612 52%, #050504);
  box-shadow:
    0 0 0 2px #5a5a52,
    0 0 0 5px #22221e,
    0 6px 14px rgba(0, 0, 0, .92) inset,
    0 1px 0 rgba(255, 255, 255, .14);
  overflow: hidden;
}
.ra-deck-window::before {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  top: 34%;
  height: 38%;
  border-radius: 2px;
  background:
    linear-gradient(180deg, #b07840, #6a4018 48%, #30180a);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, .65) inset,
    0 0 10px rgba(176, 120, 64, .3);
  opacity: .96;
  z-index: 0;
}
.ra-deck-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .16), transparent 30%),
    radial-gradient(ellipse at 50% 120%, rgba(255, 220, 160, .1), transparent 55%);
  pointer-events: none;
  z-index: 3;
}
.ra-deck-window .ra-reel {
  width: 32%;
  min-width: 44px;
  max-width: 72px;
  background:
    radial-gradient(circle, #050505 0 14%, transparent 15%),
    radial-gradient(circle, #1a1a16 0 22%, transparent 23%),
    radial-gradient(circle,
      transparent 0 24%,
      #3a2814 25% 30%,
      #5a3c1c 31% 36%,
      #2e1e0e 37% 42%,
      #6a4820 43% 48%,
      #24180c 49% 54%,
      #7a5428 55% 60%,
      transparent 61%),
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, .2), transparent 40%),
    repeating-conic-gradient(#F4EEDC 0 9deg, #1a1a16 9deg 45deg);
  box-shadow:
    0 0 0 2px #F4EEDC,
    0 0 0 5px #2e2e2a,
    0 2px 6px rgba(0, 0, 0, .7) inset,
    0 0 12px rgba(0, 0, 0, .5);
}
.ra-reel-hub {
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 30%, #5a5a52, #121210 70%);
  box-shadow:
    0 0 0 1px rgba(244, 238, 220, .55),
    0 1px 3px rgba(0, 0, 0, .75) inset;
  z-index: 2;
}
.ra-deck-tape {
  position: relative;
  z-index: 1;
  flex: 1;
  height: 12px;
  margin: 0 6%;
  border-radius: 2px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #c08448, #6e4218 40%, #2a1608);
  box-shadow:
    0 1px 0 rgba(255, 235, 180, .28) inset,
    0 0 0 1px rgba(0, 0, 0, .55),
    0 0 12px rgba(192, 132, 72, .28);
}
.ra-deck-tape > span {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 240, 200, .28) 0 1px,
    transparent 1px 4px,
    rgba(0, 0, 0, .12) 4px 5px,
    transparent 5px 7px
  );
  opacity: .75;
}
.release-console.is-live .ra-deck-tape > span {
  animation: ra-tape-feed .95s linear infinite;
}
@keyframes ra-tape-feed {
  from { transform: translateX(0); }
  to { transform: translateX(-7px); }
}
.release-console.is-live .ra-reel { animation-play-state: running; }

.ra-deck-bay {
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 4%;
  height: 12%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2.5%;
  padding: 0 2%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 35%),
    linear-gradient(180deg, #22221e, #050504);
  clip-path: polygon(7% 0, 93% 0, 100% 100%, 0 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .1) inset,
    0 -1px 0 rgba(0, 0, 0, .6) inset,
    0 4px 8px rgba(0, 0, 0, .5) inset;
  z-index: 2;
}
.ra-deck-bay span {
  flex: 1;
  background:
    linear-gradient(180deg, #050504, #1a1a16 60%, #0c0c0a);
  clip-path: polygon(16% 0, 84% 0, 100% 100%, 0 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .06) inset,
    0 0 0 1px rgba(0, 0, 0, .35) inset;
  opacity: .95;
}

.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: 52px;
  margin: 16px 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 16px;
}

/* transport */
.ra-transport {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ra-key {
  flex: 1;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), transparent 40%),
    linear-gradient(180deg, #222222, #121212);
  color: var(--ra-ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 7px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .08) inset,
    0 3px 0 rgba(0, 0, 0, .65);
  transition: transform .1s var(--ra-ease), box-shadow .1s var(--ra-ease), background .25s var(--ra-ease);
}
.ra-key:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .09), transparent 40%),
    linear-gradient(180deg, #2a2a2a, #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: linear-gradient(180deg, #FFFFFF 0%, #E9E5D8 100%);
  color: #0a0a0a;
  border-color: rgba(255, 255, 255, .35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .55) inset,
    0 1px 0 rgba(0, 0, 0, .55);
  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: 12px;
}
.ra-deck .p-msg.err { color: #C98A7D; }

/* Track list — cue sheet ---------------------------------------------------- */
.ra-tracks {
  font-family: var(--sans, 'Space Grotesk', sans-serif);
  background:
    radial-gradient(120% 80% at 88% 0%, rgba(255, 255, 255, .03), transparent 42%),
    linear-gradient(180deg, #121212 0%, var(--ra-surface) 48%, #0a0a0a 100%);
  border: 1px solid var(--ra-line);
  border-radius: var(--radius-lg, 10px);
  padding: 14px 12px 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .05) inset,
    0 28px 56px -22px rgba(0, 0, 0, .75);
  display: flex;
  flex-direction: column;
}
.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: 12px 8px 6px;
}
.ra-side-label:first-child { padding-top: 2px; }
.ra-tracks .track-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border-top: 1px solid var(--ra-line-soft);
  cursor: pointer;
  border-radius: 6px;
  transition: background .25s var(--ra-ease), color .25s var(--ra-ease);
  position: relative;
}
.ra-tracks .track-row:first-of-type,
.ra-tracks .ra-side-label + .track-row { border-top-color: transparent; }
.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: 15px;
  font-weight: 500;
  letter-spacing: -.015em;
  color: rgba(244, 241, 233, .78);
}
.ra-tracks .track-dur {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ra-dim);
  font-variant-numeric: tabular-nums;
}
.ra-tracks .track-row.is-active {
  background: linear-gradient(90deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
}
.ra-tracks .track-row.is-active .track-no { color: var(--ra-green); }
.ra-tracks .track-row.is-active .track-title { color: #fff; }
.ra-tracks .track-row.is-playing::before {
  content: "";
  position: absolute;
  left: 0; top: 10px; bottom: 10px;
  width: 2px;
  background: var(--ra-green);
  box-shadow: 0 0 10px rgba(151, 172, 146, .55);
}
.ra-tracks .track-play-btn { display: none; }
.ra-tracks-note {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--ra-line-soft);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ra-dim);
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .ra-deck-shell::before,
  .release-console.is-live .ra-deck-tape > span { animation: none; }
  .ra-deck-shell,
  .ra-deck:hover .ra-deck-shell,
  .release-console.is-live .ra-deck-shell { transform: none; }
}

/* ==========================================================================
   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: 28px; }
.ra-purchase-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 900px) {
  .ra-purchase-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

.ra-format {
  font-family: var(--sans, 'Space Grotesk', sans-serif);
  background:
    radial-gradient(120% 80% at 12% 0%, rgba(255, 255, 255, .03), transparent 42%),
    linear-gradient(180deg, #121212 0%, var(--ra-surface) 48%, #0a0a0a 100%);
  border: 1px solid var(--ra-line);
  border-radius: var(--radius-lg, 10px);
  padding: 22px 22px 20px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .05) inset,
    0 28px 56px -22px rgba(0, 0, 0, .75);
}
.ra-format-opt {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  padding: 16px 8px;
  border: 0;
  border-bottom: 1px solid var(--ra-line);
  background: none;
  cursor: pointer;
  font-family: var(--sans, 'Space Grotesk', sans-serif);
  border-radius: 6px;
  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: 22px;
  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: 14px;
}
.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: 18px 16px 16px; }
  .ra-tracks { padding: 16px 12px 14px; }
  .ra-format { padding: 18px 16px 16px; }
  .ra-head { padding-top: 44px; margin-bottom: 22px; }
  #listen .ra-head { padding-top: 40px; margin-bottom: 18px; }
  .ra-deck-shell { aspect-ratio: 100 / 62; }
}
