@import url("https://fonts.googleapis.com/css2?family=Onest:wght@400;500;700;800&family=Unbounded:wght@500;700;800;900&display=swap");

:root {
  color-scheme: dark;
  --bg: #080808;
  --panel: #101113;
  --panel-strong: #18191d;
  --text: #f5f2eb;
  --muted: #a9a39a;
  --line: rgba(245, 242, 235, 0.14);
  --red: #d22b31;
  --gold: #d7ad67;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.45);
  --cold: #315b85;
  --ash: #c8beb0;
  --font-body: "Onest", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Unbounded", "Onest", ui-sans-serif, system-ui, sans-serif;
  --topbar-height: 64px;
  --mx: 0px;
  --my: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  background:
    radial-gradient(circle at calc(50% + var(--mx) * 0.25) calc(18% + var(--my) * 0.18), rgba(49, 91, 133, 0.16), transparent 34vw),
    radial-gradient(circle at calc(18% - var(--mx) * 0.12) calc(46% - var(--my) * 0.1), rgba(210, 43, 49, 0.12), transparent 28vw),
    linear-gradient(180deg, #050506 0%, #08090b 44%, #0f1013 100%);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

h1,
h2,
h3,
.brand,
.eyebrow,
.metric,
.artist-portrait-label,
.release-number,
.bandlink-title,
.admin-logo {
  font-family: var(--font-display);
}

body:not([data-page="admin"])::before,
body:not([data-page="admin"])::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

body:not([data-page="admin"])::before {
  opacity: 0.24;
  mix-blend-mode: screen;
  background:
    repeating-linear-gradient(0deg, rgba(245, 242, 235, 0.035) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 18% 20%, rgba(215, 173, 103, 0.08), transparent 26%),
    radial-gradient(circle at 82% 70%, rgba(49, 91, 133, 0.08), transparent 24%);
  animation: scanDrift 18s steps(6, end) infinite;
}

body:not([data-page="admin"])::after {
  opacity: 0.11;
  background-image:
    linear-gradient(115deg, transparent 0 44%, rgba(245, 242, 235, 0.045) 45%, transparent 46% 100%),
    radial-gradient(circle, rgba(245, 242, 235, 0.28) 0 1px, transparent 1.4px);
  background-size: 180px 180px, 38px 38px;
  transform: translate3d(calc(var(--mx) * -0.18), calc(var(--my) * -0.18), 0);
  animation: noisePulse 9s steps(4, end) infinite;
}

body:not([data-page="admin"]).signal-jolt::before {
  animation: signalBreak 420ms steps(2, end) 1;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--topbar-height);
  padding: 10px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94), rgba(13, 14, 16, 0.86)),
    repeating-linear-gradient(90deg, transparent 0 62px, rgba(215, 173, 103, 0.035) 62px 63px);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: clamp(122px, 14vw, 154px);
  height: 18px;
  object-fit: contain;
}

body:not([data-page="admin"]) .brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
  color: var(--muted);
  font-size: 14px;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(245, 242, 235, 0.035);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 140ms ease, top 180ms ease;
}

.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 27px; }

.topbar.menu-open .nav-toggle span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.topbar.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }

.topbar.menu-open .nav-toggle span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.main-nav a,
.link-button {
  position: relative;
  color: var(--muted);
  transition: color 160ms ease;
}

.main-nav a:hover,
.link-button:hover {
  color: var(--text);
}

.main-nav a::after,
.legal-links a::after,
.bandlink-secondary a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0.35) translateX(-5px);
  transform-origin: left;
  transition: opacity 120ms ease, transform 160ms ease;
}

.main-nav a:hover::after,
.legal-links a:hover::after,
.bandlink-secondary a:hover::after {
  opacity: 0.8;
  transform: scaleX(1) translateX(0);
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-height));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

html:has(body[data-page="home"]),
body[data-page="home"] {
  scroll-snap-type: y mandatory;
  scroll-padding-top: var(--topbar-height);
}

body[data-page="home"] .home-scene {
  min-height: calc(100svh - var(--topbar-height));
  scroll-snap-align: start;
  scroll-snap-stop: always;
  scroll-margin-top: var(--topbar-height);
}

body[data-page="home"].home-motion-ready .section.home-scene > *,
body[data-page="home"].home-motion-ready .hero.home-scene .hero-content {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body[data-page="home"].home-motion-ready .section.home-scene.is-visible > *,
body[data-page="home"].home-motion-ready .hero.home-scene.is-visible .hero-content {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body[data-page="home"] .hero {
  align-items: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(215, 173, 103, 0.08) 18.1% 18.25%, transparent 18.35% 100%),
    linear-gradient(0deg, transparent 0 63%, rgba(245, 242, 235, 0.06) 63.08% 63.18%, transparent 63.25% 100%);
  transform: translate3d(calc(var(--mx) * 0.12), calc(var(--my) * 0.08), 0);
}

.hero::after {
  opacity: 0.34;
  background:
    repeating-linear-gradient(180deg, transparent 0 26px, rgba(245, 242, 235, 0.03) 26px 27px),
    linear-gradient(115deg, transparent 0 70%, rgba(210, 43, 49, 0.12), transparent 84%);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025) translate3d(calc(var(--mx) * -0.16), calc(var(--my) * -0.12), 0);
  transition: transform 260ms ease-out;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.58) 48%, rgba(8, 8, 8, 0.22)),
    linear-gradient(0deg, #080808 0%, rgba(8, 8, 8, 0.1) 34%, rgba(8, 8, 8, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
  padding: clamp(34px, 7vw, 92px);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  position: relative;
  margin: 0;
  font-size: clamp(54px, 11.6vw, 148px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
}

#artist-name {
  display: inline-block;
  width: max-content;
  max-width: none;
  text-shadow: 0 0 32px rgba(245, 242, 235, 0.08);
}

#artist-name::before,
#artist-name::after {
  content: attr(data-glitch);
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

#artist-name::before {
  color: rgba(210, 43, 49, 0.7);
  clip-path: inset(8% 0 64% 0);
  transform: translate(-2px, 0);
}

#artist-name::after {
  color: rgba(49, 91, 133, 0.75);
  clip-path: inset(58% 0 12% 0);
  transform: translate(2px, 0);
}

#artist-name:hover::before,
#artist-name:hover::after,
body.signal-jolt #artist-name::before,
body.signal-jolt #artist-name::after {
  opacity: 0.9;
  animation: titleGlitch 360ms steps(2, end) 1;
}

#artist-name:hover,
body.signal-jolt #artist-name {
  animation: titleNudge 360ms steps(2, end) 1;
}

#artist-name:hover::before,
#artist-name:hover::after,
body.signal-jolt #artist-name::before,
body.signal-jolt #artist-name::after {
  text-shadow: 6px 0 rgba(210, 43, 49, 0.55), -6px 0 rgba(49, 91, 133, 0.55);
  mix-blend-mode: screen;
}

h2 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: #e8e3da;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.36;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-socials {
  margin-top: 18px;
}

.footer-socials {
  margin-top: 10px;
}

.legal-socials {
  margin: 18px 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(245, 242, 235, 0.16);
  border-radius: 999px;
  background: rgba(245, 242, 235, 0.08);
  color: #e8e3da;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 173, 103, 0.52);
  background: rgba(215, 173, 103, 0.12);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(245, 242, 235, 0.2);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(245, 242, 235, 0.13), rgba(245, 242, 235, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 7px 16px rgba(0, 0, 0, 0.22);
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button,
.social-link,
.filter,
.tab,
.platform-links a,
.details-link {
  position: relative;
  overflow: hidden;
}

.button::after,
.social-link::after,
.filter::after,
.tab::after,
.platform-links a::after {
  content: "";
  position: absolute;
  right: -20%;
  left: -20%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 242, 235, 0.45), transparent);
  opacity: 0;
  transform: translateY(-50%) translateX(-30%);
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 45%);
  opacity: 0.7;
  pointer-events: none;
}

.button:hover::after,
.social-link:hover::after,
.filter:hover::after,
.tab:hover::after,
.platform-links a:hover::after {
  opacity: 1;
  animation: linkBreak 420ms steps(3, end) 1;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 242, 235, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 12px 24px rgba(0, 0, 0, 0.34);
}

.button.primary {
  border-color: rgba(255, 120, 125, 0.72);
  background: linear-gradient(135deg, #f0444d 0%, #d5222b 48%, #9f111a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 235, 235, 0.38), inset 0 -1px 0 rgba(89, 0, 6, 0.45), 0 8px 20px rgba(170, 21, 30, 0.3);
  color: var(--white);
}

.button.primary::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 48%);
}

.button.primary:hover {
  border-color: rgba(255, 182, 185, 0.9);
  background: linear-gradient(135deg, #fa525b 0%, #e12832 48%, #b4161e 100%);
  box-shadow: inset 0 1px 0 rgba(255, 245, 245, 0.48), inset 0 -1px 0 rgba(89, 0, 6, 0.42), 0 13px 28px rgba(201, 27, 38, 0.45);
}

.button.ghost {
  border-color: rgba(245, 242, 235, 0.23);
  background: linear-gradient(145deg, rgba(245, 242, 235, 0.13), rgba(245, 242, 235, 0.035));
  backdrop-filter: blur(8px);
}

.button.ghost:hover {
  border-color: rgba(215, 173, 103, 0.62);
  background: linear-gradient(145deg, rgba(215, 173, 103, 0.2), rgba(245, 242, 235, 0.075));
}

.button.compact {
  min-height: 38px;
  padding: 0 14px;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.button.compact .icon,
.details-link .icon,
.filter .icon,
.tab .icon {
  width: 16px;
  height: 16px;
}

.section {
  padding: clamp(56px, 8vw, 116px) clamp(18px, 4vw, 54px);
  overflow: hidden;
}

body[data-page="home"] .section {
  display: grid;
  align-content: center;
  gap: clamp(18px, 3vh, 34px);
  padding-top: clamp(24px, 4vh, 48px);
  padding-bottom: clamp(24px, 4vh, 48px);
}

body[data-page="home"] .section-head {
  margin-bottom: 0;
}

.section > * {
  width: min(1320px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.intro-band,
.secrets-band {
  background:
    radial-gradient(circle at 25% 12%, rgba(49, 91, 133, 0.12), transparent 34%),
    linear-gradient(180deg, #080808, #101011);
}

.section-head {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  min-width: 0;
}

.section-head > * {
  min-width: 0;
}

.section-head::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -14px;
  width: min(360px, 48vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 173, 103, 0.5), rgba(210, 43, 49, 0.18), transparent);
  opacity: 0.62;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.about-copy {
  grid-column: span 6;
}

.artist-portrait-card {
  grid-column: span 6;
}

.signal-panel {
  grid-column: 1 / -1;
}

.about-copy,
.artist-portrait-card,
.signal-panel,
.release-card,
.secret-card,
.admin-panel,
.admin-hero,
.secret-door,
.editor-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 242, 235, 0.035), transparent 38%),
    repeating-linear-gradient(0deg, rgba(245, 242, 235, 0.025) 0 1px, transparent 1px 22px),
    rgba(17, 17, 19, 0.9);
  box-shadow:
    0 20px 70px var(--shadow),
    inset 0 1px 0 rgba(245, 242, 235, 0.045);
}

.about-copy::before,
.artist-portrait-card::before,
.signal-panel::before,
.release-card::before,
.secret-card::before,
.admin-panel::before,
.admin-hero::before,
.secret-door::before,
.editor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.12;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(215, 173, 103, 0.28) 8.2% 8.35%, transparent 8.5% 100%),
    radial-gradient(circle at 12% 18%, rgba(245, 242, 235, 0.18) 0 1px, transparent 1.5px),
    radial-gradient(circle at 82% 74%, rgba(49, 91, 133, 0.22) 0 1px, transparent 1.5px);
  background-size: auto, 90px 90px, 120px 120px;
}

.about-copy::after,
.artist-portrait-card::after,
.signal-panel::after,
.release-card::after,
.secret-card::after {
  content: "";
  position: absolute;
  right: -20%;
  left: -20%;
  top: 0;
  z-index: 2;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(245, 242, 235, 0.48), rgba(215, 173, 103, 0.35), transparent);
}

.about-copy:hover,
.artist-portrait-card:hover,
.release-card.interactive:hover,
.secret-card:hover {
  border-color: rgba(215, 173, 103, 0.34);
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(215, 173, 103, 0.05),
    inset 0 1px 0 rgba(245, 242, 235, 0.06);
}

.about-copy:hover::after,
.artist-portrait-card:hover::after,
.release-card.interactive:hover::after,
.secret-card:hover::after {
  opacity: 1;
  animation: panelScan 620ms steps(5, end) 1;
}

.about-copy {
  align-self: start;
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
  padding: clamp(24px, 4vw, 42px);
  min-width: 0;
}

.about-copy > *,
.release-card > *,
.signal-panel > *,
.secret-card > *,
.artist-portrait-card > * {
  position: relative;
  z-index: 3;
}

.about-copy p,
.lead {
  margin: 0;
  color: #d6d0c7;
  font-size: 18px;
  line-height: 1.65;
}

.about-copy h3 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 0;
  color: var(--gold);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1;
  text-transform: uppercase;
}

.about-copy h3::after {
  content: "";
  width: clamp(42px, 7vw, 96px);
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 173, 103, 0.7), transparent);
}

.about-lede {
  max-width: 860px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 1.04;
}

