@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Baskervville";
  src: url("assets/fonts/baskervville-latin-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Baskervville";
  src: url("assets/fonts/baskervville-latin-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Baskervville", serif;
  --bg: #060708;
  --bg-soft: #0b0d11;
  --panel: rgba(7, 9, 14, 0.74);
  --panel-strong: rgba(10, 12, 17, 0.92);
  --line: rgba(235, 229, 220, 0.09);
  --line-strong: rgba(235, 229, 220, 0.16);
  --text: #e8dfd2;
  --muted: #b9b0a3;
  --dim: #8a8177;
  --accent: #d9cfc0;
  --glow: rgba(76, 103, 145, 0.18);
  --shadow: 0 24px 60px rgba(0,0,0,0.45);
  --page-video-opacity: 0.38;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html {
  scroll-behavior: smooth;
  background: var(--bg);
  color-scheme: dark;
}
body {
  margin: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.72;
}
/* Sit above fixed backdrop layers (avoid negative z-index behind body paint) */
main {
  position: relative;
  z-index: 10;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, select { font: inherit; }
button,
.btn,
.platform-link {
  cursor: pointer;
}
select,
option {
  cursor: pointer;
}
button:disabled,
.btn:disabled,
select:disabled {
  cursor: not-allowed;
}

.page-video-bg,
.page-video-scrim,
.page-bg,
.page-grid,
.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.page-video-bg {
  z-index: 0;
  overflow: hidden;
  background: var(--bg);
}
.page-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  opacity: var(--page-video-opacity);
}
.page-video-scrim {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 4, 9, 0.86) 0%, rgba(4, 6, 12, 0.68) 42%, rgba(2, 3, 7, 0.9) 100%),
    radial-gradient(ellipse 130% 75% at 50% -5%, rgba(40, 90, 160, 0.18), transparent 52%);
}
.page-bg {
  background:
    radial-gradient(circle at 18% 18%, rgba(39, 62, 91, 0.14), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(84, 62, 37, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(4, 5, 7, 0.45), rgba(2, 3, 4, 0.55));
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .page-video-bg {
    display: none;
  }
  .page-video-scrim {
    background: linear-gradient(180deg, rgba(4, 5, 7, 0.94), rgba(2, 3, 4, 0.98));
  }
  .page-bg {
    background:
      radial-gradient(circle at 18% 18%, rgba(39, 62, 91, 0.22), transparent 28%),
      radial-gradient(circle at 82% 24%, rgba(84, 62, 37, 0.16), transparent 22%),
      linear-gradient(180deg, rgba(4, 5, 7, 0.92), rgba(2, 3, 4, 0.98));
  }
}

body.page-video-disabled .page-video-bg {
  display: none;
}
body.page-video-disabled .page-video-scrim {
  background: linear-gradient(180deg, rgba(4, 5, 7, 0.94), rgba(2, 3, 4, 0.98));
}
body.page-video-disabled .page-bg {
  background:
    radial-gradient(circle at 18% 18%, rgba(39, 62, 91, 0.22), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(84, 62, 37, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(4, 5, 7, 0.92), rgba(2, 3, 4, 0.98));
}

@supports (content-visibility: auto) {
  #periods,
  #licensing,
  #listen {
    content-visibility: auto;
    contain-intrinsic-size: 760px;
  }

  #support {
    content-visibility: auto;
    contain-intrinsic-size: 980px;
  }
}

.page-grid {
  z-index: 3;
  opacity: 0.35;
  background-image:
    radial-gradient(circle, rgba(235, 229, 220, 0.12) 0.7px, transparent 0.8px),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 16px 16px, 120px 120px, 120px 120px;
  background-position: center center;
}
.page-glow { z-index: 4; filter: blur(70px); }
.page-glow-left {
  background: radial-gradient(circle at 22% 30%, rgba(60, 92, 138, 0.22), transparent 26%);
}
.page-glow-right {
  background: radial-gradient(circle at 74% 56%, rgba(64, 52, 34, 0.18), transparent 22%);
}

