@font-face {
  font-family: "Archivo Black";
  src: url("/fonts/archivo-black.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #050505;
  --ink-soft: #0c0c0c;
  --paper: #f1efe9;
  --muted: #9b9992;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --spotify: #1ed760;
  --youtube: #ff173f;
  --apple-a: #fa426f;
  --apple-b: #8d4cff;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --pointer-x: 50%;
  --pointer-y: 28%;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a,
button {
  touch-action: manipulation;
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--paper);
  color: var(--ink);
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #fff, var(--spotify));
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.6);
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 11px;
  color: var(--paper);
  text-decoration: none;
}

.brand-mark span {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 19px;
  letter-spacing: -0.04em;
}

.brand-mark small {
  color: #85837d;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.24em;
}

.floating-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px clamp(20px, 4vw, 52px);
}

.floating-header > a:last-child {
  color: #aaa8a1;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: color 180ms ease;
}

.floating-header > a:last-child:hover {
  color: #fff;
}

/* Catalog hub */

.hub-body {
  min-height: 100svh;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.055), transparent 26rem),
    var(--ink);
}

.hub-atmosphere {
  position: fixed;
  z-index: 0;
  inset: -12vh -10vw;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.17;
}

.hub-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), var(--ink) 78%),
    radial-gradient(circle at 50% 28%, transparent, var(--ink) 72%);
}

.hub-ambient-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(70px) saturate(1.35) contrast(1.15);
  transform: scale(1.16);
  transition: opacity 300ms ease, filter 600ms ease;
}

.hub-page {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1240px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 0 0 34px;
}

.hub-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.hub-header nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
}

.hub-header nav a {
  position: relative;
  padding: 8px 0;
  color: #96948e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: color 180ms ease;
}

.hub-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 280ms var(--ease-out);
}

.hub-header nav a:hover {
  color: #fff;
}

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

.hub-hero {
  position: relative;
  min-height: min(790px, calc(100svh - 82px));
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(390px, 1.15fr);
  align-items: center;
  gap: clamp(46px, 7vw, 100px);
  padding: clamp(56px, 8vh, 96px) clamp(0px, 2vw, 26px) 100px;
}

.hub-hero-art {
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.hub-hero-art::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% -8% -9% 7%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  filter: blur(56px);
}

.hub-hero-art img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.7);
  transform: rotate(-2deg);
  transition: transform 550ms var(--ease-out), box-shadow 550ms var(--ease-out);
}

.hub-hero-art:hover img {
  box-shadow: 0 50px 130px rgba(0, 0, 0, 0.82);
}

.hub-hero-art > span {
  position: absolute;
  right: -18px;
  bottom: 22px;
  padding: 10px 13px 9px;
  transform: rotate(-2deg);
  background: var(--paper);
  color: var(--ink);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 9px;
  letter-spacing: 0.13em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.hub-hero-copy {
  align-self: center;
}

.hero-kicker {
  margin: 0 0 21px;
  color: #b9b7b0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero-kicker span {
  display: inline-block;
  margin-right: 7px;
  color: var(--spotify);
  font-size: 10px;
  filter: drop-shadow(0 0 7px rgba(30, 215, 96, 0.75));
  animation: live-pulse 2.2s ease-in-out infinite;
}

.hub-hero h1 {
  max-width: 8ch;
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(72px, 10vw, 142px);
  line-height: 0.77;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.hero-artist {
  margin: 23px 0 0;
  color: #d1cfc8;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.32em;
}

.hero-intro {
  max-width: 420px;
  margin: 33px 0 0;
  color: #aaa8a1;
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.65;
}

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

.hero-primary,
.hero-secondary {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px;
  border: 1px solid transparent;
  color: var(--ink);
  background: var(--paper);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: transform 240ms var(--ease-out), background 180ms ease, color 180ms ease;
}

.hero-primary:hover,
.hero-secondary:hover {
  transform: translateY(-4px);
}

.hero-secondary {
  justify-content: center;
  border-color: var(--line-strong);
  color: #c4c2bb;
  background: rgba(255, 255, 255, 0.04);
}

.hero-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.scroll-cue {
  position: absolute;
  right: 0;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #77756f;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-decoration: none;
}

.scroll-cue span:last-child {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #d0cec7;
}

.catalog-ticker {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.022);
}

.catalog-ticker > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 13px 0;
  color: #72706a;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 10px;
  letter-spacing: 0.09em;
  animation: ticker 70s linear infinite;
}

