:root {
  --bg: #000;
  --text: #f7f7f2;
  --muted: #c9cbc2;
  --line: rgba(255, 255, 255, 0.18);
  --panel: rgba(10, 11, 11, 0.82);
  --teal: #75d8cf;
  --ember: #d9a15f;
  --steel: #8e98a2;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Avenir, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

.site-header {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: min-content;
}

.brand-mark {
  width: 58px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 3px solid var(--text);
  border-radius: 50%;
  position: relative;
  color: var(--text);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0;
  isolation: isolate;
}

.brand-mark::before {
  content: "";
  position: absolute;
  width: 76px;
  height: 5px;
  top: 25px;
  left: -12px;
  background: var(--text);
  transform: rotate(-45deg);
  opacity: 0.18;
}

.brand-text {
  display: grid;
  gap: 2px;
  font-size: 0.76rem;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-text span:first-child {
  color: var(--text);
  font-weight: 800;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 26px;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text);
  padding-block: 8px;
  border-bottom: 1px solid transparent;
}

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

.band {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.band::before,
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.band::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.9)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08));
}

.band-inner {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 72px 0;
}

.band-inner.compact {
  max-width: 700px;
}

.band-hero {
  min-height: 470px;
}

.band-hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.72)),
    url("assets/blackhole.png") center / cover no-repeat;
}

.band-rings {
  margin-top: -22px;
}

.band-rings::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.86)),
    url("") 62% 48% / 135% auto no-repeat;
}

.band-moon {
  min-height: 350px;
}

.band-moon::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.94)),
    url("assets/blackhole.png") right 60% / 120% auto no-repeat;
}

.align-right .band-inner {
  margin-left: auto;
  margin-right: max(28px, calc((100vw - var(--max)) / 2));
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2 {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 20px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0;
  text-wrap: balance;
  position: relative;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7.8rem);
}

h2 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

h1::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: var(--text);
  transform: rotate(-3deg);
}

h3 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.lead,
.section-copy,
.section-heading p {
  max-width: 780px;
  color: var(--muted);
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin: 48px 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.icon-button.primary {
  border-color: var(--text);
  background: var(--text);
  color: #000;
}

.content-section {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  margin-bottom: 34px;
}

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

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

.resource-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    var(--panel);
}

.channel-card {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(117, 216, 207, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.channel-card.featured {
  background:
    linear-gradient(145deg, rgba(217, 161, 95, 0.22), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
}

.resource-card:hover,
.resource-card:focus-visible,
.channel-card:hover,
.channel-card:focus-visible,
.download-row:hover {
  border-color: rgba(255, 255, 255, 0.62);
}

.resource-icon {
  width: 40px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid var(--line);
  color: var(--ember);
  font-weight: 800;
}

.play-icon {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #000;
  background: var(--text);
  font-size: 0.85rem;
}

.resource-card p,
.channel-card p,
.timeline p,
.download-row p {
  margin: 0;
  color: var(--muted);
}

.artwork-section {
  padding-top: 36px;
}

.artwork-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.artwork-card {
  min-height: 420px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #080909;
}

.artwork-link {
  display: block;
  width: 100%;
  height: 100%;
}

.artwork-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.artwork-card:hover img,
.artwork-card:focus-within img {
  transform: scale(1.025);
  filter: brightness(1.12);
}

.artwork-card.wide img {
  object-position: center;
}

.artwork-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 3px;
  padding: 18px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0));
}

.artwork-card figcaption span {
  font-weight: 900;
  text-transform: uppercase;
}

.artwork-card figcaption small {
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 28px 28px;
  background: rgba(0, 0, 0, 0.94);
}

.lightbox:target {
  display: flex;
}

.lightbox img {
  max-width: min(1200px, 100%);
  max-height: 86vh;
  display: block;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.72);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 28px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 800;
  text-transform: uppercase;
}

.contact-section {
  border-top: 1px solid var(--line);
}

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

.contact-card {
  min-height: 175px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(217, 161, 95, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.035);
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.62);
}

.contact-label {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 1.15rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline article {
  min-height: 180px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
}

.timeline time {
  display: block;
  margin-bottom: 18px;
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.download-list {
  display: grid;
  gap: 10px;
}

.download-row {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.file-type {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  color: var(--teal);
  font-weight: 900;
}

.status {
  color: var(--steel);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.site-footer {
  width: min(var(--max), calc(100% - 56px));
  min-height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--text);
  border-bottom: 1px solid var(--text);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .resource-grid,
  .channel-grid,
  .artwork-grid,
  .contact-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artwork-card.wide {
    grid-column: span 2;
  }

  .align-right .band-inner {
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .site-header,
  .band-inner,
  .content-section,
  .site-footer {
    width: calc(100% - 32px);
  }

  .site-header {
    padding-inline: 0;
  }

  .brand-text {
    display: none;
  }

  .band-inner {
    padding: 58px 0;
  }

  .resource-grid,
  .channel-grid,
  .artwork-grid,
  .contact-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .artwork-card,
  .artwork-card img {
    min-height: 320px;
  }

  .artwork-card.wide {
    grid-column: auto;
  }

  .download-row {
    grid-template-columns: 58px 1fr;
  }

  .download-row .status {
    grid-column: 2;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
