:root {
  --bg: #07070a;
  --ink: #f2f1eb;
  --muted: #92929c;
  --panel: rgba(14, 14, 19, 0.62);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --acid: #d8ff6a;
  --electric: #7fa7ff;
  --coral: #ff8b6a;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 8px;
  --display: "Arial Narrow", "Helvetica Neue", "Segoe UI", sans-serif;
  --sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

::selection {
  background: var(--acid);
  color: #0b0b0b;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

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

.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.aurora {
  position: absolute;
  inset: -18%;
  background:
    linear-gradient(128deg, rgba(7, 8, 12, 0) 0%, rgba(6, 15, 14, 0.55) 32%, rgba(11, 8, 16, 0.2) 60%, rgba(8, 10, 14, 0) 100%);
}

.aurora::before,
.aurora::after {
  content: "";
  position: absolute;
  width: 120vw;
  height: 120vw;
  top: -36vw;
  left: -12vw;
  filter: blur(90px);
  mix-blend-mode: screen;
  opacity: 0.32;
  transform-origin: 50% 50%;
  background: conic-gradient(
    from 40deg,
    rgba(99, 215, 166, 0.2),
    rgba(66, 126, 255, 0.16),
    rgba(255, 147, 100, 0.12),
    rgba(188, 255, 94, 0.15),
    rgba(99, 215, 166, 0.2)
  );
  animation: aurora-drift 24s ease-in-out infinite alternate;
}

.aurora::after {
  top: 22vw;
  left: 34vw;
  width: 110vw;
  height: 110vw;
  opacity: 0.22;
  animation-duration: 31s;
  animation-direction: alternate-reverse;
}

@keyframes aurora-drift {
  0% {
    transform: translate3d(-4%, -2%, 0) rotate(0deg) scale(0.94);
  }
  100% {
    transform: translate3d(7%, 5%, 0) rotate(14deg) scale(1.08);
  }
}

.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1.3px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 18%, black 5%, transparent 72%);
  mask-image: radial-gradient(ellipse at 50% 18%, black 5%, transparent 72%);
  opacity: 0.75;
  animation: dot-pulse 7s ease-in-out infinite alternate;
}

@keyframes dot-pulse {
  0% {
    opacity: 0.55;
    transform: translateY(0);
  }
  100% {
    opacity: 0.9;
    transform: translateY(-14px);
  }
}

.scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.035), transparent);
  mix-blend-mode: screen;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(160px, 280px) 1fr auto;
  align-items: center;
  gap: clamp(20px, 6vw, 80px);
  padding: clamp(20px, 5vw, 80px);
  background: #08080b;
  color: var(--ink);
}

.loader::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(216, 255, 106, 0.28) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(127, 167, 255, 0.2) 50%, transparent 50.2%);
  background-size: 20vw 20vh, 20vw 20vh;
  opacity: 0.32;
  pointer-events: none;
}

.loader__disc {
  position: relative;
  width: min(26vw, 300px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at 50% 50%, #0d0d11 0 3px, #15151c 3px 4px, #0a0a0e 4px 6px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 70px rgba(127, 167, 255, 0.16);
}

.loader__disc-groove {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background:
    radial-gradient(circle, #111116 0 18%, transparent 18.5%),
    conic-gradient(from 0deg, rgba(255, 255, 255, 0.08), transparent, rgba(216, 255, 106, 0.12), transparent, rgba(255, 255, 255, 0.08));
  animation: spin-slow 9s linear infinite;
}

.loader__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.loader__label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
}

.loader__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 9rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.loader__count {
  font-family: var(--mono);
  font-size: clamp(2.6rem, 7vw, 7rem);
  color: var(--acid);
  font-variant-numeric: tabular-nums;
}

.loader.is-done {
  pointer-events: none;
}

.nav-card {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 200;
  width: min(1120px, calc(100vw - 32px));
  transform: translate(-50%, calc(-100% - 28px));
  background: rgba(11, 11, 15, 0.58);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 24px 70px rgba(0, 0, 0, 0.42),
    0 0 36px rgba(127, 167, 255, 0.06);
  transition:
    transform 0.9s var(--ease),
    opacity 0.65s ease,
    height 0.7s var(--ease),
    box-shadow 0.4s ease;
  opacity: 0;
  overflow: hidden;
}

.nav-card.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.nav-card.expanded {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 32px 100px rgba(0, 0, 0, 0.62),
    0 0 56px rgba(216, 255, 106, 0.08);
}

.nav-card__brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 17px;
}

