@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("./assets/fonts/barlow-condensed-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("./assets/fonts/barlow-condensed-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #020815;
  --ink-soft: #071225;
  --bone: #f8f0e2;
  --muted: #aeb7c8;
  --amber: #edbd7e;
  --amber-bright: #ffe0ad;
  --blue: #4c72aa;
  --violet: #8173a5;
  --line: rgba(226, 232, 243, 0.18);
  --line-strong: rgba(245, 205, 151, 0.55);
  --content-max: 112rem;
  --sticky-safe-offset: clamp(4.75rem, 9vh, 6.25rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: var(--sticky-safe-offset);
}

body {
  min-width: 20rem;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 102%, rgba(190, 93, 39, 0.2), transparent 39rem),
    radial-gradient(circle at 83% 36%, rgba(76, 92, 150, 0.17), transparent 38rem),
    radial-gradient(circle at 16% 23%, rgba(76, 114, 170, 0.1), transparent 32rem),
    var(--ink);
  color: var(--bone);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--bone);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sticky-player-bar {
  --preview-progress: 0;

  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  min-height: 4rem;
  padding: 0.55rem clamp(1rem, 2vw, 2rem);
  border-bottom: 1px solid rgba(255, 190, 106, 0.28);
  background: rgba(8, 9, 13, 0.93);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition:
    opacity 260ms ease,
    transform 420ms var(--ease-out),
    visibility 0s linear 420ms;
  visibility: hidden;
}

@supports ((backdrop-filter: blur(1rem)) or (-webkit-backdrop-filter: blur(1rem))) {
  .sticky-player-bar {
    background: rgba(8, 9, 13, 0.84);
    -webkit-backdrop-filter: blur(1rem) saturate(1.1);
    backdrop-filter: blur(1rem) saturate(1.1);
  }
}

.sticky-player-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 260ms ease,
    transform 420ms var(--ease-out),
    visibility 0s linear 0s;
  visibility: visible;
}

.sticky-player-artist {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--bone);
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease;
}

.sticky-player-artist:hover {
  color: var(--amber-bright);
}

.sticky-player-track {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
  padding-left: clamp(0.75rem, 1.5vw, 1.5rem);
  border-left: 1px solid rgba(245, 241, 232, 0.18);
}

.sticky-player-title {
  overflow: hidden;
  color: var(--amber-bright);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.sticky-player-subtitle {
  color: rgba(245, 241, 232, 0.42);
  font-size: 0.56rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.sticky-preview-toggle {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.55rem;
  padding: 0.35rem 0.7rem 0.35rem 0.4rem;
  border: 1px solid rgba(255, 194, 111, 0.38);
  background: rgba(255, 255, 255, 0.025);
  color: var(--bone);
  cursor: pointer;
  font: inherit;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.sticky-preview-toggle:hover,
.sticky-preview-toggle:focus-visible,
.sticky-preview-toggle[aria-pressed="true"] {
  border-color: var(--amber-bright);
  background: rgba(246, 162, 60, 0.08);
}

.sticky-preview-toggle:focus-visible,
.sticky-player-artist:focus-visible {
  outline: 2px solid var(--amber-bright);
  outline-offset: 4px;
}

.sticky-preview-icon {
  display: grid;
  width: 1.72rem;
  height: 1.72rem;
  place-items: center;
  border: 1px solid rgba(255, 194, 111, 0.45);
  border-radius: 50%;
  color: var(--amber-bright);
  font-size: 0.62rem;
  line-height: 1;
}

.sticky-preview-label {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.sticky-preview-time {
  color: rgba(245, 241, 232, 0.52);
  font-size: 0.6rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.sticky-player-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  background: rgba(245, 241, 232, 0.08);
}

.sticky-player-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--amber-bright),
    var(--violet),
    var(--blue)
  );
  transform: scaleX(var(--preview-progress));
  transform-origin: left center;
  will-change: transform;
}

.release-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: clip;
  padding: clamp(1.2rem, 2.8vw, 2.75rem) clamp(1rem, 1.8vw, 2rem) clamp(2rem, 4vw, 4rem);
}

.release-page::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 100% 5px;
  opacity: 0.35;
}

.ambient-refraction {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.48;
}

.prism-cinema {
  --cinema-opacity: 0.94;

  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.1s var(--ease-out);
}

.prism-cinema canvas {
  display: block;
  width: 100%;
  height: 100%;
  mix-blend-mode: normal;
  filter: blur(0.65px) saturate(1.06) contrast(1.01);
  transform: scale(1.004);
  transform-origin: center;
}

.release-page.webgl-ready .prism-cinema {
  opacity: var(--cinema-opacity);
}

.release-page.webgl-ready .ambient-refraction {
  opacity: 0;
}

.beam {
  fill: none;
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: center;
}

.beam-input {
  stroke-width: 8;
  animation: ambient-input 20s ease-in-out 2 both;
}

.beam-output {
  stroke-width: 24;
  opacity: 0.34;
  animation: ambient-output 22s ease-in-out 2 both;
}

.beam-blue {
  animation-delay: 140ms;
}

.beam-violet {
  animation-delay: 280ms;
}

.beam-amber {
  stroke-width: 16;
  animation-delay: 420ms;
}

.release-page.is-energized .beam-output {
  animation: refraction-burst 1.35s var(--ease-out) 1 both;
}

.release-page.is-energized .beam-input {
  animation: input-burst 1.15s var(--ease-out) 1 both;
}

.release-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-max);
  margin: 0 auto clamp(1.5rem, 3vw, 3rem);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.artist-mark,
