@import "tailwindcss";

:root {
  --black: #050504;
  --black-soft: #0b0907;
  --surface: #100d09;
  --surface-light: #17120d;
  --gold: #f5b83b;
  --gold-light: #ffe19a;
  --gold-dark: #9b6312;
  --cream: #f5efe3;
  --muted: #a49a8a;
  --line: rgba(255, 224, 157, 0.16);
  --line-strong: rgba(255, 224, 157, 0.3);
  --shell: min(1320px, calc(100vw - 48px));
  --header-height: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(173, 107, 14, 0.09), transparent 32%),
    var(--black);
  color: var(--cream);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

::selection {
  background: var(--gold);
  color: var(--black);
}

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

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

button {
  color: inherit;
}

img {
  max-width: 100%;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(92px, 10vw, 160px) 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.23em;
  line-height: 1.2;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.section-heading {
  max-width: 790px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin: 22px 0 22px;
  font-size: clamp(2.5rem, 5.2vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.section-heading p {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

.section-heading--center p {
  margin-inline: auto;
}

.primary-button,
.ghost-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  cursor: pointer;
  border: 0;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    transform 0.35s var(--ease),
    color 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.primary-button {
  padding: 0 26px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: var(--gold);
  color: #120c04;
  box-shadow: 0 12px 45px rgba(245, 184, 59, 0.16);
}

.primary-button:hover {
  transform: translateY(-3px);
  background: var(--gold-light);
}

.ghost-button {
  padding: 0 23px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.25);
}

.ghost-button:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  color: var(--gold);
}

.text-button {
  min-height: auto;
  padding: 10px 0;
  background: transparent;
  color: var(--cream);
}

.text-button svg {
  transition: transform 0.35s var(--ease);
}

.text-button:hover {
  color: var(--gold);
}

.text-button:hover svg {
  transform: translate(4px, -4px);
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: linear-gradient(to bottom, rgba(4, 3, 2, 0.9), rgba(4, 3, 2, 0.48));
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  width: max-content;
}

.brand-logo img {
  flex: 0 0 auto;
  border-radius: 50%;
  filter: drop-shadow(0 0 15px rgba(245, 184, 59, 0.18));
}

.brand-logo span {
  display: flex;
  align-items: baseline;
  gap: 5px;
  letter-spacing: -0.035em;
}

.brand-logo strong {
  font-size: 1rem;
  font-weight: 900;
}

.brand-logo small {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.brand-logo--compact img {
  width: 52px;
  height: 52px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  padding: 35px 0;
  color: rgba(245, 239, 227, 0.66);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 0.35s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--cream);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 13px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: 0.3s var(--ease);
}

.header-cta:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  font-size: 1.35rem;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 7vw 50px;
  visibility: hidden;
  opacity: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(245, 184, 59, 0.18), transparent 30%),
    #070604;
  transition: 0.45s var(--ease);
}

.mobile-menu.is-open {
  z-index: 79;
  visibility: visible;
  opacity: 1;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(2.2rem, 10vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.mobile-menu nav a span {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.mobile-menu > p {
  margin: 40px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Hero */

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  padding: calc(var(--header-height) + 55px) 0 80px;
  isolation: isolate;
  background: #060503;
}

.hero-background,
.hero-background img,
.hero-noise,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-background {
  z-index: -5;
}

.hero-background img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.08) brightness(0.62);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(4, 3, 2, 0.97) 0%, rgba(4, 3, 2, 0.72) 45%, rgba(4, 3, 2, 0.28) 76%, rgba(4, 3, 2, 0.7) 100%),
    linear-gradient(to top, #050504 0%, transparent 28%);
}

.hero-noise {
  z-index: -3;
  opacity: 0.17;
  mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255, 221, 149, 0.9) 0.45px, transparent 0.45px);
  background-size: 5px 5px;
}

.hero-glow {
  z-index: -2;
  left: auto;
  width: 60vw;
  background: radial-gradient(circle at 55% 48%, rgba(245, 184, 59, 0.22), transparent 45%);
  filter: blur(20px);
}

.hero-orbit {
  position: absolute;
  top: 19%;
  right: 5%;
  z-index: -1;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 184, 59, 0.18);
  border-radius: 50%;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-orbit::before {
  inset: 10%;
  border: 1px dashed rgba(245, 184, 59, 0.16);
}

.hero-orbit::after {
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  box-shadow: 0 0 25px var(--gold);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.65fr);
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 12px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 27px;
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.audio-visualizer {
  display: flex;
  align-items: center;
  gap: 2px;
  width: 62px;
  height: 20px;
}