.nav-card__mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--acid), var(--electric), var(--coral), var(--acid));
  box-shadow: 0 0 18px rgba(216, 255, 106, 0.5);
}

.nav-card__links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 30px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-card__links a {
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-card__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}

.nav-card__links a:hover {
  color: var(--ink);
}

.nav-card__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-card__toggle {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px 8px 14px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.3s ease;
}

.nav-card__toggle:hover {
  color: var(--acid);
}

.nav-card__toggle-icon {
  position: relative;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: transform 0.6s var(--ease);
}

.nav-card__toggle-icon i {
  position: absolute;
  width: 12px;
  height: 1px;
  background: currentColor;
  transition: transform 0.6s var(--ease);
}

.nav-card__toggle-icon i:first-child {
  transform: translateY(-3px);
}

.nav-card__toggle-icon i:last-child {
  transform: translateY(3px);
}

.nav-card.expanded .nav-card__toggle-icon {
  transform: rotate(135deg);
}

.nav-card__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.8s var(--ease);
}

.nav-card.expanded .nav-card__panel {
  grid-template-rows: 1fr;
}

.nav-card__panel-inner {
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 66px 0 0;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.nav-panel-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 18px 24px;
  background: rgba(11, 11, 15, 0.74);
  transition: background 0.35s ease, color 0.35s ease;
}

.nav-panel-link:hover {
  background: rgba(216, 255, 106, 0.08);
  color: var(--acid);
}

.nav-panel-link span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

.nav-panel-link strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-panel-link small {
  font-size: 13px;
  color: var(--muted);
}

.nav-card__panel-meta {
  min-height: 0;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  padding: 16px 4px 10px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 4vw;
  padding: 92px clamp(24px, 6vw, 110px) 40px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--acid);
  box-shadow: 0 0 14px rgba(216, 255, 106, 0.6);
}

.hero__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3.6rem, 10vw, 10.5rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.hero__line {
  display: block;
  overflow: hidden;
  padding: 0.05em 0.04em 0.06em 0;
}

.hero__line > span {
  display: inline-block;
  will-change: transform;
}

.hero__line--accent > span {
  color: var(--acid);
  text-shadow: 0 0 40px rgba(216, 255, 106, 0.16);
}

.hero__desc {
  max-width: 430px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__meta span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero__visual {
  position: relative;
  height: min(72svh, 760px);
  display: grid;
  place-items: center;
  perspective: 1000px;
  will-change: transform, opacity;
}

.hero__halo {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(216, 255, 106, 0.09), transparent 55%),
    radial-gradient(circle, rgba(127, 167, 255, 0.08), transparent 72%);
  filter: blur(30px);
  transform: scale(0.8);
}

.hero__record {
  position: relative;
  width: min(46vw, 580px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform-style: preserve-3d;
}

.hero__record-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%, #0c0c10 0 4px, #17171e 4px 5px, #0a0a0e 5px 8px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.13),
    0 30px 90px rgba(0, 0, 0, 0.62),
    0 0 90px rgba(127, 167, 255, 0.11);
}

.hero__record-groove {
  position: absolute;
  inset: 3%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.hero__record-groove::before,
.hero__record-groove::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  inset: 8%;
}

.hero__record-groove::after {
  inset: 17%;
}

.hero__record-art {
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 0 5px rgba(10, 10, 13, 0.7),
    0 0 50px rgba(216, 255, 106, 0.08);
}

.hero__record-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__record-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #0b0b0d;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__tonearm {
  position: absolute;
  top: 6%;
  right: 8%;
  width: 38%;
  height: 76%;
  transform-origin: 18% 9%;
  transform: rotate(-20deg);
  transition: transform 1.4s var(--ease);
}

.hero__tonearm::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 17%;
  height: 17%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #3a3a42, #111115 70%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 10px 24px rgba(0, 0, 0, 0.5);
}

