:root {
  --bg: #07020d;
  --bg-soft: #12051e;
  --panel: rgba(22, 8, 32, 0.72);
  --panel-strong: rgba(11, 3, 18, 0.88);
  --line: rgba(255, 255, 255, 0.13);
  --line-hot: rgba(255, 69, 148, 0.35);
  --text: #fff7ff;
  --muted: #cbb8d5;
  --muted-2: #a58db6;
  --hot: #ff3d8e;
  --violet: #9f5cff;
  --rose: #ff6b87;
  --gold: #ffbf75;
  --wave-active: #fff2ff;
  --wave-rest: rgba(255, 255, 255, 0.18);
  --wave-glow: rgba(255, 61, 142, 0.72);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 61, 142, 0.22), transparent 32rem),
    radial-gradient(circle at 86% 12%, rgba(159, 92, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 52% 100%, rgba(255, 108, 135, 0.16), transparent 34rem),
    linear-gradient(180deg, #05010a 0%, #10051b 46%, #050109 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.38) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(255, 61, 142, 0.28) 0 1px, transparent 1.8px);
  background-size: 112px 112px, 178px 178px;
  background-position: 0 0, 44px 82px;
  opacity: 0.34;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

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

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

code {
  padding: 0.12rem 0.36rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.45rem;
  color: #ffe6f2;
  background: rgba(255, 255, 255, 0.06);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.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: 0.75rem;
  left: 0.75rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--text);
  color: #14051f;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(4, 1, 9, 0.88), rgba(4, 1, 9, 0.42));
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: background 200ms ease, box-shadow 200ms ease;
}

.site-nav.is-scrolled {
  background: rgba(6, 1, 11, 0.88);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.32);
}

.nav-inner {
  width: min(100% - 2rem, 1320px);
  height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: clamp(154px, 18vw, 236px);
  height: 58px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 18px rgba(255, 61, 142, 0.34));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1.6vw, 1rem);
}

.nav-links a {
  position: relative;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  color: rgba(255, 247, 255, 0.82);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 170ms ease, background 170ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links .nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(255, 61, 142, 0.18), rgba(159, 92, 255, 0.18));
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.brand-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #06010a;
  box-shadow: inset 0 -90px 90px rgba(5, 1, 9, 0.95);
}

.brand-hero picture {
  display: block;
  width: 100%;
  height: clamp(520px, 43vw, 860px);
}

.hero-image {
  width: 100%;
  height: clamp(520px, 43vw, 860px);
}

.hero-image {
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.06) contrast(1.02);
}

.hero-fade {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(7, 2, 13, 0.78) 64%, var(--bg));
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  width: 44px;
  height: 64px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 2, 13, 0.36);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 16px rgba(255, 61, 142, 0.9);
  transform: translateX(-50%);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { transform: translate(-50%, 0); opacity: 0.3; }
  45% { opacity: 1; }
  100% { transform: translate(-50%, 28px); opacity: 0.2; }
}

.section {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 30%, rgba(255, 61, 142, 0.12), transparent 22rem),
    radial-gradient(circle at 90% 20%, rgba(159, 92, 255, 0.12), transparent 24rem);
  opacity: 0.85;
}

.intro-section {
  padding-top: clamp(3rem, 6vw, 6rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #ffc0d9;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h2, h3, p { margin-top: 0; }

h2 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.5vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
}

.intro-copy p {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  color: rgba(255, 247, 255, 0.82);
}

.hero-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
}

.button.primary {
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(255, 61, 142, 0.96), rgba(159, 92, 255, 0.96));
  box-shadow: 0 12px 42px rgba(255, 61, 142, 0.22);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-heading.compact {
  max-width: 860px;
}

.section-heading p:last-child {
  max-width: 660px;
}

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

.feature-card,
.video-note,
.follow-card,
.legal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 310px;
  padding: clamp(1.3rem, 2.5vw, 2rem);
}

.feature-card::after,
.follow-card::after,
.video-note::after,
.legal-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 61, 142, 0.18), transparent 18rem),
    radial-gradient(circle at 90% 20%, rgba(159, 92, 255, 0.14), transparent 14rem);
  opacity: 0.9;
}

