:root {
  color-scheme: dark;
  --ink: #fff9f3;
  --muted: #cfd8d2;
  --night: #080a09;
  --pitch: #0a5c38;
  --pitch-deep: #052f21;
  --red: #d71920;
  --red-deep: #98151b;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: rgba(0, 0, 0, 0.42);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(215, 25, 32, 0.2), transparent 32rem),
    linear-gradient(135deg, rgba(5, 47, 33, 0.95), rgba(8, 10, 9, 0.98) 54%),
    var(--night);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(255, 255, 255, 0.09) 49.9%, rgba(255, 255, 255, 0.09) 50.1%, transparent 50.3%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 84px);
  opacity: 0.42;
  mix-blend-mode: screen;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--white);
  color: #111;
  padding: 0.75rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
}

.brand-mark,
.header-cta,
.button,
.stream-link {
  min-height: 44px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
}

.cross {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid var(--white);
  border-radius: 4px;
  background:
    linear-gradient(var(--red), var(--red)) center / 4px 100% no-repeat,
    linear-gradient(90deg, var(--red), var(--red)) center / 100% 4px no-repeat,
    var(--white);
  box-shadow: 0 8px 24px rgba(215, 25, 32, 0.32);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  font-weight: 800;
}

main,
.site-footer {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.hero {
  display: grid;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 3rem 0 4rem;
}

.hero-copy {
  max-width: 44rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  border-radius: 999px;
  background: var(--red);
  padding: 0.35rem 0.7rem;
  box-shadow: 0 0 38px rgba(215, 25, 32, 0.34);
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 0.35rem;
  font-size: 4rem;
  line-height: 0.93;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: 2.05rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.artist {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 1.4rem;
  font-weight: 800;
}

.tagline,
.listen-copy p,
.mood-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0.85rem 1.05rem;
  text-decoration: none;
  font-weight: 900;
  font: inherit;
  cursor: pointer;
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 38px rgba(215, 25, 32, 0.33);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.sound-button[disabled] {
  cursor: default;
  opacity: 0.72;
}

.artwork {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 70px var(--shadow);
  isolation: isolate;
}

.artwork::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5, 47, 33, 0.36));
}

.video-section,
.listen-section,
.mood-section {
  padding: 4.5rem 0;
}

.video-section {
  text-align: center;
}

.video-section h2 {
  max-width: 14ch;
  margin-inline: auto;
}

.video-frame {
  position: relative;
  width: 100%;
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #020403;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16 / 9;
}

.video-frame iframe,
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-poster {
  cursor: pointer;
  padding: 0;
  color: var(--white);
  background: #020403;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 180ms ease, transform 180ms ease;
}

.video-poster:hover img,
.video-poster:focus-visible img {
  opacity: 1;
  transform: scale(1.015);
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.16), 0 18px 50px rgba(0, 0, 0, 0.42);
}

.play-icon::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 23px;
  border-block: 15px solid transparent;
  border-left: 22px solid var(--white);
}

.listen-section {
  display: grid;
  gap: 1.5rem;
}

.listen-copy {
  max-width: 35rem;
}

.stream-grid {
  display: grid;
  gap: 0.85rem;
}

.stream-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.stream-link:hover,
.stream-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.13);
}

.stream-link span {
  font-size: 1.05rem;
  font-weight: 900;
}

.stream-link small {
  color: var(--muted);
  text-align: right;
}

.primary-stream {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 18px 44px rgba(215, 25, 32, 0.28);
}

.primary-stream small {
  color: rgba(255, 255, 255, 0.84);
}

.mood-section {
  max-width: 46rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

@media (min-width: 760px) {
  .hero {
    grid-template-columns: 1fr 0.88fr;
  }

  h1 {
    font-size: 5.6rem;
  }

  h2 {
    font-size: 3rem;
  }

  .listen-section {
    grid-template-columns: 0.84fr 1fr;
    align-items: start;
  }
}

@media (max-width: 420px) {
  .brand-mark span:last-child {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .button,
  .stream-link {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