.audio-visualizer span {
  flex: 1;
  min-width: 1px;
  background: var(--gold);
  transform-origin: center;
  animation: equalize 0.9s ease-in-out infinite alternate;
}

@keyframes equalize {
  0% {
    transform: scaleY(0.28);
    opacity: 0.5;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.7rem, 7.6vw, 8.2rem);
  font-weight: 900;
  letter-spacing: -0.082em;
  line-height: 0.83;
}

.hero-title-mask {
  display: block;
  overflow: hidden;
  padding: 0 0.08em 0.1em 0;
}

.hero-title-line {
  display: block;
}

.hero-title-gold {
  background: linear-gradient(120deg, #fff0bd 0%, #f5b83b 38%, #9b6312 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-summary {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(245, 239, 227, 0.72);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.66;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.hero-art-card {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 13px;
  border: 1px solid rgba(255, 225, 160, 0.26);
  background: rgba(12, 9, 6, 0.58);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 70px rgba(245, 184, 59, 0.1);
  backdrop-filter: blur(8px);
  transform: rotate(1.5deg);
}

.hero-art-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.hero-art-image img {
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.hero-art-card:hover .hero-art-image img {
  transform: scale(1.035);
}

.hero-art-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 5px 3px;
  color: var(--muted);
  font-size: 0.56rem;
  letter-spacing: 0.13em;
}

.hero-art-meta strong {
  color: var(--gold-light);
  font-weight: 800;
}

.scroll-indicator {
  position: absolute;
  bottom: 26px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.scroll-indicator svg {
  color: var(--gold);
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  50% {
    transform: translateY(6px);
  }
}

/* Featured */

.featured-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 45%, rgba(245, 184, 59, 0.09), transparent 28%),
    linear-gradient(180deg, #050504, #090704);
}

.featured-section::after {
  content: "SELAH";
  position: absolute;
  right: -3vw;
  bottom: -3vw;
  color: rgba(255, 255, 255, 0.018);
  font-size: 28vw;
  font-weight: 950;
  letter-spacing: -0.11em;
  line-height: 0.7;
  pointer-events: none;
}

.featured-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 130px);
}

.featured-cover {
  position: relative;
  max-width: 580px;
}

.featured-cover-frame {
  position: relative;
  z-index: 2;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow:
    -20px 35px 80px rgba(0, 0, 0, 0.65),
    0 0 55px rgba(245, 184, 59, 0.08);
}

.featured-cover-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin: 12px;
  pointer-events: none;
}

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

.featured-disc {
  position: absolute;
  top: 8%;
  right: -20%;
  z-index: 1;
  width: 84%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 4px, rgba(255, 255, 255, 0.035) 5px),
    #080706;
  box-shadow: 10px 25px 70px rgba(0, 0, 0, 0.7);
}

.featured-disc div {
  position: absolute;
  inset: 38%;
  border: 9px solid #23180b;
  border-radius: 50%;
  background: var(--gold);
}

.featured-stamp {
  position: absolute;
  bottom: 8%;
  left: -35px;
  z-index: 3;
  padding: 14px 18px;
  transform: rotate(-90deg) translateY(-100%);
  transform-origin: left bottom;
  background: var(--gold);
  color: var(--black);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.featured-copy {
  position: relative;
}

.featured-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 24px 0;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.featured-title-row h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 7rem);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.85;
}

.featured-title-row .audio-visualizer {
  width: 80px;
  height: 38px;
  flex: 0 0 auto;
}

.featured-lead {
  max-width: 690px;
  margin: 0;
  color: rgba(245, 239, 227, 0.75);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.65;
}

.featured-copy blockquote {
  margin: 30px 0;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  font-style: italic;
  line-height: 1.55;
}

.release-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 34px 0;
}

.release-facts div {
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.release-facts dt {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.release-facts dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 750;
}

.featured-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
}

/* Streaming */

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.streaming-link {
  --platform-color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 45px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(245, 239, 227, 0.72);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  transition: 0.3s var(--ease);
}

.streaming-link svg {
  color: var(--platform-color);
  font-size: 1.06rem;
}

.streaming-link:hover {
  transform: translateY(-3px);
  border-color: var(--platform-color);
  color: var(--cream);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.streaming-links.is-compact .streaming-link {
  min-height: 40px;
  padding: 0 11px;
  font-size: 0.6rem;
}

/* Player */

.player-section {
  background:
    linear-gradient(90deg, transparent, rgba(245, 184, 59, 0.035), transparent),
    var(--black-soft);
}

.player-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1fr);
  align-items: end;
  gap: clamp(50px, 8vw, 130px);
}