.catalog-ticker i {
  color: #44433f;
  font-style: normal;
}

.hub-releases {
  scroll-margin-top: 30px;
  padding: clamp(78px, 10vw, 130px) 0 clamp(60px, 9vw, 112px);
}

.hub-releases + .hub-releases {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.hub-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.hub-section-heading p {
  margin: 0 0 9px;
  color: #7a7872;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.25em;
}

.hub-section-heading h2 {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(39px, 6.4vw, 76px);
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.hub-section-heading > span {
  color: #575650;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(28px, 5vw, 58px);
  letter-spacing: -0.05em;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 25px);
}

.release-card-tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.27);
  transition: transform 460ms var(--ease-out), border-color 300ms ease, box-shadow 460ms var(--ease-out);
}

.release-card-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.11), transparent 40%);
  transition: opacity 300ms ease;
}

.release-card-tile:hover,
.release-card-tile:focus-within {
  z-index: 2;
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58);
}

.release-card-tile:hover::after,
.release-card-tile:focus-within::after {
  opacity: 1;
}

.release-cover-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  margin: 9px 9px 0;
  background: #111;
}

.release-cover-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease-out), filter 350ms ease;
}

.release-card-tile:hover .release-cover-link img,
.release-card-tile:focus-within .release-cover-link img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.tile-index {
  position: absolute;
  right: 8px;
  bottom: 8px;
  min-width: 29px;
  padding: 5px 6px;
  background: rgba(5, 5, 5, 0.78);
  color: #cbc9c2;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-align: center;
  backdrop-filter: blur(8px);
}

.release-meta {
  position: relative;
  z-index: 1;
  padding: 17px 17px 19px;
}

.release-name {
  min-height: 2.1em;
  display: block;
  margin: 4px 0 16px;
  color: #fff;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.release-kicker {
  display: block;
  color: #77756f;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.2em;
}

.platform-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.platform-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06160b;
  background: var(--spotify);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 17px rgba(0, 0, 0, 0.35);
  transition: transform 240ms var(--ease-out), filter 200ms ease;
}

.platform-icon:hover {
  transform: translateY(-4px) scale(1.09);
  filter: brightness(1.12);
}

.platform-icon.apple_music-icon {
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, var(--apple-a), var(--apple-b));
}

.platform-icon.youtube-icon {
  border-radius: 8px;
  color: #fff;
  background: var(--youtube);
  font-size: 10px;
}

.hub-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 0 8px;
  border-top: 1px solid var(--line);
}

.hub-footer > div {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.hub-footer strong {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.hub-footer span,
.hub-footer button {
  color: #6e6c66;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

/* Release pages */

.release-page,
.project-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.07), transparent 30rem),
    var(--ink);
}

.release-page {
  display: grid;
  place-items: center;
  padding: 112px 20px 90px;
}

.ambient {
  position: fixed;
  z-index: -2;
  inset: -70px;
  opacity: 0.24;
  filter: blur(54px) saturate(1.25) contrast(1.15);
  transform: scale(1.13);
  pointer-events: none;
}

.ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, transparent, rgba(5, 5, 5, 0.68) 58%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), #050505 94%);
}