.container-xl {
  width: min(92vw, 1500px);
  margin: 0 auto;
}
.container {
  width: min(92vw, 1500px);
  margin: 0 auto;
}
.section-shell {
  position: relative;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 9, 14, 0.78), rgba(5, 6, 9, 0.9));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.section-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%);
}
.section-shell > * {
  position: relative;
  z-index: 1;
}
.site-footer {
  position: relative;
  z-index: 10;
  margin-top: 32px;
  padding: 40px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 6, 9, 0.82);
  backdrop-filter: blur(12px);
}
.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px 40px;
}
.site-footer-brand {
  display: inline-block;
  margin-bottom: 0.6rem;
}
.site-footer-tagline {
  margin: 0;
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  justify-content: flex-end;
}
.footer-nav a,
.footer-nav-button {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--dim);
}
.footer-nav-button {
  padding: 0;
  border: 0;
  background: none;
}
.footer-nav a:hover,
.footer-nav-button:hover {
  color: var(--text);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: clamp(12px, 2vw, 24px);
  z-index: 95;
  width: min(92vw, 780px);
  transform: translateX(-50%);
}
.cookie-banner-shell {
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 18% 0%, rgba(84, 62, 37, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(11, 13, 18, 0.97), rgba(7, 9, 14, 0.99));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  padding: 18px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px 24px;
}
.cookie-banner-copy {
  min-width: 0;
}
.cookie-banner-kicker {
  margin: 0 0 0.4rem;
  color: var(--dim);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.cookie-banner-copy h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1.02;
}
.cookie-banner-copy p:last-child {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 54ch;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}
.cookie-banner-actions .btn {
  min-height: 44px;
  padding: 0 16px;
}
body.cookie-banner-visible .player-drawer {
  bottom: clamp(160px, 22vh, 220px);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(5, 6, 9, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
.brand {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 2.2vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.site-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.site-nav a,
.nav-toggle {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--muted);
}
.site-nav a:hover {
  color: var(--text);
}
.support-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px 6px 10px;
  border: 1px solid rgba(226, 208, 183, 0.2);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(187, 139, 90, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(54, 37, 23, 0.88), rgba(19, 14, 11, 0.94));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.support-badge:hover,
.support-badge:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
  border-color: rgba(226, 208, 183, 0.34);
}
.support-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d7b88a;
  box-shadow: 0 0 0 4px rgba(215, 184, 138, 0.12);
  flex: 0 0 auto;
}
.support-badge-copy {
  display: grid;
  gap: 0;
  line-height: 1.05;
}
.support-badge-kicker {
  color: var(--dim);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.support-badge-title {
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
}

.hero { overflow: hidden; }
.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(260px, 0.85fr);
  min-height: min(86vh, 960px);
}
.hero-panel-spotlight {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}
.hero-panel-spotlight::before,
.hero-panel-spotlight::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  will-change: transform;
}
/* Main warm spotlight — roams across text + portrait */
.hero-panel-spotlight::before {
  width: min(92vw, 780px);
  height: min(92vw, 780px);
  left: -18%;
  top: -12%;
  background: radial-gradient(
    circle closest-side,
    rgba(255, 218, 175, 0.32) 0%,
    rgba(210, 150, 120, 0.1) 42%,
    rgba(120, 95, 160, 0.04) 62%,
    transparent 72%
  );
  mix-blend-mode: soft-light;
  opacity: 0.55;
  animation: hero-spotlight-roam 24s ease-in-out infinite;
}
/* Cooler secondary pool — offset timing for depth */
.hero-panel-spotlight::after {
  width: min(58vw, 520px);
  height: min(58vw, 520px);
  right: -8%;
  bottom: -5%;
  background: radial-gradient(
    circle closest-side,
    rgba(150, 185, 255, 0.18) 0%,
    rgba(100, 140, 210, 0.05) 50%,
    transparent 68%
  );
  mix-blend-mode: screen;
  opacity: 0.28;
  animation: hero-spotlight-roam-alt 32s ease-in-out infinite;
}
@keyframes hero-spotlight-roam {
  0% {
    transform: translate(0, 0) scale(1);
  }
  18% {
    transform: translate(48%, 8%) scale(1.06);
  }
  38% {
    transform: translate(92%, 42%) scale(0.94);
  }
  55% {
    transform: translate(55%, 78%) scale(1.03);
  }
  72% {
    transform: translate(5%, 62%) scale(1);
  }
  88% {
    transform: translate(-8%, 22%) scale(1.05);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes hero-spotlight-roam-alt {
  0% {
    transform: translate(0, 0) scale(1);
  }
  22% {
    transform: translate(-55%, -35%) scale(1.12);
  }
  45% {
    transform: translate(-95%, 25%) scale(0.88);
  }
  68% {
    transform: translate(-40%, 70%) scale(1.05);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-panel-spotlight::before,
  .hero-panel-spotlight::after {
    animation: none;
  }
  .hero-panel-spotlight::before {
    transform: translate(35%, 25%);
    opacity: 0.45;
  }
  .hero-panel-spotlight::after {
    transform: translate(-30%, 20%);
    opacity: 0.2;
  }
}
.hero-copy {
  padding: clamp(48px, 7vw, 108px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(6, 8, 12, 0.96) 0%, rgba(6, 8, 12, 0.9) 68%, rgba(6, 8, 12, 0.55) 82%, rgba(6, 8, 12, 0.22) 94%, rgba(6, 8, 12, 0.08) 100%),
    linear-gradient(180deg, rgba(31, 53, 80, 0.08), transparent 40%);
  position: relative;
}
.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 84%, rgba(7,9,14,0.85) 100%);
}
.eyebrow {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--dim);
}
.hero h1,
.intro-grid h2,
.section-head h2,
.support-copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.06;
}
.hero h1 { font-size: clamp(3.4rem, 5.8vw, 6.2rem); }
.hero-statement {
  margin: 1.8rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  line-height: 1.1;
}
.hero-statement-lead {
  display: block;
  white-space: nowrap;
  line-height: 1.05;
}
.hero-statement-sub {
  display: block;
  margin-top: 1rem;
  font-size: 0.52em;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0.01em;
  max-width: 16ch;
}
.hero-text {
  margin-top: 1.6rem;
  color: var(--muted);
  max-width: 42rem;
  font-size: clamp(1.08rem, 1.42vw, 1.16rem);
  line-height: 1.78;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}