.hero__tonearm::after {
  content: "";
  position: absolute;
  left: 7%;
  top: 7%;
  width: 88%;
  height: 88%;
  border-radius: 50% 50% 8px 8px;
  background:
    linear-gradient(115deg, transparent 0 42%, #1b1b20 42.5% 45%, transparent 45.5%),
    linear-gradient(135deg, #2a2a31, #15151a 74%);
  transform: rotate(12deg);
  clip-path: polygon(0 0, 56% 0, 100% 86%, 100% 100%, 0 100%);
}

.hero__tonearm-head {
  position: absolute;
  left: 79%;
  top: 82%;
  width: 11%;
  height: 19%;
  background: #15151a;
  border-radius: 3px;
  transform: rotate(28deg);
}

.hero.is-playing .hero__tonearm {
  transform: rotate(-4deg);
}

.hero__orbit {
  position: absolute;
  inset: -7%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: spin-slow 34s linear infinite;
}

.hero__orbit span {
  position: absolute;
  top: 5%;
  left: 50%;
  padding: 4px 8px;
  transform: translateX(-50%);
  background: #08080b;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
}

.hero__orbit span:nth-child(2) {
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}

.hero__orbit span:nth-child(3) {
  top: 50%;
  left: auto;
  right: 5%;
  transform: translateY(-50%);
}

.marquee {
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee__inner {
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}

.marquee__inner span {
  font-family: var(--display);
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee__inner i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(216, 255, 106, 0.6);
}

@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

.section-head {
  padding: 0 clamp(24px, 6vw, 110px);
}

.section-head--split {
  padding-top: clamp(110px, 14vw, 180px);
}

.section-head__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
}

.section-index,
.section-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
}

.section-count {
  color: var(--acid);
}

.section-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3.2rem, 8vw, 8.4rem);
  line-height: 0.88;
  text-transform: uppercase;
  overflow: hidden;
}

.section-title [data-char] {
  display: inline-block;
  will-change: transform;
}

.section-title [data-space] {
  display: inline-block;
  width: 0.28em;
}

.section-desc {
  max-width: 460px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.shelf {
  position: relative;
  padding-top: clamp(110px, 15vw, 190px);
  padding-bottom: 40px;
}

.shelf__viewport {
  position: relative;
  height: min(76vh, 820px);
  margin-top: 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.shelf__track {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 48px);
  padding: 0 42vw;
  transform: translateY(-50%);
  perspective: 1200px;
  will-change: transform;
}

.record-card {
  position: relative;
  flex: 0 0 auto;
  width: min(32vh, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  will-change: transform;
  cursor: pointer;
}

.record-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.09),
    0 0 34px rgba(127, 167, 255, 0.08);
  pointer-events: none;
}

.record-card:hover::before {
  box-shadow:
    0 0 0 1px rgba(216, 255, 106, 0.36),
    0 0 44px rgba(216, 255, 106, 0.16);
}

.record-card__disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at 50% 50%, #0c0c10 0 3px, #16161d 3px 4px, #0a0a0e 4px 6px);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.record-card__art {
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 0 4px rgba(8, 8, 11, 0.8),
    0 0 32px rgba(255, 255, 255, 0.04);
}

.record-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.record-card__center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #0b0b0d;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.record-card.is-active {
  z-index: 2;
}

.record-card.is-playing .record-card__disc {
  animation: spin-slow 7s linear infinite;
}

.shelf__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18vw;
  z-index: 4;
  pointer-events: none;
}

.shelf__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.shelf__fade--right {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

.shelf__detail {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  padding: 34px clamp(24px, 6vw, 110px) 0;
}

.shelf__detail-kicker {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--acid);
  text-transform: uppercase;
}

.shelf__detail h3 {
  margin: 8px 0 4px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

.shelf__detail p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.shelf__detail-stats {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.shelf__detail-stats span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}

.shelf__progress {
  grid-column: 1 / -1;
  height: 1px;
  margin-top: 20px;
  background: var(--line);
}

.shelf__progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--acid);
  box-shadow: 0 0 16px rgba(216, 255, 106, 0.45);
  transition: width 0.4s var(--ease);
}

.rotation {
  padding-bottom: 30px;
}

.rotation__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  padding: 50px clamp(24px, 6vw, 110px) 0;
}

.album-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 12, 16, 0.58);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 18px 50px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(127, 167, 255, 0.05);
  overflow: hidden;
  transition: transform 0.7s var(--ease), box-shadow 0.5s ease;
}

.album-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(216, 255, 106, 0.24),
    0 26px 70px rgba(0, 0, 0, 0.48),
    0 0 40px rgba(216, 255, 106, 0.08);
}

