:root {
  color-scheme: dark;
  --ink: #f6f1e8;
  --muted: #b5c5c1;
  --soft: #879791;
  --night: #071015;
  --deep: #0d1b20;
  --panel: #12262b;
  --line: rgba(246, 241, 232, 0.16);
  --coral: #ff7a3d;
  --gold: #f5ba59;
  --teal: #3cb8aa;
  --sand: #f2d7a0;
  --black: #030608;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--night);
  color: var(--ink);
  font-family: "Space Grotesk", Arial, sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: var(--coral);
  color: var(--black);
}

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

img,
iframe,
canvas {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 21, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-mark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  box-shadow: inset 7px 0 0 var(--teal), 9px 0 0 rgba(245, 186, 89, 0.68);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a {
  padding: 8px 0;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.nav-cta {
  color: var(--black);
  background: var(--sand);
  border-radius: 999px;
  padding: 10px 18px !important;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 21, 0.94) 0%, rgba(7, 16, 21, 0.74) 44%, rgba(7, 16, 21, 0.24) 100%),
    linear-gradient(180deg, rgba(3, 6, 8, 0.1) 0%, rgba(3, 6, 8, 0.76) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  width: min(1180px, calc(100% - 64px));
  min-height: 760px;
  margin: 0 auto;
  padding: 96px 0 72px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.kicker,
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 840px;
  font-size: 4.8rem;
  line-height: 1.03;
  font-weight: 700;
}

h2 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.08;
  font-weight: 700;
}

.hero-lede,
.section-heading p,
.copy-block p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-lede {
  max-width: 620px;
  margin: 26px 0 0;
}

.actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.2;
}

.button-primary {
  background: var(--coral);
  color: var(--black);
}

.button-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(18, 38, 43, 0.64);
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.link-grid a:hover,
.link-grid a:focus-visible {
  transform: translateY(-1px);
}

.release-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 16, 21, 0.74);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.release-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.release-card-body {
  padding: 22px;
}

.release-card h2 {
  font-size: 1.6rem;
}

.release-card p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--sand);
  font-weight: 700;
}

.section {
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 92px;
}

.section-inner {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 88px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.copy-block p {
  margin: 0;
}

.playlist-section {
  background: #0a171a;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-heading p {
  margin: 16px 0 0;
}

.soundcloud-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--black);
}

.soundcloud-frame iframe {
  width: 100%;
  border: 0;
}

.about-section {
  background: #0f1714;
}

.detail-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.detail-list dt {
  color: var(--sand);
  font-weight: 700;
}

.detail-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.connect-section {
  background: var(--deep);
}

.connect-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 56px;
  align-items: start;
}

.link-grid {
  display: grid;
  gap: 12px;
}

.link-grid a {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 8px 18px;
  min-height: 92px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 16, 21, 0.64);
}

.link-grid span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 700;
}

.link-grid strong {
  align-self: end;
  font-size: 1.08rem;
}

.link-grid small {
  align-self: start;
  color: var(--soft);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 32px 0;
  color: var(--soft);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 18px 22px;
  }

  .nav {
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 680px);
    padding: 70px 0 52px;
  }

  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .release-card {
    max-width: 430px;
  }

  .section-inner,
  .site-footer {
    width: min(100% - 40px, 680px);
  }

  .section {
    scroll-margin-top: 142px;
  }

  .section-inner {
    padding: 68px 0;
  }

  .two-column,
  .connect-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 0.9rem;
  }

  .nav {
    font-size: 0.88rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-lede,
  .section-heading p,
  .copy-block p {
    font-size: 1rem;
  }

  .actions,
  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .link-grid a {
    grid-template-columns: 1fr;
  }

  .link-grid span {
    grid-row: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