.btn-primary {
  background: var(--accent);
  color: #111;
  border-color: transparent;
}
.btn-secondary {
  background: rgba(255,255,255,0.02);
}
.btn:hover:not(:disabled),
.btn:focus-visible:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(203, 183, 154, 0.5);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}
.btn-primary:hover:not(:disabled),
.btn-primary:focus-visible:not(:disabled) {
  background: #f0e7da;
  color: #111;
}
.btn-secondary:hover:not(:disabled),
.btn-secondary:focus-visible:not(:disabled) {
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.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;
}
.hero-image-wrap {
  position: relative;
  z-index: 1;
  min-height: 100%;
  /* Bleed under copy so the fade meets text column without a grid seam */
  margin-left: clamp(-5.5rem, -11vw, -2.5rem);
  width: calc(100% + clamp(2.5rem, 11vw, 5.5rem));
  /* Same base as hero-copy so masked-out portrait reads as continuous darkness */
  background:
    linear-gradient(90deg, rgb(6, 8, 12) 0%, rgb(6, 8, 12) 32%, rgba(5, 6, 9, 0.55) 58%, transparent 85%),
    linear-gradient(180deg, rgba(5, 6, 9, 0.6), rgba(3, 4, 5, 0.95));
}
.hero-image-stack {
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 10%,
    rgba(0, 0, 0, 0.45) 22%,
    rgba(0, 0, 0, 0.82) 34%,
    rgba(0, 0, 0, 0.97) 44%,
    #000 52%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 10%,
    rgba(0, 0, 0, 0.45) 22%,
    rgba(0, 0, 0, 0.82) 34%,
    rgba(0, 0, 0, 0.97) 44%,
    #000 52%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.04) saturate(0.78);
}
.hero-image-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 9, 14, 0.1) 0%, rgba(7, 9, 14, 0.04) 28%, rgba(7, 9, 14, 0.01) 52%, transparent 70%),
    linear-gradient(180deg, rgba(7, 9, 14, 0.06), transparent 42%, rgba(7, 9, 14, 0.05));
}

.intro-block { padding: clamp(26px, 3vw, 44px); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 4vw, 54px);
}
.intro-grid h2,
.section-head h2,
.support-copy h2 { font-size: clamp(2.05rem, 3.45vw, 3.55rem); }
.intro-grid p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.74;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding: clamp(24px, 3vw, 38px);
  border-bottom: 1px solid var(--line);
}
.section-head-tight { padding-bottom: 24px; }
.section-note { color: var(--muted); max-width: 38rem; }

