:root {
  color-scheme: dark;
  --bg: #07080c;
  --surface: #10131b;
  --surface-2: #191c24;
  --text: #f8f5ef;
  --muted: #bab3a6;
  --line: rgba(255, 255, 255, 0.16);
  --red: #ff2b3f;
  --cyan: #2dd8ff;
  --gold: #f5b84b;
  --green: #33d17a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(7, 8, 12, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark span {
  padding-left: 14px;
  border-left: 4px solid var(--red);
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

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

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92svh;
  padding: 120px clamp(18px, 6vw, 72px) 72px;
  overflow: hidden;
  isolation: isolate;
}

.hero-art,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.94), rgba(7, 8, 12, 0.54) 48%, rgba(7, 8, 12, 0.18)),
    linear-gradient(0deg, var(--bg), rgba(7, 8, 12, 0.16) 36%);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(4.8rem, 13vw, 11rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-shadow: 0 0 36px rgba(255, 43, 63, 0.34);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy,
.video-copy p,
.release-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: rgba(255, 43, 63, 0.86);
  background: var(--red);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
}

.button.ghost {
  color: var(--muted);
}

.button.compact {
  margin-top: 20px;
}

.section {
  padding: clamp(56px, 9vw, 112px) clamp(18px, 6vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.stream-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stream-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stream-card:hover {
  border-color: rgba(255, 255, 255, 0.38);
}

.stream-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 900;
}

.stream-card strong,
.stream-card small {
  display: block;
}

.stream-card small {
  margin-top: 5px;
  color: var(--muted);
}

.youtube .stream-icon {
  background: var(--red);
}

.music .stream-icon {
  background: var(--cyan);
  color: #031119;
}

.spotify .stream-icon {
  background: var(--green);
  color: #03150b;
}

.apple .stream-icon {
  background: var(--surface-2);
}

.video-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  background: #0c0d12;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.video-panel {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 43, 63, 0.16), rgba(45, 216, 255, 0.12)),
    #11141b;
  box-shadow: var(--shadow);
}

.player-topbar {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.player-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.player-body {
  display: grid;
  place-items: center;
  min-height: 310px;
  color: var(--muted);
}

.play-orb {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 2rem;
  box-shadow: 0 0 42px rgba(255, 43, 63, 0.38);
}

.release-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 28px;
}

.release-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.status-dot {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 26px rgba(51, 209, 122, 0.75);
}

.release-card p {
  color: var(--muted);
}

.release-card strong {
  display: block;
  max-width: 260px;
  font-size: 2rem;
  line-height: 1.05;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #0c0d12;
}

footer {
  padding: 28px clamp(18px, 6vw, 72px);
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .stream-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-band,
  .release-section {
    grid-template-columns: 1fr;
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .hero {
    min-height: 94svh;
    padding-top: 164px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(7, 8, 12, 0.94), rgba(7, 8, 12, 0.62)),
      linear-gradient(0deg, var(--bg), rgba(7, 8, 12, 0.08) 44%);
  }

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

  .video-panel {
    min-height: 280px;
  }

  .player-body {
    min-height: 230px;
  }

  .button {
    width: 100%;
  }
}