.ambient img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-card {
  width: min(100%, 470px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 13px;
  color: #cfcdc6;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.eyebrow span {
  color: #5f5e59;
}

.cover-wrap,
.project-art {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: #111;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.66);
  perspective: 1000px;
  transform-style: preserve-3d;
}

.cover-wrap > img,
.project-art > img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: contrast(1.025);
}

.cover-label {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  padding: 8px 11px 7px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.cover-sheen {
  position: absolute;
  z-index: 1;
  inset: -80% -120%;
  opacity: 0;
  transform: rotate(18deg) translateX(-30%);
  background: linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, 0.2) 50%, transparent 58%);
  transition: opacity 250ms ease, transform 850ms var(--ease-out);
  pointer-events: none;
}

.cover-wrap:hover .cover-sheen,
.project-art:hover .cover-sheen {
  opacity: 1;
  transform: rotate(18deg) translateX(45%);
}

.release-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 1px 18px;
  border-bottom: 1px solid var(--line);
}

.release-copy h1 {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(48px, 12vw, 70px);
  line-height: 0.78;
  letter-spacing: -0.06em;
}

.release-copy h1.long-title {
  max-width: 78%;
  font-size: clamp(33px, 8vw, 49px);
  line-height: 0.88;
}

.release-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  line-height: 1.4;
  letter-spacing: 0.19em;
  text-align: right;
}

.project-backlink,
.back-link,
.catalog-link {
  color: #9b9993;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: color 180ms ease;
}

.project-backlink {
  align-self: flex-start;
  margin: 13px 1px -4px;
}

.project-backlink:hover,
.back-link:hover,
.catalog-link:hover {
  color: #fff;
}

.primary-button {
  min-height: 73px;
  display: grid;
  grid-template-columns: 43px 1fr auto;
  align-items: center;
  gap: 13px;
  margin-top: 20px;
  padding: 11px 17px 11px 13px;
  border-radius: 2px;
  background: var(--spotify);
  color: #021a0b;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 21px;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 15px 38px rgba(30, 215, 96, 0.2);
  transition: transform 270ms var(--ease-out), filter 180ms ease, box-shadow 270ms var(--ease-out);
}

.primary-button:hover {
  transform: translateY(-5px);
  filter: brightness(1.08);
  box-shadow: 0 22px 55px rgba(30, 215, 96, 0.27);
}

.primary-button.youtube-primary {
  color: #fff;
  background: var(--youtube);
  box-shadow: 0 15px 38px rgba(255, 23, 63, 0.22);
}

.primary-button.apple-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--apple-a), var(--apple-b));
  box-shadow: 0 15px 38px rgba(141, 76, 255, 0.22);
}

.primary-button small {
  display: block;
  margin-bottom: 4px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.22em;
}

.primary-play {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #041b0c;
  color: var(--spotify);
  font-size: 14px;
  text-indent: 2px;
}

.youtube-primary .primary-play,
.apple-primary .primary-play {
  color: var(--ink);
  background: #fff;
}

.arrow {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.microcopy {
  margin: 10px 0 0;
  color: #85837d;
  font-size: 9px;
  letter-spacing: 0.03em;
  text-align: center;
}

.alternatives {
  margin-top: 20px;
}

.alternatives > p {
  margin: 0 0 9px;
  color: #77756f;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-align: center;
}

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

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

.service-button {
  min-height: 55px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
  color: #eceae4;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: transform 240ms var(--ease-out), border-color 180ms ease, background 180ms ease;
}

.service-button:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.09);
}

.service-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--spotify);
  color: #06160b;
  font-size: 12px;
  font-weight: 900;
}

.service-mark.apple-mark {
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(145deg, var(--apple-a), var(--apple-b));
}

.service-mark.youtube-mark {
  border-radius: 7px;
  color: #fff;
  background: var(--youtube);
  font-size: 10px;
}

.footer-links {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
}

.artist-link {
  color: #c5c3bd;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-decoration: none;
}