.feature-card > *,
.video-note > *,
.follow-card > *,
.legal-card > * {
  position: relative;
  z-index: 1;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 3.8rem;
  border-radius: 50%;
  color: #ffe1ef;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 26px rgba(255, 61, 142, 0.18);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.card-glow {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 61, 142, 0.38), transparent 26%, rgba(159, 92, 255, 0.32) 74%, transparent);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}

.releases-section {
  padding-top: clamp(3rem, 6vw, 6rem);
}

.release-layout,
.about-grid,
.video-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
}

.release-cover {
  aspect-ratio: 1;
  transform: rotate(-1.2deg);
}

.release-cover img,
.about-image img,
.video-frame img,
.video-frame video,
.video-frame iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-copy p,
.about-copy p,
.video-note p {
  color: rgba(255, 247, 255, 0.76);
}

.release-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.release-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.release-item:hover {
  transform: translateX(4px);
  border-color: var(--line-hot);
  background: rgba(255, 61, 142, 0.075);
}

.release-item span {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--muted-2);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-item h3 {
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.65rem);
}

.release-item a {
  flex: 0 0 auto;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #ffe5ef;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.player-section {
  padding-top: clamp(3.5rem, 7vw, 7rem);
}

.player-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.18fr) minmax(280px, 0.82fr);
  min-height: 520px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 61, 142, 0.22), transparent 22rem),
    radial-gradient(circle at 62% 12%, rgba(159, 92, 255, 0.18), transparent 26rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(9, 2, 16, 0.9);
}

.player-art {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.player-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.player-art__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 38%, rgba(8, 2, 14, 0.72)),
    linear-gradient(180deg, rgba(255, 61, 142, 0.12), rgba(5, 1, 9, 0.78));
}

.player-badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.56rem 0.76rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 2, 14, 0.52);
  color: rgba(255, 247, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.player-badge::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 18px rgba(255, 61, 142, 0.9);
}

.player-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.35rem, 3vw, 2.8rem);
}

.now-playing h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(2rem, 4vw, 4.1rem);
  letter-spacing: -0.055em;
}

.now-playing span {
  display: block;
  color: rgba(255, 247, 255, 0.68);
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waveform-panel {
  position: relative;
  min-height: 154px;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 61, 142, 0.13), transparent 18rem),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 42px rgba(255, 61, 142, 0.065);
  overflow: hidden;
}

.waveform-panel::before {
  content: "";
  position: absolute;
  inset: 50% 1.2rem auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

#waveform {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 154px;
}

.waveform-hitarea {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.time-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 247, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: clamp(1.15rem, 2.4vw, 2rem);
}

.control-button {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  cursor: pointer;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.control-button:hover,
.control-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 61, 142, 0.12);
}

.control-button > span:not(.play-icon) {
  font-size: 1.7rem;
  line-height: 1;
  transform: translateY(-1px);
}

.control-button--play {
  width: 64px;
  height: 64px;
  border-color: transparent;
  background: linear-gradient(135deg, rgba(255, 61, 142, 0.96), rgba(159, 92, 255, 0.96));
  box-shadow: 0 12px 44px rgba(255, 61, 142, 0.32);
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 0.22rem;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
}

.player-shell.is-playing .play-icon {
  width: 17px;
  height: 21px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, #fff 0 35%, transparent 35% 65%, #fff 65% 100%);
}

.playlist-panel {
  position: relative;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}

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

.playlist-heading .eyebrow {
  margin: 0;
}

.playlist-heading span {
  color: rgba(255, 247, 255, 0.54);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.track-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.track-button {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.track-button:hover,
.track-button:focus-visible,
.track-button.is-active {
  transform: translateX(3px);
  border-color: rgba(255, 61, 142, 0.42);
  background: rgba(255, 61, 142, 0.095);
}

.track-button.is-active {
  box-shadow: inset 0 0 28px rgba(255, 61, 142, 0.08);
}

.track-index {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 247, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.track-meta {
  min-width: 0;
}

.track-meta strong,
.track-meta span {
  display: block;
}

.track-meta strong {
  overflow: hidden;
  color: rgba(255, 247, 255, 0.95);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-meta span {
  color: rgba(255, 247, 255, 0.52);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.track-status {
  color: #ffd3e6;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.player-note {
  margin: 1.2rem 0 0;
  color: rgba(255, 247, 255, 0.58);
  font-size: 0.86rem;
  line-height: 1.55;
}

.player-note code {
  font-size: 0.78rem;
}

.video-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: stretch;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #08020e;
}

.youtube-consent,
.video-poster {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.youtube-consent::after,
.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 1, 12, 0.88), rgba(6, 1, 12, 0.24));
}

.youtube-consent__copy,
.video-poster__copy {
  position: absolute;
  left: clamp(1.2rem, 4vw, 3rem);
  bottom: clamp(1.2rem, 4vw, 3rem);
  z-index: 2;
  max-width: 420px;
}

.youtube-consent__copy p,
.video-poster__copy p { color: rgba(255, 247, 255, 0.78); }

.play-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(66px, 8vw, 104px);
  height: clamp(66px, 8vw, 104px);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 61, 142, 0.18));
  box-shadow: 0 0 52px rgba(255, 61, 142, 0.35);
}