.header-status {
  font-size: clamp(0.78rem, 1.1vw, 0.94rem);
  font-weight: 650;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.artist-mark {
  letter-spacing: 0.08em;
}

.artist-mark:focus-visible,
.primary-cta:focus-visible,
.platform-link:focus-visible {
  outline: 2px solid var(--amber-bright);
  outline-offset: 4px;
}

.header-status {
  color: var(--amber-bright);
  text-transform: uppercase;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(18rem, 0.94fr) minmax(24rem, 1.06fr);
  align-items: center;
  gap: clamp(2rem, 5.5vw, 6.5rem);
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.cover-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 46rem;
  aspect-ratio: 1;
  margin: 0;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 191, 110, 0.86), rgba(79, 106, 255, 0.45) 68%, rgba(149, 83, 255, 0.76));
  box-shadow:
    0 0 0 1px rgba(255, 187, 99, 0.12),
    0 2.5rem 8rem rgba(0, 0, 0, 0.58);
  animation: frame-shimmer 7s var(--ease-out) 1.45s 1 both;
}

.cover-frame::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border: 1px solid rgba(255, 190, 106, 0.36);
  box-shadow:
    0 0 1.25rem rgba(255, 162, 60, 0.11),
    0 0 2.2rem rgba(73, 110, 255, 0.08);
}

.cover-frame picture,
.cover-frame img {
  width: 100%;
  height: 100%;
}

.cover-frame img {
  object-fit: cover;
}

.release-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  padding-block: clamp(0.5rem, 2vw, 2rem);
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 clamp(0.8rem, 1.8vw, 1.35rem);
  color: var(--amber-bright);
  font-size: clamp(0.72rem, 1vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-transform: uppercase;
}

.artist-name {
  margin: 0;
  color: var(--bone);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(3.75rem, 7.3vw, 7.8rem);
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 0.88;
}

.track-title {
  --title-spacing: -0.015em;

  margin: clamp(0.35rem, 0.9vw, 0.85rem) 0 0;
  color: var(--amber);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(4.35rem, 8.6vw, 9.2rem);
  font-weight: 700;
  letter-spacing: var(--title-spacing);
  line-height: 0.79;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow:
    0 0 2rem rgba(246, 162, 60, 0.11),
    0 0 4rem rgba(73, 110, 255, 0.05);
}

.title-line {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  column-gap: 0.16em;
}

.title-word {
  --title-delay: 340ms;
  --title-duration: 820ms;
  --title-focus: 2.2px;
  --title-loose: 0.012em;
  --title-shift-x: -4px;
  --title-shift-y: -1px;

  display: inline-block;
  letter-spacing: var(--title-spacing);
  animation: title-prism-focus var(--title-duration) var(--ease-out) var(--title-delay) both;
}

.title-word-were {
  --title-delay: 340ms;
}

.title-word-burning {
  --title-delay: 405ms;
  --title-shift-x: 4px;
  --title-shift-y: 1px;
}

.title-word-bright {
  --title-delay: 470ms;
  --title-shift-x: 2px;
  --title-shift-y: -3px;
}

.dedication {
  max-width: 36rem;
  margin: clamp(0.7rem, 1.2vw, 1rem) 0 0;
  color: rgba(244, 223, 184, 0.92);
  font-size: clamp(0.86rem, 1.08vw, 0.98rem);
  font-weight: 430;
  letter-spacing: 0.015em;
  line-height: 1.55;
  text-shadow: 0 0 1.6rem rgba(101, 153, 154, 0.16);
  text-wrap: balance;
}

.availability {
  max-width: 42rem;
  margin: clamp(1.1rem, 2vw, 1.75rem) 0 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  line-height: 1.65;
}

.dedication + .availability {
  margin-top: clamp(0.55rem, 1vw, 0.8rem);
}

.primary-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 1rem 1.15rem 1rem 1.35rem;
  border: 1px solid var(--amber-bright);
  background: var(--amber);
  box-shadow: 0 1.1rem 3.2rem rgba(246, 162, 60, 0.14);
  color: #090a0d;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-out);
}

.primary-cta:hover {
  background: var(--amber-bright);
  box-shadow: 0 1.35rem 4rem rgba(246, 162, 60, 0.22);
  transform: translateY(-2px);
}

.cta-arrow {
  font-family: "Inter", sans-serif;
  font-size: 1.1em;
  font-weight: 450;
}

.action-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(8rem, 10.5vw, 9.5rem);
  gap: 0.65rem;
  width: min(100%, 48rem);
  margin-top: clamp(1.25rem, 2.4vw, 2rem);
}

.audio-preview {
  min-width: 0;
}

.audio-preview audio {
  display: none;
}

.preview-toggle {
  --preview-progress: 0;

  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.62rem;
  width: 100%;
  height: 100%;
  min-height: 4.25rem;
  padding: 0.65rem 0.8rem;
  overflow: hidden;
  border: 1px solid rgba(255, 194, 111, 0.52);
  background:
    linear-gradient(125deg, rgba(246, 162, 60, 0.12), rgba(73, 110, 255, 0.08)),
    rgba(8, 9, 13, 0.74);
  color: var(--bone);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 220ms var(--ease-out);
}

.preview-toggle:hover,
.preview-toggle:focus-visible,
.preview-toggle[aria-pressed="true"] {
  border-color: var(--amber-bright);
  background-color: rgba(246, 162, 60, 0.09);
}

.preview-toggle:hover {
  transform: translateY(-2px);
}

.preview-toggle:focus-visible {
  outline: 2px solid var(--amber-bright);
  outline-offset: 4px;
}

.preview-icon {
  display: grid;
  width: 1.9rem;
  height: 1.9rem;
  place-items: center;
  border: 1px solid rgba(255, 194, 111, 0.45);
  border-radius: 50%;
  color: var(--amber-bright);
  font-size: 0.72rem;
  line-height: 1;
}

.preview-toggle[aria-pressed="true"] .preview-icon {
  border-color: rgba(102, 132, 255, 0.72);
  color: #8ba5ff;
}

.preview-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.preview-label {
  overflow: hidden;
  color: var(--bone);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.preview-time {
  color: rgba(245, 241, 232, 0.55);
  font-size: 0.58rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.preview-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: rgba(245, 241, 232, 0.10);
}

.preview-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--amber-bright), var(--violet), var(--blue));
  transform: scaleX(var(--preview-progress));
  transform-origin: left center;
  will-change: transform;
}