.about-copy #about-body {
  max-width: 780px;
  color: #d8d1c6;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.78;
}

body[data-page="home"] .about-copy {
  gap: clamp(14px, 2vh, 20px);
  padding: clamp(22px, 3vw, 34px);
}

body[data-page="home"] .about-lede {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.08;
}

body[data-page="home"] .about-copy #about-body {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.62;
}

.artist-proof {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
}

.artist-proof span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.artist-proof strong {
  color: var(--gold);
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1;
  text-transform: uppercase;
}

.about-note {
  display: grid;
  gap: 7px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(245, 242, 235, 0.12);
}

.about-note span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-note p {
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.artist-portrait-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #080808;
}

.artist-portrait-card[hidden] {
  display: none;
}

.artist-portrait-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 52% 38%;
  filter: saturate(0.96) contrast(1.08) brightness(0.92);
}

body[data-page="home"] .artist-portrait-card {
  min-height: clamp(300px, 40vh, 420px);
}

body[data-page="home"] .artist-portrait-card img {
  min-height: clamp(300px, 40vh, 420px);
}

.portrait-glitch-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  background: var(--managed-portrait-image, url("assets/artist/paxenor-portrait.png")) 52% 38% / cover no-repeat;
  mix-blend-mode: screen;
}

.portrait-glitch-layer.layer-red {
  filter: sepia(1) saturate(5) hue-rotate(318deg) contrast(1.15);
}

.portrait-glitch-layer.layer-blue {
  filter: sepia(1) saturate(4) hue-rotate(156deg) contrast(1.12);
}

.portrait-noise,
.portrait-melt {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
}

.portrait-noise {
  background:
    repeating-radial-gradient(circle at 18% 24%, rgba(245, 242, 235, 0.18) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(0deg, rgba(245, 242, 235, 0.12) 0 1px, transparent 1px 4px);
  background-size: 54px 54px, 100% 6px;
  mix-blend-mode: overlay;
}

.portrait-melt {
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(210, 43, 49, 0.18) 16% 18%, transparent 18% 42%, rgba(49, 91, 133, 0.16) 42% 44%, transparent 44%),
    linear-gradient(180deg, transparent 0 54%, rgba(8, 8, 8, 0.04) 54% 61%, rgba(215, 173, 103, 0.16) 61% 62%, transparent 62%);
  filter: blur(0.4px);
  transform-origin: 50% 44%;
}

.artist-portrait-card.is-glitching img,
.artist-portrait-card:hover img {
  animation: portraitCoreGlitch 760ms steps(2, end) 1;
}

.artist-portrait-card.is-glitching .layer-red,
.artist-portrait-card:hover .layer-red {
  animation: portraitSliceRed 760ms steps(2, end) 1;
}

.artist-portrait-card.is-glitching .layer-blue,
.artist-portrait-card:hover .layer-blue {
  animation: portraitSliceBlue 760ms steps(3, end) 1;
}

.artist-portrait-card.is-glitching .portrait-noise,
.artist-portrait-card:hover .portrait-noise {
  animation: portraitNoise 760ms steps(5, end) 1;
}

.artist-portrait-card.is-glitching .portrait-melt,
.artist-portrait-card:hover .portrait-melt {
  animation: portraitMelt 920ms cubic-bezier(0.2, 0.8, 0.2, 1) 1;
}

.artist-portrait-filter {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(circle at 42% 38%, transparent 0 18%, rgba(8, 8, 8, 0.08) 34%, rgba(8, 8, 8, 0.38) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.02), rgba(8, 8, 8, 0.16) 52%, rgba(8, 8, 8, 0.88)),
    linear-gradient(105deg, rgba(210, 43, 49, 0.16), transparent 38%, rgba(49, 91, 133, 0.18) 78%, rgba(215, 173, 103, 0.08));
  mix-blend-mode: normal;
}

.artist-portrait-label {
  position: absolute;
  z-index: 5;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.72),
    0 0 1px rgba(0, 0, 0, 0.9);
}

.portrait-label-project {
  top: 20px;
  left: 20px;
  color: var(--text);
  font-size: clamp(26px, 5vw, 46px);
}

.portrait-label-author {
  right: 20px;
  bottom: 20px;
  color: var(--gold);
  font-size: clamp(13px, 2vw, 22px);
  letter-spacing: 0.12em;
  text-align: right;
}

.signal-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  min-width: 0;
}

.signal-panel > div {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: 22px;
  background: var(--panel);
}

body[data-page="home"] .signal-panel > div {
  padding: clamp(14px, 2vh, 20px);
}

.metric {
  display: block;
  color: var(--gold);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.metric-label,
.muted {
  color: var(--muted);
}

.release-filters,
.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter,
.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.filter.active,
.tab.active {
  border-color: var(--gold);
  color: var(--text);
  background: rgba(215, 173, 103, 0.12);
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

body[data-page="home"] .release-grid.featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.release-grid-empty {
  grid-column: 1 / -1;
  display: grid;
  justify-items: start;
  gap: 8px;
  min-height: 220px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px dashed rgba(215, 173, 103, 0.38);
  border-radius: 8px;
  background: rgba(245, 242, 235, 0.025);
  color: var(--muted);
}

.release-grid-empty span {
  color: var(--gold);
}

.release-grid-empty strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
}

.release-grid-empty p {
  margin: 0;
}

.release-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  min-width: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.release-card.interactive {
  cursor: pointer;
}

.release-card.interactive:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.release-card.rich {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(112px, 0.34fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
}

body[data-page="home"] .release-card.rich {
  grid-template-columns: minmax(104px, 0.32fr) minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
}

/* Home page composition: portrait first, then context; latest releases as a real showcase. */
body[data-page="home"] .intro-band {
  background:
    radial-gradient(circle at 76% 22%, rgba(49, 91, 133, .15), transparent 31rem),
    radial-gradient(circle at 12% 78%, rgba(210, 43, 49, .09), transparent 28rem),
    linear-gradient(180deg, #090a0c, #101216);
}

body[data-page="home"] #project .section-head {
  display: grid;
  justify-content: start;
  align-items: end;
  gap: 8px;
  margin-bottom: clamp(22px, 3vw, 32px);
}

body[data-page="home"] #project .section-head h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(38px, 5vw, 74px);
  letter-spacing: -.045em;
}

body[data-page="home"] .about-grid {
  grid-template-columns: minmax(300px, .88fr) minmax(0, 1.12fr);
  gap: 18px;
  align-items: stretch;
}

body[data-page="home"] .about-details-stage { display: contents; }

body[data-page="home"] .artist-portrait-card {
  grid-column: 1;
  grid-row: 1;
  min-height: 0;
  aspect-ratio: 4 / 5;
  border-color: rgba(215, 173, 103, .22);
  border-radius: 12px;
  background: #090a0d;
}

body[data-page="home"] .artist-portrait-card img {
  height: 100%;
  min-height: 0;
  object-position: 50% 24%;
  filter: saturate(.84) contrast(1.08) brightness(.88);
}

body[data-page="home"] .artist-portrait-filter {
  background:
    linear-gradient(180deg, rgba(7,8,10,.1), rgba(7,8,10,.04) 36%, rgba(7,8,10,.86) 100%),
    linear-gradient(100deg, rgba(210,43,49,.16), transparent 40%, rgba(49,91,133,.14));
}

body[data-page="home"] .portrait-label-project {
  top: 18px;
  left: 18px;
  padding: 7px 9px;
  border: 1px solid rgba(245,242,235,.18);
  border-radius: 5px;
  background: rgba(8,8,10,.42);
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: .02em;
}

body[data-page="home"] .portrait-label-author {
  right: 18px;
  bottom: 18px;
  font-size: clamp(11px, 1.25vw, 16px);
}

body[data-page="home"] .about-copy {
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(26px, 3.4vw, 42px);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(245,242,235,.045), transparent 42%),
    rgba(17,18,21,.92);
}

body[data-page="home"] .about-copy h3 {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: .1em;
}

body[data-page="home"] .about-copy h3::after { width: clamp(34px, 5vw, 70px); }

body[data-page="home"] .about-lede {
  max-width: 780px;
  font-size: clamp(28px, 2.75vw, 42px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

body[data-page="home"] .about-copy #about-body {
  max-width: 700px;
  color: #cbc5bc;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.68;
}

body[data-page="home"] #new {
  background:
    radial-gradient(circle at 18% 14%, rgba(210,43,49,.1), transparent 26rem),
    linear-gradient(180deg, #0d0f12, #08090b);
}

body[data-page="home"] #new .section-head { margin-bottom: clamp(22px, 3vw, 32px); }
body[data-page="home"] #new .section-head h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -.05em;
}

body[data-page="home"] #new-release-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body[data-page="home"] #new-release-grid .release-card.rich {
  grid-column: 2;
  min-height: 0;
  grid-template-columns: 96px minmax(0,1fr);
  gap: 14px;
  padding: 14px;
  border-radius: 11px;
  background: linear-gradient(140deg, rgba(245,242,235,.04), transparent 42%), rgba(15,16,19,.94);
}

body[data-page="home"] #new-release-grid .release-card.rich:first-child {
  grid-column: 1;
  grid-row: 1 / span 2;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-color: rgba(215,173,103,.28);
  background: #0b0c0e;
}

body[data-page="home"] #new-release-grid .release-card.rich:first-child .release-cover {
  height: 100%;
  min-height: 280px;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
}

body[data-page="home"] #new-release-grid .release-card.rich:first-child .release-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  gap: 9px;
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(180deg, transparent, rgba(5,6,7,.95) 36%);
}

body[data-page="home"] #new-release-grid .release-card.rich:first-child .release-title {
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 1;
}

body[data-page="home"] #new-release-grid .release-card.rich:first-child .release-meta { color: #d5cec3; }
body[data-page="home"] #new-release-grid .release-card.rich:first-child .release-card-link {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(215,173,103,.38);
  border-radius: 7px;
  background: rgba(215,173,103,.12);
}

body[data-page="home"] #new-release-grid .release-card.rich:not(:first-child) .release-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  filter: saturate(.86) brightness(.58) contrast(1.06);
}

body[data-page="home"] #new-release-grid .release-card.rich:not(:first-child) {
  position: relative;
  grid-template-columns: 1fr;
  min-height: 300px;
  padding: 0;
  overflow: hidden;
  border-color: rgba(245,242,235,.16);
}

body[data-page="home"] #new-release-grid .release-card.rich:not(:first-child) .release-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  gap: 8px;
  padding: clamp(20px, 2.2vw, 30px);
  background: linear-gradient(180deg, transparent, rgba(5,6,7,.96) 42%);
}

body[data-page="home"] #new-release-grid .release-card.rich:not(:first-child) .release-title {
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1;
}

body[data-page="home"] #new-release-grid .release-card.rich:not(:first-child) .release-meta {
  color: #d5cec3;
}

@media (max-width: 860px) {
  body[data-page="home"] #project .section-head { margin-bottom: 18px; }
  body[data-page="home"] #project .section-head h2 { font-size: clamp(34px, 10vw, 50px); }
  body[data-page="home"] #project {
    padding-top: 28px;
    padding-bottom: 28px;
    overflow: visible;
  }
  body[data-page="home"] .about-grid {
    display: block;
    min-height: calc((100svh - var(--topbar-height) - 24px) * 2);
  }
  body[data-page="home"] .artist-portrait-card,
  body[data-page="home"] .about-copy {
    grid-column: auto;
    grid-row: auto;
  }
  body[data-page="home"] .artist-portrait-card {
    position: sticky;
    top: calc(var(--topbar-height) + 12px);
    z-index: 2;
    width: 100%;
    height: calc(100svh - var(--topbar-height) - 24px);
    min-height: 0;
    aspect-ratio: auto;
  }
  body[data-page="home"] .about-details-stage {
    position: sticky;
    top: calc(var(--topbar-height) + 12px);
    z-index: 5;
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    width: 100%;
    min-height: calc(100svh - var(--topbar-height) - 24px);
    padding: 10px 0;
    background: linear-gradient(180deg, rgba(13,15,18,.99), rgba(9,10,12,.99));
    box-shadow: 0 -22px 70px rgba(0,0,0,.48);
  }
  body[data-page="home"] .about-copy { padding: 24px 22px; }
  body[data-page="home"] #new .section-head {
    align-items: end;
    flex-direction: row;
    gap: 12px;
  }
  body[data-page="home"] #new .section-head h2 { font-size: clamp(36px, 11vw, 52px); }
  body[data-page="home"] #new .section-head .button { flex: 0 0 auto; min-height: 40px; padding-inline: 12px; }
  body[data-page="home"] #new .section-head .button .icon { display: none; }
  body[data-page="home"] #new-release-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
    padding: 0;
    overflow: visible;
  }
  body[data-page="home"] #new-release-grid .release-card.rich,
  body[data-page="home"] #new-release-grid .release-card.rich:first-child {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }
  body[data-page="home"] #new-release-grid .release-card.rich:first-child {
    grid-template-columns: 108px minmax(0,1fr);
    grid-template-rows: auto;
    gap: 13px;
    padding: 12px;
    overflow: visible;
  }
  body[data-page="home"] #new-release-grid .release-card.rich:first-child .release-cover {
    min-height: 0;
    aspect-ratio: 1;
    border-radius: 8px;
  }
  body[data-page="home"] #new-release-grid .release-card.rich:first-child .release-info {
    position: static;
    gap: 7px;
    padding: 0;
    background: transparent;
  }
  body[data-page="home"] #new-release-grid .release-card.rich:first-child .release-title { font-size: clamp(22px, 6.6vw, 30px); }
  body[data-page="home"] #new-release-grid .release-card.rich:first-child .release-card-link {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }
  body[data-page="home"] #new-release-grid .release-card.rich:not(:first-child) {
    grid-template-columns: 108px minmax(0,1fr);
    min-height: 0;
    gap: 13px;
    padding: 12px;
    overflow: visible;
  }
  body[data-page="home"] #new-release-grid .release-card.rich:not(:first-child) .release-cover {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 8px;
    filter: none;
  }
  body[data-page="home"] #new-release-grid .release-card.rich:not(:first-child) .release-info {
    position: static;
    gap: 7px;
    padding: 0;
    background: transparent;
  }
  body[data-page="home"] #new-release-grid .release-card.rich:not(:first-child) .release-title {
    font-size: clamp(22px, 6.6vw, 30px);
  }
}

