:root {
  --black: #050505;
  --graphite: #111111;
  --panel: #171717;
  --paper: #f5f5f5;
  --muted: #bdbdbd;
  --red: #b92e2e;
  --red-hot: #d0312d;
  --line: rgba(245, 245, 245, 0.16);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--paper);
  background:
    radial-gradient(circle at 15% 10%, rgba(185, 46, 46, 0.24), transparent 30rem),
    radial-gradient(circle at 90% 20%, rgba(208, 49, 45, 0.14), transparent 24rem),
    linear-gradient(180deg, #020202 0%, var(--black) 40%, #0b0b0b 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 70%);
  z-index: 0;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .17;
  background-image: radial-gradient(circle, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}

a { color: inherit; }
img, video { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(5, 5, 5, .78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  box-shadow: 0 0 32px rgba(208, 49, 45, .45);
}
.brand-text { font-size: .95rem; }

.site-nav {
  display: flex;
  gap: .3rem;
  align-items: center;
}
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  padding: .7rem .85rem;
  border-radius: 999px;
  transition: .2s ease;
}
.site-nav a:hover { color: var(--paper); background: rgba(255,255,255,.08); }
.nav-toggle { display: none; }

.section {
  position: relative;
  z-index: 2;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1rem, 4vw, 4rem);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: clamp(2rem, 5vw, 4rem);
}

.hero::after, .manifest::after {
  content: "";
  position: absolute;
  width: min(46vw, 540px);
  aspect-ratio: 1;
  border: 34px solid rgba(245,245,245,.08);
  border-left-color: rgba(208,49,45,.34);
  border-bottom-color: transparent;
  border-radius: 50%;
  right: -14vw;
  top: 10%;
  transform: rotate(-18deg);
  pointer-events: none;
}

.hero-content { max-width: 760px; }
.kicker {
  margin: 0 0 .9rem;
  color: var(--red-hot);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 900;
}

h1, h2, h3 {
  margin: 0;
  line-height: .92;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(4rem, 13vw, 11rem);
  text-shadow: 0 14px 0 rgba(185,46,46,.28);
}
h2 { font-size: clamp(2.8rem, 7vw, 6.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1; }

.hero-subtitle {
  margin: 1rem 0 0;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--paper);
}
.hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}
.hero-art {
  position: relative;
  isolation: isolate;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(-1.4deg);
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,5,.15), rgba(5,5,5,.85));
  z-index: 1;
}
.hero-art img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(1.06);
}

.hero-actions, .social-links, .episode-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.8rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82rem;
  border: 1px solid var(--line);
  transition: .22s ease;
}
.btn.primary { background: var(--red); border-color: var(--red); color: white; box-shadow: 0 14px 44px rgba(185,46,46,.38); }
.btn.ghost { background: rgba(255,255,255,.06); }
.btn.linklike { border-color: transparent; color: var(--muted); }
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); }

.section-heading {
  display: grid;
  gap: .7rem;
  margin-bottom: 2rem;
  max-width: 900px;
}
.section-heading.narrow { max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading p:not(.kicker) { color: var(--muted); line-height: 1.7; font-size: 1.08rem; }

.manifest-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: start;
}
blockquote, .manifest-copy, .latest-card, .video-card, .contact-panel, .mini-card {
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
blockquote {
  margin: 0;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
  border-left: 6px solid var(--red);
}
blockquote cite {
  display: block;
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: .9rem;
  font-style: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.manifest-copy {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.08rem;
}
.manifest-copy strong { color: var(--paper); }
.values {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.6rem 0;
  padding: 0;
}
.values li {
  padding: .55rem .8rem;
  border-radius: 999px;
  background: rgba(185,46,46,.18);
  color: var(--paper);
  border: 1px solid rgba(208,49,45,.36);
  font-weight: 800;
}
.closing-line { color: var(--paper); font-weight: 900; font-size: 1.35rem; }

.video-card { max-width: 980px; margin-inline: auto; padding: clamp(.6rem, 2vw, 1rem); }
.video-card video { border-radius: calc(var(--radius) - 10px); width: 100%; background: #000; }

.latest-card {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) 1.1fr;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(.8rem, 2vw, 1rem);
  overflow: hidden;
}
.latest-card img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; border-radius: calc(var(--radius) - 10px); }
.latest-body { padding: clamp(1rem, 2vw, 1.6rem); align-self: center; }
.meta { color: var(--red-hot); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; }
.latest-body p, .mini-card p { color: var(--muted); line-height: 1.7; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.mini-card { overflow: hidden; }
.mini-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; filter: saturate(.92) contrast(1.05); }
.mini-card-body { padding: 1.1rem; }
.mini-card .btn { min-height: 42px; padding: .7rem .9rem; margin-top: .5rem; }

.social-links { justify-content: center; margin-top: 2rem; }
.contact { padding-bottom: 5rem; }
.contact-panel { max-width: 900px; margin: auto; padding: clamp(1.6rem, 4vw, 3rem); text-align: center; position: relative; overflow: hidden; }
.contact-panel::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(208,49,45,.2), transparent 38%);
  pointer-events: none;
}
.contact-panel > * { position: relative; }
.contact-panel p { color: var(--muted); line-height: 1.7; font-size: 1.08rem; }
.contact-panel .btn { margin-top: 1rem; }

.site-footer {
  position: relative;
  z-index: 2;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-small { opacity: .8; }

@media (max-width: 960px) {
  .hero, .manifest-grid, .latest-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-art { order: -1; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--paper);
    background: rgba(255,255,255,.06);
    font-size: 1.2rem;
  }
  .site-nav {
    position: absolute;
    inset: 72px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .8rem;
    background: rgba(10,10,10,.97);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .9rem 1rem; }
  .hero-actions, .social-links, .episode-actions { flex-direction: column; }
  .btn { width: 100%; }
  .card-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(3.4rem, 18vw, 5rem); }
  .hero-art img { min-height: 260px; }
  .section { padding-left: 1rem; padding-right: 1rem; }
}