.player-shell {
  position: relative;
  padding: 14px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(245, 184, 59, 0.12), transparent 30%),
    #0c0a08;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
}

.player-shell iframe {
  display: block;
  border: 0;
  border-radius: 3px;
}

.player-topline {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 4px 2px 15px;
  color: var(--gold);
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.2em;
}

.player-topline p {
  margin: 0;
}

.player-topline span {
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Manifesto */

.manifesto-section {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  isolation: isolate;
}

.manifesto-image,
.manifesto-image img,
.manifesto-overlay {
  position: absolute;
  inset: 0;
}

.manifesto-image {
  z-index: -3;
}

.manifesto-image img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.65) brightness(0.7);
}

.manifesto-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.98) 0%, rgba(5, 5, 4, 0.8) 45%, rgba(5, 5, 4, 0.36) 100%),
    linear-gradient(0deg, var(--black) 0%, transparent 20%, transparent 80%, var(--black-soft) 100%);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 140px minmax(0, 950px);
  align-items: center;
  gap: 70px;
  min-height: 820px;
}

.manifesto-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: var(--gold);
}

.manifesto-counter > span {
  font-size: 3.7rem;
  font-weight: 250;
}

.manifesto-counter i {
  width: 1px;
  height: 140px;
  background: linear-gradient(var(--gold), transparent);
}

.manifesto-counter small {
  writing-mode: vertical-rl;
  font-size: 0.56rem;
  font-style: normal;
  letter-spacing: 0.25em;
}

.manifesto-copy {
  max-width: 910px;
}

.manifesto-copy > p {
  margin: 0 0 26px;
  color: rgba(245, 239, 227, 0.72);
  font-size: clamp(1.55rem, 3vw, 3.1rem);
  font-weight: 350;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.manifesto-copy > p strong {
  color: var(--cream);
  font-weight: 700;
}

.manifesto-final {
  display: flex;
  flex-direction: column;
  margin-top: 54px;
  padding-top: 35px;
  border-top: 1px solid var(--line-strong);
  text-transform: uppercase;
}

.manifesto-final span {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.5rem);
  letter-spacing: 0.06em;
}

.manifesto-final strong {
  margin-top: 8px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

/* Releases */

.releases-section {
  background: #070604;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 65px;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 2.4vw, 38px) clamp(15px, 2vw, 28px);
}

.release-card {
  min-width: 0;
}

.release-cover {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.28);
}

.release-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 48%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 25%);
  opacity: 0.55;
  transition: opacity 0.45s var(--ease);
}

.release-cover img {
  object-fit: cover;
  transition:
    transform 0.85s var(--ease),
    filter 0.85s var(--ease);
}

.release-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  transform: translate(-50%, -40%) scale(0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  opacity: 0;
  background: rgba(6, 5, 3, 0.72);
  backdrop-filter: blur(7px);
  transition: 0.45s var(--ease);
}

.release-play svg {
  margin-left: 3px;
}

.release-index {
  position: absolute;
  right: 13px;
  bottom: 12px;
  z-index: 2;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.5);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.release-cover:hover img {
  transform: scale(1.065);
  filter: brightness(0.76);
}

.release-cover:hover::after {
  opacity: 1;
}

.release-cover:hover .release-play {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.release-card-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 18px 1px 0;
}

.release-card-copy div > span {
  color: var(--gold);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.release-card-copy h3 {
  margin: 6px 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.release-card-copy > a {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: 0.3s var(--ease);
}

.release-card-copy > a:hover {
  transform: rotate(45deg);
  border-color: var(--gold);
  color: var(--gold);
}

/* Process */

.process-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 30%, rgba(245, 184, 59, 0.07), transparent 28%),
    #0a0806;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 75px;
  background: var(--line);
}

.process-line::before {
  content: "";
  position: absolute;
  top: 58px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.35;
}

.process-card {
  position: relative;
  min-height: 315px;
  padding: 38px 26px 30px;
  background: #0d0a07;
  transition:
    background 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.process-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  background: #171108;
}

.process-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 68px;
  place-items: center;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  background: #0d0a07;
  color: var(--gold);
}

.process-card > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 0.65rem;
}