.eras-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--line);
}
.era-card {
  flex: 0 0 calc((100% - 5px) / 6);
  max-width: calc((100% - 5px) / 6);
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 18, 21, 0.95), rgba(9, 9, 11, 0.98));
  color: var(--text);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, outline-color 220ms ease;
}
.era-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--era-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 320ms ease;
}
.era-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.08) 46%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(circle at var(--era-glow-position, 40% 15%), var(--era-accent, rgba(160, 140, 110, 0.12)), transparent 32%);
}
.era-card:hover,
.era-card:focus-visible,
.era-card.is-active {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}
.era-card:hover::before,
.era-card:focus-visible::before,
.era-card.is-active::before {
  transform: scale(1.06);
}
.era-card:focus-visible {
  outline: 1px solid rgba(203, 183, 154, 0.65);
  outline-offset: -1px;
}
.era-card.is-active {
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
}
.era-card.is-active::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.08) 46%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(circle at var(--era-glow-position, 40% 15%), var(--era-accent-strong, rgba(203, 183, 154, 0.28)), transparent 34%);
}
.era-card-content {
  position: relative;
  z-index: 1;
  min-height: 260px;
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.era-card:nth-child(1) {
  --era-accent: rgba(197, 154, 105, 0.12);
  --era-accent-strong: rgba(197, 154, 105, 0.22);
  --era-glow-position: 30% 20%;
}
.era-card:nth-child(2) {
  --era-accent: rgba(73, 117, 163, 0.18);
  --era-accent-strong: rgba(73, 117, 163, 0.28);
  --era-glow-position: 70% 0%;
}
.era-card:nth-child(3) {
  --era-accent: rgba(186, 159, 122, 0.14);
  --era-accent-strong: rgba(186, 159, 122, 0.24);
  --era-glow-position: 50% 10%;
}
.era-card:nth-child(4) {
  --era-accent: rgba(204, 186, 151, 0.18);
  --era-accent-strong: rgba(204, 186, 151, 0.28);
  --era-glow-position: 20% 10%;
}
.era-card:nth-child(n + 5) {
  --era-accent: rgba(160, 140, 110, 0.12);
  --era-accent-strong: rgba(160, 140, 110, 0.22);
  --era-glow-position: 40% 15%;
}
.era-years { color: rgba(231, 223, 209, 0.78); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; }
.era-title {
  display: block;
  margin: 0.4rem 0 0;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 2.2rem;
  min-height: 4.4rem;
  text-wrap: balance;
}
.era-description {
  display: block;
  margin-top: 0.8rem;
  color: rgba(231, 223, 209, 0.82);
  font-size: 0.98rem;
  line-height: 1.62;
}

.catalog-head {
  position: relative;
  z-index: 30;
  padding: clamp(24px, 3vw, 38px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  overflow: visible;
}
.catalog-controls {
  position: relative;
  z-index: 31;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.catalog-controls label {
  position: relative;
  z-index: 32;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.control-label { color: var(--dim); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.16em; }
select {
  min-width: 180px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 0.8rem 0.9rem;
  color-scheme: dark;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(231, 223, 209, 0.7) 50%),
    linear-gradient(135deg, rgba(231, 223, 209, 0.7) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}
option {
  background: #0b0d11;
  color: var(--text);
}
.custom-select {
  position: relative;
  min-width: 180px;
  width: 100%;
}
.custom-select-native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.custom-select-trigger {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 0.8rem 2.2rem 0.8rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}
.custom-select-trigger:hover,
.custom-select-trigger:focus-visible,
.custom-select.is-open .custom-select-trigger {
  border-color: rgba(203, 183, 154, 0.42);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 3px rgba(203, 183, 154, 0.08);
  outline: none;
}
.custom-select-trigger:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  box-shadow: none;
}
.custom-select-trigger-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-select-trigger-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid rgba(231, 223, 209, 0.74);
  border-bottom: 1.5px solid rgba(231, 223, 209, 0.74);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 160ms ease;
  pointer-events: none;
}
.custom-select.is-open .custom-select-trigger-arrow {
  transform: translateY(-38%) rotate(225deg);
}
.custom-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 120;
  display: none;
  gap: 1px;
  max-height: min(320px, 52vh);
  overflow-y: auto;
  padding: 1px;
  border: 1px solid rgba(231, 223, 209, 0.14);
  background: rgba(231, 223, 209, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}
.custom-select.is-open .custom-select-menu {
  display: grid;
}
.custom-select-option {
  width: 100%;
  border: 0;
  background: rgba(11, 13, 17, 0.98);
  color: var(--text);
  padding: 0.8rem 0.9rem;
  text-align: left;
  line-height: 1.4;
  transition: background-color 140ms ease, color 140ms ease;
}
.custom-select-option:hover,
.custom-select-option:focus-visible {
  background: rgba(38, 42, 52, 0.98);
  outline: none;
}
.custom-select-option.is-selected {
  background: rgba(27, 58, 112, 0.82);
  color: #f2ece1;
}
.custom-select-option:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.player-drawer .custom-select-menu {
  top: auto;
  bottom: calc(100% + 6px);
}
.player-mode-select .custom-select {
  min-width: 0;
}
.player-mode-select .custom-select-trigger {
  min-height: 34px;
  padding: 6px 2rem 6px 10px;
  font-size: 0.9rem;
}
.player-mode-select .custom-select-trigger-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.player-mode-select .custom-select-option {
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
}
.player-mode-select-scope .custom-select-menu {
  width: max-content;
  min-width: max(100%, 360px);
  max-width: min(84vw, 460px);
}
.player-mode-select-versions .custom-select-menu {
  width: max-content;
  min-width: max(100%, 240px);
  max-width: min(78vw, 320px);
}
#works.section-shell {
  overflow: visible;
}
.songs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.song-card {
  background: linear-gradient(180deg, rgba(18, 18, 21, 0.95), rgba(9, 9, 11, 0.98));
  border: 1px solid rgba(231, 223, 209, 0.1);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.song-card:hover,
.song-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(203, 183, 154, 0.28);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}
.song-card-cover-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
}
.song-card-cover {
  aspect-ratio: 1 / 1;
  width: 100%;
  flex-shrink: 0;
}
.cover {
  position: relative;
  overflow: hidden;
}
.cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}
.song-card:hover .cover-image,
.song-card:focus-within .cover-image {
  transform: scale(1.06);
}
.cover-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 13, 0.1), rgba(6, 6, 8, 0.5));
  z-index: 1;
}
.cover-overlay-action {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  pointer-events: none;
}
.cover-overlay-action > * {
  pointer-events: auto;
}
.cover.has-image {
  background-color: #0d1018;
}
.cover-a {
  background:
    linear-gradient(180deg, rgba(99, 57, 99, 0.3), rgba(15, 15, 19, 0.8)),
    radial-gradient(circle at 50% 28%, rgba(255, 220, 220, 0.4), transparent 20%),
    #0d1018;
}
.cover-b {
  background:
    linear-gradient(180deg, rgba(13, 34, 76, 0.2), rgba(9, 10, 15, 0.84)),
    linear-gradient(135deg, #09111f, #120d17 58%, #071019);
}
.cover-c {
  background:
    linear-gradient(180deg, rgba(148, 126, 87, 0.26), rgba(10, 10, 12, 0.82)),
    linear-gradient(135deg, #2b3038, #0e1218 58%, #202632);
}
.cover-d {
  background:
    linear-gradient(180deg, rgba(105, 36, 36, 0.22), rgba(15, 10, 10, 0.84)),
    radial-gradient(circle at 60% 30%, rgba(255, 214, 194, 0.18), transparent 20%),
    #120d10;
}
.song-card-meta {
  padding: 18px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.song-card-copy {
  display: grid;
  gap: 0.55rem;
}
.song-card-meta .song-title {
  margin: 0 0 0.25rem;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.15;
}
.song-card-context {
  margin: 0;
  font-size: 0.78rem;
  color: var(--dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.song-card-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.song-card-fact {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
}
.song-card-fact-label {
  color: rgba(231, 223, 209, 0.48);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}
.song-card-fact-value {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}
.song-card-actions {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-top: auto;
}
.song-card-link {
  flex: 1 1 0;
  min-width: 0;
  min-height: 40px;
  margin: 0;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line-strong);
  font: inherit;
  cursor: pointer;
  color: var(--text);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.song-card-link:hover {
  color: var(--text);
  border-color: rgba(203, 183, 154, 0.55);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}
.song-card-link-accent {
  color: var(--accent);
}
.song-card-link-accent:hover {
  color: var(--text);
}
.song-card-link-listen {
  color: #111;
  background: var(--accent);
  border-color: transparent;
}
.song-card-link-listen:hover {
  color: #111;
  background: #f0e7da;
}

.song-focus {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 0;
  min-height: 280px;
}
.song-focus .song-art {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  align-self: start;
}
.song-focus .song-info {
  padding: clamp(28px, 4vw, 42px);
  background: linear-gradient(180deg, rgba(18, 18, 21, 0.95), rgba(9, 9, 11, 0.98));
  border: 1px solid rgba(231, 223, 209, 0.1);
  border-left: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.song-focus .song-info h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}
.song-version-line {
  margin: -0.15rem 0 0;
  color: var(--text);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.song-focus .song-year {
  margin: -0.15rem 0 0;
  color: var(--dim);
  font-size: 0.9rem;
}
.song-focus .song-info > p:not(.eyebrow):not(.song-year) {
  color: var(--muted);
  margin: 0;
}
.song-focus blockquote {
  margin: 1rem 0;
  padding-left: 18px;
  border-left: 2px solid rgba(203, 183, 154, 0.4);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.25;
}
.focus-tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.focus-tag-row span {
  border: 1px solid rgba(231, 223, 209, 0.16);
  padding: 8px 12px;
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.song-focus-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
#song-focus-section[hidden] {
  display: none !important;
}

.licensing-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}
.platform-links {
  display: grid;
  gap: 24px;
  background: transparent;
}
.licensing-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.license-card,
.platform-link {
  background: rgba(7, 9, 14, 0.94);
  padding: 24px;
}
.license-card {
  position: relative;
  min-height: 320px;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(18, 18, 21, 0.95), rgba(9, 9, 11, 0.98));
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.license-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}
.license-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--license-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 320ms ease;
}
.license-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.88) 100%),
    radial-gradient(circle at var(--license-glow-position, 35% 18%), var(--license-accent, rgba(160, 140, 110, 0.16)), transparent 34%);
}
.license-card:hover::before {
  transform: scale(1.06);
}
.license-card-1 {
  --license-image: url("assets/use1.webp");
  --license-accent: rgba(197, 154, 105, 0.14);
  --license-glow-position: 28% 18%;
}
.license-card-2 {
  --license-image: url("assets/use2.webp");
  --license-accent: rgba(73, 117, 163, 0.18);
  --license-glow-position: 72% 4%;
}
.license-card-3 {
  --license-image: url("assets/use3.webp");
  --license-accent: rgba(186, 159, 122, 0.16);
  --license-glow-position: 45% 14%;
}
.license-card-content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 320px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.8rem;
}
.license-card-kicker {
  margin: 0;
  color: rgba(231, 223, 209, 0.78);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.license-card h3,
.inquiry-box h3,
.platform-link h3 {
  margin: 0 0 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.8rem;
}
.modal-title {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
}
.platform-link p,
.inquiry-box p { color: var(--muted); }
.license-card-content > p:not(.license-card-kicker) {
  margin: 0;
  max-width: 28ch;
  color: rgba(231, 223, 209, 0.84);
  font-size: 1rem;
  line-height: 1.62;
}
.platform-group {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.platform-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 16px;
  background: linear-gradient(180deg, rgba(14, 16, 24, 0.92), rgba(9, 9, 13, 0.97));
}
.platform-group-header > div {
  display: grid;
  gap: 0.3rem;
}
.platform-group-label {
  margin: 0;
  color: rgba(231, 223, 209, 0.92);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.platform-group-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 48rem;
}
.platform-group-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.platform-link {
  position: relative;
  min-height: 136px;
  padding: 14px 16px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.7rem;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  background: linear-gradient(180deg, rgba(14, 16, 24, 0.96), rgba(9, 9, 13, 0.98));
}
.platform-link::before,
.platform-link::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.platform-link::before {
  background-image: var(--platform-logo);
  background-repeat: no-repeat;
  background-size: var(--platform-logo-size, 88px) auto;
  background-position: var(--platform-logo-position, calc(100% - 14px) calc(100% - 10px));
  opacity: var(--platform-logo-opacity, 0.18);
  filter: var(--platform-logo-filter, none);
  transform: scale(1);
  transform-origin: 100% 100%;
  transition: transform 280ms ease, opacity 220ms ease;
}
.platform-link::after {
  background:
    radial-gradient(circle at 84% 16%, var(--platform-accent, rgba(231, 223, 209, 0.08)), transparent 36%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.38));
}
.platform-link:hover,
.platform-link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}
.platform-link:hover::before,
.platform-link:focus-visible::before {
  transform: scale(1.06);
  opacity: calc(var(--platform-logo-opacity, 0.18) + 0.04);
}
.platform-link > * {
  position: relative;
  z-index: 1;
}
.platform-link h3 {
  margin: auto 0 0;
  font-size: 1.16rem;
  line-height: 1.08;
  max-width: calc(100% - 40px);
}
.platform-link small {
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.69rem;
  max-width: calc(100% - 44px);
}
.platform-link p {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: calc(100% - 48px);
}
.platform-info-tile {
  position: relative;
  grid-column: span var(--platform-info-span, 1);
  min-height: 136px;
  padding: 16px 18px 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.55rem;
  background: linear-gradient(180deg, rgba(16, 18, 26, 0.98), rgba(10, 10, 14, 0.98));
}
.platform-info-tile::before,
.platform-info-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.platform-info-tile::before {
  background:
    radial-gradient(circle at 18% 24%, var(--platform-info-accent, rgba(94, 124, 188, 0.18)), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.12));
}
.platform-info-tile::after {
  inset: auto -8% -12% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
  opacity: 0.45;
  filter: blur(2px);
}
.platform-info-tile > * {
  position: relative;
  z-index: 1;
}
.platform-info-tile-global {
  --platform-info-accent: rgba(62, 105, 164, 0.2);
}
.platform-info-tile-regional {
  --platform-info-accent: rgba(140, 92, 56, 0.2);
}
.platform-info-kicker {
  margin: 0;
  color: var(--dim);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.platform-info-tile h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1.06;
}
.platform-info-tile p:last-child {
  margin: 0;
  max-width: 40ch;
  color: rgba(231, 223, 209, 0.82);
  font-size: 0.98rem;
  line-height: 1.62;
}
.inquiry-box {
  margin: 24px clamp(24px, 3vw, 38px) clamp(24px, 3vw, 38px);
  padding: 24px;
  border: 1px solid var(--line-strong);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.support-block {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
}
.support-block::before {
  content: "";
  position: absolute;
  inset: -12% auto auto -10%;
  width: min(46vw, 620px);
  height: min(46vw, 620px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 108, 57, 0.18), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}
.support-copy,
.support-goals {
  position: relative;
  padding: clamp(28px, 4vw, 54px);
}
.support-copy {
  display: grid;
  gap: 1.15rem;
  background:
    radial-gradient(circle at 18% 16%, rgba(206, 159, 114, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(68, 45, 28, 0.92), rgba(28, 20, 16, 0.96));
}
.support-copy::before {
  content: "";
  position: absolute;
  inset: auto -8% -20% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 227, 198, 0.08), transparent 68%);
  pointer-events: none;
}
.support-copy > * {
  position: relative;
  z-index: 1;
}
.support-copy h2 {
  /* max-width: 11ch; */
}
.support-copy p:not(.eyebrow):not(.support-note) {
  color: rgba(231, 223, 209, 0.8);
  max-width: 34rem;
  font-size: 1.1rem;
  line-height: 1.74;
}
.support-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.support-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(231, 223, 209, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(231, 223, 209, 0.84);
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.support-actions {
  display: grid;
  gap: 0.8rem;
  align-items: start;
}
.support-actions .btn {
  justify-self: start;
}
.support-note {
  margin: 0;
  max-width: 32rem;
  color: var(--dim);
  font-size: 0.94rem;
  line-height: 1.6;
}
.support-goals {
  display: grid;
  gap: 14px;
  align-content: center;
  background:
    radial-gradient(circle at 82% 14%, rgba(92, 121, 181, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(10, 12, 17, 0.88), rgba(6, 7, 10, 0.94));
}
.support-goals-label {
  margin: 0 0 0.2rem;
  color: var(--dim);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.support-goal {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(231, 223, 209, 0.12);
  padding: 18px 20px;
  background: rgba(11, 13, 19, 0.8);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.support-goal:hover {
  transform: translateY(-4px);
  border-color: rgba(203, 183, 154, 0.28);
  background: rgba(15, 17, 24, 0.94);
}
.support-goal-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(203, 183, 154, 0.24);
  background: rgba(203, 183, 154, 0.08);
  color: rgba(231, 223, 209, 0.9);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.support-goal strong {
  display: block;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.2;
}
.support-goal p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.player-drawer[hidden] { display: none; }
.player-drawer {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  bottom: clamp(14px, 2vw, 24px);
  z-index: 90;
  width: min(92vw, 560px);
}
.player-drawer-shell {
  border: 1px solid var(--line-strong);
  background: rgba(8, 10, 14, 0.97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  padding: 18px;
  display: grid;
  gap: 16px;
}
.player-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.player-drawer-copy {
  min-width: 0;
}
.player-drawer-kicker {
  margin: 0 0 0.35rem;
  color: var(--dim);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.player-drawer-title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.05;
}
.player-drawer-subtitle {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}
.player-close {
  position: static;
  flex: 0 0 auto;
}
.player-mode-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content max-content;
  grid-template-areas:
    "scope scope scope"
    "versions autoplay shuffle";
  gap: 8px;
}
.player-mode-control {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}
.player-mode-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 9px 10px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.player-mode-toggle-compact {
  width: max-content;
}
.player-mode-autoplay {
  grid-area: autoplay;
}
.player-mode-shuffle {
  grid-area: shuffle;
}
.player-mode-toggle input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--accent);
  flex: 0 0 auto;
}
.player-mode-select {
  display: grid;
  gap: 4px;
  padding: 8px 10px 9px;
}
.player-mode-select-scope {
  grid-area: scope;
}
.player-mode-select-versions {
  grid-area: versions;
}
.player-mode-select > span {
  color: var(--dim);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.player-mode-select select {
  width: 100%;
  min-width: 0;
  min-height: 34px;
  border: 1px solid rgba(231, 223, 209, 0.12);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 6px 2rem 6px 10px;
}
.player-mode-select select:focus {
  outline: none;
  border-color: rgba(203, 183, 154, 0.64);
  box-shadow: 0 0 0 3px rgba(203, 183, 154, 0.12);
}
.player-queue-note {
  margin: -4px 0 0;
  color: var(--dim);
  font-size: 0.82rem;
  line-height: 1.45;
}
.player-queue-note[data-tone="error"] {
  color: #efb2b2;
}
.player-queue-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: -6px;
}
.player-queue-actions .btn {
  min-width: 0;
  min-height: 42px;
  padding: 0 14px;
}
.player-drawer-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(3, 4, 7, 0.9);
}
.player-drawer-frame.is-empty {
  min-height: 168px;
  display: flex;
  align-items: stretch;
}
.player-drawer-placeholder {
  width: 100%;
  min-height: 168px;
  display: grid;
  align-content: center;
  gap: 0.7rem;
  padding: 20px 22px;
  background:
    radial-gradient(circle at 82% 18%, rgba(82, 120, 190, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(10, 12, 17, 0.94), rgba(4, 5, 8, 0.96));
}
.player-drawer-placeholder strong {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1;
}
.player-drawer-placeholder p {
  margin: 0;
  color: var(--muted);
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.62;
}
.player-drawer-placeholder .btn {
  justify-self: start;
  margin-top: 0.1rem;
}
.player-drawer-frame iframe {
  display: block;
  width: 100%;
  border: 0;
}
.player-drawer-frame.is-youtube iframe {
  aspect-ratio: 16 / 9;
  height: auto;
}
.player-drawer-frame.is-audiomack iframe {
  min-height: 252px;
}

.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: min(2.5vh, 20px) 0;
  overflow-y: auto;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.66);
  backdrop-filter: blur(10px);
}
.modal-dialog {
  position: relative;
  width: min(92vw, 860px);
  max-height: 90vh;
  overflow: auto;
  margin: 0 auto;
  background: rgba(8, 10, 14, 0.97);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.modal-dialog-form {
  width: min(94vw, 980px);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}
.modal-close:hover {
  background: rgba(255,255,255,0.12);
}
.modal-content {
  padding: 24px 26px 26px;
  display: grid;
  gap: 12px;
}
.modal-cover {
  width: calc(100% + 52px);
  margin: -24px -26px 2px -26px;
  aspect-ratio: 2.7 / 1;
  min-height: 96px;
  max-height: 154px;
}
.modal-cover-play {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}
.modal-cover-play:hover,
.modal-cover-play:focus-visible {
  transform: scale(1.04);
  filter: brightness(1.06);
}
.modal-cover-play-disc {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(7, 9, 14, 0.28);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(6px);
}
.modal-cover-play-triangle {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid rgba(255, 248, 238, 0.92);
}
.modal-subtitle { color: var(--dim); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.72rem; }
.modal-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
.modal-title-block {
  min-width: 0;
  flex: 1 1 auto;
}
.modal-version-title {
  margin: -0.35rem 0 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.4;
}
.modal-description {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.64;
}
.modal-lyrics-link {
  flex: 0 0 auto;
  align-self: flex-start;
  min-height: 42px;
  padding: 0 16px;
  margin-top: 0.05rem;
  font-size: 0.69rem;
  text-decoration: none;
  white-space: nowrap;
}
.modal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.modal-box {
  border: 1px solid var(--line);
  padding: 12px 14px;
  background: rgba(255,255,255,0.02);
}
.modal-box strong {
  display: block;
  margin: 0;
  font-size: 0.73rem;
  letter-spacing: 0.04em;
}
.modal-box p {
  margin: 0.38rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}
.modal-detail-panels {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12px;
}
.modal-profile-panel {
  border: 1px solid var(--line);
  padding: 14px;
  background: rgba(255,255,255,0.02);
  display: grid;
  gap: 10px;
}
.modal-profile-panel h3 {
  margin: 0;
  color: var(--dim);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.modal-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.modal-profile-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(231, 223, 209, 0.12);
  background: rgba(255,255,255,0.03);
  color: rgba(231, 223, 209, 0.88);
  font-size: 0.76rem;
  line-height: 1.2;
}
.modal-profile-tag strong {
  color: var(--text);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}
.modal-feel-grid {
  display: grid;
  gap: 8px;
}
.modal-feel-row {
  display: grid;
  gap: 5px;
}
.modal-feel-label-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.2;
}
.modal-feel-label-row strong {
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.modal-feel-track {
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}
.modal-feel-track > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(203, 183, 154, 0.5), rgba(231, 223, 209, 0.92));
}
.modal-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}
.modal-links > .btn {
  flex: 1 1 150px;
  min-width: 0;
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.69rem;
}
.modal-content > .btn[data-open-inquiry] {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.69rem;
}
.inquiry-modal-content {
  gap: 22px;
}
.inquiry-intro {
  margin: -0.4rem 0 0;
  color: var(--muted);
  max-width: 60ch;
}
.inquiry-context {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(203, 183, 154, 0.24);
  background:
    linear-gradient(135deg, rgba(97, 72, 48, 0.16), rgba(10, 10, 13, 0.16)),
    rgba(255,255,255,0.02);
}
.inquiry-context-label {
  margin: 0;
  color: var(--dim);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.inquiry-context-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.inquiry-context strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.05;
}
.inquiry-context p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}
.inquiry-context-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.inquiry-context-meta span {
  border: 1px solid rgba(231, 223, 209, 0.16);
  padding: 8px 12px;
  font-size: 0.74rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.inquiry-form {
  display: grid;
  gap: 18px;
}
.inquiry-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}
.inquiry-field {
  display: grid;
  gap: 8px;
}
.inquiry-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.inquiry-field-full {
  grid-column: 1 / -1;
}
.inquiry-field > span {
  color: var(--dim);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
}
.inquiry-field input,
.inquiry-field select {
  min-height: 52px;
}
.inquiry-field textarea {
  min-height: 132px;
  resize: vertical;
}
.inquiry-field input::placeholder,
.inquiry-field textarea::placeholder {
  color: rgba(231, 223, 209, 0.34);
}
.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus {
  outline: none;
  border-color: rgba(203, 183, 154, 0.64);
  box-shadow: 0 0 0 3px rgba(203, 183, 154, 0.12);
}
.inquiry-form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.inquiry-form-actions > .btn {
  flex: 1 1 220px;
  min-width: 0;
}
.inquiry-form-note {
  margin: 0;
  color: var(--dim);
  font-size: 0.9rem;
  line-height: 1.58;
}
.inquiry-form-note[data-tone="error"] {
  color: #efb2b2;
}
.inquiry-form-note[data-tone="success"] {
  color: #d7cfbf;
}
.version-picker {
  display: grid;
  gap: 8px;
}
.version-picker strong {
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--dim);
}
.version-list {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}
.version-chip {
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  min-height: 38px;
  padding: 0 12px;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  white-space: nowrap;
}
.version-chip.is-active,
.version-chip:hover {
  color: var(--text);
  border-color: rgba(203, 183, 154, 0.55);
}