@media (max-width: 520px) {
  body[data-page="home"] #new .section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 10px;
  }

  body[data-page="home"] #new .section-head h2 {
    font-size: 36px;
    white-space: nowrap;
  }

  body[data-page="home"] #new .section-head > .button {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 8px;
  }
}

.release-card.interactive:hover {
  transform: translate3d(calc(var(--mx) * 0.015), -2px, 0);
}

.release-cover {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
  background: #050505;
  transition: transform 260ms ease, filter 260ms ease;
}

.release-card.interactive:hover .release-cover {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.04);
}

.release-info {
  display: flex;
  gap: 8px;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.release-status {
  width: max-content;
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(210, 43, 49, 0.18);
  color: #ffb8b8;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.release-status.out {
  background: rgba(215, 173, 103, 0.16);
  color: #f2d39a;
}

.release-title {
  margin: 4px 0 0;
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1;
  font-weight: 900;
}

.release-meta {
  color: var(--muted);
  font-size: 14px;
}

.release-card p {
  color: #d5cec3;
  line-height: 1.55;
}

body[data-page="home"] .release-title {
  margin: 4px 0 0;
  font-size: clamp(20px, 2vw, 25px);
}

body[data-page="home"] .release-meta {
  font-size: 12px;
}

.release-link,
.platform-links a {
  color: var(--gold);
  font-weight: 800;
}

.release-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.release-card-link:hover {
  color: var(--text);
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.platform-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
}

.details-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.platform-links a,
.source-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(215, 173, 103, 0.28);
  border-radius: 999px;
  background: rgba(215, 173, 103, 0.1);
  font-size: 12px;
}

.page-hero {
  padding: clamp(62px, 10vw, 132px) clamp(18px, 4vw, 54px) clamp(34px, 6vw, 70px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.72)),
    var(--managed-hero-image, url("assets/paxenor-hero.png")) center / cover;
}

.page-hero h1 {
  font-size: clamp(56px, 12vw, 150px);
}

.page-hero .lead {
  max-width: 760px;
  margin-top: 24px;
}

body[data-page="legal"] .page-hero h1 {
  max-width: 1180px;
  font-size: clamp(46px, 9vw, 118px);
  white-space: normal;
}

.secret-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
}

.secret-list {
  display: grid;
  gap: 12px;
}

.secret-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  min-width: 0;
}

.secret-card h3 {
  margin: 0 0 7px;
  font-size: 22px;
}

.secret-card p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-meta {
  display: grid;
  gap: 10px;
  justify-items: end;
  text-align: right;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
  font-size: 13px;
}

.legal-links a {
  color: var(--muted);
}

.legal-links a:hover {
  color: var(--text);
}

.legal-section {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 17, 19, 0.9);
  box-shadow: 0 20px 70px var(--shadow);
}

.legal-card h2 {
  margin-bottom: 22px;
  font-size: clamp(28px, 4vw, 48px);
}

.legal-card p {
  max-width: 980px;
  color: #d6d0c7;
  font-size: 17px;
  line-height: 1.68;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.release-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
}

.release-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
}

.release-modal-panel {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(860px, calc(100vh - 40px));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 242, 235, 0.025), transparent 34%),
    #0d0d0e;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.72);
}

.release-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.82);
  color: var(--text);
  cursor: pointer;
}

.release-modal-close .icon {
  width: 20px;
  height: 20px;
}

.release-detail-head {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  padding: clamp(26px, 4vw, 46px);
}

.release-detail-cover {
  width: 100%;
  min-width: 0;
  max-width: 380px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  background: #050505;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(245, 242, 235, 0.06);
}

.release-detail-main h2 {
  max-width: 720px;
  margin: 18px 0 0;
  white-space: normal;
  overflow-wrap: anywhere;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
}

.release-detail-main,
.release-detail-head > *,
.release-detail-grid > * {
  min-width: 0;
}

.release-detail-meta {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.release-detail-copy {
  max-width: 100%;
  margin: 22px 0 0;
  color: #e8e3da;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.detail-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.release-bandlink-button {
  width: max-content;
  margin-top: 12px;
}

.release-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.release-detail-grid.single {
  grid-template-columns: 1fr;
}

.lyric-panel,
.trailer-panel {
  min-width: 0;
  padding: clamp(18px, 3vw, 30px);
  background:
    linear-gradient(180deg, rgba(245, 242, 235, 0.025), transparent),
    #101011;
}

.lyric-panel h3,
.trailer-panel h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(26px, 4vw, 44px);
}

.lyric-panel pre {
  margin: 0;
  white-space: pre-wrap;
  color: #e0d9cf;
  font: inherit;
  line-height: 1.7;
}

.trailer-panel iframe,
.trailer-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080808;
}

.trailer-placeholder {
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

.secret-mode {
  min-height: calc(100vh - var(--topbar-height));
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(rgba(8, 8, 8, 0.72), rgba(8, 8, 8, 0.94)),
    var(--managed-hero-image, url("assets/paxenor-hero.png")) center / cover;
}

.secret-door {
  width: min(720px, 100%);
  padding: clamp(24px, 5vw, 46px);
}

.secret-door h1 {
  font-size: clamp(42px, 8vw, 88px);
  white-space: normal;
}

.secret-form {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.secret-form input,
.admin-panel input,
.admin-panel textarea,
.json-box,
.editor-card input,
.editor-card textarea,
.editor-card select,
.release-form input,
.release-form textarea,
.release-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0b0b0c;
  color: var(--text);
  padding: 12px 13px;
  outline: none;
}

.secret-form input:focus,
.admin-panel input:focus,
.admin-panel textarea:focus,
.json-box:focus,
.editor-card input:focus,
.editor-card textarea:focus,
.editor-card select:focus,
.release-form input:focus,
.release-form textarea:focus,
.release-form select:focus {
  border-color: var(--gold);
}

.secret-result {
  min-height: 26px;
  color: var(--gold);
  font-weight: 800;
}

.admin-body {
  background: #0a0a0b;
}

.admin-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 70px;
}

.admin-hero {
  padding: 28px;
  margin-bottom: 18px;
}

.admin-hero h1 {
  font-size: clamp(42px, 8vw, 96px);
}

.admin-hero p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.55;
}

.admin-panel {
  display: none;
  padding: 22px;
}

.admin-panel.active {
  display: grid;
  gap: 16px;
}

.admin-login {
  max-width: 720px;
}

.admin-panel label,
.field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.panel-head h2 {
  font-size: 28px;
}

.editor-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.editor-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.release-admin-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 17, 19, 0.9);
}

.admin-cover {
  width: 96px;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
}

.compact-card h3 {
  margin: 10px 0 6px;
  font-size: 22px;
  line-height: 1.05;
}

.compact-card p {
  margin: 0 0 10px;
  color: #d6d0c7;
  line-height: 1.45;
}

.release-admin-summary {
  min-width: 0;
}

.admin-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-chip-row span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
}

.release-card-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.release-card-actions.public {
  justify-content: flex-start;
  margin-top: 14px;
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.source-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 242, 235, 0.035), rgba(245, 242, 235, 0)),
    rgba(17, 17, 19, 0.9);
}

.source-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.source-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 20px;
}

.source-title {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
}

.source-title .platform-icon {
  width: 24px;
  height: 24px;
}

.source-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.source-status {
  width: max-content;
  height: max-content;
  max-width: 180px;
  text-align: center;
  font-weight: 800;
}

.source-status.api-ready {
  border-color: rgba(101, 197, 134, 0.42);
  background: rgba(101, 197, 134, 0.12);
  color: #a8efbc;
}

.source-status.needs-credentials,
.source-status.manual {
  border-color: rgba(215, 173, 103, 0.36);
  background: rgba(215, 173, 103, 0.11);
  color: #f2d39a;
}

.source-status.error {
  border-color: rgba(210, 43, 49, 0.54);
  background: rgba(210, 43, 49, 0.14);
  color: #ffb8b8;
}

.editor-card .wide {
  grid-column: 1 / -1;
}

.editor-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 20px;
}

.admin-modal[hidden] {
  display: none;
}

.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(14px);
}

.admin-modal-panel {
  position: relative;
  width: min(980px, 100%);
  max-height: min(920px, calc(100vh - 40px));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0d0e;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.72);
}

.confirm-panel {
  width: min(560px, 100%);
}

.confirm-body {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.confirm-body p {
  margin: 0;
  color: #d6d0c7;
  line-height: 1.55;
}

.admin-modal-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 13, 14, 0.96);
  backdrop-filter: blur(12px);
}

.admin-modal-head h2 {
  font-size: 34px;
}

.release-form {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.release-form label,
.field-control {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.field-control span {
  color: #c9c2b8;
}

.form-section {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 242, 235, 0.035), rgba(245, 242, 235, 0)),
    rgba(17, 17, 19, 0.78);
}

.form-section h3 {
  margin-bottom: 2px;
  font-size: 22px;
}

.form-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 4px;
}

.form-section-head p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bandlink-import {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid rgba(215, 173, 103, 0.28);
  border-radius: 8px;
  background: rgba(215, 173, 103, 0.08);
}

.link-editor {
  display: grid;
  gap: 12px;
}

.link-editor-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
}

.link-editor-head h4 {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 18px;
}

.link-editor-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.link-editor-list {
  display: grid;
  gap: 10px;
}

.link-editor-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 8, 9, 0.42);
}

.meta-editor-row,
[data-social-index] {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.checkbox-control {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.checkbox-control input {
  width: auto;
}

.system-setting-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 18px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(215, 173, 103, 0.06), rgba(8, 8, 9, 0.72));
  transition: border-color 180ms ease, background 180ms ease;
}

.system-setting-card.is-maintenance {
  border-color: rgba(239, 115, 120, 0.62);
  background: linear-gradient(135deg, rgba(145, 30, 36, 0.17), rgba(8, 8, 9, 0.82));
}

.system-setting-copy h3 {
  margin: 7px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(25px, 4vw, 38px);
}

.system-setting-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.system-setting-kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.trusted-ip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.trusted-ip-list code {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.3);
}

.maintenance-switch {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 170px;
  cursor: pointer;
}

.maintenance-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.maintenance-switch-track {
  display: block;
  width: 74px;
  height: 38px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #17181a;
  transition: background 180ms ease, border-color 180ms ease;
}

.maintenance-switch-track span {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--muted);
  transition: transform 180ms ease, background 180ms ease;
}

.maintenance-switch input:checked + .maintenance-switch-track {
  border-color: #ef7378;
  background: rgba(145, 30, 36, 0.55);
}

.maintenance-switch input:checked + .maintenance-switch-track span {
  transform: translateX(34px);
  background: #fff;
}

.maintenance-switch input:focus-visible + .maintenance-switch-track {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.maintenance-switch strong {
  font-size: 13px;
  text-align: center;
}

.maintenance-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.maintenance-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold);
  animation: maintenance-pulse 1.5s ease-in-out infinite;
}

@keyframes maintenance-pulse {
  50% { opacity: 0.25; }
}

@media (max-width: 700px) {
  .system-setting-card {
    grid-template-columns: 1fr;
  }

  .maintenance-switch {
    justify-items: start;
  }
}

.ops-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.ops-summary > div {
  display: grid;
  gap: 7px;
  padding: 16px 18px;
  background: rgba(12, 13, 15, 0.96);
}

.ops-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ops-summary strong {
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 38px);
}

.ops-summary strong.is-danger {
  color: #ef7378;
}

.ops-toolbar {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) minmax(170px, auto);
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.ops-view-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 8, 9, 0.72);
}

.ops-view-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 8px 13px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.ops-view-tabs button span {
  min-width: 24px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(245, 242, 235, 0.08);
  font-size: 11px;
  text-align: center;
}

.ops-view-tabs button.is-active {
  background: rgba(215, 173, 103, 0.14);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(215, 173, 103, 0.34);
}

.ops-search input,
.ops-error-filter select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 8, 9, 0.72);
  color: var(--text);
  font: inherit;
}

.ops-search input {
  padding-inline: 14px;
}

.ops-error-filter select {
  padding-inline: 12px 36px;
}

.ops-panel {
  min-width: 0;
  margin-top: 14px;
}

.ops-panel[hidden],
.ops-error-filter[hidden] {
  display: none;
}

.ops-table,
.ops-error-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 8, 9, 0.54);
}

.ops-table-head,
.ops-table-row {
  display: grid;
  grid-template-columns: 150px 180px minmax(240px, 1fr) minmax(180px, 0.72fr);
  gap: 16px;
  align-items: center;
}