.process-card h3 {
  margin: 12px 0 14px;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Platforms */

.platforms-section {
  background:
    linear-gradient(180deg, #050504 0%, #0a0806 55%, #050504 100%);
}

.platform-cloud {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 70px;
  padding: 1px;
  background: var(--line);
}

.platform-cloud > div {
  position: relative;
  display: flex;
  min-height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  background: #0a0806;
  transition: 0.4s var(--ease);
}

.platform-cloud > div svg {
  font-size: 2rem;
}

.platform-cloud > div span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.platform-cloud > div small {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--muted);
  font-size: 0.45rem;
  letter-spacing: 0.1em;
}

.platform-cloud > div.is-live {
  color: var(--cream);
}

.platform-cloud > div.is-live:hover {
  z-index: 2;
  transform: translateY(-6px);
  background: #171108;
  color: var(--gold);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}

.platform-cloud > div.is-soon {
  color: rgba(245, 239, 227, 0.25);
}

.platforms-cta {
  justify-content: center;
  margin-top: 34px;
}

/* Purpose */

.purpose-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}

.purpose-background,
.purpose-background img,
.purpose-overlay {
  position: absolute;
  inset: 0;
}

.purpose-background {
  z-index: -3;
}

.purpose-background img {
  object-fit: cover;
  filter: saturate(0.8) brightness(0.72);
}

.purpose-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 35% 50%, rgba(245, 184, 59, 0.16), transparent 35%),
    linear-gradient(90deg, rgba(5, 5, 4, 0.96), rgba(5, 5, 4, 0.54), rgba(5, 5, 4, 0.84)),
    linear-gradient(to bottom, #050504 0%, transparent 20%, transparent 80%, #050504 100%);
}

.purpose-copy > span {
  color: var(--gold);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.22em;
}

.purpose-copy h2 {
  max-width: 1100px;
  margin: 28px 0 35px;
  font-size: clamp(3.8rem, 8vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.82;
}

.purpose-copy h2 em {
  color: var(--gold);
  font-family: Georgia, serif;
  font-weight: 400;
}

.purpose-copy > strong {
  display: block;
  width: max-content;
  padding: 14px 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
}

/* Newsletter */

.newsletter-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 184, 59, 0.09), transparent 28%),
    #080604;
}

.newsletter-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
  padding: clamp(38px, 6vw, 82px);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(135deg, rgba(245, 184, 59, 0.07), transparent 32%),
    rgba(10, 8, 6, 0.78);
}

.newsletter-shell h2 {
  margin: 17px 0;
  font-size: clamp(2.25rem, 4.2vw, 4.5rem);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.newsletter-shell > div > p {
  max-width: 550px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 0.7fr 1fr 58px;
  align-items: end;
  gap: 12px;
}

.newsletter-form label,
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.newsletter-form label > span,
.contact-form label > span {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.newsletter-form input,
.contact-form input,
.contact-form select,
.contact-form textarea,
.catalog-search input,
.catalog-filters select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  outline: none;
  background: rgba(0, 0, 0, 0.3);
  color: var(--cream);
  transition: border-color 0.3s;
}

.newsletter-form input {
  height: 58px;
  padding: 0 16px;
}

.newsletter-form input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.catalog-search input:focus,
.catalog-filters select:focus {
  border-color: var(--gold);
}

.newsletter-form button {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  cursor: pointer;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--black);
  font-size: 1.25rem;
  transition: 0.3s var(--ease);
}

.newsletter-form button:hover {
  transform: translateY(-3px);
  background: var(--gold-light);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 25px;
  border: 1px solid rgba(95, 219, 124, 0.35);
  background: rgba(95, 219, 124, 0.07);
}

.form-success > svg {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 50%;
  background: #5fdb7c;
  color: #031407;
}

.form-success div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-success span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Footer */

.site-footer {
  padding: 90px 0 28px;
  border-top: 1px solid var(--line);
  background: #040403;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1.1fr;
  gap: clamp(40px, 7vw, 110px);
}

.footer-brand p {
  max-width: 370px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-label {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.86rem;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.site-footer .streaming-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 70px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: rgba(164, 154, 138, 0.68);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

/* Page hero */

.page-hero {
  position: relative;
  display: flex;
  min-height: 650px;
  overflow: hidden;
  align-items: end;
  padding: calc(var(--header-height) + 90px) 0 95px;
  isolation: isolate;
}

.page-hero-background,
.page-hero-background img,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-background {
  z-index: -3;
}

.page-hero-background img {
  object-fit: cover;
  filter: saturate(0.75) brightness(0.65);
}

.page-hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.97), rgba(5, 5, 4, 0.54) 65%, rgba(5, 5, 4, 0.75)),
    linear-gradient(to top, var(--black) 0%, transparent 35%);
}