.album-card__cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.album-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.album-card:hover .album-card__cover img {
  transform: scale(1.08);
}

.album-card__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 8, 11, 0.68));
  pointer-events: none;
}

.album-card__cover span {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 8, 11, 0.42);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink);
  text-transform: uppercase;
}

.album-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 16px 18px;
}

.album-card__body strong {
  font-size: 15px;
  line-height: 1.25;
}

.album-card__body span {
  color: var(--muted);
  font-size: 12px;
}

.album-card__body em {
  margin-top: 8px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 9px;
  color: var(--acid);
  text-transform: uppercase;
}

.tracks {
  padding-top: 20px;
}

.track-list {
  margin: 46px clamp(24px, 6vw, 110px) 0;
}

.track-group {
  border-top: 1px solid var(--line);
}

.track-group:first-child {
  border-top: 0;
}

.track-group__head {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 22px 8px;
  border: 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background 0.35s ease, color 0.35s ease;
}

.track-group__head:hover {
  background: rgba(255, 255, 255, 0.035);
}

.track-group__head strong {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0;
}

.track-group__index {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
}

.track-group__count {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.track-group__chevron {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: transform 0.65s var(--ease), border-color 0.35s ease, color 0.35s ease;
}

.track-group__chevron svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.6;
}

.track-group.is-open .track-group__chevron {
  transform: rotate(180deg);
  border-color: rgba(216, 255, 106, 0.32);
  color: var(--acid);
}

.track-group__body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.7s var(--ease), opacity 0.45s ease;
}

.track-group.is-open .track-group__body {
  grid-template-rows: 1fr;
  opacity: 1;
}

.track-group__inner {
  min-height: 0;
  overflow: hidden;
}

.track-row {
  position: relative;
  display: grid;
  grid-template-columns: 64px 56px minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 0.9fr) 92px 78px;
  align-items: center;
  gap: 16px;
  padding: 14px 8px;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.track-row:last-child {
  border-bottom: 1px solid var(--line);
}

.track-row:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(216, 255, 106, 0.18);
}

.track-row__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.track-row__cover {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 0 18px rgba(127, 167, 255, 0.08);
}

.track-row__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.track-row:hover .track-row__cover img {
  transform: scale(1.12);
}

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

.track-row__title strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.track-row__title span {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
  font-size: 12px;
}

.track-row__album,
.track-row__genre {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
  font-size: 12px;
}

.track-row__mood {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.track-row__duration {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 8vw;
  align-items: center;
  min-height: 92vh;
  padding: clamp(120px, 16vw, 210px) clamp(24px, 6vw, 110px);
}

.story__visual {
  position: relative;
  height: min(68vh, 720px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 30px 90px rgba(0, 0, 0, 0.46),
    0 0 50px rgba(216, 255, 106, 0.06);
}

.story__visual-inner {
  position: absolute;
  inset: -18% 0;
  will-change: transform;
}

.story__visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
}

.story__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 10, 0.2), transparent 30%, transparent 70%, rgba(7, 7, 10, 0.8));
  pointer-events: none;
}

.story__visual-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink);
  text-transform: uppercase;
}

.story__visual-caption span:first-child {
  color: var(--acid);
}

.story__copy {
  position: relative;
}

.story__copy .section-index {
  display: inline-block;
  margin-bottom: 24px;
}

.story__copy .section-title {
  font-size: clamp(3rem, 7.5vw, 7.5rem);
}

.story__copy > p {
  max-width: 440px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.story__quote {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 40px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.story__quote span {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 44px;
  line-height: 0.8;
}

.story__quote p {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.4;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 42px clamp(24px, 6vw, 110px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

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

.player {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 300;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto minmax(150px, 220px);
  align-items: center;
  gap: 16px;
  width: min(940px, calc(100vw - 24px));
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 11, 15, 0.76);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 26px 80px rgba(0, 0, 0, 0.56),
    0 0 40px rgba(127, 167, 255, 0.07);
  transform: translate(-50%, calc(100% + 30px));
  transition: transform 0.8s var(--ease);
}

.player.is-visible {
  transform: translate(-50%, 0);
}

.player__disc {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 24px rgba(216, 255, 106, 0.12);
}

.player__disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player__disc.is-playing {
  animation: spin-slow 6s linear infinite;
}

.player__meta {
  min-width: 0;
}

.player__meta strong,
.player__meta span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player__meta strong {
  font-size: 13px;
}

.player__meta span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.player__controls {
  display: flex;
  align-items: center;
  gap: 4px;
}

.player__controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--ink);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}

.player__controls button:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--acid);
  transform: scale(1.06);
}