.ops-table-head {
  min-height: 42px;
  padding: 9px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 242, 235, 0.035);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-table-row {
  min-height: 76px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(245, 242, 235, 0.08);
}

.ops-table-row:last-child {
  border-bottom: 0;
}

.ops-table-row:hover {
  background: rgba(245, 242, 235, 0.025);
}

.ops-table-row time,
.ops-admin-cell {
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.ops-action-cell,
.ops-object-cell {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.ops-action-cell strong,
.ops-object-cell strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
}

.ops-action-cell span {
  color: var(--gold);
  font-size: 12px;
}

.ops-object-cell code {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ops-error-list {
  display: grid;
}

.ops-error-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid #dc4c53;
  background: rgba(16, 13, 15, 0.86);
}

.ops-error-card:last-child {
  border-bottom: 0;
}

.ops-error-card.is-resolved {
  border-left-color: #668774;
  opacity: 0.74;
}

.ops-error-head,
.ops-error-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ops-error-head time,
.ops-error-actions > span,
.ops-error-range {
  color: var(--muted);
  font-size: 12px;
}

.ops-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ops-badge-row > span {
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-status.open {
  border-color: rgba(220, 76, 83, 0.42);
  background: rgba(220, 76, 83, 0.12);
  color: #f08d92;
}

.ops-status.resolved {
  border-color: rgba(102, 135, 116, 0.42);
  color: #9abbA7;
}

.ops-occurrences {
  border-color: rgba(215, 173, 103, 0.42) !important;
  color: var(--gold) !important;
}

.ops-error-message {
  max-width: 1100px;
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.ops-error-range {
  margin: -5px 0 0;
}

.ops-error-details {
  max-width: 100%;
  border: 1px solid rgba(245, 242, 235, 0.1);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.24);
}

.ops-error-details summary {
  padding: 10px 12px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.ops-error-details pre {
  max-height: 280px;
  margin: 0;
  padding: 13px;
  border-top: 1px solid rgba(245, 242, 235, 0.08);
  overflow: auto;
  color: #cfc8bd;
  font: 12px/1.55 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.ops-error-actions {
  min-height: 38px;
}

.ops-empty {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 52px 20px;
  color: var(--muted);
  text-align: center;
}

.ops-empty .icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.ops-empty strong {
  color: var(--text);
}

.ops-empty p {
  margin: 0;
  font-size: 13px;
}

.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;
}

@media (max-width: 880px) {
  .ops-toolbar {
    grid-template-columns: 1fr;
  }

  .ops-view-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .ops-view-tabs button {
    justify-content: center;
  }

  .ops-table-head {
    display: none;
  }

  .ops-table-row {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .ops-table-row > *::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
  }
}

@media (max-width: 560px) {
  .ops-summary {
    grid-template-columns: 1fr;
  }

  .ops-table-row {
    grid-template-columns: 1fr;
  }

  .ops-error-head,
  .ops-error-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .ops-error-actions .button {
    width: 100%;
  }
}

.admin-user-card .release-card-actions {
  align-items: center;
}

.admin-user-card input {
  min-width: 190px;
}

.cover-uploader {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.bandlink-admin-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.bandlink-admin-row[hidden] {
  display: none;
}

.bandlink-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(rgba(8, 8, 8, 0.42), rgba(8, 8, 8, 0.92)),
    var(--managed-hero-image, url("assets/paxenor-hero.png")) center / cover;
}

.bandlink-shell {
  width: min(560px, calc(100vw - 56px));
}

.bandlink-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 13, 14, 0.92);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.72);
  text-align: center;
}

.bandlink-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.bandlink-brand img,
.bandlink-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.bandlink-cover {
  width: min(320px, 100%);
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  background: #050505;
}

.bandlink-card h1 {
  max-width: 100%;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: clamp(30px, 7vw, 58px);
  line-height: 0.98;
}

.bandlink-meta,
.bandlink-copy {
  margin: 0;
  color: #d6d0c7;
  line-height: 1.55;
}

.bandlink-copy {
  max-width: 460px;
}

.bandlink-actions {
  display: grid;
  gap: 10px;
  width: 100%;
}

.bandlink-platform {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-width: 0;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(215, 173, 103, 0.28);
  border-radius: 8px;
  background: rgba(215, 173, 103, 0.1);
  text-align: left;
}

.bandlink-platform strong {
  color: var(--gold);
}

.bandlink-platform span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bandlink-empty {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.bandlink-secondary,
.bandlink-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.bandlink-secondary a {
  color: var(--muted);
  font-weight: 800;
}

body[data-page="release"] {
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.62) 0%, #08090b 460px, #0f1013 100%);
}

.release-shell {
  width: 100%;
  min-height: calc(100vh - var(--topbar-height));
}

.release-experience {
  --release-gutter: clamp(18px, 4vw, 56px);
  --release-hero-height: min(760px, calc(100vh - var(--topbar-height)));
  isolation: isolate;
  position: relative;
  min-height: calc(100vh - var(--topbar-height));
  padding-bottom: clamp(36px, 6vw, 84px);
}

.release-page-backdrop {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -2;
  width: 100%;
  height: var(--release-hero-height);
  opacity: 0.34;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.06);
  -webkit-mask-image: linear-gradient(to bottom, #000 0 38%, rgba(0, 0, 0, 0.68) 58%, rgba(0, 0, 0, 0.16) 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0 38%, rgba(0, 0, 0, 0.68) 58%, rgba(0, 0, 0, 0.16) 78%, transparent 100%);
  pointer-events: none;
}

.release-experience::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: var(--release-hero-height);
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.85) 0 28%, transparent 64%);
  pointer-events: none;
}

.release-experience::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: var(--release-hero-height);
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.28) 0%, rgba(8, 8, 8, 0.72) 52%, #08090b 88%),
    repeating-linear-gradient(90deg, transparent 0 110px, rgba(245, 242, 235, 0.035) 110px 111px);
  pointer-events: none;
}

.release-hero-panel {
  display: grid;
  grid-template-columns: minmax(260px, 36vw) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  min-height: var(--release-hero-height);
  padding: clamp(36px, 7vw, 104px) var(--release-gutter) clamp(24px, 5vw, 64px);
}

.release-hero-art,
.release-hero-copy,
.release-content-layout,
.release-page-footer {
  min-width: 0;
}

.release-hero-art {
  display: grid;
  gap: 18px;
  align-self: center;
}

.release-hero-art img {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1;
  border: 1px solid rgba(245, 242, 235, 0.16);
  border-radius: 8px;
  object-fit: cover;
  background: #050505;
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(215, 173, 103, 0.08);
}

.release-hero-art img.is-fallback {
  padding: 18%;
  object-fit: contain;
}

.release-vitals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.release-vitals span {
  min-width: 0;
  padding: 12px 14px;
  background: rgba(12, 13, 15, 0.86);
  color: #d6d0c7;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.release-hero-copy {
  display: grid;
  align-content: end;
  gap: 18px;
  padding-bottom: clamp(8px, 2vw, 24px);
}

.release-hero-copy .eyebrow {
  margin: 0;
}

.release-hero-copy h1 {
  max-width: 1100px;
  margin: 0;
  white-space: normal;
  word-break: normal;
  font-size: clamp(42px, 6.4vw, 96px);
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.release-lead {
  max-width: 820px;
  margin: 0;
  color: #eee8de;
  font-size: clamp(18px, 2.3vw, 26px);
  line-height: 1.5;
}

.release-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.release-jumpbar {
  position: sticky;
  top: var(--topbar-height);
  z-index: 20;
  display: flex;
  gap: 1px;
  padding: 0 var(--release-gutter);
  border-block: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(16px);
  overflow-x: auto;
}

.release-jumpbar a {
  flex: 0 0 auto;
  padding: 16px 18px;
  color: #d6d0c7;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.release-jumpbar a:hover {
  color: var(--text);
  background: rgba(245, 242, 235, 0.07);
}

.release-content-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(34px, 5vw, 72px) var(--release-gutter) 0;
}

.release-sidecar {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 14, 16, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.34);
}

.release-sidecar-head {
  display: grid;
  gap: 6px;
}

.release-sidecar h2 {
  margin: 0;
  font-size: 24px;
}

.release-platform-list {
  display: grid;
  gap: 10px;
}

.release-platform-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 14px;
  border: 1px solid rgba(215, 173, 103, 0.26);
  border-radius: 8px;
  background: rgba(215, 173, 103, 0.09);
}

.release-platform-link:hover {
  border-color: rgba(215, 173, 103, 0.54);
  background: rgba(215, 173, 103, 0.14);
}

.release-platform-link span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.release-platform-link strong {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
}

.release-empty {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.release-secondary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 2px;
}

.release-secondary-links a {
  color: var(--muted);
  font-weight: 900;
}

.release-secondary-links a:hover {
  color: var(--text);
}

.release-reader {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  min-width: 0;
  max-width: 1080px;
}

.release-section {
  min-width: 0;
  scroll-margin-top: 150px;
}

.release-section > .eyebrow,
.release-section-head .eyebrow {
  margin: 0 0 10px;
}

.release-section h2,
.release-section-head h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1;
}

.release-section-head h2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.release-section p {
  max-width: 860px;
  margin: 0;
  color: #ddd5ca;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.72;
}

.release-lyrics-section {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(245, 242, 235, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 242, 235, 0.035), transparent 180px),
    rgba(12, 13, 15, 0.72);
}

.release-tracklist-section {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(245, 242, 235, 0.12);
  border-radius: 8px;
  background: rgba(12, 13, 15, 0.72);
}

.release-tracklist {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(245, 242, 235, 0.1);
}

.release-tracklist li {
  border-bottom: 1px solid rgba(245, 242, 235, 0.1);
}

.release-tracklist a,
.release-tracklist li > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto minmax(58px, auto);
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 10px 4px;
  color: #eee8de;
  text-decoration: none;
}

.release-tracklist a:hover {
  color: var(--accent);
  background: rgba(245, 242, 235, 0.035);
}

.release-track-number,
.release-tracklist time,
.release-track-action {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.release-track-action {
  text-align: right;
}

@media (max-width: 560px) {
  .release-tracklist a,
  .release-tracklist li > div {
    grid-template-columns: 30px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .release-track-action {
    display: none;
  }
}

.release-lyrics-section pre {
  max-width: 780px;
  margin: 0;
  white-space: pre-wrap;
  color: #eee8de;
  font: inherit;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.82;
  overflow-wrap: anywhere;
}

.release-empty-section {
  padding: clamp(22px, 3vw, 34px);
  border-left: 3px solid rgba(215, 173, 103, 0.56);
  background: rgba(245, 242, 235, 0.045);
}

.release-trailer-section iframe {
  width: 100%;
  max-width: 1040px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
}

.release-page-footer {
  display: flex;
  justify-content: center;
  padding: clamp(34px, 5vw, 72px) var(--release-gutter) 0;
}

.release-missing {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(560px, calc(100vw - 36px));
  margin: 10vh auto;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 13, 14, 0.9);
  text-align: center;
}

.release-missing img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

body[data-page="error"] {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(210, 43, 49, 0.18), transparent 30vw),
    radial-gradient(circle at 76% 62%, rgba(49, 91, 133, 0.16), transparent 28vw),
    linear-gradient(180deg, #050506 0%, #08090b 48%, #101113 100%);
}

.error-shell {
  min-height: calc(100vh - var(--topbar-height));
  display: grid;
  align-items: center;
  padding: clamp(28px, 6vw, 78px) clamp(18px, 4vw, 54px);
}

.error-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(24px, 5vw, 74px);
  align-items: end;
  width: min(1320px, 100%);
  min-height: min(680px, calc(100vh - 170px));
  margin: 0 auto;
  overflow: hidden;
  padding: clamp(24px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(245, 242, 235, 0.04), transparent 42%),
    repeating-linear-gradient(90deg, transparent 0 86px, rgba(245, 242, 235, 0.035) 86px 87px),
    rgba(12, 13, 15, 0.84);
  box-shadow:
    0 30px 120px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(245, 242, 235, 0.05);
}

.error-stage::before,
.error-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.error-stage::before {
  inset: 0;
  opacity: 0.26;
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(215, 173, 103, 0.38) 16.1% 16.2%, transparent 16.3%),
    repeating-linear-gradient(0deg, rgba(245, 242, 235, 0.05) 0 1px, transparent 1px 5px);
}

.error-stage::after {
  right: -10%;
  bottom: -30%;
  width: min(620px, 70vw);
  aspect-ratio: 1;
  border: 1px solid rgba(215, 173, 103, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 34%, rgba(215, 173, 103, 0.08) 34.2% 35%, transparent 35.2% 100%),
    conic-gradient(from 22deg, transparent, rgba(210, 43, 49, 0.12), transparent, rgba(49, 91, 133, 0.12), transparent);
}

.error-stage-critical::after {
  background:
    radial-gradient(circle, transparent 0 34%, rgba(210, 43, 49, 0.14) 34.2% 35%, transparent 35.2% 100%),
    conic-gradient(from 22deg, transparent, rgba(210, 43, 49, 0.18), transparent, rgba(215, 173, 103, 0.1), transparent);
}

.error-stage-solo {
  grid-template-columns: minmax(0, 1fr);
}

.error-stage-solo .error-copy {
  max-width: 880px;
}

