:root {
  color-scheme: dark;
  --black: #080808;
  --ink: #f7efe7;
  --muted: #c8b8ad;
  --red: #e63425;
  --red-dark: #9d1710;
  --orange: #ff9f2e;
  --blue: #39a6c9;
  --panel: #17110f;
  --line: rgba(247, 239, 231, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(230, 52, 37, 0.28), transparent 28rem),
    radial-gradient(circle at 88% 22%, rgba(57, 166, 201, 0.18), transparent 30rem),
    linear-gradient(135deg, #070707 0%, #180d0b 52%, #030303 100%);
  font-family: Arial, Helvetica, sans-serif;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.home-shell {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 14px;
  width: min(100%, 1380px);
  margin: 0 auto;
  padding: 10px;
  overflow-x: auto;
}

.home-menu {
  position: sticky;
  top: 10px;
  flex: 0 0 140px;
  width: 140px;
  min-width: 140px;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 239, 231, 0.06);
}

.home-content {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.5);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--red);
  background: var(--ink);
}

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

.site-nav a,
.archive-grid a,
.link-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.site-nav a {
  padding: 10px 12px;
  font-size: 0.9rem;
}

.site-nav a:hover,
.archive-grid a:hover,
.link-list a:hover {
  border-color: rgba(255, 159, 46, 0.78);
  background: rgba(255, 159, 46, 0.1);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(247, 239, 231, 0.06);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(26px, 5vw, 72px);
  overflow: hidden;
  align-items: center;
  padding: clamp(46px, 7vw, 82px) clamp(20px, 7vw, 96px) clamp(34px, 5vw, 58px);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.34) 65%, rgba(8, 8, 8, 0.72)),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(247, 239, 231, 0.04) 28px 30px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.hero-logo {
  display: block;
  width: min(100%, 820px);
  height: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.55));
}

.hero-photo {
  position: relative;
  z-index: 2;
  align-self: end;
  margin: 0;
}

.hero-photo img {
  width: 100%;
  border: 1px solid rgba(247, 239, 231, 0.25);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.56);
}

.hero-photo figcaption {
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.record {
  position: absolute;
  right: clamp(-180px, -8vw, -40px);
  top: 8%;
  width: min(58vw, 680px);
  aspect-ratio: 1;
  border: 2px solid rgba(247, 239, 231, 0.2);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(247, 239, 231, 0.08) 0 2px, transparent 2px 12px),
    linear-gradient(135deg, rgba(230, 52, 37, 0.55), rgba(57, 166, 201, 0.3));
  opacity: 0.82;
  transform: rotate(-18deg);
}

.record-label {
  position: absolute;
  right: 10%;
  top: 30%;
  color: rgba(247, 239, 231, 0.08);
  font-size: clamp(9rem, 26vw, 26rem);
  font-weight: 900;
  line-height: 1;
}

.pulse {
  position: absolute;
  left: 0;
  width: 68%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0.34;
}

.pulse-one {
  top: 31%;
}

.pulse-two {
  top: 47%;
  width: 54%;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.pulse-three {
  top: 64%;
  width: 46%;
  background: linear-gradient(90deg, var(--blue), transparent);
}

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

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(4.6rem, 13.2vw, 11rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5.8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.panel h2,
.comic-callout h2,
.contact h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.hero-copy {
  max-width: 720px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.08;
}

.hero-actions,
.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--red);
}

.button-primary:hover {
  background: var(--orange);
}

.button-secondary,
.button-light {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(247, 239, 231, 0.08);
}

.button-light {
  background: rgba(8, 8, 8, 0.2);
}

.section,
.strip {
  padding-right: clamp(20px, 7vw, 96px);
  padding-left: clamp(20px, 7vw, 96px);
}

.section {
  padding-top: clamp(70px, 10vw, 130px);
  padding-bottom: clamp(70px, 10vw, 130px);
}

.updates-stack,
.comic-callout {
  padding-top: clamp(16px, 2.4vw, 28px);
  padding-bottom: clamp(16px, 2.4vw, 28px);
}

.hero + .updates-stack {
  padding-top: 12px;
}

.strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 24px;
  padding-bottom: 24px;
  background: rgba(247, 239, 231, 0.07);
}

.notice strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.notice span {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(32px, 5vw, 64px);
}

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

.card {
  display: grid;
  min-height: 330px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(230, 52, 37, 0.16), transparent),
    rgba(247, 239, 231, 0.06);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.card img {
  width: 90px;
  height: 90px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.card:hover {
  border-color: rgba(230, 52, 37, 0.78);
  background:
    linear-gradient(145deg, rgba(230, 52, 37, 0.26), transparent),
    rgba(247, 239, 231, 0.09);
  transform: translateY(-4px);
}

.card span {
  color: var(--orange);
  font-weight: 900;
}

.card p {
  margin-bottom: 0;
}

.split,
.comic-callout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.updates-stack {
  display: grid;
  gap: 20px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 48px);
  background: rgba(247, 239, 231, 0.07);
}

.accent-panel {
  color: var(--black);
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.album-feature {
  width: min(100%, 260px);
  margin-bottom: 18px;
  border: 1px solid rgba(8, 8, 8, 0.24);
  border-radius: 8px;
}

.accent-panel .eyebrow,
.accent-panel p {
  color: rgba(8, 8, 8, 0.72);
}

.link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.link-list a {
  padding: 14px;
}

.archive {
  background: rgba(0, 0, 0, 0.28);
}

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

.archive-grid a {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(247, 239, 231, 0.06);
}

.comic-callout {
  align-items: center;
}

.comic-callout img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.48);
}

.text-link,
.contact a,
.warning a {
  color: var(--orange);
  font-weight: 900;
}

.warning {
  display: block;
  background: rgba(230, 52, 37, 0.13);
}

.warning h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.warning p {
  max-width: 1000px;
}

.contact {
  max-width: 980px;
}

.warning + .contact {
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(36px, 5vw, 56px);
}

@media (max-width: 880px) {
  .home-shell {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 8px;
    overflow-x: hidden;
  }

  .home-menu {
    position: static;
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    min-height: 330px;
    height: 330px;
  }

  .home-content {
    width: 100%;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 72px 14px auto;
    display: none;
    grid-template-columns: 1fr;
    padding: 12px;
    background: rgba(8, 8, 8, 0.96);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.5);
  }

  .site-nav.is-open {
    display: grid;
  }

  .cards,
  .split,
  .comic-callout,
  .hero,
  .archive-grid,
  .link-list {
    grid-template-columns: 1fr;
  }

  .strip {
    display: grid;
  }

  .record {
    width: 78vw;
    opacity: 0.5;
  }

  .hero-photo {
    max-width: 360px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 78vh;
  }

  h1 {
    font-size: clamp(4rem, 26vw, 6rem);
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .site-header {
    min-height: 66px;
  }

  .site-nav {
    top: 66px;
  }
}
