:root {
  --ink: #111113;
  --muted: #6f6f76;
  --paper: #f7f4ee;
  --line: rgba(17,17,19,.12);
  --green: #1db954;
  --red: #d21d22;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  padding: clamp(40px, 6vw, 86px) clamp(20px, 5vw, 76px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -.075em;
}

h1 {
  max-width: 760px;
  font-size: clamp(58px, 10vw, 138px);
  line-height: .86;
}

h2 {
  font-size: clamp(42px, 7vw, 94px);
  line-height: .92;
}

.lead,
.section-head p:not(.eyebrow) {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(21px, 2.8vw, 34px);
  line-height: 1.15;
  letter-spacing: -.045em;
  font-weight: 650;
}

.hero-art {
  border-radius: clamp(20px, 3vw, 42px);
  overflow: hidden;
  background: #111;
  box-shadow: 0 34px 90px rgba(0,0,0,.18);
  border: 1px solid rgba(0,0,0,.08);
}

.hero-art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: contain;
}

.platform-section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 76px);
  background: #fff;
  border-top: 12px solid var(--paper);
}

.muted-section {
  background: var(--paper);
}

.section-head {
  width: min(100%, 1180px);
  margin: 0 auto 40px;
}

.platform-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.platform-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 28px 70px rgba(0,0,0,.10);
}

.platform-card span {
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .82;
}

.platform-card strong {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: .96;
  letter-spacing: -.06em;
}

.spotify {
  background: var(--green);
  color: #031207;
}

.apple {
  background: #111113;
}

.youtube {
  background: #d21d22;
}

.submitted-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.submitted-grid span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #34343a;
  font-weight: 750;
  letter-spacing: -.02em;
}

@media (max-width: 900px) {
  .hero,
  .platform-grid,
  .submitted-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 56px 18px 70px;
  }

  .hero-art {
    order: -1;
  }

  .platform-section {
    padding: 64px 18px;
  }

  .platform-card {
    min-height: 170px;
  }
}