.listen-panel {
  width: min(100%, 48rem);
  margin-top: clamp(1.4rem, 2.5vw, 2rem);
  outline: 1px solid transparent;
  outline-offset: 0.7rem;
}

.listen-panel:target {
  animation: listen-target-highlight 2.2s var(--ease-out);
}

.listen-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.55rem;
}

.listen-heading h2 {
  margin: 0;
  color: var(--amber-bright);
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.listen-heading p {
  margin: 0;
  color: rgba(245, 241, 232, 0.5);
  font-size: 0.68rem;
}

.platform-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.platform-list li {
  min-width: 0;
  border-bottom: 1px solid var(--line);
}

.platform-list li:not(:nth-child(3n)) {
  border-right: 1px solid var(--line);
}

.platform-link {
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  min-height: 4rem;
  padding: 0.7rem 0.8rem;
  color: var(--bone);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 560;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.platform-link img {
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
}

.platform-link[aria-disabled="true"] {
  cursor: not-allowed;
}

.platform-link:hover,
.platform-link:focus-visible {
  background: rgba(255, 255, 255, 0.045);
}

.platform-state {
  color: rgba(245, 241, 232, 0.43);
  font-size: 0.56rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-link:not([aria-disabled="true"]) .platform-state {
  color: var(--amber-bright);
}

.social-sound-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.8rem;
  min-height: 2.65rem;
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid var(--line);
  color: rgba(245, 241, 232, 0.62);
  font-size: 0.67rem;
  line-height: 1.35;
}

.social-sound-label {
  color: var(--amber-bright);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-sound-service {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: var(--bone);
  font-weight: 650;
  white-space: nowrap;
}

.social-sound-service img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.social-sound-context {
  margin-left: auto;
  color: rgba(245, 241, 232, 0.42);
  white-space: nowrap;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: clamp(0.35rem, 1.2vh, 0.8rem);
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 0.15rem;
  color: rgba(245, 241, 232, 0.64);
  font-size: 0.56rem;
  font-weight: 680;
  letter-spacing: 0.17em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: color 180ms ease;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  color: var(--amber-bright);
}

.scroll-cue:focus-visible,
.details-footer a:focus-visible {
  outline: 2px solid var(--amber-bright);
  outline-offset: 5px;
}

.scroll-cue svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  animation: scroll-cue-drift 2.6s ease-in-out infinite;
}

.release-details {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  scroll-margin-top: 0;
  border-top: 1px solid rgba(255, 190, 106, 0.18);
  background:
    linear-gradient(180deg, #08090d 0%, #090a0f 48%, #07080c 100%);
}

.release-details::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 100% 5px;
  opacity: 0.28;
}

.release-details::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 8% 8%,
      rgba(246, 162, 60, 0.12),
      transparent 29rem
    ),
    radial-gradient(
      ellipse at 94% 24%,
      rgba(73, 110, 255, 0.10),
      transparent 34rem
    ),
    radial-gradient(
      ellipse at 74% 72%,
      rgba(146, 84, 255, 0.07),
      transparent 32rem
    );
}

.details-atmosphere {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: min(86rem, 90vw);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(246, 162, 60, 0.92) 28%,
    rgba(146, 84, 255, 0.62) 58%,
    rgba(73, 110, 255, 0.76) 78%,
    transparent
  );
  box-shadow:
    0 0 1.6rem rgba(246, 162, 60, 0.22),
    0 0 2.8rem rgba(73, 110, 255, 0.12);
  transform: translateX(-50%);
}

.details-shell {
  width: min(100%, 96rem);
  margin-inline: auto;
  padding:
    clamp(5.5rem, 9vw, 10rem)
    clamp(1.25rem, 5.5vw, 6rem)
    clamp(2rem, 4vw, 4rem);
}

.details-header {
  max-width: 76rem;
  padding-bottom: clamp(3rem, 7vw, 6.5rem);
}

.details-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 clamp(1.25rem, 2vw, 2rem);
  color: var(--amber-bright);
  font-size: clamp(0.68rem, 0.9vw, 0.82rem);
  font-weight: 720;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.details-header h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--amber);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.79;
  text-transform: uppercase;
  text-wrap: balance;
}

.details-header h2 span {
  color: var(--bone);
}

.details-intro {
  max-width: 39rem;
  margin: clamp(1.75rem, 3vw, 2.6rem) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.7;
}

.details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(20rem, 0.72fr);
  align-items: start;
  gap: clamp(4rem, 8vw, 9rem);
}

.details-section-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line-strong);
}

.details-section-heading h3 {
  margin: 0;
  color: var(--bone);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 0.9;
  text-transform: uppercase;
}