.error-code {
  position: absolute;
  top: clamp(18px, 4vw, 42px);
  right: clamp(18px, 4vw, 54px);
  color: rgba(245, 242, 235, 0.07);
  font-family: var(--font-display);
  font-size: clamp(94px, 17vw, 260px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: 0;
}

.error-copy,
.error-panel {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.error-copy {
  max-width: 820px;
}

.error-copy h1 {
  max-width: 980px;
  white-space: normal;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.96;
}

.error-copy h1 span {
  display: block;
}

.error-copy p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #ddd5ca;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.58;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.error-panel {
  display: grid;
  gap: 10px;
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(245, 242, 235, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 242, 235, 0.045), transparent),
    rgba(8, 8, 9, 0.66);
  backdrop-filter: blur(16px);
}

.error-panel span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.error-panel strong {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.error-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.cover-uploader img {
  width: 164px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: #050505;
}

.cover-tools {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.upload-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.upload-button {
  width: max-content;
  overflow: hidden;
  position: relative;
}

.upload-button input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.button:disabled:hover {
  transform: none;
}

.danger {
  border-color: rgba(210, 43, 49, 0.65);
  color: #ffb8b8;
}

.json-box {
  min-height: 420px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  line-height: 1.5;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: min(420px, calc(100% - 36px));
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  color: var(--text);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.signal-debris {
  position: fixed;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.72;
  transform: translate3d(calc(var(--mx) * 0.08), calc(var(--my) * 0.06), 0);
}

.signal-debris span {
  position: absolute;
  display: block;
  opacity: 0.28;
  background: rgba(245, 242, 235, 0.22);
}

.signal-debris span:nth-child(1) {
  top: 19%;
  left: 4%;
  width: 104px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 173, 103, 0.62), transparent);
}

.signal-debris span:nth-child(2) {
  top: 34%;
  right: 8%;
  width: 1px;
  height: 142px;
  background: linear-gradient(180deg, transparent, rgba(49, 91, 133, 0.54), transparent);
}

.signal-debris span:nth-child(3) {
  top: 66%;
  left: 13%;
  width: 64px;
  height: 1px;
}

.signal-debris span:nth-child(4) {
  top: 82%;
  right: 17%;
  width: 6px;
  height: 6px;
  background: rgba(210, 43, 49, 0.32);
}

.signal-debris span:nth-child(5) {
  top: 48%;
  left: 52%;
  width: 160px;
  height: 1px;
  opacity: 0.12;
}

.signal-debris span:nth-child(6) {
  top: 12%;
  right: 28%;
  width: 4px;
  height: 4px;
  background: rgba(215, 173, 103, 0.45);
}

.signal-debris span:nth-child(7) {
  top: 72%;
  left: 74%;
  width: 1px;
  height: 88px;
}

.signal-debris span:nth-child(8) {
  top: 54%;
  left: 2%;
  width: 1px;
  height: 70px;
  background: rgba(210, 43, 49, 0.22);
}

@keyframes scanDrift {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.2; }
  35% { transform: translate3d(0, -6px, 0); opacity: 0.25; }
  70% { transform: translate3d(0, 4px, 0); opacity: 0.18; }
}

@keyframes noisePulse {
  0%, 100% { opacity: 0.09; background-position: 0 0, 0 0; }
  45% { opacity: 0.13; background-position: 28px -18px, 12px 8px; }
  55% { opacity: 0.08; background-position: -16px 22px, -8px 12px; }
}

@keyframes signalBreak {
  0% { clip-path: inset(0); transform: translate3d(0, 0, 0); }
  18% { clip-path: inset(14% 0 74% 0); transform: translate3d(-2px, 0, 0); }
  36% { clip-path: inset(76% 0 8% 0); transform: translate3d(2px, 1px, 0); }
  54% { clip-path: inset(42% 0 41% 0); transform: translate3d(-1px, -1px, 0); }
  100% { clip-path: inset(0); transform: translate3d(0, 0, 0); }
}

@keyframes titleGlitch {
  0%, 100% { clip-path: inset(0 0 100% 0); transform: translate3d(0, 0, 0) skewX(0); opacity: 0; }
  10% { clip-path: inset(12% 0 70% 0); transform: translate3d(-10px, 1px, 0) skewX(-5deg); opacity: 0.95; }
  24% { clip-path: inset(74% 0 8% 0); transform: translate3d(13px, -2px, 0) skewX(7deg); opacity: 0.9; }
  39% { clip-path: inset(38% 0 45% 0); transform: translate3d(-5px, 2px, 0) skewX(-2deg); opacity: 0.75; }
  56% { clip-path: inset(82% 0 2% 0); transform: translate3d(8px, 0, 0) skewX(4deg); opacity: 0.95; }
  73% { clip-path: inset(5% 0 88% 0); transform: translate3d(-14px, -1px, 0) skewX(-8deg); opacity: 0.8; }
  88% { clip-path: inset(48% 0 29% 0); transform: translate3d(4px, 1px, 0); opacity: 0.6; }
}

@keyframes titleNudge {
  0%, 100% { transform: translate3d(0, 0, 0) skewX(0) scaleX(1); filter: none; clip-path: inset(0); }
  16% { transform: translate3d(5px, 0, 0) skewX(-3deg) scaleX(1.02); filter: contrast(1.8) saturate(1.5); clip-path: inset(0 2% 0 0); }
  33% { transform: translate3d(-7px, 1px, 0) skewX(4deg) scaleX(0.96); filter: contrast(2.2) brightness(1.2); clip-path: inset(18% 0 12% 0); }
  49% { transform: translate3d(3px, -1px, 0) skewX(-1deg) scaleX(1.04); filter: contrast(1.7); clip-path: inset(0 0 0 3%); }
  67% { transform: translate3d(-4px, 0, 0) skewX(2deg) scaleX(0.98); filter: contrast(2); clip-path: inset(8% 1% 6% 0); }
}

@keyframes linkBreak {
  0% { transform: translateY(-50%) translateX(-45%); }
  100% { transform: translateY(-50%) translateX(45%); }
}

@keyframes panelScan {
  0% { top: 0; }
  100% { top: 100%; }
}

@keyframes portraitCoreGlitch {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); filter: saturate(0.96) contrast(1.08) brightness(0.92); }
  12% { transform: translate3d(-2px, 0, 0) scale(1.006); filter: saturate(1.14) contrast(1.22) brightness(0.88); }
  31% { transform: translate3d(2px, -1px, 0) scale(1.01); clip-path: inset(0 0 62% 0); }
  48% { transform: translate3d(-1px, 2px, 0) scale(1.004); clip-path: inset(38% 0 18% 0); }
  66% { transform: translate3d(1px, 0, 0) scale(1.008); clip-path: inset(74% 0 0 0); }
  78% { clip-path: inset(0); }
}

@keyframes portraitSliceRed {
  0%, 100% { opacity: 0; transform: translate3d(0, 0, 0); clip-path: inset(0); }
  10% { opacity: 0.6; transform: translate3d(7px, -1px, 0); clip-path: inset(12% 0 70% 0); }
  34% { opacity: 0.42; transform: translate3d(-4px, 1px, 0); clip-path: inset(46% 0 38% 0); }
  58% { opacity: 0.52; transform: translate3d(5px, 2px, 0); clip-path: inset(72% 0 8% 0); }
}

@keyframes portraitSliceBlue {
  0%, 100% { opacity: 0; transform: translate3d(0, 0, 0); clip-path: inset(0); }
  16% { opacity: 0.48; transform: translate3d(-7px, 1px, 0); clip-path: inset(28% 0 58% 0); }
  40% { opacity: 0.36; transform: translate3d(4px, -2px, 0); clip-path: inset(58% 0 24% 0); }
  70% { opacity: 0.44; transform: translate3d(-5px, 1px, 0); clip-path: inset(82% 0 2% 0); }
}

@keyframes portraitNoise {
  0%, 100% { opacity: 0; background-position: 0 0, 0 0; }
  12% { opacity: 0.2; background-position: 18px -8px, 0 2px; }
  34% { opacity: 0.34; background-position: -22px 14px, 0 -2px; }
  56% { opacity: 0.16; background-position: 10px 20px, 0 3px; }
  74% { opacity: 0.28; background-position: -12px -16px, 0 -1px; }
}

@keyframes portraitMelt {
  0%, 100% { opacity: 0; transform: translate3d(0, 0, 0) scaleY(1); clip-path: inset(0); }
  18% { opacity: 0.42; transform: translate3d(0, 0, 0) scaleY(1.01); clip-path: inset(30% 0 0 0); }
  46% { opacity: 0.34; transform: translate3d(0, 12px, 0) scaleY(1.08); clip-path: inset(44% 0 0 0); }
  72% { opacity: 0.16; transform: translate3d(0, 24px, 0) scaleY(1.16); clip-path: inset(58% 0 0 0); }
}

