:root {
  --ink: #090909;
  --paper: #f5f4ef;
  --paper-2: #ebe9e1;
  --muted: #5d5d5a;
  --red: #d20a0a;
  --red-dark: #9f0000;
  --line: #171717;
  --shell: min(1540px, calc(100% - 2rem));
  --serif-block: Rockwell, "Roboto Slab", "Courier New", serif;
  --sans-heavy: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgb(255 255 255 / 0.72), transparent 28rem),
    var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 999;
  inset: 0 auto auto 0;
  translate: 0 -120%;
  padding: .8rem 1rem;
  color: #fff;
  background: var(--red);
  font-weight: 900;
  text-decoration: none;
}
.skip-link:focus { translate: 0 0; }

.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: #fff;
  background: rgb(5 5 5 / 0.96);
  border-bottom: 1px solid rgb(255 255 255 / 0.14);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(210px, 320px) 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
}

.brand { display: inline-flex; width: fit-content; text-decoration: none; }
.brand img { width: clamp(180px, 18vw, 280px); }
.site-header .brand img { filter: brightness(0) invert(1); }

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2.4rem);
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -.6rem;
  height: 3px;
  background: var(--red);
  scale: 0 1;
  transform-origin: left;
  transition: scale 160ms ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after { scale: 1; }

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  min-height: 48px;
  padding: .8rem 1.1rem;
  color: #fff;
  background: var(--red);
  border: 2px solid var(--red);
  font-weight: 950;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 5px 5px 0 #fff;
  transition: translate 120ms ease, box-shadow 120ms ease, background 120ms ease;
}
.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  background: var(--red-dark);
  translate: 3px 3px;
  box-shadow: 2px 2px 0 #fff;
}

.mobile-menu { display: none; }

.hero {
  overflow: clip;
  border-bottom: 2px solid var(--ink);
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgb(0 0 0 / .04) 50%, transparent 50.1%),
    linear-gradient(var(--paper), var(--paper));
}

.hero-grid {
  min-height: clamp(670px, 78vh, 900px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 6rem);
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow,
.panel-kicker {
  margin: 0 0 .7rem;
  color: var(--red);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, p { overflow-wrap: anywhere; }

h1 {
  margin: 0;
  font-family: var(--serif-block);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .78;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 rgb(0 0 0 / .08);
}

.hero-slogan {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 clamp(1rem, 1vw, 1rem);
  font-family: var(--serif-block);
  font-size: clamp(1.35rem, 2.6vw, 3rem);
  font-weight: 950;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.hero-slogan::before,
.hero-slogan::after {
  content: "";
  width: clamp(30px, 5vw, 90px);
  height: 5px;
  background: var(--ink);
}

.daily-topic {
  position: relative;
  padding-block: 1.3rem 1rem;
  border-block: 3px solid var(--ink);
}
.daily-topic::before,
.daily-topic::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 5px;
  background: var(--ink);
  box-shadow: 0 -15px 0 var(--ink), 0 15px 0 var(--ink);
}
.daily-topic::before { left: -36px; rotate: 25deg; }
.daily-topic::after { right: -36px; rotate: -25deg; }

.daily-label {
  margin: 0;
  color: #4d4d4b;
  font-size: clamp(1.4rem, 3vw, 3.5rem);
  font-weight: 950;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.daily-value {
  margin: .1em 0 .12em;
  color: var(--red);
  font-family: var(--sans-heavy);
  font-size: clamp(3rem, 9vw, 9.5rem);
  font-weight: 950;
  letter-spacing: -.035em;
  line-height: .76;
  text-transform: uppercase;
  text-wrap: balance;
  filter: contrast(1.05);
}

.daily-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin: 0;
  font-size: .82rem;
  font-weight: 800;
}
.daily-meta a { text-underline-offset: .2em; }

.hero-art {
  align-self: stretch;
  display: grid;
  place-items: end center;
  margin: 0;
}
.hero-art img {
  width: min(100%, 760px);
  max-height: 760px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(18px 18px 0 rgb(0 0 0 / .08));
}

.manifesto-strip {
  color: #fff;
  background: var(--ink);
  border-bottom: 2px solid var(--ink);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr .7fr;
  gap: 0;
}
.manifesto-grid > * {
  margin: 0;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-inline-start: 1px solid rgb(255 255 255 / .18);
}
.manifesto-grid > :first-child { border-inline-start: 0; padding-inline-start: 0; }
.manifesto-grid > :last-child { padding-inline-end: 0; }
.manifesto-lead {
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 950;
  letter-spacing: -.02em;
  line-height: 1.05;
  text-transform: uppercase;
}
.counter { display: grid; align-content: center; }
.counter strong { color: #fff; font-family: var(--sans-heavy); font-size: clamp(2.5rem, 5vw, 5.5rem); line-height: .8; }
.counter span { font-weight: 950; text-transform: uppercase; }
.counter small { color: rgb(255 255 255 / .68); }

.content-band { border-bottom: 2px solid var(--ink); }
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.panel {
  min-height: 420px;
  padding: clamp(2rem, 4vw, 4rem);
  border-inline-start: 2px solid var(--ink);
}
.panel:first-child { border-inline-start: 0; padding-inline-start: 0; }
.panel:last-child { padding-inline-end: 0; }
.panel h2,
.facts h2 {
  margin: 0 0 1rem;
  font-family: var(--sans-heavy);
  font-size: clamp(2rem, 3vw, 4rem);
  letter-spacing: .01em;
  line-height: .95;
  text-transform: uppercase;
}
.panel p { max-width: 62ch; }
.text-link {
  display: inline-flex;
  gap: .5rem;
  margin-top: 1.2rem;
  font-weight: 950;
  text-underline-offset: .35em;
  text-transform: uppercase;
}

.topic-list {
  display: grid;
  gap: .45rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}
.topic-list li {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  padding-block: .7rem;
  border-bottom: 1px solid rgb(0 0 0 / .25);
  font-weight: 900;
  text-transform: uppercase;
}
.topic-list time { color: var(--muted); font-variant-numeric: tabular-nums; }
.topic-list a { text-decoration-thickness: 2px; text-underline-offset: .2em; }

.panel-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background:
    linear-gradient(135deg, rgb(0 0 0 / .04) 25%, transparent 25%) 0 0 / 14px 14px,
    #fff;
}
.panel-cta .button { margin-block: 1rem; box-shadow: 5px 5px 0 var(--ink); }
.panel-cta small { color: var(--muted); }

.facts {
  color: #fff;
  background: var(--red);
  border-bottom: 2px solid var(--ink);
}
.facts-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(2rem, 6vw, 7rem);
  padding-block: clamp(4rem, 8vw, 8rem);
}
.facts .panel-kicker { color: #fff; opacity: .78; }
.facts dl { margin: 0; }
.facts dl > div {
  display: grid;
  grid-template-columns: minmax(120px, .45fr) 1fr;
  gap: 2rem;
  padding-block: 1.15rem;
  border-top: 1px solid rgb(255 255 255 / .55);
}
.facts dt { font-weight: 950; text-transform: uppercase; }
.facts dd { margin: 0; }

.site-footer {
  color: #fff;
  background: var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .6fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  padding-block: 3rem;
}
.site-footer img { filter: brightness(0) invert(1); }
.site-footer p { margin: .7rem 0 0; color: rgb(255 255 255 / .7); }
.site-footer nav { display: grid; gap: .7rem; }
.copyright { text-align: right; font-size: .84rem; }

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--red);
}