.details-index,
.details-meta {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.details-index {
  color: var(--amber-bright);
}

.details-meta {
  color: rgba(245, 241, 232, 0.42);
  text-align: right;
}

.lyrics-block {
  display: grid;
  grid-template-columns: clamp(5.2rem, 8vw, 7rem) minmax(0, 1fr);
  gap: clamp(1.25rem, 3.2vw, 3.5rem);
  padding-block: clamp(2.2rem, 4vw, 3.75rem);
  border-bottom: 1px solid rgba(245, 241, 232, 0.12);
}

.lyrics-block h4,
.credit-group h4 {
  margin: 0;
  color: var(--amber-bright);
  font-size: 0.65rem;
  font-weight: 740;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-transform: uppercase;
}

.lyrics-lines {
  position: relative;
}

.lyrics-lines p {
  margin: 0;
  color: var(--bone);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: 0.004em;
  line-height: 1.42;
}

.lyrics-lines p + p {
  margin-top: 1.35em;
}

.lyrics-lines > p > span {
  display: block;
}

.lyrics-line[data-preview-start] {
  --line-progress: 0%;

  transition:
    color 720ms var(--ease-out),
    opacity 720ms var(--ease-out),
    text-shadow 720ms var(--ease-out),
    transform 720ms var(--ease-out);
}

.lyrics-lines .lyrics-line-visual {
  display: inline;
}

.lyrics-lines .lyrics-word {
  --word-reveal: 0%;

  position: relative;
  display: inline-block;
  color: inherit;
  transition:
    filter 720ms var(--ease-out),
    opacity 720ms var(--ease-out);
}

.release-details.is-preview-syncing .lyrics-line[data-preview-start] {
  color: rgba(239, 218, 191, 0.48);
  opacity: 0.68;
}

.release-details.is-preview-syncing .lyrics-line.is-past {
  color: rgba(224, 186, 143, 0.58);
  opacity: 0.76;
}

.release-details.is-preview-syncing .lyrics-line.is-current {
  color: rgba(255, 238, 215, 0.68);
  opacity: 1;
  text-shadow:
    0 0 1.1rem rgba(246, 162, 60, 0.1),
    0 0 2rem rgba(73, 110, 255, 0.04);
  transform: translateX(0.2rem);
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .release-details.is-preview-syncing .lyrics-word {
    --lyric-idle: rgba(239, 218, 191, 0.48);

    background-image: linear-gradient(
      90deg,
      #ffe2bd 0%,
      var(--amber-bright) var(--word-reveal),
      var(--lyric-idle) var(--word-reveal),
      var(--lyric-idle) 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }

  .release-details.is-preview-syncing
    .lyrics-line.is-past
    .lyrics-word {
    filter: saturate(0.72);
  }

  .release-details.is-preview-syncing
    .lyrics-line.is-current
    .lyrics-word {
    filter: saturate(1.08);
  }
}

.release-details.is-preview-paused .lyrics-line.is-current {
  text-shadow: 0 0 1rem rgba(246, 162, 60, 0.12);
}

.preview-continuation {
  position: relative;
  margin-top: clamp(2.75rem, 5vw, 4.5rem);
  overflow: hidden;
  border: 1px solid rgba(246, 162, 60, 0.28);
  background:
    radial-gradient(
      circle at 82% 0%,
      rgba(73, 110, 255, 0.12),
      transparent 42%
    ),
    rgba(10, 11, 17, 0.86);
  box-shadow:
    0 1.5rem 4rem rgba(0, 0, 0, 0.24),
    inset 0 1px rgba(255, 224, 182, 0.05);
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 720ms var(--ease-out),
    transform 720ms var(--ease-out);
}

.preview-continuation::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--amber-bright),
    rgba(146, 84, 255, 0.64),
    rgba(73, 110, 255, 0)
  );
}

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

.preview-continuation-copy {
  padding: clamp(1.35rem, 3vw, 2.15rem);
}

.preview-continuation-kicker {
  margin: 0 0 0.65rem;
  color: var(--amber-bright);
  font-size: 0.62rem;
  font-weight: 740;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.preview-continuation-copy h4 {
  margin: 0;
  color: var(--bone);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
}

.preview-continuation-copy > p:last-child {
  max-width: 32rem;
  margin: 0.75rem 0 0;
  color: rgba(245, 241, 232, 0.56);
  font-size: 0.82rem;
  line-height: 1.6;
}

.preview-continuation-platforms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px 0 0;
  margin: 0;
  list-style: none;
  background: rgba(245, 241, 232, 0.1);
}

.preview-continuation-platforms li {
  min-width: 0;
  background: #0b0c12;
}

.preview-platform-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
  min-height: 3.5rem;
  padding: 0.75rem 0.9rem;
  color: var(--bone);
  text-decoration: none;
  transition:
    color 240ms ease,
    background 240ms ease;
}

.preview-platform-link img {
  width: 1.15rem;
  height: 1.15rem;
}

.preview-platform-link > span:not(.preview-platform-state) {
  overflow: hidden;
  font-size: 0.7rem;
  font-weight: 660;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-platform-state {
  font-size: 0.48rem;
}

.preview-platform-link:not([aria-disabled="true"])
  .preview-platform-state {
  color: var(--amber-bright);
}

.preview-platform-link:not([aria-disabled="true"]):hover {
  color: var(--amber-bright);
  background: rgba(246, 162, 60, 0.075);
}

.preview-platform-link:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid var(--amber-bright);
  outline-offset: -2px;
}

.lyrics-block--chorus .lyrics-lines {
  padding-left: clamp(1.1rem, 2vw, 1.8rem);
}

.lyrics-block--chorus .lyrics-lines::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    var(--amber-bright),
    rgba(146, 84, 255, 0.58),
    rgba(73, 110, 255, 0.66)
  );
  box-shadow: 0 0 1.1rem rgba(246, 162, 60, 0.25);
}

.lyrics-block--chorus .lyrics-lines p {
  color: #fff7e9;
}

.lyrics-block--direction .lyrics-lines p,
.lyrics-direction {
  color: rgba(245, 241, 232, 0.46);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-style: italic;
  font-weight: 430;
  letter-spacing: 0.03em;
  line-height: 1.65;
}

.credits-column {
  position: sticky;
  top: clamp(2rem, 5vw, 4.5rem);
}

.credit-groups {
  border-bottom: 1px solid var(--line-strong);
}

.credit-group {
  padding-block: 1.15rem;
  border-bottom: 1px solid rgba(245, 241, 232, 0.12);
}

.credit-group:last-child {
  border-bottom: 0;
}

.credit-name {
  margin: 0.7rem 0 0;
  color: var(--bone);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 570;
  line-height: 1.35;
}

.credit-role {
  margin: 0.3rem 0 0;
  color: rgba(245, 241, 232, 0.57);
  font-size: clamp(0.82rem, 1vw, 0.94rem);
  line-height: 1.55;
}

.credit-group--ai {
  position: relative;
  padding-left: 1.25rem;
}

.credit-group--ai::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  bottom: 1.15rem;
  left: 0;
  width: 1px;
  background: linear-gradient(
    var(--amber-bright),
    var(--violet),
    var(--blue)
  );
}

.release-facts {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
}

.release-facts div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.72fr) minmax(0, 1.28fr);
  gap: 1rem;
  align-items: baseline;
}

