@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Manrope:wght@300;400;500;600&family=Unbounded:wght@300;400;500;600&display=swap");

:root {
  color-scheme: dark;
  --black: #050505;
  --ink: #0a0a0a;
  --panel: #0e0e0e;
  --white: #eeeae3;
  --muted: #8b8883;
  --line: rgba(238, 234, 227, 0.17);
  --red: #e31b14;
  --display: "Unbounded", "Arial Black", sans-serif;
  --sans: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

::selection {
  background: var(--red);
  color: var(--white);
}

a,
button,
input {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 27, 20, 0.09), transparent 67%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

body:hover .cursor-glow {
  opacity: 1;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  height: 88px;
  padding: 0 3.2vw;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
}

.brand-mark {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.red {
  color: var(--red);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: #aaa7a2;
}

.site-nav a::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  content: "";
  transition: width 0.25s ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a:hover::after {
  width: 100%;
}

.sound-toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0;
  border: 0;
  background: none;
  color: #aaa7a2;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sound-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #666;
}

.sound-toggle[aria-pressed="true"] .sound-dot {
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: pulse 1.2s infinite;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: none;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: var(--white);
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 57% 43%;
  min-height: 100svh;
  padding-top: 88px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 17%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 17, 11, 0.14), transparent 67%);
  content: "";
}

.hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 8vh 4vw 4vh 6vw;
}

.eyebrow {
  margin: 0;
  color: #918e88;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.6;
  text-transform: uppercase;
}

.eyebrow span {
  margin: 0 0.6rem;
  color: var(--red);
}

.display-title {
  position: relative;
  z-index: 2;
  margin: 2.5rem 0 3.4rem;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7.4vw, 8.2rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.88;
  text-transform: uppercase;
}

.display-title > span {
  display: block;
  width: max-content;
}

.display-title > span:nth-child(2) {
  margin-left: 9%;
}

.outline-word {
  position: relative;
  color: var(--black);
  -webkit-text-stroke: 1px var(--white);
}

.outline-word::after {
  position: absolute;
  z-index: -1;
  top: 7%;
  left: 0.055em;
  color: transparent;
  content: attr(data-text);
  opacity: 0.6;
  -webkit-text-stroke: 1px var(--red);
}

.hero-bottom {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 3rem;
}

.hero-intro {
  min-width: 0;
  max-width: 420px;
  margin: 0;
  color: #aaa7a2;
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  line-height: 1.7;
}

.round-link {
  display: grid;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid #5a5855;
  border-radius: 50%;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.round-link:hover {
  border-color: var(--red);
  background: var(--red);
}

.round-link svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.hero-art {
  position: relative;
  min-width: 0;
  align-self: end;
  height: calc(100svh - 88px);
  min-height: 610px;
  margin: 0;
  border-left: 1px solid var(--line);
}

.image-shell {
  position: relative;
  height: calc(100% - 52px);
  overflow: hidden;
  background: #020202;
}

.image-shell::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 22%), linear-gradient(0deg, #050505 0%, transparent 22%);
  content: "";
  pointer-events: none;
}

.image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  filter: contrast(1.08) saturate(0.9);
  transition: transform 1.4s cubic-bezier(0.2, 0.7, 0, 1), filter 0.5s ease;
}

.hero-art:hover .image-shell img {
  transform: scale(1.025);
  filter: contrast(1.12) saturate(1.2);
}

.scan-line {
  position: absolute;
  z-index: 2;
  top: -10%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 27, 20, 0.7), transparent);
  box-shadow: 0 0 12px rgba(227, 27, 20, 0.5);
  animation: scan 8s linear infinite;
}

.hero-art figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 1.4rem;
  border-top: 1px solid var(--line);
  color: #77746f;
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
}

.hero-rail {
  position: absolute;
  right: 1.2rem;
  bottom: 5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #686560;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.hero-rail i {
  display: block;
  width: 1px;
  height: 54px;
  background: #686560;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--red);
  color: #080808;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2.4rem;
  height: 52px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  animation: ticker 26s linear infinite;
}

.ticker-track i {
  font-size: 0.7rem;
  font-style: normal;
}

.section {
  padding: 9rem 6vw;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: 5rem;
}

.section-heading h2,
.timeline-intro h2 {
  margin: 1.2rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6.4vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-transform: uppercase;
}

.section-heading h2 em {
  color: var(--red);
  font-family: Georgia, serif;
  font-weight: 400;
  text-transform: lowercase;
}

.section-heading > p {
  max-width: 450px;
  margin: 0 0 0.6rem;
  color: #999691;
  font-size: 0.95rem;
  line-height: 1.8;
}