.privacy-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: #77756f;
  cursor: pointer;
  font-family: "Inter", Arial, sans-serif;
  font-size: 7px;
  font-weight: 650;
  letter-spacing: 0.11em;
  opacity: 0.66;
}

.artist-link:hover,
.privacy-link:hover {
  color: #fff;
  opacity: 1;
}

/* Project pages */

.project-page {
  padding: 120px 24px 105px;
}

.project-card {
  width: min(100%, 1050px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.project-card > .back-link {
  align-self: flex-start;
  margin-bottom: 34px;
}

.project-hero {
  display: grid;
  grid-template-columns: minmax(310px, 500px) 1fr;
  align-items: end;
  gap: clamp(38px, 6vw, 78px);
}

.project-art img {
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.66);
}

.project-hero > div:last-child > span {
  color: #96948e;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.22em;
}

.project-hero h1 {
  max-width: 8ch;
  margin: 18px 0 18px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(58px, 8vw, 106px);
  line-height: 0.78;
  letter-spacing: -0.065em;
}

.project-hero p {
  margin: 0 0 35px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.25em;
}

.project-hero small {
  display: block;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #706e68;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.project-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 9px;
  margin: 38px 0 20px;
}

.project-actions .service-button {
  min-height: 61px;
}

.project-tracklist {
  margin-top: 21px;
  border-top: 1px solid var(--line-strong);
}

.project-tracklist > p {
  margin: 20px 0 9px;
  color: #77756f;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.24em;
}

.project-tracklist ol {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line-strong);
}

.project-tracklist li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.project-track {
  min-height: 74px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 17px;
  color: #f2f0ea;
  text-decoration: none;
  transition: padding 350ms var(--ease-out), background 250ms ease;
}

.project-track span {
  color: #65635e;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.project-track strong {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: -0.03em;
}

.project-track small {
  color: #75736d;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.project-track:hover {
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.045);
}

.project-track:hover small {
  color: #fff;
}

/* 404 */

.error-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 25rem),
    var(--ink);
}

.error-noise {
  position: absolute;
  z-index: -1;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: min(54vw, 700px);
  line-height: 0.7;
  letter-spacing: -0.12em;
}

.error-page section {
  text-align: center;
}

.error-page p {
  margin: 0 0 17px;
  color: #83817b;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.28em;
}

.error-page h1 {
  margin: 0 0 35px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(52px, 10vw, 124px);
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.error-page a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 18px;
  background: var(--paper);
  color: var(--ink);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-decoration: none;
}

/* Consent and diagnostics */

