:root {
  --bg: #080d12;
  --bg-2: #101821;
  --surface: #121c27;
  --surface-deep: #0d151e;
  --text: #f7f9fb;
  --muted: #b6c0ca;
  --orange: #f4932f;
  --orange-light: #ffad4d;
  --line: rgba(255,255,255,.10);
  --orange-line: rgba(244,147,47,.34);
  --shadow: 0 24px 64px rgba(0,0,0,.38);
  --radius: 22px;
  --width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 83% 7%, rgba(244,147,47,.14), transparent 29%),
    radial-gradient(circle at 9% 35%, rgba(244,147,47,.07), transparent 25%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 55%, var(--bg) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(6,11,16,.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--width), calc(100% - 36px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
}

.brand-wordmark {
  width: min(255px, 42vw);
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 7px;
}

nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #dce3ea;
  font-size: .92rem;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

nav a:hover {
  transform: translateY(-1px);
}

nav a:hover,
nav a[aria-current="page"] {
  color: #fff;
  background: rgba(244,147,47,.16);
}

main {
  width: min(var(--width), calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0 88px;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 48px;
  margin-bottom: 50px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-light);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

h1,
h2 {
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.45rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.hero-copy {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-art {
  min-height: 315px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(244,147,47,.24), rgba(244,147,47,.03)),
    var(--surface-deep);
  box-shadow: var(--shadow);
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(244,147,47,.27);
  border-radius: 50%;
}

.hero-art::before {
  width: 315px;
  height: 315px;
}

.hero-art::after {
  width: 225px;
  height: 225px;
}

.hero-art img {
  width: min(235px, 60%);
  position: relative;
  z-index: 2;
  border-radius: 22px;
  box-shadow: 0 18px 52px rgba(0,0,0,.30);
}

.panel {
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20,29,39,.97), rgba(13,20,28,.97));
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.panel h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  letter-spacing: -.035em;
}

.panel-head p {
  margin: 7px 0 0;
  color: var(--muted);
}

.button {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244,147,47,.50);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange-light), var(--orange));
  color: #111820;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 9px 24px rgba(244,147,47,.18);
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 13px 30px rgba(244,147,47,.25);
}

.media-shell {
  overflow: hidden;
  border: 1px solid var(--orange-line);
  border-radius: 18px;
  background: #05070a;
  box-shadow: 0 17px 46px rgba(0,0,0,.29);
}

.media-shell iframe {
  display: block;
  width: 100%;
  border: 0;
  background: #05070a;
}

.youtube-player iframe {
  aspect-ratio: 16 / 9;
}

.spotify-player iframe {
  min-height: 552px;
}

.supporting-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .94rem;
}

.cross-link {
  margin-top: 28px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(9,15,21,.78);
}

.cross-link strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.cross-link span {
  color: var(--muted);
}

footer {
  width: min(var(--width), calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 38px;
  color: #929da8;
  font-size: .9rem;
}

.footer-inner {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}

.footer-inner a {
  color: #dce3ea;
  text-decoration: none;
}

.footer-inner a:hover {
  color: #fff;
}

@media (max-width: 850px) {
  .header-inner {
    align-items: flex-start;
    padding: 13px 0;
  }

  .brand-wordmark {
    display: none;
  }

  nav {
    gap: 2px;
  }

  nav a {
    padding: 8px 9px;
    font-size: .85rem;
  }

  main {
    padding-top: 46px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-art {
    min-height: 250px;
  }

  .panel-head,
  .cross-link {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .header-inner,
  main,
  footer {
    width: min(var(--width), calc(100% - 24px));
  }

  main {
    padding-bottom: 64px;
  }

  .hero {
    margin-bottom: 34px;
  }

  .hero-art {
    min-height: 220px;
    border-radius: 24px;
  }

  .panel {
    border-radius: 18px;
  }

  .media-shell {
    border-radius: 14px;
  }

  .spotify-player iframe {
    min-height: 480px;
  }
}

@media (max-width: 520px) {
  nav a:nth-child(5),
  nav a:nth-child(6) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