.filter-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.3rem;
}

.filter-button {
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: #74716c;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.filter-button:hover,
.filter-button.active {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.signal-card {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 1.5rem;
  background: var(--ink);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease;
}

.signal-card:hover,
.signal-card:focus-visible {
  z-index: 1;
  outline: 1px solid #55514e;
  background: #111;
}

.signal-card.hidden {
  display: none;
}

.signal-card.featured,
.signal-card.wide {
  grid-column: span 2;
}

.card-index {
  position: relative;
  z-index: 2;
  color: #66635e;
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.16em;
}

.card-visual {
  position: absolute;
  inset: 0;
}

.card-copy {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.card-copy > p:first-child {
  margin: 0 0 0.8rem;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-copy h3 {
  max-width: 600px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-transform: uppercase;
}

.card-copy > p:last-child:not(:first-child) {
  max-width: 390px;
  margin: 1rem 0 0;
  color: #77746f;
  font-size: 0.82rem;
  line-height: 1.6;
}

.attention-visual {
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(227, 27, 20, 0.09), transparent 46%);
}

.attention-visual > span {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  color: #514f4b;
  font-family: var(--mono);
  font-size: 0.6rem;
}

.eye {
  position: relative;
  width: min(42%, 260px);
  aspect-ratio: 1.8;
  border: 1px solid #4d4a46;
  border-radius: 100% 0 100% 0;
  transform: rotate(-13deg);
}

.eye::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34%;
  aspect-ratio: 1;
  border: 1px solid var(--red);
  border-radius: 50%;
  background: radial-gradient(circle, var(--red) 0 7%, transparent 9% 100%);
  content: "";
  transform: translate(-50%, -50%);
  animation: look 5s ease-in-out infinite;
}

.crowd-visual {
  display: grid;
  grid-template-columns: repeat(3, 28px);
  grid-template-rows: repeat(3, 38px);
  gap: 13px 10px;
  align-content: center;
  justify-content: center;
  opacity: 0.65;
}

.crowd-visual span {
  position: relative;
  border: 1px solid #464440;
  border-radius: 50% 50% 8px 8px;
}

.crowd-visual span:nth-child(5) {
  border-color: var(--red);
  box-shadow: 0 0 25px rgba(227, 27, 20, 0.2);
}

.quote-card {
  background: var(--white);
  color: var(--black);
}

.quote-card:hover,
.quote-card:focus-visible {
  background: #dcd8d1;
}

.quote-card .card-index,
.quote-card .card-copy > p:first-child {
  color: #7c1713;
}

.quote-card blockquote {
  margin: auto 0;
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  font-style: italic;
  line-height: 1.12;
}

.earth-visual {
  display: grid;
  place-items: center;
}

.orb {
  width: 45%;
  aspect-ratio: 1;
  border: 1px solid #3c3a37;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #272522, #090909 65%);
  box-shadow: inset -25px -20px 40px #000, 0 0 60px rgba(227, 27, 20, 0.08);
}

.earth-visual span {
  position: absolute;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.08em;
}

.data-stream {
  position: absolute;
  top: 18%;
  right: -2%;
  left: -2%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.1em 0.3em;
  color: #1e1e1e;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.data-stream span:nth-child(even) {
  color: #2e0c0a;
  text-decoration: line-through 4px var(--red);
}

.barcode-visual {
  inset: 10% 12% 36%;
  background: repeating-linear-gradient(90deg, #32302d 0 2px, transparent 2px 8px, #514e4a 8px 9px, transparent 9px 14px);
  opacity: 0.6;
}

.timeline-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(480px, 1.1fr);
  gap: 9vw;
  border-top: 1px solid var(--line);
  background: #080808;
}

.timeline-intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 2rem;
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--line);
}

.timeline-year {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid #4b4945;
  border-radius: 50%;
  color: var(--red);
  font-family: Georgia, serif;
  font-style: italic;
}

.timeline-item h3 {
  margin: 0.8rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.3vw, 3.7rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.timeline-item div:last-child > p:last-child {
  max-width: 400px;
  margin: 0;
  color: #898681;
  font-size: 0.9rem;
  line-height: 1.7;
}

.manifesto-section {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  background: var(--red);
  color: #090909;
}

.manifesto-art {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #030303;
}

.manifesto-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, rgba(227, 27, 20, 0.85)), linear-gradient(0deg, rgba(0, 0, 0, 0.4), transparent 40%);
  content: "";
}

.manifesto-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.4);
}

.manifesto-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw;
}

.manifesto-copy .eyebrow {
  color: rgba(0, 0, 0, 0.6);
}

