:root {
  --bg: #0d0b16;
  --surface: #151220;
  --surface-light: #201a2e;
  --text: #fffaf3;
  --muted: #f4eef6;
  --line: rgba(255,255,255,.19);
  --pink: #ff4ba8;
  --pink-soft: #ff91ca;
  --cyan: #55dfe7;
  --yellow: #f6d455;
  --purple: #956fff;
  --orange: #ff825f;
  --dark: #15111c;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 7%, rgba(255,75,168,.12), transparent 31rem),
    radial-gradient(circle at 88% 18%, rgba(85,223,231,.1), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(1160px, calc(100% - 42px)); margin-inline: auto; }
.section { padding-block: clamp(82px, 9vw, 132px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13,11,22,.88);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  text-decoration: none;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -.055em;
}
.brand span { color: var(--pink); }
.nav-links { display: flex; align-items: center; gap: clamp(20px, 3vw, 38px); }
.nav-links a, footer a:not(.brand) {
  color: #fffafc;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-underline-offset: 5px;
}
.nav-links a:hover, footer a:not(.brand):hover { color: var(--text); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: #fffafd;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--yellow));
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(54px, 8vw, 112px);
  padding-block: clamp(70px, 9vw, 120px);
}
.hero h1 {
  margin: 0;
  font-size: clamp(4.2rem, 8.4vw, 7.8rem);
  line-height: .84;
  letter-spacing: -.085em;
  font-weight: 900;
}
.hero h1 span {
  display: block;
  color: var(--pink);
}
.hero h2 {
  max-width: 620px;
  margin: 38px 0 17px;
  font-size: clamp(1.9rem, 3.4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.hero-intro {
  max-width: 580px;
  margin: 0;
  color: #f7f1f8;
  font-size: 1.04rem;
  line-height: 1.75;
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--pink); color: #160b13; }
.button-primary:hover { background: var(--pink-soft); }
.button-secondary { border-color: rgba(149,111,255,.52); background: rgba(149,111,255,.13); }
.button-secondary:hover { border-color: var(--cyan); }
.button-dark { background: var(--dark); color: var(--text); border-color: rgba(21,17,28,.2); }
.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 620px;
  gap: 10px;
  margin-top: 34px;
  color: #fff;
}
.hero-notes > div {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 11px;
  align-items: start;
  min-height: 76px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.06);
}
.hero-notes > div:nth-child(1) { background: rgba(255,75,168,.09); }
.hero-notes > div:nth-child(2) { background: rgba(85,223,231,.08); }
.hero-notes > div:nth-child(3) { background: rgba(246,212,85,.08); }
.hero-notes .dot { margin-top: 6px; }
.hero-notes b, .hero-notes span { display: block; }
.hero-notes b {
  margin-bottom: 4px;
  font-size: .62rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hero-notes span { font-size: .8rem; font-weight: 750; }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; }
.dot-pink { background: var(--pink); }
.dot-cyan { background: var(--cyan); }
.dot-yellow { background: var(--yellow); }

.hero-art { position: relative; }
.image-glow {
  position: absolute;
  inset: 10% -8% -8% 8%;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(255,75,168,.45), rgba(85,223,231,.25), rgba(149,111,255,.38));
  filter: blur(38px);
}
.hero-art img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 36px;
  box-shadow: 0 32px 80px rgba(0,0,0,.46);
}
.cover-label {
  position: absolute;
  left: clamp(18px, 4vw, 40px);
  right: clamp(18px, 4vw, 40px);
  bottom: clamp(18px, 4vw, 38px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  background: rgba(13,11,22,.72);
  backdrop-filter: blur(16px);
}
.cover-label span { color: var(--pink-soft); font-size: .74rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.cover-label strong { max-width: 210px; text-align: right; font-size: .9rem; }

.color-rail { display: grid; grid-template-columns: 1.2fr .8fr 1fr .7fr 1.3fr; height: 9px; }
.color-rail span:nth-child(1) { background: var(--pink); }
.color-rail span:nth-child(2) { background: var(--yellow); }
.color-rail span:nth-child(3) { background: var(--cyan); }
.color-rail span:nth-child(4) { background: var(--orange); }
.color-rail span:nth-child(5) { background: var(--purple); }
.color-rail-top, .color-rail-header { height: 5px; }

.latest {
  background:
    radial-gradient(circle at 12% 85%, rgba(255,130,95,.12), transparent 28rem),
    linear-gradient(135deg, #1d1223, #111d29 72%, #161321);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 40px;
  align-items: end;
  margin-bottom: 46px;
}
.section-heading h2, .about h2, .cta h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
  line-height: .94;
  letter-spacing: -.065em;
}
.section-heading > p { margin: 0 0 5px; color: #f5eff7; line-height: 1.7; }
.latest-heading { grid-template-columns: 1fr; }
.music-heading { grid-template-columns: 1fr; }
.latest-card {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) 1.08fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, #281c35, #1c1829 64%, #18232b);
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
}
.latest-cover { position: relative; padding: clamp(18px, 3vw, 34px); background: linear-gradient(145deg, rgba(255,75,168,.9), rgba(149,111,255,.72)); }
.latest-cover::after { content: ""; position: absolute; inset: auto 0 0; height: 24%; background: linear-gradient(transparent, rgba(13,11,22,.3)); pointer-events: none; }
.latest-cover img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 20px; }
.latest-copy { align-self: center; padding: clamp(36px, 5vw, 72px); }
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tags span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fffafd;
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.latest-copy h3 {
  margin: 28px 0 17px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .9;
  letter-spacing: -.07em;
}
.latest-copy > p { margin: 0; color: #f6f0f8; line-height: 1.7; }
blockquote {
  margin: 28px 0;
  padding: 18px 21px;
  border-left: 4px solid var(--cyan);
  border-radius: 0 13px 13px 0;
  background: rgba(85,223,231,.07);
  color: var(--text);
  font-family: Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.35;
}
.download-row { display: flex; align-items: center; gap: 21px; flex-wrap: wrap; margin-top: 30px; }
.download-row strong { color: #fffafd; font-size: .7rem; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }

.music {
  background:
    radial-gradient(circle at 85% 18%, rgba(149,111,255,.16), transparent 29rem),
    radial-gradient(circle at 10% 88%, rgba(255,75,168,.12), transparent 27rem),
    linear-gradient(180deg, #0e0c17, #171122);
}
.release-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.release-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #28172b, #181521 70%);
  transition: transform .2s ease, border-color .2s ease;
}
.release-card:nth-child(even) {
  background: linear-gradient(145deg, #102a31, #171621 70%);
  border-color: rgba(85,223,231,.3);
}
.release-card:nth-child(odd) { border-color: rgba(255,75,168,.3); }
.release-card:hover { transform: translateY(-4px); border-color: rgba(255,145,202,.42); }
.release-topline { display: flex; justify-content: space-between; padding: 15px 19px; border-bottom: 1px solid var(--line); color: #fffafd; font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.release-body { display: grid; grid-template-columns: 155px 1fr; gap: 24px; flex: 1; padding: 22px; }
.release-body > div { display: flex; flex-direction: column; min-width: 0; }
.release-body img { width: 155px; aspect-ratio: 1; object-fit: cover; border-radius: 16px; }
.tags.compact { gap: 5px; }
.tags.compact span { padding: 5px 8px; font-size: .56rem; }
.release-card:nth-child(odd) .tags.compact span:first-child { color: var(--pink-soft); border-color: rgba(255,75,168,.28); }
.release-card:nth-child(even) .tags.compact span:first-child { color: var(--cyan); border-color: rgba(85,223,231,.28); }
.release-body h3 { margin: 17px 0 10px; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1; letter-spacing: -.045em; }
.release-body p { margin: 0 0 22px; color: #f5eff7; font-size: .92rem; line-height: 1.65; }
.track-download-button {
  align-self: flex-start;
  min-height: 44px;
  margin-top: auto;
  padding-inline: 19px;
  border-color: transparent;
  font-size: .68rem;
}
.release-card:nth-child(odd) .track-download-button { background: var(--pink); color: #160b13; }
.release-card:nth-child(even) .track-download-button { background: var(--cyan); color: #07181b; }
.release-card:nth-child(odd) .track-download-button:hover { background: var(--pink-soft); }
.release-card:nth-child(even) .track-download-button:hover { background: #8eebf0; }
.empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,75,168,.08), rgba(85,223,231,.06));
  color: #fffafd;
  line-height: 1.65;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}
.pagination button {
  min-width: 42px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #fffafd;
  font: inherit;
  font-size: .72rem;
  font-weight: 850;
  cursor: pointer;
}
.pagination button[aria-current="page"] { background: var(--pink); color: var(--dark); border-color: var(--pink); }
.pagination button:disabled { opacity: .42; cursor: default; }

.about {
  background:
    radial-gradient(circle at 90% 20%, rgba(85,223,231,.16), transparent 30rem),
    linear-gradient(135deg, #103039, #17243a 56%, #211932);
  color: var(--text);
}
.about .eyebrow { color: #fffafd; }
.about .eyebrow > span { background: linear-gradient(90deg, var(--pink), var(--purple)); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(55px, 8vw, 120px); align-items: start; }
.about h2 { max-width: 580px; }
.about-copy > p { margin: 0; font-size: clamp(1.3rem, 2.35vw, 2rem); line-height: 1.45; }
.facts { display: grid; gap: 10px; margin-top: 37px; }
.facts div { display: grid; grid-template-columns: 14px 1fr; gap: 13px; align-items: start; padding: 16px 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 13px; background: rgba(255,255,255,.07); }
.facts .dot { margin-top: 6px; }
.facts b, .facts span { display: block; }
.facts b { margin-bottom: 3px; font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; }
.facts span { font-weight: 750; }

.cta {
  background:
    radial-gradient(circle at 15% 10%, rgba(246,212,85,.18), transparent 23rem),
    linear-gradient(125deg, #3b2917, #45162f 52%, #251b40);
  color: var(--text);
}
.cta .eyebrow { color: #fffafd; }
.cta .eyebrow > span { background: linear-gradient(90deg, var(--pink), var(--purple)); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 42px; }
.cta h2 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
.cta p:not(.eyebrow) { margin: 16px 0 0; font-size: 1.05rem; }
.cta .button-dark { background: var(--yellow); color: var(--dark); }
footer { background: #090711; }
.footer-inner { min-height: 125px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-inner p { color: #f5eff7; font-size: .82rem; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { text-align: center; }
  .hero .eyebrow, .button-row { justify-content: center; }
  .hero-notes { justify-content: center; margin-inline: auto; }
  .hero-intro { margin-inline: auto; }
  .hero-art { width: min(650px, 100%); margin-inline: auto; }
  .latest-card, .about-grid { grid-template-columns: 1fr; }
  .release-grid { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .shell { width: min(100% - 28px, 1160px); }
  .site-header { position: relative; }
  .nav { padding-block: 18px; align-items: flex-start; }
  .nav-links { justify-content: flex-end; flex-wrap: wrap; gap: 10px 17px; max-width: 190px; }
  .nav-links a { font-size: .6rem; }
  .hero { padding-block: 58px 72px; gap: 58px; }
  .hero h1 { font-size: clamp(4rem, 21vw, 6rem); }
  .hero h2 { margin-top: 31px; }
  .hero-notes { grid-template-columns: 1fr; }
  .cover-label { align-items: flex-start; flex-direction: column; }
  .cover-label strong { text-align: left; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .latest-copy { padding: 30px 23px 36px; }
  .release-body { grid-template-columns: 1fr; }
  .release-body img { width: 100%; aspect-ratio: 16 / 10; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-inner { padding-block: 34px; flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .release-card { transition: none; }
}