.release-facts dt {
  color: rgba(245, 241, 232, 0.42);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.release-facts dd {
  margin: 0;
  color: var(--bone);
  font-size: 0.9rem;
  line-height: 1.5;
}

.details-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(4rem, 9vw, 8rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.details-footer p,
.details-footer a {
  margin: 0;
  font-size: 0.69rem;
  font-weight: 660;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.details-footer p {
  color: rgba(245, 241, 232, 0.48);
}

.details-footer a {
  display: inline-flex;
  gap: 0.65rem;
  color: var(--amber-bright);
  text-decoration: none;
}

.release-details.has-scroll-reveal .details-reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition:
    opacity 720ms var(--ease-out),
    transform 820ms var(--ease-out);
}

.release-details.has-scroll-reveal .details-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  animation: reveal-up 820ms var(--ease-out) var(--reveal-delay, 0ms) both;
}

.reveal-1 {
  --reveal-delay: 60ms;
}

.reveal-2 {
  --reveal-delay: 130ms;
}

.reveal-3 {
  --reveal-delay: 210ms;
}

.reveal-4 {
  --reveal-delay: 290ms;
}

.reveal-5 {
  --reveal-delay: 360ms;
}

.reveal-6 {
  --reveal-delay: 430ms;
}

.reveal-7 {
  --reveal-delay: 500ms;
}

.reveal-8 {
  --reveal-delay: 570ms;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(1.15rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes title-prism-focus {
  0% {
    opacity: 0;
    filter: blur(var(--title-focus));
    letter-spacing: calc(var(--title-spacing) + var(--title-loose));
    transform: translate3d(var(--title-shift-x), var(--title-shift-y), 0);
  }

  44% {
    opacity: 0.9;
    filter: blur(0.65px);
  }

  76% {
    opacity: 1;
    filter: blur(0.15px);
    letter-spacing: calc(var(--title-spacing) + 0.002em);
    transform: translate3d(0, 0, 0);
  }

  100% {
    opacity: 1;
    filter: none;
    letter-spacing: var(--title-spacing);
    transform: none;
  }
}

@keyframes scroll-cue-drift {
  0%,
  100% {
    opacity: 0.52;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(3px);
  }
}

@keyframes ambient-input {
  0%,
  32%,
  68%,
  100% {
    opacity: 0.5;
    transform: translateX(-0.35%);
  }

  48% {
    opacity: 0.72;
    transform: translateX(0.4%);
  }
}

@keyframes ambient-output {
  0%,
  30%,
  70%,
  100% {
    opacity: 0.28;
    transform: translate3d(-0.25%, 0, 0) scaleX(0.995);
  }

  50% {
    opacity: 0.39;
    transform: translate3d(0.45%, -0.35%, 0) scaleX(1.01);
  }
}

@keyframes frame-shimmer {
  0% {
    box-shadow:
      0 0 0 1px rgba(255, 187, 99, 0.08),
      0 2.5rem 8rem rgba(0, 0, 0, 0.58);
  }

  45% {
    box-shadow:
      0 0 0 1px rgba(255, 205, 139, 0.34),
      0 0 2.3rem rgba(246, 162, 60, 0.13),
      0 0 3.4rem rgba(73, 110, 255, 0.08),
      0 2.5rem 8rem rgba(0, 0, 0, 0.58);
  }

  100% {
    box-shadow:
      0 0 0 1px rgba(255, 187, 99, 0.12),
      0 2.5rem 8rem rgba(0, 0, 0, 0.58);
  }
}

@keyframes refraction-burst {
  0% {
    opacity: 0.3;
    transform: translate3d(0, 0, 0) scaleX(1);
  }

  38% {
    opacity: 0.62;
    transform: translate3d(0.9%, -0.55%, 0) scaleX(1.025);
  }

  100% {
    opacity: 0.3;
    transform: translate3d(0, 0, 0) scaleX(1);
  }
}

@keyframes input-burst {
  0%,
  100% {
    opacity: 0.5;
  }

  40% {
    opacity: 0.85;
  }
}

@keyframes listen-target-highlight {
  0% {
    outline-color: rgba(123, 185, 183, 0.92);
    box-shadow: 0 0 0 rgba(105, 164, 163, 0);
  }

  35% {
    outline-color: rgba(123, 185, 183, 0.72);
    box-shadow: 0 0 2.4rem rgba(105, 164, 163, 0.16);
  }

  100% {
    outline-color: transparent;
    box-shadow: 0 0 0 rgba(105, 164, 163, 0);
  }
}

@media (min-width: 821px) {
  .release-page {
    display: flex;
    flex-direction: column;
    padding-block: clamp(1rem, 2.4vh, 1.5rem);
  }

  .release-header {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: clamp(0.75rem, 1.8vh, 1.25rem);
    padding-bottom: clamp(0.65rem, 1.4vh, 0.9rem);
  }

  .hero {
    flex: 1 1 auto;
    min-height: 0;
  }

  .cover-frame {
    justify-self: end;
    max-width: min(46rem, calc(100svh - 9rem));
  }

  .release-copy {
    padding-block: clamp(0.25rem, 1vh, 0.75rem);
  }
}

@media (min-width: 821px) and (min-height: 680px) {
  .release-page {
    min-height: 0;
    height: 100svh;
  }
}

@media (min-width: 821px) and (max-height: 800px) {
  .artist-name {
    font-size: clamp(3.75rem, 7vw, 6.4rem);
  }

  .track-title {
    font-size: clamp(4.35rem, 8vw, 7rem);
  }

  .availability {
    margin-top: 0.85rem;
  }

  .action-row {
    margin-top: 1rem;
  }

  .primary-cta {
    padding-block: 0.75rem;
    font-size: 1.85rem;
  }

  .preview-toggle {
    min-height: 3.7rem;
    padding-block: 0.5rem;
  }

  .listen-panel {
    margin-top: 1rem;
  }

  .platform-link {
    min-height: 3.25rem;
  }

  .scroll-cue {
    bottom: 0.15rem;
  }

  .scroll-cue-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(17rem, 0.9fr) minmax(21rem, 1.1fr);
    gap: clamp(1.5rem, 4vw, 3.2rem);
  }

  .platform-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-list li:not(:nth-child(3n)) {
    border-right: 0;
  }

  .platform-list li:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .prism-cinema {
    --cinema-opacity: 0.72;
  }

  .release-page {
    padding-inline: clamp(1rem, 4vw, 1.75rem);
  }

  .release-header {
    margin-bottom: 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: clamp(1.4rem, 5vw, 2rem);
  }

  .cover-frame {
    max-width: min(82vw, 34rem);
    margin-inline: auto;
  }

  .release-copy {
    width: min(100%, 42rem);
    margin-inline: auto;
    padding-top: 0;
  }

  .artist-name {
    font-size: clamp(3.9rem, 16vw, 6.5rem);
  }

  .track-title {
    font-size: clamp(4.2rem, 18vw, 7.4rem);
  }

  .title-word {
    --title-duration: 520ms;
    --title-focus: 1.1px;
    --title-loose: 0.006em;
    --title-shift-x: -2px;
    --title-shift-y: 0;
  }

  .title-word-were {
    --title-delay: 150ms;
  }

  .title-word-burning {
    --title-delay: 195ms;
    --title-shift-x: 2px;
  }

  .title-word-bright {
    --title-delay: 240ms;
    --title-shift-x: 1px;
    --title-shift-y: -1px;
  }

  .action-row,
  .listen-panel {
    width: 100%;
  }

  .ambient-refraction {
    opacity: 0.35;
  }

  .scroll-cue {
    position: relative;
    bottom: auto;
    left: auto;
    width: max-content;
    margin: 2.5rem auto 0;
    transform: none;
  }

  .details-shell {
    padding:
      clamp(4.5rem, 16vw, 7rem)
      clamp(1rem, 5vw, 1.75rem)
      2rem;
  }

  .details-header h2 {
    font-size: clamp(4.8rem, 21vw, 8rem);
  }

  .details-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 5rem;
  }

  .credits-column {
    position: static;
  }

  .sticky-player-bar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(0.55rem, 2.2vw, 0.8rem);
    min-height: 3.75rem;
    padding-inline: clamp(0.75rem, 4vw, 1.25rem);
  }

  .sticky-player-artist {
    gap: 0.32rem;
    font-size: 0.64rem;
    letter-spacing: 0.07em;
  }

  .sticky-player-track {
    padding-left: clamp(0.5rem, 2vw, 0.7rem);
  }

  .sticky-player-title {
    font-size: 1.02rem;
  }
}

