@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #050505;
  --text: #f2f0eb;
  --muted: #898989;
  --line: #252525;
  --panel: #0d0d0d;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(255,255,255,.08), transparent 25%),
    radial-gradient(circle at 10% 70%, rgba(255,255,255,.035), transparent 30%);
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  z-index: 10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 5vw;
  background: linear-gradient(var(--bg), transparent);
}

.logo {
  color: var(--text);
  text-decoration: none;
  font: 700 12px/1.05 "Space Grotesk", sans-serif;
  letter-spacing: 2px;
}

.nav nav {
  display: flex;
  gap: 32px;
}

.nav nav a, footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  transition: color .25s ease;
}

.nav nav a:hover, footer a:hover { color: var(--text); }

.menu { display: none; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 7vw 80px;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 24px;
  color: #777;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
}

h1, h2, h3 {
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0;
  font-size: clamp(65px, 12vw, 170px);
  line-height: .78;
  letter-spacing: -9px;
}

h1 em, h2 em {
  font-style: normal;
  color: #777;
}

.hero-copy {
  position: relative;
  z-index: 2;
  margin: 45px 0 35px;
  color: #aaa;
  font-size: 18px;
  line-height: 1.55;
}

.button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  gap: 30px;
  align-items: center;
  padding: 15px 18px;
  border: 1px solid #444;
  color: var(--text);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  transition: all .3s ease;
}

.button:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.orb {
  position: absolute;
  border: 1px solid #222;
  border-radius: 50%;
  pointer-events: none;
}

.orb-one {
  width: 42vw;
  height: 42vw;
  right: -12vw;
  top: 18vh;
  box-shadow: 0 0 100px rgba(255,255,255,.04);
}

.orb-two {
  width: 18vw;
  height: 18vw;
  right: 13vw;
  top: 31vh;
  border-color: #303030;
}

.section {
  width: min(1200px, 86vw);
  margin: 0 auto;
  padding: 140px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 70px;
}

.section-heading h2 {
  margin: 0 0 15px;
  font-size: clamp(45px, 7vw, 90px);
  line-height: .9;
  letter-spacing: -5px;
}

.section-heading > p:last-child {
  color: var(--muted);
  max-width: 450px;
}

.music-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.music-intro .number {
  margin-bottom: 30px;
  color: #555;
  font-size: 11px;
  letter-spacing: 3px;
}

.music-intro h3 {
  margin: 0 0 20px;
  font-size: 38px;
}

.music-intro p, .card p, .about-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--text);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  border-bottom: 1px solid #444;
  padding-bottom: 7px;
}

.spotify-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 10px;
}

.spotify-card iframe {
  display: block;
  border-radius: 8px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.card {
  min-height: 290px;
  padding: 30px;
  background: var(--bg);
  transition: transform .3s ease, background .3s ease;
}

.card:hover {
  transform: translateY(-5px);
  background: #0a0a0a;
}

.card span {
  color: #555;
  font-size: 11px;
  letter-spacing: 2px;
}

.card h3 {
  margin-top: 85px;
  font-size: 25px;
  letter-spacing: 2px;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.about-copy {
  padding-top: 30px;
}

.about-copy p:first-child {
  margin-top: 0;
  color: var(--text);
  font: 500 28px/1.35 "Space Grotesk", sans-serif;
}

.final-cta {
  width: min(1200px, 86vw);
  margin: 0 auto;
  padding: 160px 0;
  text-align: center;
  border-top: 1px solid var(--line);
}

.final-cta h2 {
  margin: 0 0 50px;
  font-size: clamp(60px, 10vw, 140px);
  line-height: .8;
  letter-spacing: -7px;
}

footer {
  width: min(1200px, 86vw);
  margin: auto;
  padding: 30px 0 45px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #555;
  font-size: 10px;
  letter-spacing: 2px;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 800px) {
  .nav { padding: 22px 6vw; }

  .nav nav {
    position: absolute;
    top: 75px;
    right: 6vw;
    display: none;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background: #0b0b0b;
    border: 1px solid var(--line);
  }

  body.nav-open .nav nav { display: flex; }

  .menu {
    display: block;
    width: 35px;
    height: 35px;
    border: 1px solid #333;
    background: transparent;
    padding: 9px;
  }

  .menu span {
    display: block;
    height: 1px;
    margin: 5px 0;
    background: var(--text);
  }

  h1 {
    letter-spacing: -5px;
    font-size: clamp(58px, 17vw, 110px);
  }

  .hero { padding-left: 6vw; padding-right: 6vw; }

  .section {
    width: 88vw;
    padding: 100px 0;
  }

  .music-grid, .about-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .cards { grid-template-columns: 1fr; }

  .card { min-height: 220px; }

  .card h3 { margin-top: 50px; }

  .final-cta { width: 88vw; padding: 110px 0; }

  .final-cta h2 {
    letter-spacing: -4px;
  }

  footer {
    width: 88vw;
    flex-direction: column;
  }
}