@media (max-width: 860px) {
  :root {
    --topbar-height: 64px;
  }

  body[data-page="home"] {
    scroll-snap-type: y proximity;
  }

  .site-footer,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 10px 18px;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .legal-links {
    justify-content: flex-start;
  }

  .topbar.nav-ready .nav-toggle {
    display: block;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .topbar.nav-ready .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    width: auto;
    gap: 0;
    padding: 8px 18px 14px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 8, 9, 0.98);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.38);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .topbar.nav-ready.menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .topbar.nav-ready .main-nav a,
  .topbar.nav-ready .main-nav .link-button {
    width: 100%;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(245, 242, 235, 0.08);
    text-align: left;
  }

  .topbar.nav-ready .main-nav > :last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding: 42px 20px;
  }

  body[data-page="home"] .section {
    min-height: auto;
    scroll-snap-align: start;
  }

  body[data-page="home"] .release-grid.featured {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  body[data-page="home"] .release-grid.featured .release-card.rich {
    flex: 0 0 min(340px, calc(100vw - 52px));
    scroll-snap-align: start;
  }

  .about-grid,
  .secret-layout,
  .release-detail-head,
  .release-detail-grid,
  .release-grid,
  .release-grid.featured,
  .release-grid.catalog,
  .editor-list,
  .form-grid,
  .bandlink-import,
  .cover-uploader,
  .source-grid {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .artist-portrait-card,
  .signal-panel {
    grid-column: auto;
  }

  .signal-debris {
    opacity: 0.36;
  }

  .signal-panel {
    grid-template-columns: 1fr;
  }

  .editor-card,
  .release-admin-card {
    grid-template-columns: 1fr;
  }

  .release-card-actions,
  .panel-head,
  .link-editor-head,
  .form-section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .link-editor-row {
    grid-template-columns: 1fr;
  }

  .about-note {
    margin-top: 22px;
  }

  .cover-uploader img {
    width: min(220px, 100%);
  }

  .bandlink-admin-row {
    grid-template-columns: 1fr;
  }

  .bandlink-page {
    display: block;
    padding: 16px;
    overflow-x: hidden;
  }

  .bandlink-shell {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .bandlink-card {
    width: 100%;
    max-width: 100%;
  }

  .bandlink-card h1 {
    font-size: 34px;
  }

  .bandlink-platform {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    gap: 4px;
    min-height: 62px;
    padding: 10px 14px;
  }

	  .bandlink-platform strong {
	    grid-column: 2;
	    font-size: 13px;
	  }

	  .release-hero-panel,
	  .release-content-layout,
	  .error-stage {
	    grid-template-columns: 1fr;
	  }

	  .release-hero-panel {
	    min-height: auto;
	    align-items: start;
	  }

	  .release-hero-art {
	    max-width: 520px;
	  }

	  .release-sidecar {
	    position: static;
	    order: -1;
	  }

	  .release-reader {
	    max-width: none;
	  }

	  .error-stage {
	    min-height: auto;
	    align-items: start;
	  }

	  .error-panel {
	    max-width: 520px;
	  }
	}

@media (max-width: 520px) {
  .brand span {
    font-size: 14px;
  }

  .hero {
    min-height: 660px;
  }

  body[data-page="home"] .hero {
    min-height: calc(100svh - var(--topbar-height));
  }

  .hero::before,
  .signal-debris {
    display: none;
  }

  h1 {
    font-size: clamp(46px, 15vw, 58px);
  }

  .hero-content {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin: 0 20px;
    padding-right: 0;
    padding-left: 0;
    overflow: hidden;
  }

  .section {
    padding-right: 0;
    padding-left: 0;
  }

  .section > * {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin-right: auto;
    margin-left: auto;
  }

  .hero-copy,
  .about-copy p,
  .lead,
  .muted {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy,
  .about-copy p,
  .lead {
    font-size: 16px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
  }

  .about-copy p {
    width: 100%;
    max-width: 100%;
  }

  body[data-page="home"] .about-lede,
  body[data-page="home"] .about-copy #about-body {
    width: 100%;
    max-width: 100%;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    width: 100%;
    max-width: 100%;
    font-size: 24px;
  }

  .release-card.rich {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .release-title {
    width: auto;
    max-width: 100%;
    font-size: 22px;
  }

  .about-copy,
  .signal-panel,
  .release-card,
  .secret-card {
    max-width: calc(100vw - 40px);
  }

  .hero-actions,
  .social-links,
  .secret-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .release-hero-actions .button,
  .error-actions .button {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  .release-filters,
  .admin-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 3px 3px 10px;
    scrollbar-width: thin;
  }

  .filter,
  .tab {
    flex: 0 0 auto;
  }

  .release-modal {
    padding: 10px;
    justify-items: start;
  }

  .release-modal-panel {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
  }

  .release-detail-head,
  .lyric-panel,
  .trailer-panel {
    padding-right: 20px;
    padding-left: 20px;
  }

  .release-detail-cover,
  .release-detail-main,
  .lyric-panel > *,
  .trailer-panel > * {
    width: 100%;
    max-width: 100%;
  }

  .release-detail-cover {
    max-width: 340px;
    margin: 0 auto;
  }

  .release-detail-main h2 {
    font-size: clamp(34px, 13vw, 54px);
  }

  .detail-platforms {
    display: grid;
    grid-template-columns: 1fr;
  }

  .release-bandlink-button {
    width: 100%;
    max-width: 100%;
  }

  .release-modal .muted,
  .release-modal p,
  .release-modal h2,
  .release-modal h3 {
    width: auto;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

	  .release-modal-close {
	    right: auto;
	    left: 18px;
	  }

	  .release-experience {
	    --release-gutter: 20px;
	    max-width: 100vw;
	    overflow-x: hidden;
	  }

	  .release-shell,
	  .release-hero-panel,
	  .release-content-layout {
	    width: 100%;
	    max-width: 100vw;
	    overflow-x: hidden;
	  }

	  .release-hero-copy,
	  .release-hero-art,
	  .release-reader,
	  .release-section,
	  .release-sidecar {
	    width: 100%;
	    max-width: calc(100vw - 40px);
	  }

	  .release-hero-art img {
	    max-width: 100%;
	  }

	  .release-page-backdrop,
	  .release-experience::before,
	  .release-experience::after {
	    top: 0;
	  }

	  .release-hero-panel {
	    display: block;
	    gap: 24px;
	    padding-top: 34px;
	  }

	  .release-hero-art {
	    margin-bottom: 24px;
	  }

	  .release-content-layout {
	    display: block;
	  }

	  .release-reader {
	    margin-top: 28px;
	  }

	  .release-hero-copy h1 {
	    width: 100%;
	    max-width: 100%;
	    font-size: clamp(40px, 13vw, 62px);
	  }

	  .release-lead,
	  .release-section p {
	    width: 100%;
	    max-width: calc(100vw - 40px);
	    font-size: 17px;
	    word-break: break-word;
	  }

	  .release-lead {
	    max-width: calc(100vw - 84px);
	  }

	  .release-vitals {
	    grid-template-columns: 1fr;
	  }

	  .release-hero-actions,
	  .release-hero-actions .button {
	    width: 100%;
	    max-width: calc(100vw - 40px);
	  }

	  .error-shell {
	    min-height: calc(100vh - var(--topbar-height));
	    padding: 20px;
	  }

	  .error-stage {
	    width: 100%;
	    max-width: calc(100vw - 40px);
	    padding: 22px 18px;
	  }

	  .error-code {
	    right: 16px;
	    font-size: clamp(82px, 26vw, 118px);
	  }

	  .error-copy h1 {
	    width: 100%;
	    max-width: calc(100vw - 84px);
	    font-size: clamp(34px, 10vw, 42px);
	    line-height: 1.02;
	    overflow-wrap: anywhere;
	  }

	  .maintenance-stage .error-copy h1 {
	    max-width: 100%;
	    font-size: clamp(28px, 8vw, 38px);
	    letter-spacing: -0.045em;
	    overflow-wrap: normal;
	    word-break: normal;
	  }

	  .maintenance-stage .error-copy p {
	    max-width: 100%;
	  }

	  .error-copy p,
	  .error-panel {
	    width: 100%;
	    max-width: min(100%, 250px);
	    overflow-wrap: anywhere;
	  }

	  .error-actions,
	  .error-actions .button {
	    width: 100%;
	    max-width: min(100%, 250px);
	  }

	  .release-jumpbar {
	    top: var(--topbar-height);
	    padding: 0;
	  }

	  .release-jumpbar a {
	    padding: 14px 16px;
	  }

	  .release-content-layout {
	    gap: 28px;
	    padding-top: 28px;
	  }

	  .release-sidecar {
	    padding: 18px;
	  }

	  .release-platform-link {
	    grid-template-columns: auto minmax(0, 1fr);
	    min-height: 64px;
	    padding: 10px 14px;
	  }

	  .release-platform-link strong {
	    grid-column: 2;
	  }

	  .release-section h2,
	  .release-section-head h2 {
	    width: 100%;
	    max-width: 100%;
	    font-size: 30px;
	  }

	  .release-lyrics-section {
	    padding: 20px;
	  }

	  .release-lyrics-section pre {
	    font-size: 17px;
	    line-height: 1.72;
	  }

	  .bandlink-page {
	    width: min(390px, 100%);
	    max-width: 100%;
    padding: 16px 12px;
  }

  .bandlink-shell {
    width: min(320px, calc(100vw - 32px));
    max-width: 320px;
    margin-right: 0;
    margin-left: 0;
  }

  .bandlink-card,
  .bandlink-copy,
  .bandlink-actions,
  .bandlink-platform {
    width: 100%;
    max-width: 100%;
  }

  .bandlink-card {
    gap: 14px;
    padding: 18px 14px;
  }

  .bandlink-cover {
    width: min(100%, 250px);
  }

  .bandlink-card h1 {
    width: 100%;
    max-width: 250px;
    font-size: 32px;
  }

  .bandlink-meta,
  .bandlink-copy {
    width: 100%;
    max-width: 250px;
    overflow-wrap: anywhere;
  }

  .bandlink-actions {
    max-width: 250px;
  }
}

/* Releases: a discography archive with full-cover editorial cards. */
body[data-page="releases"] {
  background:
    radial-gradient(circle at 82% 14%, rgba(49,91,133,.12), transparent 32rem),
    radial-gradient(circle at 8% 46%, rgba(210,43,49,.08), transparent 28rem),
    #08090b;
}

body[data-page="releases"] .releases-main {
  overflow: clip;
}

body[data-page="releases"] .releases-archive-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 260px);
  align-items: end;
  gap: clamp(36px, 7vw, 110px);
  min-height: min(690px, calc(100svh - var(--topbar-height)));
  padding: clamp(72px, 9vw, 124px) clamp(22px, 5vw, 72px) clamp(52px, 7vw, 94px);
  background:
    linear-gradient(90deg, rgba(8,9,11,.97) 0%, rgba(8,9,11,.83) 45%, rgba(8,9,11,.45) 100%),
    linear-gradient(180deg, rgba(8,9,11,.25), #08090b 100%),
    var(--managed-hero-image, url("assets/paxenor-hero.png")) center 38% / cover;
}

body[data-page="releases"] .releases-archive-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 17%, rgba(215,173,103,.1) 17.05% 17.12%, transparent 17.2%),
    repeating-linear-gradient(180deg, transparent 0 31px, rgba(245,242,235,.025) 31px 32px);
}

body[data-page="releases"] .releases-archive-copy,
body[data-page="releases"] .releases-archive-mark {
  position: relative;
  z-index: 2;
}

body[data-page="releases"] .releases-indexline {
  display: grid;
  grid-template-columns: auto minmax(100px, 1fr) auto;
  align-items: center;
  gap: 13px;
  width: min(720px, 100%);
  margin-bottom: clamp(34px, 6vh, 66px);
  color: rgba(235,226,213,.55);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body[data-page="releases"] .releases-index-wave {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 18px;
  padding-inline: 12px;
  overflow: hidden;
  border-right: 1px solid rgba(245,242,235,.15);
  border-left: 1px solid rgba(245,242,235,.15);
}

body[data-page="releases"] .releases-index-wave i {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(215,173,103,.45), rgba(210,43,49,.75));
}

body[data-page="releases"] .releases-index-wave i:nth-child(2n) { height: 9px; }
body[data-page="releases"] .releases-index-wave i:nth-child(3n) { height: 15px; }

body[data-page="releases"] .releases-archive-copy > .eyebrow {
  margin-bottom: 16px;
  padding-left: 42px;
  position: relative;
}

body[data-page="releases"] .releases-archive-copy > .eyebrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 1px;
  background: currentColor;
}

body[data-page="releases"] .releases-archive-hero h1 {
  display: grid;
  width: max-content;
  max-width: 100%;
  font-size: clamp(68px, 10.5vw, 142px);
  line-height: .72;
  letter-spacing: -.055em;
  white-space: normal;
}

body[data-page="releases"] .releases-archive-hero h1 span:last-child {
  margin-left: clamp(42px, 7vw, 110px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245,242,235,.9);
}

body[data-page="releases"] .releases-archive-hero .lead {
  max-width: 720px;
  margin: clamp(32px, 5vh, 52px) 0 0;
  padding: 20px 0 0 72px;
  border-top: 1px solid rgba(245,242,235,.2);
  color: #d5cec3;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.55;
}

body[data-page="releases"] .releases-archive-mark {
  display: grid;
  align-self: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(245,242,235,.16);
  background: rgba(8,9,11,.64);
  backdrop-filter: blur(10px);
  color: rgba(235,226,213,.5);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

body[data-page="releases"] .releases-archive-mark::before {
  content: "";
  position: absolute;
  top: -7px;
  right: -7px;
  width: 24px;
  height: 24px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

body[data-page="releases"] .releases-archive-mark strong {
  color: #f2ede5;
  font-family: var(--font-display);
  font-size: clamp(54px, 6vw, 86px);
  line-height: .8;
  letter-spacing: -.05em;
}

body[data-page="releases"] .releases-archive-mark div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(245,242,235,.11);
}

body[data-page="releases"] .releases-archive-mark b {
  color: #d9b56f;
  font-weight: 700;
}

body[data-page="releases"] .releases-catalog-section {
  padding: clamp(56px, 7vw, 100px) clamp(20px, 5vw, 72px) clamp(76px, 9vw, 130px);
  overflow: visible;
}

body[data-page="releases"] .releases-catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  width: min(1320px, 100%);
  margin: 0 auto clamp(28px, 4vw, 48px);
}

body[data-page="releases"] .releases-catalog-head h2 {
  font-size: clamp(42px, 6vw, 82px);
  letter-spacing: -.045em;
}

body[data-page="releases"] .catalog-result {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  gap: 12px;
  padding-bottom: 7px;
  color: rgba(235,226,213,.52);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body[data-page="releases"] .catalog-result strong {
  color: #e5c37d;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: .8;
}

body[data-page="releases"] .release-filters {
  position: sticky;
  top: calc(var(--topbar-height) + 10px);
  z-index: 12;
  width: min(1320px, 100%);
  margin: 0 auto 24px;
  padding: 8px;
  border: 1px solid rgba(245,242,235,.12);
  background: rgba(9,10,12,.88);
  backdrop-filter: blur(16px);
}

body[data-page="releases"] .release-filters .filter {
  justify-content: flex-start;
  min-height: 48px;
  padding: 0 15px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: #9f9a92;
  box-shadow: none;
}

body[data-page="releases"] .release-filters .filter b {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(245,242,235,.14);
  color: rgba(235,226,213,.45);
  font-family: var(--font-mono);
  font-size: 9px;
}

body[data-page="releases"] .release-filters .filter.active {
  background: linear-gradient(90deg, rgba(215,173,103,.17), rgba(215,173,103,.04));
  color: #f1ece4;
}

body[data-page="releases"] .release-filters .filter.active::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 2px;
  background: var(--gold);
}

body[data-page="releases"] .release-grid.catalog {
  counter-reset: release-card;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1320px, 100%);
  margin-inline: auto;
}

body[data-page="releases"] .release-grid-empty {
  min-height: 340px;
  align-content: center;
  justify-items: center;
  border-style: solid;
  border-color: rgba(245,242,235,.13);
  border-radius: 3px;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(245,242,235,.04) 50%, transparent 50.1%),
    repeating-linear-gradient(180deg, transparent 0 30px, rgba(245,242,235,.025) 30px 31px),
    rgba(12,13,15,.72);
  text-align: center;
}

body[data-page="releases"] .release-grid-empty .icon {
  width: 28px;
  height: 28px;
}

body[data-page="releases"] .release-grid.catalog .release-card.rich {
  counter-increment: release-card;
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 4 / 5;
  padding: 0;
  overflow: hidden;
  border-color: rgba(245,242,235,.15);
  border-radius: 4px;
  background: #090a0c;
  isolation: isolate;
}

body[data-page="releases"] .release-grid.catalog .release-card.rich:first-child {
  grid-column: span 2;
  aspect-ratio: 8 / 5;
  border-color: rgba(215,173,103,.34);
}

body[data-page="releases"] .release-grid.catalog .release-card.rich:last-child:nth-child(3) {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 6;
}

body[data-page="releases"] .release-grid.catalog .release-card.rich::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,6,7,.02) 26%, rgba(5,6,7,.92) 84%, #050607 100%),
    linear-gradient(90deg, rgba(210,43,49,.08), transparent 48%, rgba(49,91,133,.08));
}

body[data-page="releases"] .release-grid.catalog .release-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04) brightness(.86);
}

body[data-page="releases"] .release-grid.catalog .release-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  align-items: end;
  padding: clamp(20px, 2.6vw, 34px);
}

body[data-page="releases"] .release-grid.catalog .release-status {
  grid-column: 1 / -1;
  border-radius: 2px;
  background: rgba(8,9,11,.72);
  color: #dfbf7c;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
}

body[data-page="releases"] .release-grid.catalog .release-title {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: #f4f0e9;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: .9;
  letter-spacing: -.035em;
}