@media (max-width: 520px) {
  .sticky-player-artist {
    gap: 0.25rem;
    font-size: 0.58rem;
    letter-spacing: 0.055em;
  }

  .eyebrow {
    gap: 0.45rem;
  }

  .track-title {
    --title-spacing: -0.025em;
  }

  .action-row {
    grid-template-columns: minmax(0, 1fr) 7.6rem;
    gap: 0.5rem;
  }

  .primary-cta {
    font-size: clamp(1.15rem, 5vw, 1.55rem);
    padding-inline: 0.75rem;
  }

  .primary-cta > span:first-child {
    white-space: nowrap;
  }

  .preview-toggle {
    gap: 0.45rem;
    padding-inline: 0.55rem;
  }

  .preview-icon {
    width: 1.7rem;
    height: 1.7rem;
  }

  .listen-heading {
    display: block;
  }

  .listen-heading p {
    margin-top: 0.3rem;
  }

  .platform-list {
    grid-template-columns: 1fr;
  }

  .platform-list li:nth-child(odd) {
    border-right: 0;
  }

  .platform-link {
    min-height: 3.75rem;
  }

  .social-sound-note {
    align-items: flex-start;
  }

  .social-sound-label,
  .social-sound-context {
    flex-basis: 100%;
  }

  .social-sound-note,
  .social-sound-context {
    margin-left: 0;
    white-space: normal;
  }

  .details-header {
    padding-bottom: 3.75rem;
  }

  .details-header h2 {
    font-size: clamp(4.3rem, 23vw, 6rem);
  }

  .details-intro {
    font-size: 0.94rem;
  }

  .details-section-heading {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .details-section-heading .details-meta {
    display: none;
  }

  .details-section-heading h3 {
    font-size: 3rem;
  }

  .lyrics-block {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
    padding-block: 2.2rem;
  }

  .lyrics-lines p {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    line-height: 1.42;
  }

  .lyrics-block--chorus .lyrics-lines {
    padding-left: 1rem;
  }

  .release-facts div {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.25rem;
  }

  .details-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .sticky-player-subtitle,
  .sticky-preview-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .sticky-preview-toggle {
    grid-template-columns: auto auto;
    gap: 0.45rem;
    min-height: 2.45rem;
    padding-right: 0.65rem;
  }

  .release-details.is-preview-syncing .lyrics-line.is-current {
    transform: translateX(0.14rem);
  }

  .preview-continuation {
    margin-top: 2.5rem;
  }

  .preview-continuation-copy {
    padding: 1.25rem;
  }

  .preview-continuation-platforms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preview-platform-link {
    gap: 0.5rem;
    padding-inline: 0.7rem;
  }
}

@media (max-width: 360px) {
  .primary-cta {
    padding-inline: 0.65rem;
    font-size: 1rem;
  }
}

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

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

  .listen-panel:target {
    outline-color: rgba(123, 185, 183, 0.72);
    animation: none !important;
  }

  .beam-input {
    opacity: 0.52;
  }

  .beam-output {
    opacity: 0.3;
  }

  .title-word {
    animation: none !important;
    opacity: 1;
    filter: none;
    letter-spacing: var(--title-spacing);
    transform: none;
  }

  .scroll-cue svg {
    animation: none;
  }

  .release-details.has-scroll-reveal .details-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sticky-player-bar,
  .lyrics-line[data-preview-start],
  .lyrics-word,
  .preview-continuation {
    transition: none;
  }
}