.page-hero-copy {
  max-width: 1000px;
}

.page-hero-copy h1 {
  max-width: 980px;
  margin: 22px 0;
  font-size: clamp(3.7rem, 7.5vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.86;
}

.page-hero-copy > p {
  max-width: 710px;
  margin: 0;
  color: rgba(245, 239, 227, 0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}

/* Catalog */

.catalog-section {
  background: #070604;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 18px;
  margin-bottom: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.catalog-search {
  position: relative;
}

.catalog-search > svg {
  position: absolute;
  top: 50%;
  left: 17px;
  transform: translateY(-50%);
  color: var(--gold);
}

.catalog-search input {
  height: 54px;
  padding: 0 18px 0 48px;
}

.catalog-search input::placeholder {
  color: rgba(164, 154, 138, 0.65);
}

.catalog-filters {
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog-filters > svg {
  margin-right: 6px;
  color: var(--gold);
}

.catalog-filters select {
  min-width: 145px;
  height: 54px;
  padding: 0 34px 0 13px;
  cursor: pointer;
}

.catalog-filters option,
.contact-form option {
  background: #0c0a08;
}

.catalog-count {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 45px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-count span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2.2rem;
}

.empty-state {
  padding: 80px 30px;
  border: 1px solid var(--line);
  text-align: center;
}

.empty-state strong {
  font-size: 1.5rem;
}

.empty-state p {
  color: var(--muted);
}

/* About */

.about-intro {
  background: #070604;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 10vw, 150px);
}

.about-intro h2 {
  margin: 20px 0 0;
  font-size: clamp(3rem, 5.7vw, 6.2rem);
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.about-prose p {
  margin: 0 0 25px;
  color: rgba(245, 239, 227, 0.73);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.75;
}

.about-prose p:first-child {
  color: var(--cream);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.5;
}

.about-visual {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: end;
  padding: 90px 0;
}

.about-visual > img,
.about-visual-overlay {
  position: absolute;
  inset: 0;
}

.about-visual > img {
  z-index: -3;
  object-fit: cover;
  filter: saturate(0.68) brightness(0.68);
}

.about-visual-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.93), rgba(5, 5, 4, 0.22)),
    linear-gradient(to top, rgba(5, 5, 4, 0.9), transparent 50%);
}

.about-visual-copy {
  max-width: 900px;
}

.about-visual-copy span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.23em;
}

.about-visual-copy h2 {
  margin: 24px 0 0;
  font-size: clamp(3rem, 6vw, 6.5rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.values-section {
  background: var(--black-soft);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 65px;
  background: var(--line);
}

.values-grid article {
  position: relative;
  min-height: 300px;
  padding: 35px;
  overflow: hidden;
  background: #0b0907;
}

.values-grid article > span {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(245, 184, 59, 0.25);
  font-family: Georgia, serif;
  font-size: 2.3rem;
}

.values-grid article > svg {
  color: var(--gold);
  font-size: 1.6rem;
}

.values-grid h3 {
  margin: 75px 0 14px;
  font-size: 1.35rem;
}

.values-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

/* Contact */

.contact-section {
  background:
    radial-gradient(circle at 10% 30%, rgba(245, 184, 59, 0.07), transparent 30%),
    #070604;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 9vw, 140px);
}

.contact-sidebar {
  position: sticky;
  top: 135px;
  align-self: start;
}

.contact-sidebar h2 {
  margin: 21px 0;
  font-size: clamp(2.5rem, 4.5vw, 4.9rem);
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.contact-sidebar > p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 38px;
}

.contact-channels a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition: 0.3s var(--ease);
}

.contact-channels a:hover {
  transform: translateX(5px);
  border-color: var(--gold);
}

.contact-channels a > svg {
  color: var(--gold);
  font-size: 1.2rem;
}

.contact-channels span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
}

.contact-channels small {
  color: var(--muted);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(135deg, rgba(245, 184, 59, 0.055), transparent 30%),
    #0b0907;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form input,
.contact-form select {
  height: 58px;
  padding: 0 16px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 170px;
  padding: 15px 16px;
}

.contact-form .primary-button {
  align-self: flex-start;
  margin-top: 6px;
}

.contact-success {
  display: flex;
  min-height: 510px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(30px, 7vw, 80px);
  border: 1px solid var(--line-strong);
  background: #0b0907;
}

.contact-success > svg {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  padding: 14px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
}

.contact-success h2 {
  margin: 20px 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.contact-success p {
  max-width: 600px;
  color: var(--muted);
  line-height: 1.7;
}

/* Release detail */

.release-detail-hero {
  position: relative;
  min-height: 870px;
  overflow: hidden;
  padding: calc(var(--header-height) + 75px) 0 100px;
  isolation: isolate;
  display: flex;
  align-items: center;
}

.release-detail-background,
.release-detail-background img,
.release-detail-overlay {
  position: absolute;
  inset: 0;
}

.release-detail-background {
  z-index: -4;
}

.release-detail-background img {
  object-fit: cover;
  filter: blur(34px) saturate(0.7) brightness(0.42);
  transform: scale(1.15);
}

.release-detail-overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.88), rgba(5, 5, 4, 0.58)),
    linear-gradient(to top, var(--black), transparent 35%);
}