body[data-page="releases"] .release-grid.catalog .release-card.rich:first-child .release-title {
  font-size: clamp(42px, 5vw, 72px);
}

body[data-page="releases"] .release-grid.catalog .release-meta {
  color: #c8c1b7;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

body[data-page="releases"] .release-grid.catalog .release-card-link {
  align-self: end;
  margin: 0;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(215,173,103,.5);
  color: #e4c27d;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body[data-page="releases"] .release-card-index {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 4;
  color: rgba(245,242,235,.62);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
}

body[data-page="releases"] .release-card-index::before { content: "archive / "; color: rgba(215,173,103,.62); }

body[data-page="releases"] .release-grid.catalog .release-card.rich:hover {
  transform: translateY(-4px);
  border-color: rgba(215,173,103,.56);
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
}

body[data-page="releases"] .release-grid.catalog .release-card.rich:hover .release-cover {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.06) brightness(.92);
}

@media (max-width: 860px) {
  body[data-page="releases"] .releases-archive-hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 620px;
    padding: 72px 20px 54px;
    background-position: 58% center;
  }

  body[data-page="releases"] .releases-archive-mark { display: none; }

  body[data-page="releases"] .releases-archive-hero .lead {
    max-width: 620px;
    padding-left: 42px;
  }

  body[data-page="releases"] .release-filters {
    top: calc(var(--topbar-height) + 6px);
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 6px;
    scrollbar-width: none;
  }

  body[data-page="releases"] .release-filters::-webkit-scrollbar { display: none; }

  body[data-page="releases"] .release-grid.catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="releases"] .release-grid.catalog .release-card.rich:first-child {
    grid-column: 1 / -1;
  }

  body[data-page="releases"] .release-grid.catalog .release-card.rich:last-child:nth-child(3) {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 520px) {
  body[data-page="releases"] .releases-archive-hero {
    min-height: 570px;
    padding: 64px 20px 42px;
  }

  body[data-page="releases"] .releases-indexline {
    grid-template-columns: auto minmax(56px, 1fr) auto;
    gap: 8px;
    margin-bottom: 34px;
    font-size: 8px;
  }

  body[data-page="releases"] .releases-index-wave { gap: 3px; padding-inline: 7px; }

  body[data-page="releases"] .releases-archive-hero h1 {
    font-size: clamp(54px, 18vw, 70px);
  }

  body[data-page="releases"] .releases-archive-hero h1 span:last-child {
    margin-left: 28px;
  }

  body[data-page="releases"] .releases-archive-hero .lead {
    margin-top: 30px;
    padding: 15px 0 0 28px;
    font-size: 15px;
  }

  body[data-page="releases"] .releases-catalog-section {
    padding: 50px 20px 76px;
  }

  body[data-page="releases"] .releases-catalog-head {
    align-items: end;
    flex-direction: row;
    gap: 14px;
    margin-bottom: 24px;
  }

  body[data-page="releases"] .releases-catalog-head h2 {
    font-size: 32px;
    white-space: nowrap;
  }

  body[data-page="releases"] .catalog-result span { display: none; }
  body[data-page="releases"] .catalog-result strong { font-size: 28px; }

  body[data-page="releases"] .release-filters {
    width: calc(100vw - 40px);
    margin-bottom: 14px;
  }

  body[data-page="releases"] .release-filters .filter {
    min-height: 42px;
    padding-inline: 12px;
  }

  body[data-page="releases"] .release-grid.catalog {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  body[data-page="releases"] .release-grid.catalog .release-card.rich,
  body[data-page="releases"] .release-grid.catalog .release-card.rich:first-child,
  body[data-page="releases"] .release-grid.catalog .release-card.rich:last-child:nth-child(3) {
    grid-column: auto;
    width: 100%;
    max-width: none;
    aspect-ratio: 4 / 4.65;
  }

  body[data-page="releases"] .release-grid.catalog .release-info {
    grid-template-columns: minmax(0, 1fr);
    padding: 22px;
  }

  body[data-page="releases"] .release-grid.catalog .release-title,
  body[data-page="releases"] .release-grid.catalog .release-card.rich:first-child .release-title {
    font-size: clamp(32px, 11vw, 44px);
  }

  body[data-page="releases"] .release-grid.catalog .release-card-link {
    justify-self: start;
    margin-top: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  body:not([data-page="admin"])::before,
  body:not([data-page="admin"])::after {
    animation: none !important;
  }

  .hero-media,
  .signal-debris,
  .release-card.interactive:hover,
  .release-card.interactive:hover .release-cover {
    transform: none !important;
  }

  .signal-debris {
    opacity: 0.24;
  }
}

/* Home uses natural document scrolling. Section snap prevented reaching the footer. */
html:has(body[data-page="home"]),
body[data-page="home"] {
  scroll-snap-type: none;
}

/* Hero as an album transmission, not a generic landing-page billboard. */
body[data-page="home"] .hero-content {
  width: min(1180px, 100%);
  padding: clamp(34px, 6vw, 86px);
}

body[data-page="home"] .hero-trackline {
  display: grid;
  grid-template-columns: auto minmax(110px, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(760px, 100%);
  margin-bottom: clamp(28px, 5vh, 54px);
  color: rgba(235, 226, 213, .58);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

body[data-page="home"] .hero-waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 18px;
  padding-inline: 14px;
  overflow: hidden;
  border-right: 1px solid rgba(245,242,235,.16);
  border-left: 1px solid rgba(245,242,235,.16);
}

body[data-page="home"] .hero-waveform i {
  width: 2px;
  height: var(--wave-height, 6px);
  flex: 1 1 2px;
  max-width: 30px;
  background: linear-gradient(180deg, rgba(215,173,103,.9), rgba(210,43,49,.55));
  transform-origin: center;
  animation: heroWave 2.4s ease-in-out infinite alternate;
}

body[data-page="home"] .hero-waveform i:nth-child(2n) { --wave-height: 14px; animation-delay: -1.2s; }
body[data-page="home"] .hero-waveform i:nth-child(3n) { --wave-height: 9px; animation-delay: -.65s; }
body[data-page="home"] .hero-waveform i:nth-child(5n) { --wave-height: 17px; animation-delay: -1.8s; }

body[data-page="home"] .hero-track-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d9b56f;
}

body[data-page="home"] .hero-track-state::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d22b33;
  box-shadow: 0 0 12px rgba(210,43,51,.85);
}

body[data-page="home"] .hero-content > .eyebrow {
  margin-bottom: 12px;
  padding-left: 42px;
  position: relative;
}

body[data-page="home"] .hero-content > .eyebrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .7;
}

body[data-page="home"] #artist-name {
  font-size: clamp(62px, 10.4vw, 136px);
  line-height: .82;
  letter-spacing: -.035em;
}

body[data-page="home"] .hero-statement {
  display: grid;
  grid-template-columns: 56px minmax(0, 720px);
  gap: 18px;
  align-items: start;
  width: min(820px, 100%);
  margin-top: 26px;
  padding-top: 17px;
  border-top: 1px solid rgba(245,242,235,.22);
}

body[data-page="home"] .hero-statement-index {
  padding-top: 5px;
  color: rgba(215,173,103,.76);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
}

body[data-page="home"] .hero-copy {
  margin: 0;
  max-width: 720px;
  color: #e3ddd3;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.42;
}

body[data-page="home"] .hero-command-row {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 22px 34px;
  margin-top: 28px;
}

body[data-page="home"] .hero-actions {
  gap: 10px;
  margin: 0;
}

body[data-page="home"] .hero-listen-button {
  justify-content: flex-start;
  min-width: 240px;
  min-height: 64px;
  padding: 7px 18px 7px 7px;
  border-color: rgba(215,173,103,.5);
  border-radius: 3px;
  background: rgba(8,9,11,.82);
  box-shadow: 0 15px 36px rgba(0,0,0,.36);
  color: #f2ede5;
}

body[data-page="home"] .hero-listen-button::before { display: none; }
body[data-page="home"] .hero-listen-button:hover {
  border-color: rgba(215,173,103,.86);
  background: rgba(18,16,15,.94);
  box-shadow: 0 16px 42px rgba(0,0,0,.46), inset 3px 0 0 #d22b33;
}

body[data-page="home"] .hero-button-disc {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, #e5ddd1 0 3px, transparent 4px),
    repeating-radial-gradient(circle, #242126 0 2px, #111216 3px 5px);
  box-shadow: inset 0 0 0 1px rgba(245,242,235,.15), 0 0 0 1px rgba(0,0,0,.7);
  color: #e8d2a5;
}

body[data-page="home"] .hero-button-disc .icon { width: 16px; height: 16px; }

body[data-page="home"] .hero-button-copy {
  display: grid;
  gap: 3px;
  text-align: left;
}

body[data-page="home"] .hero-button-copy small {
  color: #a99d8d;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

body[data-page="home"] .hero-button-copy strong { font-size: 15px; }

body[data-page="home"] .hero-catalog-button {
  min-height: 64px;
  padding-inline: 18px;
  border-width: 0 0 1px;
  border-radius: 0;
  background: rgba(8,9,11,.38);
  box-shadow: none;
}

body[data-page="home"] .hero-catalog-button::before { display: none; }
body[data-page="home"] .hero-catalog-button:hover {
  background: rgba(215,173,103,.08);
  box-shadow: none;
}

body[data-page="home"] .hero-button-arrow {
  margin-left: 12px;
  color: var(--gold);
  font-size: 18px;
}

body[data-page="home"] .hero-social-group {
  display: grid;
  gap: 7px;
  padding-bottom: 6px;
}

body[data-page="home"] .hero-social-label {
  color: rgba(215,173,103,.7);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

body[data-page="home"] .hero-socials {
  gap: 14px;
  margin: 0;
}

body[data-page="home"] .hero-socials .social-link {
  min-height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #beb6aa;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .04em;
}

body[data-page="home"] .hero-socials .social-link:hover {
  background: transparent;
  color: #f2ede5;
}

body[data-page="home"] .hero-socials .social-link svg {
  width: 14px;
  height: 14px;
}

@keyframes heroWave {
  from { transform: scaleY(.45); opacity: .55; }
  to { transform: scaleY(1); opacity: 1; }
}

body[data-page="home"] .home-scene {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

body[data-page="home"] .section.home-scene {
  min-height: 0;
}

@media (max-width: 520px) {
  body[data-page="home"] .hero {
    min-height: max(720px, calc(100svh - var(--topbar-height)));
    align-items: end;
  }

  body[data-page="home"] .hero-content {
    padding: 34px 20px 44px;
  }

  body[data-page="home"] .hero-trackline {
    gap: 9px;
    margin-bottom: 28px;
  }

  body[data-page="home"] .hero-waveform {
    gap: 3px;
    padding-inline: 8px;
  }

  body[data-page="home"] #artist-name {
    font-size: clamp(50px, 14.8vw, 58px);
  }

  body[data-page="home"] .hero-statement {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    margin-top: 22px;
    padding-top: 13px;
  }

  body[data-page="home"] .hero-copy {
    font-size: 16px;
    line-height: 1.42;
  }

  body[data-page="home"] .hero-command-row {
    display: grid;
    gap: 18px;
    margin-top: 22px;
  }

  body[data-page="home"] .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
  }

  body[data-page="home"] .hero-listen-button {
    min-width: 0;
    min-height: 58px;
    padding-right: 12px;
  }

  body[data-page="home"] .hero-button-disc {
    width: 44px;
    height: 44px;
  }

  body[data-page="home"] .hero-catalog-button {
    min-height: 58px;
    padding-inline: 13px;
  }

  body[data-page="home"] .hero-catalog-button .icon { display: none; }
  body[data-page="home"] .hero-button-arrow { margin-left: 6px; }

  body[data-page="home"] .hero-social-group {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
  }

  body[data-page="home"] .hero-socials {
    display: flex;
    grid-template-columns: none;
    justify-content: flex-start;
    gap: 13px;
    flex-wrap: nowrap;
  }

  body[data-page="home"] .hero-socials .social-link {
    font-size: 0;
  }

  body[data-page="home"] .hero-socials .social-link svg {
    width: 17px;
    height: 17px;
  }

  body[data-page="home"] #project .section-head h2 {
    font-size: clamp(32px, 10.5vw, 44px);
  }

  body[data-page="home"] .artist-portrait-card {
    min-height: 0;
  }

  body[data-page="home"] .about-details-stage {
    align-content: center;
    min-height: calc(100svh - var(--topbar-height) - 16px);
    padding-block: 8px;
  }

  body[data-page="home"] .about-copy {
    gap: 13px;
    padding: 20px 18px;
  }

  body[data-page="home"] .about-lede {
    font-size: clamp(23px, 7vw, 30px);
  }

  body[data-page="home"] .about-copy #about-body {
    font-size: 15px;
    line-height: 1.55;
  }

}

/* Home latest releases share the archive language of the discography page. */
body[data-page="home"] #new .section-head > .button {
  min-height: 48px;
  padding-inline: 16px;
  border-width: 0 0 1px;
  border-radius: 0;
  border-color: rgba(215,173,103,.5);
  background: rgba(8,9,11,.34);
  box-shadow: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

body[data-page="home"] #new .section-head > .button::before { display: none; }

body[data-page="home"] #new-release-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  grid-template-rows: repeat(2, minmax(280px, 1fr));
  gap: 16px;
}