/* Go With a Smile — warm, timeworn memory theme */
:root {
  --ink: #151817;
  --ink-soft: #202523;
  --bone: #f6f0df;
  --muted: #b7b4a7;
  --amber: #d9c7a6;
  --amber-bright: #fff0ce;
  --blue: #65999a;
  --violet: #bd7a73;
  --line: rgba(239, 230, 205, 0.18);
  --line-strong: rgba(116, 176, 176, 0.58);
}

html {
  background: #151817;
}

body {
  background:
    radial-gradient(circle at 51% 106%, rgba(184, 116, 103, 0.18), transparent 38rem),
    radial-gradient(circle at 84% 29%, rgba(89, 144, 145, 0.16), transparent 40rem),
    radial-gradient(circle at 13% 20%, rgba(216, 193, 153, 0.1), transparent 31rem),
    #151817;
}

.sticky-player-bar {
  border-bottom-color: rgba(117, 176, 176, 0.28);
  background: rgba(20, 24, 23, 0.94);
}

@supports ((backdrop-filter: blur(1rem)) or (-webkit-backdrop-filter: blur(1rem))) {
  .sticky-player-bar {
    background: rgba(20, 24, 23, 0.84);
  }
}

.sticky-player-title {
  color: #d8e5dc;
}

.sticky-preview-toggle {
  border-color: rgba(112, 173, 173, 0.42);
}

.sticky-preview-toggle:hover,
.sticky-preview-toggle:focus-visible,
.sticky-preview-toggle[aria-pressed="true"] {
  border-color: #8bc1bf;
  background: rgba(103, 157, 157, 0.11);
}

.sticky-preview-icon {
  border-color: rgba(130, 190, 188, 0.48);
  color: #b6d7d2;
}

.sticky-player-progress span {
  background: linear-gradient(90deg, #e6d4b1, #c77f76, #69a4a3);
}

.release-page::after {
  content: "";
  position: absolute;
  z-index: -3;
  inset: -12%;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(18, 22, 21, 0.44), rgba(18, 21, 20, 0.8)),
    url("./assets/cover-1400.webp") center / cover no-repeat;
  filter: blur(76px) saturate(0.72) sepia(0.08);
  opacity: 0.27;
  transform: scale(1.16);
}

.release-page::before {
  background-image:
    radial-gradient(circle at 17% 24%, rgba(243, 225, 187, 0.38) 0 1px, transparent 1.5px),
    radial-gradient(circle at 79% 33%, rgba(132, 189, 186, 0.3) 0 1px, transparent 1.5px),
    linear-gradient(rgba(255, 248, 226, 0.018) 1px, transparent 1px);
  background-position: 0 0, 27px 39px, 0 0;
  background-size: 73px 73px, 109px 109px, 100% 5px;
  opacity: 0.44;
}

.prism-cinema {
  --cinema-opacity: 0.76;
}

.prism-cinema canvas {
  filter: saturate(0.86) contrast(0.98);
}

.ambient-memory {
  overflow: hidden;
  opacity: 0.55;
}

.ambient-memory::before,
.ambient-memory::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(237, 218, 180, 0.14);
  border-radius: 50%;
  filter: blur(0.2px);
}

.ambient-memory::before {
  width: min(48rem, 70vw);
  aspect-ratio: 1;
  top: 9%;
  right: -14%;
  box-shadow:
    0 0 7rem rgba(91, 153, 153, 0.08),
    inset 0 0 8rem rgba(194, 124, 113, 0.04);
}

.ambient-memory::after {
  width: min(31rem, 58vw);
  aspect-ratio: 1;
  bottom: 2%;
  left: -11%;
  border-color: rgba(105, 164, 163, 0.13);
  box-shadow: 0 0 6rem rgba(224, 198, 156, 0.06);
}

.release-page.webgl-ready .ambient-memory {
  opacity: 0.16;
}

.cover-frame {
  padding: clamp(0.3rem, 0.55vw, 0.58rem);
  background: linear-gradient(
    145deg,
    rgba(245, 224, 184, 0.88),
    rgba(106, 163, 163, 0.56) 53%,
    rgba(190, 111, 103, 0.72)
  );
  box-shadow:
    0 0 0 1px rgba(247, 232, 199, 0.12),
    0 2.8rem 9rem rgba(5, 10, 9, 0.58),
    0 0 7rem rgba(89, 144, 145, 0.11);
  transform: rotate(-0.35deg);
}

.cover-frame::after {
  inset: clamp(0.65rem, 1vw, 1.1rem);
  border-color: rgba(250, 231, 191, 0.27);
  box-shadow:
    0 0 1.8rem rgba(234, 206, 160, 0.11),
    0 0 3.8rem rgba(91, 153, 153, 0.1);
}

.cover-frame img {
  filter: saturate(0.93) contrast(1.015);
}

.track-title {
  line-height: 0.8;
  text-shadow:
    0 0 2.7rem rgba(230, 204, 161, 0.1),
    0 0 5rem rgba(101, 153, 154, 0.07);
}

.title-line-long {
  margin-top: 0.05em;
}