.release-detail-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.8fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 125px);
}

.release-detail-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.52);
}

.release-detail-cover img {
  object-fit: cover;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 55px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.release-detail-copy h1 {
  margin: 23px 0 27px;
  font-size: clamp(3.7rem, 7.2vw, 8.2rem);
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.82;
}

.release-detail-copy > p {
  max-width: 700px;
  margin: 0;
  color: rgba(245, 239, 227, 0.75);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.68;
}

.release-detail-meta {
  display: flex;
  gap: 60px;
  margin: 35px 0;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.release-detail-meta span {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-weight: 700;
}

.release-detail-meta small {
  color: var(--muted);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
}

.release-detail-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.release-message-section {
  background: #080604;
}

.release-message-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(450px, 1.2fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.release-message-grid blockquote {
  margin: 25px 0 0;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.15;
}

.related-section {
  border-top: 1px solid var(--line);
  background: #070604;
}

.related-section .section-heading {
  margin-bottom: 60px;
}

/* Legal + 404 */

.legal-section {
  background: #070604;
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h2 {
  margin: 50px 0 15px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.not-found {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  padding: 130px 24px 80px;
  isolation: isolate;
}

.not-found > img,
.not-found-overlay {
  position: absolute;
  inset: 0;
}

.not-found > img {
  z-index: -3;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.5);
}

.not-found-overlay {
  z-index: -2;
  background: radial-gradient(circle at center, rgba(5, 5, 4, 0.32), rgba(5, 5, 4, 0.95));
}

.not-found-copy {
  max-width: 800px;
  text-align: center;
}

.not-found-copy > svg {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 2rem;
}

.not-found-copy > span {
  display: block;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.2em;
}

.not-found-copy h1 {
  margin: 25px 0;
  font-size: clamp(3.4rem, 7vw, 7.4rem);
  letter-spacing: -0.08em;
  line-height: 0.86;
}

.not-found-copy p {
  max-width: 610px;
  margin: 0 auto 35px;
  color: var(--muted);
  line-height: 1.7;
}

/* Bio */

.bio-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #050504;
}

.bio-background,
.bio-background img,
.bio-overlay {
  position: fixed;
  inset: 0;
}

.bio-background {
  z-index: -4;
}

.bio-background img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.7) brightness(0.38) blur(2px);
  transform: scale(1.03);
}

.bio-overlay {
  z-index: -3;
  background:
    radial-gradient(circle at 50% 10%, rgba(245, 184, 59, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(5, 5, 4, 0.53), rgba(5, 5, 4, 0.95) 65%, #050504);
}

.bio-shell {
  width: min(100%, 680px);
  margin: 0 auto;
  padding: 20px 20px 55px;
}

.bio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bio-site-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  font-size: 0.54rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  backdrop-filter: blur(10px);
}

.bio-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 10px 28px;
  text-align: center;
}

.bio-logo {
  position: relative;
  display: grid;
  width: 178px;
  height: 178px;
  margin-bottom: 23px;
  place-items: center;
  border: 1px solid rgba(245, 184, 59, 0.35);
  border-radius: 50%;
  background: rgba(5, 5, 4, 0.72);
  box-shadow:
    0 0 0 9px rgba(245, 184, 59, 0.035),
    0 0 80px rgba(245, 184, 59, 0.16);
}

.bio-logo img {
  border-radius: 50%;
}

.bio-intro h1 {
  margin: 16px 0 14px;
  font-size: clamp(2.55rem, 9vw, 4.7rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.bio-intro p {
  max-width: 490px;
  margin: 0;
  color: rgba(245, 239, 227, 0.7);
  line-height: 1.6;
}

.bio-featured {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 13px;
  padding: 11px 15px 11px 11px;
  border: 1px solid rgba(245, 184, 59, 0.4);
  border-radius: 13px;
  background:
    linear-gradient(100deg, rgba(245, 184, 59, 0.12), transparent 50%),
    rgba(9, 7, 5, 0.82);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.bio-featured-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}

.bio-featured-cover img {
  object-fit: cover;
}

.bio-featured-cover a {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.35);
}

.bio-featured-cover a svg {
  width: 34px;
  height: 34px;
  padding: 9px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
}

.bio-featured > div:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.bio-featured > div:nth-child(2) span {
  color: var(--gold);
  font-size: 0.48rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.bio-featured > div:nth-child(2) strong {
  overflow: hidden;
  font-size: 1.05rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bio-featured > div:nth-child(2) small {
  color: var(--muted);
  font-size: 0.67rem;
}

.bio-featured > a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.bio-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.bio-links > a {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 11px;
  min-height: 62px;
  padding: 0 19px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: rgba(8, 7, 5, 0.78);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(13px);
  transition: 0.3s var(--ease);
}

.bio-links > a.is-primary {
  border-color: var(--gold);
  background:
    linear-gradient(100deg, rgba(245, 184, 59, 0.17), transparent),
    rgba(8, 7, 5, 0.88);
}

.bio-links > a:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.bio-links > a > svg:first-child {
  color: var(--gold);
  font-size: 1.25rem;
}

.bio-links > a span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.bio-links > a > svg:last-child {
  color: var(--muted);
}

.platform-sheet-trigger {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  margin-top: 11px;
  padding: 0 19px;
  cursor: pointer;
  border: 1px dashed rgba(245, 184, 59, 0.45);
  border-radius: 11px;
  background: rgba(245, 184, 59, 0.06);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.platform-sheet-trigger span {
  color: var(--muted);
  font-size: 0.57rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bio-latest {
  margin-top: 38px;
}

.bio-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.bio-section-title span {
  color: var(--gold);
}

.bio-section-title a {
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.bio-release-row {
  display: grid;
  grid-auto-columns: 118px;
  grid-auto-flow: column;
  gap: 11px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.bio-release-row::-webkit-scrollbar {
  display: none;
}

.bio-release-row a {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bio-release-row img {
  width: 118px;
  height: 118px;
  border-radius: 8px;
  object-fit: cover;
}

.bio-release-row span {
  overflow: hidden;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bio-footer {
  padding: 45px 0 0;
  text-align: center;
}

.bio-footer p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.62rem;
}

.bio-footer strong {
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  transition: 0.35s;
}

.platform-sheet-backdrop.is-open {
  visibility: visible;
  opacity: 1;
}

.platform-sheet {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 111;
  width: min(100%, 680px);
  max-height: 82svh;
  margin: auto;
  padding: 27px 22px 35px;
  overflow-y: auto;
  transform: translateY(105%);
  border: 1px solid var(--line-strong);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background: #0b0907;
  box-shadow: 0 -30px 80px rgba(0, 0, 0, 0.6);
  transition: 0.5s var(--ease);
}

.platform-sheet.is-open {
  transform: translateY(0);
}

.platform-sheet-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.platform-sheet-header h2 {
  margin: 12px 0 0;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.platform-sheet-header button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  font-size: 1.2rem;
}

.platform-sheet-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.platform-sheet-list a {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.72rem;
  font-weight: 750;
}

.platform-sheet-list a > svg:first-child {
  color: var(--gold);
}

/* Responsive */

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 38px, 1050px);
  }

  .desktop-nav {
    gap: 22px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.62fr);
    gap: 45px;
  }

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

  .process-line {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-line::before {
    display: none;
  }

  .platform-cloud {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsletter-shell {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .brand-logo img {
    width: 54px;
    height: 54px;
  }

  .hero {
    align-items: flex-start;
    min-height: auto;
    padding-top: 135px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(4, 3, 2, 0.94), rgba(4, 3, 2, 0.58)),
      linear-gradient(to top, #050504 0%, transparent 45%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-art-card {
    width: min(76vw, 520px);
    margin: 20px 0 40px auto;
  }

  .hero-orbit {
    top: 42%;
    right: -20%;
    width: 88vw;
  }

  .scroll-indicator {
    display: none;
  }

  .featured-grid,
  .player-grid,
  .about-intro-grid,
  .contact-grid,
  .release-detail-grid,
  .release-message-grid {
    grid-template-columns: 1fr;
  }

  .featured-cover {
    width: min(80vw, 570px);
  }

  .player-grid {
    gap: 45px;
  }

  .manifesto-grid {
    grid-template-columns: 70px 1fr;
    gap: 30px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-sidebar {
    position: relative;
    top: auto;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .catalog-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .catalog-filters > svg {
    display: none;
  }

  .catalog-filters select {
    min-width: 0;
  }

  .release-detail-hero {
    padding-top: calc(var(--header-height) + 55px);
  }

  .release-detail-cover {
    width: min(82vw, 580px);
  }

  .back-link {
    margin-bottom: 30px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2 {
    font-size: clamp(2.55rem, 13vw, 4.3rem);
  }

  .brand-logo span {
    display: none;
  }

  .hero {
    padding: 118px 0 55px;
  }

  .hero-background img {
    object-position: 56% center;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.8rem);
    line-height: 0.84;
  }

  .hero-kicker {
    gap: 10px;
    font-size: 0.52rem;
    letter-spacing: 0.14em;
  }

  .hero-kicker .audio-visualizer {
    width: 44px;
  }

  .hero-summary {
    font-size: 1rem;
  }

  .hero-actions,
  .featured-actions,
  .release-detail-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
  }

  .hero-actions .text-button,
  .featured-actions .text-button {
    justify-content: flex-start;
    padding-left: 4px;
  }

  .hero-art-card {
    width: 88vw;
    margin-top: 15px;
  }

  .hero-art-meta {
    flex-direction: column;
    gap: 5px;
  }

  .featured-cover {
    width: 92%;
  }

  .featured-disc {
    right: -13%;
  }

  .featured-stamp {
    left: -17px;
  }

  .featured-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-title-row h2 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .release-facts {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .streaming-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .streaming-link {
    justify-content: flex-start;
  }

  .player-shell {
    padding: 9px;
  }

  .player-shell iframe {
    height: 352px;
  }

  .manifesto-section,
  .manifesto-grid {
    min-height: 720px;
  }

  .manifesto-image img {
    object-position: 65% center;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    padding: 80px 0;
  }

  .manifesto-counter {
    display: none;
  }

  .manifesto-copy > p {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .manifesto-final strong {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 45px;
  }

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

  .release-card-copy {
    align-items: flex-start;
  }

  .release-card-copy h3 {
    font-size: 0.98rem;
  }

  .release-card-copy > a {
    display: none;
  }

  .release-play {
    width: 50px;
    height: 50px;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: auto;
    padding: 28px;
  }

  .process-icon {
    margin-bottom: 30px;
  }

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

  .platform-cloud > div {
    min-height: 120px;
  }

  .platform-cloud > div svg {
    font-size: 1.5rem;
  }

  .purpose-section {
    min-height: 640px;
  }

  .purpose-copy h2 {
    font-size: clamp(3.5rem, 16vw, 5.8rem);
  }

  .newsletter-shell {
    padding: 28px 22px;
  }

  .newsletter-form {
    grid-template-columns: 1fr 58px;
  }

  .newsletter-form label:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    display: grid;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    min-height: 560px;
    padding-bottom: 70px;
  }

  .page-hero-copy h1 {
    font-size: clamp(3.4rem, 16vw, 5.5rem);
  }

  .catalog-filters {
    grid-template-columns: 1fr;
  }

  .catalog-count {
    margin-bottom: 30px;
  }

  .about-visual {
    min-height: 590px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-grid article {
    min-height: 250px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .release-detail-hero {
    padding-bottom: 75px;
  }

  .release-detail-cover {
    width: 100%;
  }

  .release-detail-copy h1 {
    font-size: clamp(3.6rem, 17vw, 6rem);
  }

  .release-detail-meta {
    flex-direction: column;
    gap: 18px;
  }

  .release-message-grid blockquote {
    font-size: clamp(2rem, 9vw, 3.6rem);
  }

  .bio-shell {
    padding-inline: 13px;
  }

  .bio-header {
    padding-inline: 4px;
  }

  .bio-intro {
    padding-top: 22px;
  }

  .bio-logo {
    width: 148px;
    height: 148px;
  }

  .bio-logo img {
    width: 150px;
    height: 150px;
  }

  .bio-intro h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .bio-featured {
    grid-template-columns: 76px 1fr auto;
  }

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

@media (max-width: 390px) {
  .release-grid {
    grid-template-columns: 1fr;
  }

  .release-cover {
    width: 100%;
  }

  .streaming-links {
    grid-template-columns: 1fr;
  }

  .bio-featured {
    grid-template-columns: 68px 1fr auto;
    gap: 11px;
  }

  .bio-featured > div:nth-child(2) strong {
    font-size: 0.9rem;
  }
}

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