.manifesto-statement {
  margin: 2.2rem 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.manifesto-statement em {
  font-family: Georgia, serif;
  font-weight: 400;
  text-transform: lowercase;
}

.manifesto-body {
  max-width: 560px;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.text-link {
  align-self: flex-start;
  margin-top: 3rem;
  padding: 0 0 0.5rem;
  border: 0;
  border-bottom: 1px solid #090909;
  background: none;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: 1rem;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.closing-section {
  position: relative;
  display: flex;
  min-height: 88svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 6vw;
  text-align: center;
}

.closing-section::before,
.closing-section::after {
  position: absolute;
  width: 28vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red));
  content: "";
  transform: rotate(48deg);
}

.closing-section::before {
  top: 20%;
  left: -5%;
}

.closing-section::after {
  right: -4%;
  bottom: 22%;
  transform: rotate(-38deg);
}

.closing-section h2 {
  margin: 1.6rem 0 4rem;
  font-family: var(--display);
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.84;
}

.closing-section h2 span {
  color: transparent;
  -webkit-text-stroke: 1px var(--red);
}

.subscribe-form {
  width: min(680px, 100%);
  text-align: left;
}

.subscribe-form label {
  display: block;
  margin-bottom: 0.8rem;
  color: #77746f;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.input-wrap {
  display: flex;
  border-bottom: 1px solid #5c5955;
}

.input-wrap:focus-within {
  border-color: var(--red);
}

.input-wrap input {
  min-width: 0;
  flex: 1;
  padding: 1.1rem 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.input-wrap button {
  border: 0;
  background: transparent;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.input-wrap button span {
  margin-left: 0.8rem;
  color: var(--red);
}

.form-status {
  min-height: 1.2em;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 100px;
  padding: 1.5rem 3vw;
  border-top: 1px solid var(--line);
  color: #66635f;
  font-family: var(--mono);
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

.footer-social {
  position: relative;
  color: #8d8984;
  transition: color 0.2s ease;
}

.footer-social::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.footer-social:hover {
  color: var(--white);
}

.footer-social:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

footer p:last-child {
  text-align: right;
}

.footer-brand {
  color: var(--white);
}

.dispatch-dialog {
  width: min(720px, calc(100% - 2rem));
  max-height: calc(100svh - 2rem);
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid #45423e;
  background: #0b0b0b;
  color: var(--white);
  box-shadow: 0 30px 100px #000;
}

.dispatch-dialog::backdrop {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(8px);
}

.dispatch-dialog h2 {
  margin: 1.5rem 0 2.5rem;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 1.5rem;
  font-weight: 200;
}

.dispatch-body {
  color: #aaa7a2;
  font-size: 0.95rem;
  line-height: 1.8;
}

.drop-cap::first-letter {
  float: left;
  margin: 0.08em 0.12em 0 0;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.75;
}

.dispatch-signoff {
  margin: 2.4rem 0 0;
  color: #686560;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes scan {
  from { top: -5%; }
  to { top: 105%; }
}

@keyframes look {
  0%, 100% { transform: translate(-50%, -50%); }
  35% { transform: translate(-28%, -56%); }
  70% { transform: translate(-70%, -43%); }
}

@keyframes pulse {
  50% { opacity: 0.35; }
}

@media (max-width: 980px) {
  .site-header { padding: 0 1.4rem; }
  .menu-toggle { position: relative; z-index: 2; display: block; flex: 0 0 40px; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(5, 5, 5, 0.98);
    font-family: var(--display);
    font-size: 1.3rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .site-nav.open { opacity: 1; pointer-events: auto; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { grid-template-columns: minmax(0, 1fr); padding-top: 88px; }
  .hero-copy { min-height: 68svh; padding: 8rem 6vw 4rem; }
  .hero-art { height: 78svh; min-height: 580px; border-top: 1px solid var(--line); border-left: 0; }
  .hero-rail { display: none; }
  .section { padding: 7rem 5vw; }
  .signal-grid { grid-template-columns: 1fr 1fr; }
  .signal-card.featured, .signal-card.wide { grid-column: span 2; }
  .timeline-section { grid-template-columns: 1fr; }
  .timeline-intro { position: static; }
  .manifesto-section { grid-template-columns: 1fr; }
  .manifesto-art { min-height: 75svh; }
  .manifesto-copy { min-height: 70svh; padding: 10vw 7vw; }
  footer { grid-template-columns: 1fr auto 1fr; }
  .footer-social { justify-self: center; }
}

@media (max-width: 640px) {
  .site-header { height: 72px; }
  .brand-mark { width: 26px; height: 26px; }
  .hero { padding-top: 72px; }
  .hero-copy { min-height: 70svh; padding: 6rem 1.25rem 3rem; }
  .display-title { width: 100%; margin: 2rem 0 3rem; font-size: clamp(3rem, 15vw, 4rem); }
  .display-title > span { width: auto; white-space: nowrap; }
  .display-title > span:nth-child(2) { margin-left: 0; font-size: 0.9em; }
  .display-title > span:last-child { margin-top: 0.12em; font-size: 0.76em; }
  .hero-intro { flex: 1 1 auto; }
  .hero-bottom { align-items: flex-end; gap: 1rem; }
  .hero-intro { font-size: 0.88rem; }
  .round-link { width: 52px; height: 52px; }
  .hero-art { height: 70svh; min-height: 500px; }
  .ticker-track { height: 44px; }
  .section { padding: 6rem 1.25rem; }
  .section-heading { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3.5rem; }
  .section-heading h2, .timeline-intro h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .filter-row { max-width: 100%; overflow-x: auto; padding-bottom: 0.5rem; }
  .filter-button { flex: 0 0 auto; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-card, .signal-card.featured, .signal-card.wide { grid-column: span 1; min-height: 440px; }
  .timeline-section { gap: 5rem; }
  .timeline-item { grid-template-columns: 52px 1fr; gap: 1rem; padding: 3rem 0; }
  .timeline-year { width: 44px; height: 44px; }
  .manifesto-art { min-height: 65svh; }
  .manifesto-copy { min-height: auto; padding: 6rem 1.25rem; }
  .manifesto-statement { font-size: 2.45rem; }
  .closing-section { min-height: 80svh; padding: 6rem 1.25rem; }
  .closing-section h2 { font-size: clamp(3.1rem, 17vw, 5rem); }
  .input-wrap { flex-direction: column; }
  .input-wrap button { align-self: flex-start; padding: 1rem 0; }
  footer { grid-template-columns: 1fr; gap: 0.8rem; padding: 2rem 1.25rem; }
  .footer-social { justify-self: start; }
  footer p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Dispatches */

.inner-header {
  position: fixed;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.blog-hero {
  display: grid;
  min-height: 78svh;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  padding: 88px 6vw 0;
  border-bottom: 1px solid var(--line);
}

.blog-hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 5vw 6rem 0;
}

.blog-hero-copy h1 {
  margin: 1.5rem 0 2.5rem;
  font-family: var(--display);
  font-size: clamp(3.7rem, 8.8vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.88;
}

.blog-hero-copy h1 span:not(.red) {
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
}

.blog-hero-copy > .blog-intro {
  max-width: 570px;
  margin: 0;
  color: #97948f;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.75;
}

.archive-jump {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #4a4743;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.archive-jump b {
  color: var(--red);
  font-size: 1rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.archive-jump:hover b {
  transform: translateY(4px);
}

.blog-hero-aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 3rem;
  border-left: 1px solid var(--line);
  font-family: var(--mono);
  text-transform: uppercase;
}

.status-pulse {
  width: 10px;
  height: 10px;
  margin-bottom: auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(227, 27, 20, 0.75);
  animation: pulse 1.4s infinite;
}

.blog-hero-aside p {
  margin: 0 0 0.4rem;
  color: #66635f;
  font-size: 0.57rem;
  letter-spacing: 0.17em;
}

.blog-hero-aside strong {
  color: var(--red);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.blog-hero-aside small {
  margin-top: 2rem;
  color: #77746f;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
}

.featured-dispatch {
  background: #080808;
}

.dispatch-library {
  scroll-margin-top: 2rem;
  border-bottom: 1px solid var(--line);
}

.archive-heading {
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--line);
}

.archive-stream-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  color: #77746f;
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archive-stream-header span:first-child {
  color: var(--red);
}

.daily-stream-header {
  margin-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
}

.featured-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  border: 1px solid var(--line);
  background: var(--ink);
}

.blog-cover {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(125deg, transparent 0 43%, rgba(227, 27, 20, 0.45) 43.2% 43.45%, transparent 43.7%),
    repeating-linear-gradient(155deg, transparent 0 34px, rgba(255, 255, 255, 0.045) 35px 36px, transparent 37px 74px),
    radial-gradient(circle at 68% 52%, #2c0907, #090909 44%, #040404 68%);
}

.blog-cover::after {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(238, 234, 227, 0.12);
  content: "";
  transform: skew(-7deg) rotate(-2deg);
}

.cover-number {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(10rem, 27vw, 28rem);
  font-weight: 600;
  letter-spacing: -0.13em;
  line-height: 0.7;
  transform: translate(-54%, -50%);
  -webkit-text-stroke: 1px rgba(238, 234, 227, 0.42);
}

.cover-loop {
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  padding: 0.65rem 0;
  overflow: hidden;
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  background: rgba(5, 5, 5, 0.72);
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  white-space: nowrap;
  transform: rotate(-7deg);
}

.visual-watermark {
  position: absolute;
  z-index: 4;
  right: 1rem;
  bottom: 0.8rem;
  color: rgba(238, 234, 227, 0.38);
  font-family: var(--mono);
  font-size: 0.46rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 6.5rem);
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  color: #6f6c68;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-story-copy h2 {
  margin: 2rem 0 1.4rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.7vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.featured-story-copy > p {
  margin: 0;
  color: #898681;
  font-size: 0.92rem;
  line-height: 1.75;
}

.story-link {
  margin-top: 3rem;
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-link b {
  display: inline-block;
  margin-left: 0.8rem;
  color: var(--red);
  transition: transform 0.2s ease;
}

.featured-story:hover .story-link b {
  transform: translateX(5px);
}

.compact-heading {
  margin-bottom: 4rem;
}

.compact-heading h2 {
  font-size: clamp(2.8rem, 5vw, 5.5rem);
}

.front-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.dispatch-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.dispatch-archive-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(227, 27, 20, 0.045), transparent 48%),
    #080808;
  transition: background 0.25s ease, color 0.25s ease;
}

.dispatch-archive-card:hover {
  background: var(--white);
  color: var(--black);
}

.dispatch-archive-card > span,
.archive-empty > span {
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dispatch-archive-card strong {
  margin: auto 0 1.25rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.06;
  text-transform: uppercase;
}

.dispatch-archive-card p {
  color: #8f8c87;
  line-height: 1.6;
}

.dispatch-archive-card i {
  margin-top: 1.5rem;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-empty {
  display: grid;
  min-height: 230px;
  grid-column: 1 / -1;
  place-content: center;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.archive-empty p {
  max-width: 520px;
  color: #85827d;
  line-height: 1.7;
}

.generated-source-list {
  display: grid;
  gap: 0;
  max-width: 900px;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.generated-source-list a {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: #8e8b86;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.generated-source-list a:hover {
  color: var(--red);
}

.front-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 1.5rem;
  overflow: hidden;
  background: var(--ink);
  transition: background 0.3s ease;
}

.front-card::before {
  position: absolute;
  right: -35%;
  bottom: -25%;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(227, 27, 20, 0.2);
  border-radius: 50%;
  content: "";
  transition: transform 0.5s ease;
}

.front-card:hover {
  background: #121212;
}

.front-card:hover::before {
  transform: scale(1.25);
}

.front-card > span {
  color: #77746f;
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.front-card strong {
  position: relative;
  z-index: 1;
  margin: auto 0 1rem;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.07em;
}

.front-card p {
  position: relative;
  z-index: 1;
  min-height: 3em;
  margin: 0;
  color: #7d7a75;
  font-size: 0.78rem;
  line-height: 1.5;
}

.front-card i {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.55rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.method-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  border-top: 1px solid #280604;
  background: var(--red);
  color: #080808;
}

.method-label,
.method-copy {
  padding: clamp(4rem, 8vw, 9rem) 6vw;
}

.method-label {
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}

.method-label .eyebrow {
  color: rgba(0, 0, 0, 0.55);
}

.method-label > span {
  display: block;
  margin-top: 3rem;
  font-family: var(--mono);
  font-size: clamp(0.8rem, 1.4vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2;
}

.method-copy h2 {
  margin: 0 0 2rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.method-copy > p {
  max-width: 630px;
  font-weight: 500;
  line-height: 1.75;
}

.dark-link {
  color: #080808;
  border-color: #080808;
}

.blog-closing {
  min-height: 75svh;
}

/* Long-form dispatch */

.reading-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.article-hero {
  padding: clamp(10rem, 18vh, 14rem) 6vw 6rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 25%, rgba(227, 27, 20, 0.1), transparent 28%),
    repeating-linear-gradient(120deg, transparent 0 110px, rgba(255, 255, 255, 0.018) 111px 112px);
}

.article-kicker {
  display: flex;
  gap: 0.8rem;
  color: #77746f;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-kicker span:nth-child(2) {
  color: var(--red);
}

.article-hero h1 {
  max-width: 1260px;
  margin: 2.5rem 0 4rem;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7.2vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.92;
  text-transform: uppercase;
}

.article-hero h1 em {
  color: transparent;
  font-family: Georgia, serif;
  font-weight: 400;
  text-transform: lowercase;
  -webkit-text-stroke: 1px var(--red);
}

.mobile-break {
  display: none;
}

.article-deck {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: 5vw;
}

.article-deck > p {
  max-width: 720px;
  margin: 0;
  color: #aaa7a2;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  line-height: 1.55;
}

.article-meta {
  display: grid;
  gap: 0.55rem;
  color: #66635f;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.article-warning {
  display: grid;
  grid-template-columns: 150px minmax(0, 760px);
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.article-warning span {
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.15em;
}

.article-warning p {
  margin: 0;
  color: #716e69;
  font-size: 0.78rem;
  line-height: 1.7;
}

.article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 930px);
  justify-content: center;
  gap: 6vw;
  padding: 8rem 6vw 10rem;
}

.article-toc {
  position: sticky;
  top: 8rem;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.article-toc .eyebrow {
  margin-bottom: 1rem;
}

.article-toc a {
  color: #77746f;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.article-toc a:hover {
  color: var(--white);
}

.copy-link {
  align-self: flex-start;
  margin-top: 1.5rem;
  padding: 0.7rem 0;
  border: 0;
  border-bottom: 1px solid #3c3936;
  background: transparent;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dispatch-signal {
  scroll-margin-top: 7rem;
  padding-bottom: 8rem;
}

.signal-visual {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background-color: #080808;
  isolation: isolate;
}

.signal-visual::before,
.signal-visual::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.visual-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #66635e;
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.15em;
}

.signal-visual > strong {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300;
  letter-spacing: -0.09em;
  text-align: center;
  text-shadow: 4px 4px 0 #260604;
}

.visual-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
}

.visual-rings {
  background: radial-gradient(circle at center, #190504 0 1px, transparent 2px), #070707;
}

.visual-rings::before {
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid #3a3734;
  border-radius: 50%;
  box-shadow: 0 0 0 38px #070707, 0 0 0 39px #2e2b28, 0 0 0 78px #070707, 0 0 0 79px #241110;
}

.visual-debris {
  background:
    linear-gradient(35deg, transparent 45%, rgba(227, 27, 20, 0.4) 45.2% 45.5%, transparent 45.7%),
    repeating-linear-gradient(140deg, transparent 0 44px, rgba(238, 234, 227, 0.08) 45px 46px, transparent 47px 83px), #070707;
}

.visual-debris::after {
  inset: 18%;
  border: 1px solid #45413d;
  transform: skew(14deg) rotate(-5deg);
}

.visual-cracks,
.visual-nexus {
  background:
    repeating-conic-gradient(from 18deg at 50% 100%, #090909 0 8deg, #2b0807 8.2deg 8.7deg, #090909 9deg 17deg);
}

.visual-cracks::before,
.visual-nexus::before {
  width: 70%;
  height: 85%;
  border: solid #34312e;
  border-width: 1px 0 0 1px;
  transform: rotate(45deg) skew(12deg);
}

.visual-target {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(227, 27, 20, 0.55) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, rgba(227, 27, 20, 0.55) 50%, transparent 50.1%), #070707;
}

.visual-target::before {
  width: 56%;
  aspect-ratio: 1;
  border: 1px solid #4b4844;
  border-radius: 50%;
  box-shadow: 0 0 0 38px #070707, 0 0 0 39px #2d2a27;
}

.visual-empty::before {
  width: 52%;
  aspect-ratio: 1;
  border: 1px solid #504c47;
  border-radius: 50%;
  background: radial-gradient(circle, #060606 52%, #181715 53% 56%, #070707 57%);
}

.visual-empty::after {
  width: 1px;
  height: 130%;
  background: var(--red);
  transform: rotate(37deg);
}

.visual-drop {
  background: radial-gradient(circle at 50% 58%, rgba(28, 54, 58, 0.24), transparent 36%), #070707;
}

.visual-drop::before {
  width: 26%;
  aspect-ratio: 0.78;
  border: 1px solid #aaa7a2;
  border-radius: 70% 35% 65% 55%;
  transform: rotate(45deg);
  box-shadow: 10px 10px 0 rgba(227, 27, 20, 0.12);
}

.visual-heat {
  background: linear-gradient(180deg, transparent, rgba(227, 27, 20, 0.1)), #070707;
}

.visual-heat::before {
  right: 8%;
  bottom: 0;
  left: 8%;
  height: 74%;
  background: repeating-linear-gradient(90deg, #24211f 0 5%, transparent 5% 8%, #44100d 8% 14%, transparent 14% 17%);
  clip-path: polygon(0 95%, 0 80%, 12% 76%, 12% 62%, 24% 65%, 24% 49%, 37% 50%, 37% 40%, 50% 34%, 50% 27%, 63% 30%, 63% 17%, 77% 21%, 77% 9%, 90% 13%, 90% 0, 100% 0, 100% 100%);
}

.visual-smog {
  background: repeating-linear-gradient(0deg, #090909 0 34px, #171615 35px 61px, #0c0c0c 62px 94px);
}

.visual-smog::after {
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0 20%, rgba(0, 0, 0, 0.72) 70%);
}

.visual-loop::before {
  width: 48%;
  aspect-ratio: 1;
  border: 12px double #312e2b;
  border-right-color: var(--red);
  border-radius: 50%;
  transform: rotate(-32deg);
}

.visual-loop::after {
  width: 16%;
  height: 18px;
  background: #070707;
  transform: rotate(-32deg) translateX(145%);
}

.visual-nexus::after {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: -120px -60px 0 #504c48, 120px -60px 0 #504c48, -75px 100px 0 #504c48, 75px 100px 0 #504c48;
}

.visual-bars {
  background: repeating-linear-gradient(90deg, #090909 0 7px, #302e2b 8px 10px, #090909 11px 18px, #4a0d0a 19px 20px);
}

.visual-bars::after {
  inset: 0;
  background: radial-gradient(circle, transparent 0 22%, rgba(0, 0, 0, 0.92) 76%);
}

.visual-chain::before {
  width: 52%;
  height: 70px;
  border: 2px solid #494642;
  border-radius: 50%;
  box-shadow: 90px 55px 0 -2px #070707, 90px 55px 0 0 #6a1914, -90px -55px 0 -2px #070707, -90px -55px 0 0 #34312e;
  transform: rotate(-24deg);
}

.visual-countdown {
  background: repeating-linear-gradient(90deg, transparent 0 9.8%, rgba(227, 27, 20, 0.13) 10%, transparent 10.2% 20%), #070707;
}

.visual-countdown::after {
  width: 1px;
  height: 72%;
  background: var(--red);
  box-shadow: -130px 0 #383532, 130px 0 #383532;
}

.visual-split {
  background: linear-gradient(90deg, #1c1a18 0 74%, #330b08 74% 76%, #090909 76%);
}

.visual-split::after {
  width: 1px;
  height: 100%;
  background: var(--red);
}

.visual-flatline {
  background: linear-gradient(0deg, transparent 49.8%, #484440 50%, transparent 50.2%), #070707;
}

.visual-flatline::after {
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, #4d4945 0 45%, var(--red) 45% 47%, #4d4945 47% 65%, transparent 65%);
  clip-path: polygon(0 45%, 45% 45%, 48% 0, 51% 100%, 54% 45%, 100% 45%, 100% 55%, 54% 55%, 51% 100%, 48% 0, 45% 55%, 0 55%);
}

.visual-alone {
  background: radial-gradient(circle at center, rgba(227, 27, 20, 0.1), transparent 24%), #070707;
}

.visual-alone::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 25px var(--red);
}

.visual-alone::after {
  width: 44%;
  aspect-ratio: 1;
  border: 1px solid #24221f;
  border-radius: 50%;
}

.visual-scroll::before {
  width: 34%;
  height: 58%;
  border: 1px solid #504d48;
  box-shadow: 18px 18px 0 -1px #070707, 18px 18px 0 #342f2c, 36px 36px 0 -1px #070707, 36px 36px 0 #4a0d0a;
  transform: rotate(-4deg);
}

.visual-vote {
  background: repeating-linear-gradient(90deg, transparent 0 12%, #242220 12.2% 17%, transparent 17.2% 22%);
}

.visual-vote::after {
  width: 120%;
  height: 2px;
  background: var(--red);
  transform: rotate(-13deg);
}

.visual-offline {
  background: repeating-radial-gradient(circle at 50% 120%, transparent 0 60px, #302d2a 61px 62px, transparent 63px 106px), #070707;
}

.visual-offline::after {
  width: 2px;
  height: 120%;
  background: var(--red);
  transform: rotate(32deg);
}

.visual-censor {
  background: repeating-linear-gradient(0deg, #080808 0 55px, #191817 56px 85px, #080808 86px 116px);
}

.visual-censor::after {
  width: 78%;
  height: 28%;
  border-top: 17px solid #030303;
  border-bottom: 24px solid #030303;
  box-shadow: inset 0 2px var(--red);
  transform: rotate(-2deg);
}

.signal-entry {
  padding: 3.5rem 2vw 0;
}

.signal-tag {
  margin: 0 0 1rem;
  color: var(--red);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-entry h2 {
  margin: 0 0 1.4rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4.7vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1.03;
  text-transform: uppercase;
}

.signal-lede {
  margin: 0 0 1.7rem;
  color: #cbc7c0;
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-style: italic;
  line-height: 1.45;
}

.signal-entry > p:not(.signal-tag):not(.signal-lede) {
  max-width: 730px;
  color: #918e89;
  font-size: 0.96rem;
  line-height: 1.85;
}

.signal-reading {
  padding-left: 1.2rem;
  border-left: 1px solid var(--red);
  color: #b5b1ab !important;
}

.source-link {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 2rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #35322f;
  color: #6f6c67;
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.source-link:hover {
  border-color: var(--red);
  color: var(--white);
}

.source-pair {
  display: grid;
  gap: 0.6rem;
}

.source-pair .source-link + .source-link {
  margin-top: 0;
}

.article-methodology,
.source-index {
  scroll-margin-top: 8rem;
  padding: 6rem 2vw;
  border-top: 1px solid var(--line);
}

.article-methodology h2,
.source-index h2 {
  margin: 1.2rem 0 2rem;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.article-methodology > p:not(.eyebrow),
.source-index > p:not(.eyebrow) {
  max-width: 720px;
  color: #8e8b86;
  line-height: 1.85;
}

.source-index {
  padding-bottom: 0;
}

.source-index .text-link {
  margin-top: 2rem;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .site-nav { gap: 1.25rem; }
  .site-nav,
  .sound-toggle { font-size: 0.58rem; }
  .article-layout { grid-template-columns: 210px minmax(0, 1fr); gap: 4vw; }
  .front-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .blog-hero { grid-template-columns: 1fr; padding-right: 5vw; padding-left: 5vw; }
  .blog-hero-copy { min-height: 68svh; padding-right: 0; }
  .blog-hero-aside { min-height: 240px; padding: 2rem 0; border-top: 1px solid var(--line); border-left: 0; }
  .status-pulse { margin-bottom: 3rem; }
  .featured-story { grid-template-columns: 1fr; }
  .blog-cover { min-height: 520px; border-right: 0; border-bottom: 1px solid var(--line); }
  .front-grid { grid-template-columns: repeat(2, 1fr); }
  .dispatch-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .method-section { grid-template-columns: 1fr; }
  .method-label { border-right: 0; border-bottom: 1px solid rgba(0, 0, 0, 0.3); }
  .article-deck { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; padding-top: 4rem; }
  .article-toc { position: static; display: grid; grid-template-columns: repeat(3, 1fr); padding-bottom: 3rem; border-bottom: 1px solid var(--line); }
  .article-toc .eyebrow,
  .article-toc .copy-link { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .blog-hero { padding-top: 72px; }
  .blog-hero-copy { min-height: 66svh; padding: 6rem 0 4rem; }
  .blog-hero-copy h1 { font-size: clamp(3rem, 12vw, 4rem); }
  .blog-hero-aside { min-height: 210px; }
  .archive-jump { margin-top: 2rem; }
  .archive-stream-header { align-items: flex-start; flex-direction: column; }
  .featured-dispatch,
  .blog-index { padding-right: 1.25rem; padding-left: 1.25rem; }
  .blog-cover { min-height: 390px; }
  .featured-story-copy { padding: 2.5rem 1.4rem; }
  .front-grid { grid-template-columns: 1fr; }
  .dispatch-archive-grid { grid-template-columns: 1fr; }
  .dispatch-archive-card { min-height: 330px; }
  .front-card { min-height: 330px; }
  .method-label,
  .method-copy { padding: 4rem 1.25rem; }
  .article-hero {
    width: 100%;
    overflow: hidden;
    padding: 9rem 1.25rem 4rem;
  }
  .article-hero h1 {
    max-width: 100%;
    margin: 2rem 0 3rem;
    font-size: clamp(2.45rem, 10.5vw, 4rem);
    letter-spacing: -0.065em;
  }
  .article-hero h1 em { font-size: 0.92em; }
  .mobile-break { display: inline; }
  .article-deck {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
  }
  .article-deck > p {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .article-warning { grid-template-columns: 1fr; gap: 0.8rem; margin-top: 3.5rem; }
  .article-layout { padding: 3rem 1.25rem 7rem; }
  .article-toc { grid-template-columns: 1fr 1fr; }
  .signal-visual { min-height: 330px; }
  .signal-visual > strong { font-size: clamp(2.8rem, 14vw, 5rem); }
  .signal-entry { padding: 2.5rem 0 0; }
  .dispatch-signal { padding-bottom: 6rem; }
  .visual-watermark { font-size: 0.4rem; }
  .article-methodology,
  .source-index { padding-right: 0; padding-left: 0; }
}