.title-word-go {
  --title-delay: 340ms;
  color: var(--bone);
  font-size: 0.69em;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.title-word-smile {
  --title-delay: 430ms;
  --title-shift-x: 3px;
  display: inline-block;
  background: linear-gradient(94deg, #f4dfb8 0%, #cf877c 52%, #7cb2b0 112%);
  color: transparent;
  font-size: 0.94em;
  letter-spacing: 0.025em;
  -webkit-background-clip: text;
  background-clip: text;
}

.primary-cta {
  border-color: #82b8b5;
  background: #6fa4a3;
  box-shadow: 0 1.1rem 3.2rem rgba(73, 130, 131, 0.16);
  color: #101b19;
}

.primary-cta:hover {
  background: #93c3bf;
  box-shadow: 0 1.35rem 4rem rgba(73, 130, 131, 0.23);
}

.preview-toggle {
  background:
    linear-gradient(125deg, rgba(213, 191, 151, 0.09), rgba(100, 158, 158, 0.11)),
    rgba(20, 25, 23, 0.79);
}

.listen-panel {
  background:
    linear-gradient(135deg, rgba(102, 158, 158, 0.07), rgba(192, 117, 107, 0.045)),
    rgba(17, 21, 20, 0.58);
}

.platform-link:hover,
.platform-link:focus-visible {
  background: rgba(113, 171, 169, 0.09);
}

.release-details {
  border-top-color: rgba(105, 164, 163, 0.34);
  background: linear-gradient(180deg, #151817 0%, #1b211f 48%, #121514 100%);
}

.release-details::before {
  background-image:
    linear-gradient(rgba(244, 233, 207, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 12% 24%, rgba(230, 210, 173, 0.15) 0 1px, transparent 1.6px);
  background-size: 100% 5px, 83px 83px;
}

.release-details::after {
  background:
    radial-gradient(ellipse at 10% 8%, rgba(219, 191, 145, 0.1), transparent 31rem),
    radial-gradient(ellipse at 93% 25%, rgba(93, 151, 151, 0.15), transparent 36rem),
    radial-gradient(ellipse at 72% 76%, rgba(190, 117, 107, 0.08), transparent 32rem);
}

.details-atmosphere {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(230, 212, 177, 0.88) 24%,
    rgba(196, 124, 115, 0.76) 52%,
    rgba(105, 164, 163, 0.82) 78%,
    transparent
  );
  box-shadow:
    0 0 1.8rem rgba(230, 212, 177, 0.18),
    0 0 3.2rem rgba(105, 164, 163, 0.2);
}

.lyrics-block--chorus .lyrics-lines::before {
  background: linear-gradient(180deg, #f0d7aa, #c47c73, #68a3a1);
}

.lyrics-line.is-current,
.lyrics-word.is-current {
  text-shadow: 0 0 1.8rem rgba(112, 175, 173, 0.19);
}

@media (max-width: 820px) {
  .track-title {
    font-size: clamp(3.85rem, 17vw, 7rem);
  }

  .title-word-go {
    font-size: 0.64em;
    letter-spacing: 0.025em;
  }

  .title-word-smile {
    font-size: 0.91em;
  }
}

@media (max-width: 480px) {
  .track-title {
    font-size: clamp(3.45rem, 18vw, 5.5rem);
  }

  .title-word-go {
    font-size: 0.61em;
    letter-spacing: 0.012em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cover-frame {
    transform: none;
  }
}

/* Animated cover: moving photograph beneath the original typography. */
.release-navigation {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.4rem);
}

.music-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding-left: clamp(0.75rem, 1.5vw, 1.4rem);
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.music-back-link:hover {
  color: var(--bone);
}

.music-back-link:focus-visible {
  outline: 2px solid var(--amber-bright);
  outline-offset: 5px;
}

.cover-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #222725;
}

.cover-media::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(244, 224, 188, 0.055), transparent 38%, rgba(189, 118, 109, 0.045)),
    repeating-linear-gradient(91deg, transparent 0 97px, rgba(255, 247, 224, 0.028) 98px, transparent 99px 181px);
  box-shadow: inset 0 0 3rem rgba(26, 31, 29, 0.12);
  mix-blend-mode: soft-light;
}

.cover-frame .cover-poster,
.cover-frame .cover-motion-video,
.cover-frame .cover-typography-overlay {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.cover-frame .cover-poster {
  z-index: 1;
  opacity: 1;
  transition: opacity 700ms var(--ease-out);
}

.cover-frame .cover-poster img,
.cover-frame .cover-motion-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-frame .cover-motion-video {
  z-index: 2;
  opacity: 0;
  filter: saturate(0.82) contrast(0.98) brightness(0.96);
  transition: opacity 700ms var(--ease-out);
}

.cover-frame .cover-typography-overlay {
  z-index: 3;
  object-fit: cover;
  opacity: 0;
  filter: none;
  transition: opacity 650ms ease 120ms;
}

.cover-frame.is-video-ready .cover-poster {
  opacity: 0;
}

.cover-frame.is-video-ready .cover-motion-video,
.cover-frame.is-video-ready .cover-typography-overlay {
  opacity: 1;
}

.cover-motion-toggle {
  position: absolute;
  z-index: 6;
  right: clamp(1rem, 1.7vw, 1.45rem);
  bottom: clamp(1rem, 1.7vw, 1.45rem);
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(246, 236, 210, 0.42);
  border-radius: 50%;
  background: rgba(18, 23, 21, 0.68);
  color: #f7ecd6;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.35rem);
  transition:
    opacity 260ms ease,
    transform 380ms var(--ease-out),
    background-color 180ms ease,
    border-color 180ms ease;
}

@supports ((backdrop-filter: blur(0.7rem)) or (-webkit-backdrop-filter: blur(0.7rem))) {
  .cover-motion-toggle {
    background: rgba(18, 23, 21, 0.5);
    -webkit-backdrop-filter: blur(0.7rem);
    backdrop-filter: blur(0.7rem);
  }
}

.cover-frame.is-video-ready .cover-motion-toggle {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.cover-motion-toggle:hover,
.cover-motion-toggle:focus-visible {
  border-color: #f5dcaf;
  background: rgba(25, 34, 31, 0.82);
}

.cover-motion-toggle:focus-visible {
  outline: 2px solid #f5dcaf;
  outline-offset: 4px;
}

@media (max-width: 420px) {
  .release-navigation {
    gap: 0.55rem;
  }

  .music-back-link {
    gap: 0.3rem;
    padding-left: 0.55rem;
    font-size: 0.59rem;
    letter-spacing: 0.075em;
  }

  .cover-motion-toggle {
    width: 2.3rem;
    height: 2.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cover-motion-video,
  .cover-typography-overlay,
  .cover-motion-toggle {
    display: none;
  }

  .cover-frame .cover-poster {
    opacity: 1;
    transition: none;
  }
}
