:root {
  color-scheme: dark;
  --bg: #050605;
  --ink: #f5f2e9;
  --muted: #a9ada7;
  --line: rgba(245, 242, 233, 0.15);
  --green: #54ff8f;
  --black: #050605;
  --glass: rgba(5, 6, 5, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(245, 242, 233, 0.08);
  background: rgba(5, 6, 5, 0.42);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  gap: 2px;
}

.brand span {
  color: var(--green);
  font-weight: 900;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

nav a:hover {
  color: var(--green);
}

nav .nav-buy {
  color: var(--green);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 108px 28px 42px;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.78), rgba(5, 6, 5, 0.2) 48%, rgba(5, 6, 5, 0.66)),
    linear-gradient(0deg, rgba(5, 6, 5, 0.96), rgba(5, 6, 5, 0.05) 64%, rgba(5, 6, 5, 0.32));
}

.hero-content {
  position: relative;
  width: min(640px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: 112px;
  line-height: 0.9;
  font-weight: 900;
}

.hero-content p:last-child {
  width: min(500px, 100%);
  margin-top: 18px;
  color: rgba(245, 242, 233, 0.86);
  font-size: 18px;
  line-height: 1.45;
}

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

.cover-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(84, 255, 143, 0.78);
  border-radius: 6px;
  background: var(--green);
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.cover-button:hover {
  transform: translateY(-1px);
  background: #7cffaa;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(245, 242, 233, 0.22);
  border-radius: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.ghost-button:hover {
  transform: translateY(-1px);
  border-color: rgba(84, 255, 143, 0.72);
  color: var(--green);
}

.identity-section,
.music-section,
.bio-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0;
}

.music-section {
  padding-bottom: 0;
}

.release-panel {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(260px, 0.85fr) minmax(300px, 1fr);
  gap: 32px;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.release-artwork {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.release-copy {
  display: grid;
  gap: 14px;
}

.release-copy h2 {
  color: var(--ink);
  font-size: 54px;
  line-height: 0.92;
}

.release-copy p:not(.eyebrow) {
  max-width: 460px;
  color: rgba(245, 242, 233, 0.78);
  font-size: 17px;
  line-height: 1.45;
}

.release-player {
  display: grid;
  gap: 18px;
}

.release-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.release-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.release-meta strong {
  color: var(--green);
  font-size: 20px;
}

.release-player audio {
  width: 100%;
  accent-color: var(--green);
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.merch-page {
  padding-top: 64px;
}

.merch-simple {
  width: min(1120px, calc(100% - 40px));
  min-height: calc(100svh - 64px);
  margin: 0 auto;
  padding: 70px 0;
  display: grid;
  grid-template-columns: minmax(360px, 1.25fr) minmax(320px, 0.75fr);
  gap: 38px;
  align-items: center;
}

.merch-simple-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(84, 255, 143, 0.5);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.merch-simple-copy {
  display: grid;
  gap: 22px;
}

.merch-simple h1 {
  color: var(--green);
  font-size: clamp(54px, 10vw, 118px);
  line-height: 0.88;
  text-transform: uppercase;
}

.merch-simple-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(245, 242, 233, 0.82);
  font-size: 19px;
  line-height: 1.45;
}

.merch-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.merch-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.merch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.download-page {
  min-height: 100svh;
  padding: 134px 20px 70px;
  display: grid;
  place-items: center;
}

.download-card {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 36% 24%, rgba(84, 255, 143, 0.14), rgba(84, 255, 143, 0) 34%),
    rgba(255, 255, 255, 0.035);
}

.download-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(84, 255, 143, 0.38);
  border-radius: 8px;
  object-fit: cover;
}

.download-copy {
  display: grid;
  gap: 18px;
}

.download-copy h1 {
  color: var(--green);
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.9;
}

.download-copy p {
  color: rgba(245, 242, 233, 0.82);
  font-size: 18px;
  line-height: 1.45;
}

.download-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.identity-card {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
}

.identity-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: rgba(245, 242, 233, 0.04);
  object-fit: cover;
  object-position: center;
}

.identity-copy {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 28px;
}

.identity-copy h2 {
  font-size: 48px;
  line-height: 0.95;
}

dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 0;
}

dt {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 5px 0 0;
  color: var(--ink);
  line-height: 1.35;
}

.bio-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: 28px;
  padding-top: 0;
}

.bio-heading,
.bio-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.bio-heading {
  display: grid;
  align-content: end;
  min-height: 260px;
  padding: 28px;
}

.bio-heading h2 {
  max-width: 520px;
  font-size: 42px;
  line-height: 0.98;
}

.bio-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px;
}

.bio-copy p {
  color: rgba(245, 242, 233, 0.84);
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .site-header {
    padding: 0 16px;
  }

  nav {
    gap: 10px;
    font-size: 11px;
  }

  .hero {
    padding: 96px 18px 34px;
  }

  h1 {
    font-size: 64px;
  }

  .hero-content p:last-child {
    font-size: 16px;
  }

  .identity-section,
  .music-section,
  .bio-section {
    width: calc(100% - 28px);
    padding: 44px 0;
  }

  .music-section {
    padding-bottom: 0;
  }

  .release-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0;
  }

  .release-copy h2 {
    font-size: 42px;
  }

  .release-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .merch-simple {
    width: calc(100% - 28px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 44px 0;
  }

  .merch-simple-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .merch-list li {
    font-size: 14px;
  }

  .download-page {
    padding: 96px 14px 44px;
    place-items: start stretch;
  }

  .download-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 18px;
  }

  .bio-section {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .bio-heading {
    min-height: 220px;
  }

  .bio-heading,
  .bio-copy {
    padding: 20px;
  }

  .bio-heading h2 {
    font-size: 34px;
  }

  .bio-copy p {
    font-size: 16px;
  }

  .identity-card {
    grid-template-columns: 1fr;
  }

  .identity-card img {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .identity-copy {
    padding: 20px;
  }

  .identity-copy h2 {
    font-size: 38px;
  }

  dl {
    grid-template-columns: 1fr;
    gap: 14px;
  }

}