.reveal-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1440px) {
  .era-card {
    flex-basis: calc((100% - 2px) / 3);
    max-width: calc((100% - 2px) / 3);
  }
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid var(--line-strong);
    background: rgba(8, 10, 14, 0.96);
  }
  .site-nav.open { display: flex; }
  .header-actions {
    gap: 10px;
  }
  .support-badge {
    padding: 6px 11px 6px 9px;
  }
  .hero-panel {
    position: relative;
    grid-template-columns: 1fr;
    min-height: min(92svh, 780px);
  }
  .hero-image-wrap {
    position: absolute;
    inset: 0;
    min-height: 0;
    margin-left: 0;
    width: 100%;
    background:
      radial-gradient(circle at 74% 18%, rgba(116, 146, 192, 0.24), transparent 30%),
      linear-gradient(180deg, rgba(6, 8, 12, 0.08), rgba(6, 8, 12, 0.56) 66%, rgba(6, 8, 12, 0.92) 100%);
  }
  .hero-image-stack {
    inset: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-image {
    object-position: 60% 6%;
    transform: scale(1.08);
    transform-origin: center top;
    filter: contrast(1.08) saturate(0.82) brightness(1.05);
  }
  .hero-image-gradient {
    background:
      linear-gradient(180deg, rgba(7, 9, 14, 0.02) 0%, rgba(7, 9, 14, 0.18) 26%, rgba(7, 9, 14, 0.72) 74%, rgba(7, 9, 14, 0.96) 100%),
      linear-gradient(90deg, rgba(7, 9, 14, 0.5) 0%, rgba(7, 9, 14, 0.1) 42%, rgba(7, 9, 14, 0.36) 100%);
  }
  .hero-copy {
    min-height: min(92svh, 780px);
    justify-content: flex-end;
    background:
      linear-gradient(180deg, rgba(6, 8, 12, 0.01) 0%, rgba(6, 8, 12, 0.12) 18%, rgba(6, 8, 12, 0.64) 58%, rgba(6, 8, 12, 0.96) 100%),
      linear-gradient(180deg, rgba(31, 53, 80, 0.08), transparent 42%);
  }
  .hero-copy::after {
    background: linear-gradient(180deg, transparent 0%, rgba(7, 9, 14, 0.06) 54%, rgba(7, 9, 14, 0.58) 100%);
  }
  .hero-panel,
  .intro-grid,
  .support-block,
  .inquiry-form-grid,
  .song-focus { grid-template-columns: 1fr; }
  .modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .modal-detail-panels {
    grid-template-columns: 1fr;
  }
  .modal-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .inquiry-context-grid {
    flex-direction: column;
  }
  .inquiry-context-meta {
    justify-content: flex-start;
  }
  .song-focus .song-info {
    border: 1px solid rgba(231, 223, 209, 0.1);
  }
  .hero-image-wrap {
    min-height: 58vh;
    margin-left: 0;
    width: 100%;
  }
  .player-drawer {
    right: 16px;
    left: 16px;
    width: auto;
  }
  .player-mode-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "scope scope"
      "versions versions"
      "autoplay shuffle";
  }
  .era-card {
    flex-basis: calc((100% - 1px) / 2);
    max-width: calc((100% - 1px) / 2);
  }
  .songs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-head,
  .section-head,
  .inquiry-box { align-items: start; flex-direction: column; }
  .platform-group-header {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container-xl,
  .container { width: min(94vw, 1500px); }
  .hero-copy { padding: 32px 22px; }
  .intro-block,
  .support-copy,
  .support-goals,
  .modal-content,
  .platform-link,
  .song-card-meta,
  .era-card-content { padding: 16px; }
  .platform-group-header,
  .platform-info-tile {
    padding: 16px;
  }
  .license-card-content {
    padding: 16px;
    min-height: 260px;
  }
  .inquiry-context {
    padding: 16px;
  }
  .modal-cover {
    width: calc(100% + 40px);
    margin: -20px -20px 4px -20px;
    max-height: 144px;
  }
  .modal-grid {
    grid-template-columns: 1fr;
  }
  .player-drawer {
    right: 10px;
    left: 10px;
    bottom: 10px;
  }
  .player-drawer-shell {
    padding: 14px;
  }
  .player-drawer-title {
    font-size: 1.5rem;
  }
  .player-mode-bar {
    grid-template-columns: 1fr;
    grid-template-areas:
      "scope"
      "versions"
      "autoplay"
      "shuffle";
  }
  .player-mode-select {
    grid-column: auto;
  }
  .header-inner {
    gap: 12px;
  }
  .header-actions {
    gap: 8px;
  }
  .support-badge {
    padding: 6px 9px;
  }
  .support-badge-title {
    display: none;
  }
  .section-head,
  .catalog-head { padding: 20px; }
  .hero h1 { font-size: 3.3rem; }
  .hero-statement { font-size: 1.8rem; }
  .hero-statement-sub {
    font-size: 0.5em;
    max-width: 18ch;
  }
  .hero-panel,
  .hero-copy {
    min-height: min(86svh, 720px);
  }
  .hero-image {
    object-position: 30% 12%;
    transform: scale(1.12);
  }
  .intro-grid h2,
  .section-head h2,
  .support-copy h2 { font-size: 2rem; }
  .era-card {
    flex-basis: 100%;
    max-width: 100%;
  }
  .songs-grid { grid-template-columns: 1fr; }
  .modal-dialog { width: 94vw; margin-top: 3vh; }
  .inquiry-form-actions {
    flex-direction: column;
  }
  .site-footer {
    padding: 28px 0 36px;
  }
  .footer-nav {
    justify-content: flex-start;
  }
  .cookie-banner-shell {
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner-actions {
    justify-content: stretch;
  }
  .cookie-banner-actions .btn {
    flex: 1 1 0;
  }
  body.cookie-banner-visible .player-drawer {
    bottom: clamp(220px, 34vh, 300px);
  }
}