@media (max-width: 1120px) {
  .desktop-nav, .header-cta { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary {
    cursor: pointer;
    padding: .8rem 1rem;
    border: 1px solid rgb(255 255 255 / .4);
    font-weight: 900;
    text-transform: uppercase;
    list-style: none;
  }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu[open] nav {
    position: absolute;
    right: 0;
    top: calc(100% + .8rem);
    width: min(320px, calc(100vw - 2rem));
    display: grid;
    padding: 1rem;
    color: var(--ink);
    background: var(--paper);
    border: 2px solid var(--ink);
    box-shadow: 8px 8px 0 var(--red);
  }
  .mobile-menu nav a { padding: .8rem; font-weight: 900; text-transform: uppercase; }

  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr); }
  .manifesto-grid { grid-template-columns: 1fr 1fr; }
  .manifesto-grid .counter { grid-column: 1 / -1; border-top: 1px solid rgb(255 255 255 / .18); border-inline-start: 0; padding-inline: 0; }
  .content-grid { grid-template-columns: 1fr 1fr; }
  .panel-cta { grid-column: 1 / -1; border-top: 2px solid var(--ink); border-inline-start: 0; padding-inline: 0; min-height: 340px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 1.2rem, 1540px); }
  .site-header { position: relative; }
  .header-inner { min-height: 70px; }
  .brand img { width: 170px; }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-block: 2.5rem 0;
  }
  h1 { font-size: clamp(4.2rem, 23vw, 7rem); }
  .hero-slogan { margin-bottom: 2.4rem; }
  .daily-topic::before,
  .daily-topic::after { display: none; }
  .daily-value { font-size: clamp(4rem, 24vw, 8rem); }
  .hero-art { max-height: 430px; overflow: hidden; }
  .hero-art img { width: min(82vw, 560px); margin-inline: auto; }

  .manifesto-grid,
  .content-grid,
  .facts-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .manifesto-grid > * {
    padding: 2rem 0;
    border-inline-start: 0;
    border-top: 1px solid rgb(255 255 255 / .18);
  }
  .manifesto-grid > :first-child { border-top: 0; }
  .manifesto-grid .counter { grid-column: auto; }

  .panel,
  .panel:first-child,
  .panel:last-child {
    min-height: 0;
    padding: 3rem 0;
    border-inline-start: 0;
    border-top: 2px solid var(--ink);
  }
  .panel:first-child { border-top: 0; }
  .panel-cta { grid-column: auto; padding-inline: 1rem; }

  .facts-grid { gap: 2rem; }
  .facts dl > div { grid-template-columns: 1fr; gap: .25rem; }
  .copyright { text-align: left; }
}

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

@media print {
  .site-header, .mobile-menu, .header-cta, .panel-cta, .site-footer { display: none !important; }
  body { color: #000; background: #fff; }
  .hero-grid, .content-grid, .facts-grid { display: block; }
  a { text-decoration: none; }
}