.player__controls button svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.6;
}

.player__controls #playerPlay {
  width: 48px;
  height: 48px;
  background: var(--acid);
  color: #0b0b0b;
  box-shadow: 0 0 30px rgba(216, 255, 106, 0.22);
}

.player__controls #playerPlay:hover {
  background: #e9ff9d;
  color: #0b0b0b;
}

.player__progress {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}

.player__progress input {
  width: 100%;
  height: 3px;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, var(--acid) var(--range, 0%), rgba(255, 255, 255, 0.12) var(--range, 0%));
  border-radius: 999px;
  outline: none;
}

.player__progress input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--acid);
  border: 2px solid #0b0b0b;
  box-shadow: 0 0 18px rgba(216, 255, 106, 0.7);
}

.player__progress input::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--acid);
  border: 2px solid #0b0b0b;
  box-shadow: 0 0 18px rgba(216, 255, 106, 0.7);
}

.player__time {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 130px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero__visual {
    height: 52svh;
  }

  .hero__record {
    width: min(60vw, 480px);
  }

  .nav-card__links {
    display: none;
  }

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

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

  .track-row {
    grid-template-columns: 44px 52px minmax(0, 1.4fr) minmax(0, 1fr) 72px;
  }

  .track-row__album,
  .track-row__genre {
    display: none;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .story__visual {
    height: 58vh;
  }

  .player {
    grid-template-columns: 48px minmax(0, 1fr) auto;
  }

  .player__progress {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .loader {
    grid-template-columns: 110px 1fr;
    grid-template-rows: 1fr auto;
    gap: 18px;
  }

  .loader__disc {
    width: 100%;
    grid-row: 1 / 3;
  }

  .loader__count {
    font-size: 3rem;
  }

  .loader__title {
    font-size: clamp(2.2rem, 11vw, 4rem);
  }

  .nav-card {
    top: 10px;
    width: calc(100vw - 20px);
  }

  .hero {
    min-height: auto;
    padding: 116px 20px 50px;
  }

  .hero__title {
    font-size: clamp(2.75rem, 15vw, 5rem);
  }

  .hero__visual {
    height: 48svh;
  }

  .hero__record {
    width: min(72vw, 380px);
  }

  .hero__orbit {
    display: none;
  }

  .section-head {
    padding: 0 20px;
  }

  .section-title {
    font-size: clamp(2.6rem, 13vw, 5rem);
  }

  .shelf__viewport {
    height: 58vh;
  }

  .record-card {
    width: min(42vh, 280px);
  }

  .shelf__detail {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .shelf__detail-stats {
    justify-content: flex-start;
  }

  .rotation__grid {
    grid-template-columns: 1fr 1fr;
    padding-left: 20px;
    padding-right: 20px;
    gap: 12px;
  }

  .album-card__body {
    padding: 12px;
  }

  .album-card__body strong {
    font-size: 13px;
  }

  .track-list {
    margin-left: 20px;
    margin-right: 20px;
  }

  .track-row {
    grid-template-columns: 34px 48px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px 2px;
  }

  .track-row__cover {
    width: 42px;
    height: 42px;
  }

  .track-row__mood,
  .track-row__duration {
    display: none;
  }

  .story {
    padding: 100px 20px 120px;
  }

  .story__visual {
    height: 48vh;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 20px;
  }

  .player {
    bottom: 10px;
    width: calc(100vw - 20px);
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 8px 10px;
  }

  .player__disc {
    width: 40px;
    height: 40px;
  }

  .player__controls button {
    width: 34px;
    height: 34px;
  }

  .player__controls #playerPlay {
    width: 40px;
    height: 40px;
  }
}

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

  .aurora::before,
  .aurora::after,
  .dot-grid,
  .marquee__inner,
  .loader__disc-groove,
  .hero__orbit,
  .record-card.is-playing .record-card__disc,
  .player__disc.is-playing {
    animation: none;
  }
}
