* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #09090b;
  --panel: #111114;
  --text: #f4f4f5;
  --muted: #9b9ba2;
  --line: #27272c;
  --accent: #b8ff00;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 9, 11, .92);
  backdrop-filter: blur(14px);
}

.logo {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: .12em;
}

nav {
  display: flex;
  gap: 32px;
  color: #b9b9bf;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .14em;
}

nav a:hover,
.contact-links a:hover {
  color: var(--accent);
}

.listen-top {
  border: 1px solid var(--line);
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 27px;
}

.hero {
  min-height: calc(100vh - 76px);
  padding: 8vw 6vw;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 7vw;
}

.eyebrow {
  color: #9b9ba2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  margin-bottom: 18px;
}

h1, h2 {
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .88;
}

h1 {
  font-size: clamp(58px, 8vw, 120px);
}

h1 span {
  color: var(--accent);
}

.hero-text {
  max-width: 450px;
  color: var(--muted);
  margin: 28px 0;
  font-size: 17px;
}

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

.btn {
  display: inline-block;
  padding: 15px 22px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.primary {
  background: var(--accent);
  color: #080808;
}

.secondary {
  border: 1px solid var(--line);
}

.hero-art {
  display: flex;
  justify-content: center;
}

.photo-card {
  width: min(470px, 100%);
  aspect-ratio: 4 / 5;
  padding: 12px;
  background: #141418;
  border: 1px solid #29292f;
  border-radius: 28px;
  transform: rotate(2deg);
}

.photo-placeholder {
  height: 100%;
  border-radius: 20px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, #333 0, transparent 30%),
    linear-gradient(145deg, #1e1e23, #080809);
  color: #66666e;
  font-size: clamp(24px, 4vw, 45px);
  font-weight: 900;
  letter-spacing: .08em;
}

.photo-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(0,0,0,.72);
  padding: 9px 13px;
  font-size: 9px;
  letter-spacing: .15em;
}

.section {
  padding: 110px 6vw;
  border-top: 1px solid var(--line);
}

.section-heading h2,
.about h2,
.contact h2,
.cta h2 {
  font-size: clamp(48px, 7vw, 90px);
}

.release {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 55px;
  align-items: center;
}

.cover {
  aspect-ratio: 1;
  border-radius: 22px;
  padding: 25px;
  background: linear-gradient(145deg, #163a4d, #111, #30161d);
  border: 1px solid #29292f;
}

.cover-inner {
  height: 100%;
  border: 1px solid #ffffff35;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cover small,
.cover span {
  letter-spacing: .2em;
  font-size: 10px;
}

.cover strong {
  font-size: 55px;
  line-height: .8;
  letter-spacing: -.07em;
}

.release-info h3 {
  font-size: clamp(40px, 6vw, 70px);
  margin-bottom: 10px;
}

.release-info > p:not(.tag) {
  color: var(--muted);
  margin-bottom: 25px;
}

.tag {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  margin-bottom: 12px;
}

.stream-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 190px));
  gap: 10px;
}

.stream-grid a {
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: 10px;
  font-size: 12px;
}

.stream-grid a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}

.about-copy {
  max-width: 570px;
  color: var(--muted);
  font-size: 19px;
}

.about-copy p + p {
  margin-top: 22px;
}

.cta {
  margin: 0 6vw 110px;
  padding: 70px;
  border-radius: 28px;
  background: #141418;
  border: 1px solid var(--line);
}

.cta h2 {
  margin-bottom: 35px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: clamp(25px, 4vw, 45px);
  font-weight: 800;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 6vw;
  display: flex;
  justify-content: space-between;
  color: #68686f;
  font-size: 10px;
  letter-spacing: .15em;
}

@media (max-width: 750px) {
  .nav {
    padding: 0 20px;
  }

  nav {
    display: none;
    position: absolute;
    left: 15px;
    right: 15px;
    top: 68px;
    background: #111114;
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 20px;
    flex-direction: column;
  }

  nav.open {
    display: flex;
  }

  .listen-top {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 70px 20px;
  }

  .hero-art {
    order: -1;
  }

  .photo-card {
    max-width: 330px;
  }

  .section {
    padding: 80px 20px;
  }

  .release,
  .about,
  .contact {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .cover {
    max-width: 330px;
  }

  .cta {
    margin: 0 20px 80px;
    padding: 45px 25px;
  }

  footer {
    padding: 25px 20px;
  }
}