.play-orb::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid #fff;
}

.video-note {
  padding: clamp(1.3rem, 2.6vw, 2rem);
}

.video-note h3 { margin-bottom: 1rem; }

.video-note .button { margin-top: 0.8rem; }

.about-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.about-image {
  min-height: 430px;
}

.about-image img {
  object-position: center;
}

.follow-section {
  padding-top: clamp(3rem, 6vw, 6rem);
}

.follow-card {
  padding: clamp(2rem, 6vw, 5rem);
  text-align: center;
}

.follow-logo {
  width: min(680px, 94%);
  margin: -2rem auto 0.2rem;
  filter: drop-shadow(0 0 28px rgba(255, 61, 142, 0.28));
}

.follow-card h2 {
  margin-inline: auto;
}

.follow-card p {
  max-width: 660px;
  margin-inline: auto;
}

.social-links {
  justify-content: center;
}

.social-links a {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 61, 142, 0.13);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(3, 1, 7, 0.62);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  color: rgba(255, 247, 255, 0.62);
  font-size: 0.9rem;
}

.footer-inner p { margin: 0; font-size: inherit; color: inherit; }

.footer-inner div {
  display: flex;
  gap: 1rem;
}

.footer-inner a {
  color: rgba(255, 247, 255, 0.7);
}

.footer-inner a:hover,
.footer-inner a:focus-visible { color: #fff; }

.legal-page {
  padding-top: 8rem;
  min-height: 100vh;
}

.legal-card {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.legal-card h1 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.legal-card h2 {
  margin-top: 2.2rem;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.legal-card p,
.legal-card li {
  color: rgba(255, 247, 255, 0.78);
}

.legal-card a {
  color: #ffd2e5;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 920px) {
  .feature-grid,
  .intro-grid,
  .release-layout,
  .about-grid,
  .video-layout,
  .player-shell {
    grid-template-columns: 1fr;
  }

  .playlist-panel {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .player-art {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .player-art__veil {
    background: linear-gradient(180deg, transparent, rgba(8, 2, 14, 0.74));
  }

  .feature-card {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 2rem;
  }

  .release-cover {
    max-width: 620px;
    margin-inline: auto;
  }

  .about-image {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  .nav-inner { height: 68px; }

  .brand img {
    width: 168px;
    height: 50px;
  }

  .nav-toggle { display: inline-block; }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.25rem;
    padding: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(8, 2, 14, 0.94);
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.menu-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.85rem 1rem;
  }

  .brand-hero picture,
  .hero-image {
    height: min(92svh, 820px);
  }

  .hero-image {
    object-position: center top;
  }

  .scroll-cue { display: none; }

  .section { padding: 4rem 0; }

  h2 { letter-spacing: -0.04em; }

  .video-frame { aspect-ratio: 4 / 5; }

  .youtube-consent::after,
  .video-poster::after {
    background: linear-gradient(180deg, rgba(6, 1, 12, 0.14), rgba(6, 1, 12, 0.9));
  }

  .youtube-consent__copy,
  .video-poster__copy {
    right: 1.2rem;
  }

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

@media (max-width: 460px) {
  .container { width: min(100% - 1.2rem, var(--max)); }
  .brand img { width: 146px; }
  .button { width: 100%; }
  .hero-actions, .social-links { width: 100%; }
  .social-links a { width: 100%; text-align: center; }
  .release-item { align-items: flex-start; flex-direction: column; }
  .player-controls { justify-content: center; }
  .track-button { grid-template-columns: auto 1fr; }
  .track-status { display: none; }
  .waveform-panel, #waveform { height: 126px; min-height: 126px; }
}

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