body[data-page="home"] #new-release-grid .release-card.rich,
body[data-page="home"] #new-release-grid .release-card.rich:first-child,
body[data-page="home"] #new-release-grid .release-card.rich:not(:first-child) {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(245,242,235,.15);
  border-radius: 4px;
  background: #090a0c;
  isolation: isolate;
}

body[data-page="home"] #new-release-grid .release-card.rich:first-child {
  grid-column: 1;
  grid-row: 1 / span 2;
  border-color: rgba(215,173,103,.34);
}

body[data-page="home"] #new-release-grid .release-card.rich:not(:first-child) {
  grid-column: 2;
  min-height: 280px;
}

body[data-page="home"] #new-release-grid .release-card.rich::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  width: auto;
  height: auto;
  opacity: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,6,7,.02) 24%, rgba(5,6,7,.88) 79%, #050607 100%),
    linear-gradient(90deg, rgba(210,43,49,.07), transparent 48%, rgba(49,91,133,.08));
}

body[data-page="home"] #new-release-grid .release-card.rich:hover::after {
  opacity: 1;
  animation: none;
}

body[data-page="home"] #new-release-grid .release-cover,
body[data-page="home"] #new-release-grid .release-card.rich:first-child .release-cover,
body[data-page="home"] #new-release-grid .release-card.rich:not(:first-child) .release-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04) brightness(.84);
}

body[data-page="home"] #new-release-grid .release-info,
body[data-page="home"] #new-release-grid .release-card.rich:first-child .release-info,
body[data-page="home"] #new-release-grid .release-card.rich:not(:first-child) .release-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  align-items: end;
  padding: clamp(20px, 2.5vw, 34px);
  background: transparent;
}

body[data-page="home"] #new-release-grid .release-status {
  grid-column: 1 / -1;
  border-radius: 2px;
  background: rgba(8,9,11,.72);
  color: #dfbf7c;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
}

body[data-page="home"] #new-release-grid .release-title,
body[data-page="home"] #new-release-grid .release-card.rich:first-child .release-title,
body[data-page="home"] #new-release-grid .release-card.rich:not(:first-child) .release-title {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: #f4f0e9;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: .9;
  letter-spacing: -.035em;
}

body[data-page="home"] #new-release-grid .release-card.rich:first-child .release-title {
  font-size: clamp(42px, 5vw, 70px);
}

body[data-page="home"] #new-release-grid .release-meta,
body[data-page="home"] #new-release-grid .release-card.rich:first-child .release-meta,
body[data-page="home"] #new-release-grid .release-card.rich:not(:first-child) .release-meta {
  color: #c8c1b7;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

body[data-page="home"] #new-release-grid .release-card-link,
body[data-page="home"] #new-release-grid .release-card.rich:first-child .release-card-link {
  align-self: end;
  min-height: auto;
  margin: 0;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid rgba(215,173,103,.5);
  border-radius: 0;
  background: transparent;
  color: #e4c27d;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body[data-page="home"] #new-release-grid .release-card-index {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 4;
  color: rgba(245,242,235,.62);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
}

body[data-page="home"] #new-release-grid .release-card-index::before {
  content: "archive / ";
  color: rgba(215,173,103,.62);
}

body[data-page="home"] #new-release-grid .release-card.rich:hover {
  transform: translateY(-4px);
  border-color: rgba(215,173,103,.56);
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
}

body[data-page="home"] #new-release-grid .release-card.rich:hover .release-cover {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.06) brightness(.92);
}

@media (max-width: 860px) {
  body[data-page="home"] #new-release-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    gap: 12px;
  }

  body[data-page="home"] #new-release-grid .release-card.rich,
  body[data-page="home"] #new-release-grid .release-card.rich:first-child,
  body[data-page="home"] #new-release-grid .release-card.rich:not(:first-child) {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 4.4;
    padding: 0;
    overflow: hidden;
  }

  body[data-page="home"] #new-release-grid .release-cover,
  body[data-page="home"] #new-release-grid .release-card.rich:first-child .release-cover,
  body[data-page="home"] #new-release-grid .release-card.rich:not(:first-child) .release-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
    filter: saturate(.9) contrast(1.04) brightness(.84);
  }

  body[data-page="home"] #new-release-grid .release-info,
  body[data-page="home"] #new-release-grid .release-card.rich:first-child .release-info,
  body[data-page="home"] #new-release-grid .release-card.rich:not(:first-child) .release-info {
    position: absolute;
    display: grid;
    gap: 7px;
    padding: 22px;
    background: transparent;
  }

  body[data-page="home"] #new-release-grid .release-title,
  body[data-page="home"] #new-release-grid .release-card.rich:first-child .release-title,
  body[data-page="home"] #new-release-grid .release-card.rich:not(:first-child) .release-title {
    font-size: clamp(32px, 10vw, 46px);
  }
}

/* Release detail: master-file interface shared with the discography archive. */
body[data-page="release"] .release-experience {
  --release-accent: #d7ad67;
}

body[data-page="release"] .release-hero-art {
  position: relative;
}

body[data-page="release"] .release-art-index {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 3;
  color: rgba(245,242,235,.62);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body[data-page="release"] .release-hero-art img {
  border-color: rgba(215,173,103,.3);
  border-radius: 3px;
  filter: saturate(.94) contrast(1.03);
}

body[data-page="release"] .release-vitals {
  border-color: rgba(245,242,235,.14);
  border-radius: 2px;
  background: rgba(245,242,235,.14);
}

body[data-page="release"] .release-vitals span {
  padding: 13px 10px;
  background: rgba(9,10,12,.92);
  color: #c7c0b5;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .07em;
}

body[data-page="release"] .release-file-index {
  display: grid;
  grid-template-columns: auto minmax(90px, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(690px, 100%);
  margin-bottom: clamp(18px, 3vh, 30px);
  color: rgba(235,226,213,.5);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

body[data-page="release"] .release-file-wave {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 16px;
  padding-inline: 10px;
  border-right: 1px solid rgba(245,242,235,.14);
  border-left: 1px solid rgba(245,242,235,.14);
}

body[data-page="release"] .release-file-wave i {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(215,173,103,.5), rgba(210,43,49,.72));
}

body[data-page="release"] .release-file-wave i:nth-child(2n) { height: 8px; }
body[data-page="release"] .release-file-wave i:nth-child(3n) { height: 13px; }

body[data-page="release"] .release-file-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
}

body[data-page="release"] .release-file-kicker .eyebrow {
  padding-left: 28px;
  position: relative;
}

body[data-page="release"] .release-file-kicker .eyebrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 1px;
  background: currentColor;
}

body[data-page="release"] .release-file-kicker .release-status {
  border-radius: 2px;
  background: rgba(8,9,11,.74);
  color: #dfbf7c;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
}

body[data-page="release"] .release-hero-copy h1 {
  letter-spacing: -.045em;
  line-height: .9;
}

body[data-page="release"] .release-hero-actions {
  align-items: stretch;
  gap: 10px;
  margin-top: 16px;
}

body[data-page="release"] .release-listen-button {
  justify-content: flex-start;
  min-width: 230px;
  min-height: 64px;
  padding: 7px 18px 7px 7px;
  border-color: rgba(215,173,103,.52);
  border-radius: 3px;
  background: rgba(8,9,11,.86);
  box-shadow: 0 15px 38px rgba(0,0,0,.34);
  color: #f2ede5;
}

body[data-page="release"] .release-listen-button::before { display: none; }

body[data-page="release"] .release-listen-button:hover {
  border-color: rgba(215,173,103,.88);
  background: rgba(18,16,15,.94);
  box-shadow: 0 16px 42px rgba(0,0,0,.45), inset 3px 0 0 #d22b33;
}

body[data-page="release"] .release-button-disc {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, #e5ddd1 0 3px, transparent 4px),
    repeating-radial-gradient(circle, #242126 0 2px, #111216 3px 5px);
  box-shadow: inset 0 0 0 1px rgba(245,242,235,.15);
  color: #e8d2a5;
}

body[data-page="release"] .release-button-disc .icon { width: 16px; height: 16px; }

body[data-page="release"] .release-button-copy {
  display: grid;
  gap: 3px;
  text-align: left;
}

body[data-page="release"] .release-button-copy small {
  color: #a99d8d;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

body[data-page="release"] .release-button-copy strong { font-size: 15px; }

body[data-page="release"] .release-catalog-button {
  min-height: 64px;
  padding-inline: 18px;
  border-width: 0 0 1px;
  border-radius: 0;
  border-color: rgba(215,173,103,.44);
  background: rgba(8,9,11,.36);
  box-shadow: none;
}

body[data-page="release"] .release-catalog-button::before { display: none; }
body[data-page="release"] .release-catalog-button:hover { background: rgba(215,173,103,.08); box-shadow: none; }

body[data-page="release"] .release-button-arrow {
  margin-left: 12px;
  color: var(--gold);
  font-size: 18px;
}

body[data-page="release"] .release-jumpbar {
  gap: 0;
  border-color: rgba(245,242,235,.13);
  background: rgba(8,9,11,.9);
}

body[data-page="release"] .release-jumpbar a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 18px;
  border-right: 1px solid rgba(245,242,235,.09);
  color: #bbb4aa;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .05em;
}

body[data-page="release"] .release-jumpbar a span {
  color: rgba(215,173,103,.65);
  font-size: 8px;
}

body[data-page="release"] .release-sidecar,
body[data-page="release"] .release-tracklist-section,
body[data-page="release"] .release-lyrics-section {
  border-radius: 3px;
  border-color: rgba(245,242,235,.13);
  background:
    repeating-linear-gradient(180deg, transparent 0 30px, rgba(245,242,235,.02) 30px 31px),
    rgba(11,12,14,.82);
}

body[data-page="release"] .release-sidecar {
  padding: 24px;
}

body[data-page="release"] .release-sidecar h2 {
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -.035em;
}

body[data-page="release"] .release-platform-link {
  min-height: 60px;
  border-color: rgba(245,242,235,.12);
  border-radius: 2px;
  background: rgba(245,242,235,.025);
}

body[data-page="release"] .release-platform-link:hover {
  border-color: rgba(215,173,103,.52);
  background: linear-gradient(90deg, rgba(215,173,103,.13), rgba(215,173,103,.03));
}

body[data-page="release"] .release-platform-link strong {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .06em;
}

body[data-page="release"] .release-secondary-links {
  border-top: 1px solid rgba(245,242,235,.1);
  padding-top: 14px;
}

body[data-page="release"] .release-secondary-links a {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

body[data-page="release"] .release-section-head h2 {
  letter-spacing: -.04em;
}

body[data-page="release"] .release-tracklist {
  border-top-color: rgba(245,242,235,.13);
}

body[data-page="release"] .release-tracklist li {
  border-bottom-color: rgba(245,242,235,.09);
}

body[data-page="release"] .release-tracklist a,
body[data-page="release"] .release-tracklist li > div {
  position: relative;
  min-height: 64px;
  padding-inline: 10px;
  transition: padding 180ms ease, background 180ms ease;
}

body[data-page="release"] .release-tracklist a::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 2px;
  background: var(--gold);
  opacity: 0;
}

body[data-page="release"] .release-tracklist a:hover {
  padding-left: 18px;
  background: linear-gradient(90deg, rgba(215,173,103,.1), transparent 68%);
}

body[data-page="release"] .release-tracklist a:hover::before { opacity: 1; }

body[data-page="release"] .release-track-number {
  color: rgba(215,173,103,.72);
}

body[data-page="release"] .release-tracklist strong {
  font-size: 14px;
}

@media (max-width: 760px) {
  body[data-page="release"] .release-hero-panel {
    gap: 28px;
  }

  body[data-page="release"] .release-file-index {
    margin-bottom: 20px;
  }

  body[data-page="release"] .release-vitals {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="release"] .release-hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
  }

  body[data-page="release"] .release-listen-button {
    width: auto;
    min-width: 0;
  }

  body[data-page="release"] .release-catalog-button {
    width: auto;
  }
}

@media (max-width: 520px) {
  body[data-page="release"] .release-hero-panel {
    padding-top: 24px;
  }

  body[data-page="release"] .release-art-index {
    top: 13px;
    right: 14px;
    font-size: 8px;
  }

  body[data-page="release"] .release-file-index {
    grid-template-columns: auto minmax(52px, 1fr) auto;
    gap: 7px;
    font-size: 7px;
  }

  body[data-page="release"] .release-file-wave {
    gap: 3px;
    padding-inline: 6px;
  }

  body[data-page="release"] .release-file-kicker {
    gap: 10px;
  }

  body[data-page="release"] .release-hero-copy h1 {
    font-size: clamp(34px, 10.5vw, 44px);
    overflow-wrap: normal;
    word-break: normal;
  }

  body[data-page="release"] .release-hero-actions,
  body[data-page="release"] .release-hero-actions .button {
    max-width: none;
  }

  body[data-page="release"] .release-listen-button,
  body[data-page="release"] .release-catalog-button {
    min-height: 58px;
  }

  body[data-page="release"] .release-button-disc {
    width: 44px;
    height: 44px;
  }

  body[data-page="release"] .release-catalog-button {
    padding-inline: 13px;
  }

  body[data-page="release"] .release-catalog-button .icon { display: none; }
  body[data-page="release"] .release-button-arrow { margin-left: 5px; }

  body[data-page="release"] .release-tracklist-section {
    padding: 22px 16px;
  }

  body[data-page="release"] .release-tracklist a,
  body[data-page="release"] .release-tracklist li > div {
    min-height: 60px;
    padding-inline: 6px;
  }
}
