@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800;900&family=UnifrakturCook:wght@700&display=swap');

:root {
  --bg: #050507;
  --text: #f2f0f4;
  --muted: #8e8791;
  --pink: #ff5aa5;
  --line: rgba(255,255,255,.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, Arial, sans-serif;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .18;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 5px);
}

.header,
main,
footer {
  position: relative;
  z-index: 1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 7%;
  background: linear-gradient(to bottom, rgba(5,5,7,.88), transparent);
  z-index: 10;
}

.logo {
  color: white;
  text-decoration: none;
  font-weight: 900;
  font-size: 28px;
  font-style: italic;
  letter-spacing: -2px;
  transform: rotate(-6deg);
}

nav {
  display: flex;
  gap: clamp(18px, 4vw, 58px);
}

nav a {
  color: #f5f3f7;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

nav a.active,
nav a:hover {
  color: var(--pink);
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 160px 7% 90px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5,5,7,.98) 0%, rgba(5,5,7,.72) 48%, rgba(5,5,7,.18) 100%),
    url('assets/hero-bg.svg') center / cover no-repeat;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 66% 38%, rgba(151,83,218,.22), transparent 32%),
    linear-gradient(to bottom, transparent 70%, #050507);
  pointer-events: none;
}

.side-mark {
  position: absolute;
  left: 7%;
  top: 130px;
  bottom: 100px;
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  opacity: .75;
}

.side-mark span {
  width: 1px;
  flex: 1;
  background: rgba(255,255,255,.42);
}

.side-mark b {
  color: white;
  font-size: 34px;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-left: 90px;
}

.pink {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .22em;
}

h1 {
  margin: 0 0 24px;
  font-family: 'UnifrakturCook', serif;
  font-size: clamp(96px, 14vw, 210px);
  line-height: .78;
  letter-spacing: -4px;
  color: #e8e6e8;
  text-shadow: 0 25px 70px rgba(0,0,0,.6);
}

.tagline {
  margin: 0 0 26px;
  color: var(--muted);
  font-weight: 900;
  font-size: 17px;
}

.listen {
  margin: 0 0 26px;
  color: #d9d6dc;
  text-transform: uppercase;
  font-size: 14px;
}

.listen span {
  color: var(--pink);
  margin-left: 10px;
}

.outline-btn {
  display: inline-flex;
  min-width: 300px;
  height: 54px;
  padding: 0 28px;
  align-items: center;
  justify-content: space-between;
  color: #ffc2dd;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid rgba(255,90,165,.65);
  background: rgba(255,90,165,.035);
}

.outline-btn:hover {
  background: var(--pink);
  color: #050507;
}

.about {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 70px;
  padding: 70px 14% 30px;
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 0 0 20px;
  color: #d8d5d9;
  font-size: clamp(32px, 5vw, 56px);
  line-height: .95;
  text-transform: uppercase;
}

.about p,
.contact p {
  color: var(--muted);
  line-height: 1.75;
}

.signature {
  margin-top: 28px;
  color: var(--pink);
  font-size: 42px;
  font-style: italic;
  transform: rotate(-7deg);
}

.sound-card a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 290px;
  height: 62px;
  padding: 0 22px;
  color: #ffc2dd;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
  border: 1px solid rgba(255,90,165,.55);
}

.stats {
  width: min(1100px, 86%);
  margin: 42px auto 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
}

.stats div {
  padding: 30px;
  text-align: center;
}

.stats div + div {
  border-left: 1px solid var(--line);
}

.stats span {
  display: block;
  margin-bottom: 10px;
  color: #ddd;
  font-size: 32px;
}

.stats p {
  margin: 0 0 6px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.stats strong {
  color: #d8d5d9;
  font-size: 34px;
}

.player-section {
  padding: 60px 14%;
  border-top: 1px solid var(--line);
}

.player {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}

.player iframe {
  display: block;
  border: 0;
}

.contact {
  padding: 70px 14%;
  border-top: 1px solid var(--line);
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 26px 7%;
  color: var(--muted);
  border-top: 1px solid var(--line);
  text-transform: uppercase;
  font-size: 12px;
}

@media (max-width: 820px) {
  .header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero {
    min-height: 680px;
    padding-top: 190px;
  }

  .side-mark {
    display: none;
  }

  .hero-content {
    margin-left: 0;
  }

  .outline-btn {
    min-width: 100%;
  }

  .about {
    grid-template-columns: 1fr;
    padding: 55px 7%;
  }

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

  .stats div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .player-section,
  .contact {
    padding: 55px 7%;
  }

  footer {
    flex-direction: column;
    gap: 10px;
  }
}