.consent {
  position: fixed;
  z-index: 50;
  right: auto;
  bottom: 16px;
  left: 16px;
  width: min(430px, calc(100% - 32px));
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 12px 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(14, 14, 14, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(18px);
}

.consent p {
  flex: 1;
  margin: 0;
  color: #c7c5bf;
  font-size: 9px;
  line-height: 1.45;
}

.consent > div {
  flex: 0 0 auto;
  display: flex;
  gap: 6px;
}

.consent button {
  border: 0;
  border-radius: 2px;
  padding: 9px 10px;
  background: #2d2d2d;
  color: #dedcd6;
  cursor: pointer;
  font: 750 8px/1 "Inter", sans-serif;
}

.consent .consent-primary {
  background: var(--paper);
  color: var(--ink);
}

.tracking-debug {
  position: fixed;
  z-index: 99;
  right: 12px;
  bottom: 12px;
  width: min(360px, calc(100% - 24px));
  padding: 14px;
  border: 1px solid #35e776;
  background: rgba(3, 16, 8, 0.96);
  color: #dfffe9;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.65);
  font: 600 11px/1.55 ui-monospace, SFMono-Regular, Menlo, monospace;
  white-space: pre-wrap;
}

[data-js="ready"] [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

[data-js="ready"] [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.release-cover-link:focus-visible,
.release-name:focus-visible,
.platform-icon:focus-visible,
.primary-button:focus-visible,
.service-button:focus-visible,
.artist-link:focus-visible,
.privacy-link:focus-visible,
.catalog-link:focus-visible,
.project-backlink:focus-visible,
.back-link:focus-visible,
.project-track:focus-visible,
.hero-primary:focus-visible,
.hero-secondary:focus-visible,
.scroll-cue:focus-visible,
.hub-header a:focus-visible,
.consent button:focus-visible,
.error-page a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

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

@keyframes live-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1020px) {
  .release-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hub-hero {
    grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
    gap: 50px;
  }

  .project-hero {
    grid-template-columns: minmax(280px, 430px) 1fr;
  }
}

@media (max-width: 760px) {
  .hub-page {
    width: min(100% - 34px, 660px);
  }

  .hub-header nav a:not(:last-child) {
    display: none;
  }

  .hub-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 46px 0 100px;
  }

  .hub-hero-art {
    width: min(84vw, 480px);
    justify-self: center;
    order: 1;
  }

  .hub-hero-copy {
    order: 2;
  }

  .hub-hero h1 {
    font-size: clamp(68px, 22vw, 112px);
  }

  .scroll-cue {
    right: auto;
    bottom: 32px;
    left: 0;
  }

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

  .project-page {
    padding: 105px 18px 105px;
  }

  .project-hero {
    grid-template-columns: 1fr;
    gap: 29px;
  }

  .project-art {
    width: min(100%, 480px);
  }

  .project-hero h1 {
    max-width: none;
    font-size: clamp(54px, 16vw, 86px);
  }

  .project-hero p {
    margin-bottom: 24px;
  }
}

@media (max-width: 520px) {
  .floating-header {
    padding: 21px 18px;
  }

  .floating-header > a:last-child {
    font-size: 7px;
  }

  .brand-mark span {
    font-size: 17px;
  }

  .hub-header {
    min-height: 70px;
  }

  .hub-header nav {
    gap: 0;
  }

  .hub-hero {
    padding-top: 34px;
  }

  .hub-hero-art > span {
    right: -8px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-primary,
  .hero-secondary {
    width: 100%;
  }

  .hero-secondary {
    justify-content: flex-start;
  }

  .hub-releases {
    padding: 74px 0 78px;
  }

  .hub-section-heading h2 {
    font-size: clamp(36px, 13vw, 58px);
  }

  .hub-section-heading > span {
    font-size: 34px;
  }

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

  .release-card-tile {
    display: grid;
    grid-template-columns: minmax(118px, 42%) 1fr;
  }

  .release-cover-link {
    margin: 8px;
  }

  .release-meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 15px 15px 8px;
  }

  .release-name {
    min-height: 0;
    margin-bottom: 15px;
    font-size: clamp(17px, 5.4vw, 22px);
  }

  .platform-icon {
    width: 29px;
    height: 29px;
  }

  .hub-footer,
  .hub-footer > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .hub-footer > div:last-child {
    gap: 10px;
  }

  .release-page {
    place-items: start center;
    padding: 97px 18px 105px;
  }

  .release-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .release-copy h1.long-title {
    max-width: 100%;
  }

  .release-copy p {
    text-align: left;
  }

  .project-track {
    grid-template-columns: 33px 1fr auto;
    gap: 9px;
  }

  .project-track small {
    font-size: 0;
  }

  .project-track small::after {
    content: "↗";
    font-size: 11px;
  }

  .consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    gap: 8px;
    padding: 10px;
  }

  .consent > div {
    flex-direction: column;
  }

  .consent button {
    white-space: nowrap;
  }
}

@media (max-height: 770px) and (min-width: 761px) {
  .release-page {
    padding-top: 90px;
  }

  .release-card {
    width: 360px;
  }

  .release-copy h1 {
    font-size: 50px;
  }

  .primary-button {
    min-height: 64px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-js="ready"] [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
