:root {
  --background: #111111;
  --surface: #1b1b1b;
  --surface-strong: #24201d;
  --foreground: #f8f2e8;
  --muted: #c7beb1;
  --hairline: #3b332d;
  --red: #e52629;
  --red-dark: #8f1113;
  --yellow: #f3c13a;
  --paper: #f2e7d2;
  --ink: #17110f;
  --max-width: 1248px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(229, 38, 41, 0.09) 0 1px, transparent 1px 88px),
    radial-gradient(circle at 50% -10%, rgba(229, 38, 41, 0.25), transparent 36rem),
    var(--background);
  color: var(--foreground);
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.13;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 7px, rgba(255, 255, 255, 0.08) 8px),
    repeating-linear-gradient(90deg, transparent 0 13px, rgba(0, 0, 0, 0.16) 14px);
}

a {
  color: inherit;
}

.site-container {
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--hairline);
  background: rgba(17, 17, 17, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--foreground);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid var(--red);
  background: var(--red);
  color: white;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  padding-block: 4px;
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

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

.menu-button {
  display: none;
}

.hero {
  padding: 28px 0 0;
}

.hero-image {
  display: block;
  width: 100%;
  max-height: 528px;
  object-fit: cover;
  border: 1px solid var(--hairline);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.breaking-strip {
  border-block: 1px solid #5b1011;
  margin-top: 24px;
  background: var(--red);
  color: #fff;
}

.strip-inner {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.strip-inner span {
  white-space: nowrap;
}

.strip-inner span:not(:last-child)::after {
  content: " /";
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.62);
}

.article-shell {
  padding: 54px 0 72px;
}

.article-content {
  max-width: 800px;
  margin-inline: auto;
}

.kicker {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  color: var(--foreground);
  font-size: clamp(3.4rem, 12vw, 7.6rem);
  line-height: 0.88;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  color: var(--foreground);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.06;
  text-transform: uppercase;
}

p,
li {
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.58;
}

.lede {
  color: var(--foreground);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.28;
}

.parody-note {
  margin: 34px 0 46px;
  border-left: 8px solid var(--yellow);
  background: var(--surface);
  padding: 20px 22px;
  color: var(--foreground);
  font-size: 1rem;
  line-height: 1.45;
}

.content-section {
  margin-top: 54px;
}

.claim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.claim-card {
  min-height: 270px;
  border: 2px solid #0d0a08;
  background:
    linear-gradient(135deg, rgba(229, 38, 41, 0.14), transparent 45%),
    var(--paper);
  color: var(--ink);
  padding: 22px;
  transform: rotate(-1deg);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.45);
}

.claim-card:nth-child(2) {
  transform: rotate(1.4deg);
}

.claim-card:nth-child(3) {
  transform: rotate(-0.4deg);
}

.claim-card p {
  color: #3a2b25;
  font-size: 1rem;
  line-height: 1.45;
}

.claim-tag {
  display: inline-block;
  margin-bottom: 14px;
  background: var(--red);
  color: #fff;
  padding: 5px 8px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-bomb {
  margin: 60px 0 0;
  border-block: 8px solid var(--red);
  padding: 26px 0 22px;
}

.quote-bomb blockquote {
  margin: 0;
  color: var(--foreground);
  font-size: clamp(2rem, 5vw, 3.9rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.quote-bomb figcaption {
  margin-top: 16px;
  color: var(--yellow);
  font-weight: 700;
}

.agenda-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.agenda-list li {
  border-left: 7px solid var(--red);
  background: var(--surface);
  padding: 14px 18px;
  color: var(--foreground);
  font-weight: 700;
}

.meter-section {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
  margin-top: 64px;
  border: 1px solid var(--hairline);
  background: var(--surface-strong);
  padding: 28px;
}

.meter-panel {
  border: 2px solid var(--yellow);
  background: #0d0d0d;
  padding: 22px;
}

.meter-panel label,
.meter-panel output {
  display: block;
  color: var(--foreground);
  font-weight: 900;
  text-transform: uppercase;
}

.meter-panel input {
  width: 100%;
  margin: 20px 0;
  accent-color: var(--red);
}

.meter-panel output {
  color: var(--yellow);
  font-size: 3rem;
}

.meter-panel p {
  margin: 12px 0 0;
  font-size: 1rem;
}

.site-footer {
  background: var(--surface);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

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

@media (max-width: 860px) {
  .header-inner {
    min-height: 58px;
  }

  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--foreground);
    cursor: pointer;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 3px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 58px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--hairline);
    background: var(--surface);
  }

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

  .site-nav a {
    border-bottom: 1px solid var(--hairline);
    padding: 16px;
  }

  .hero {
    padding-top: 16px;
  }

  .strip-inner {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .article-shell {
    padding-top: 42px;
  }

  .claim-grid,
  .meter-section {
    grid-template-columns: 1fr;
  }

  .claim-card,
  .claim-card:nth-child(2),
  .claim-card:nth-child(3) {
    min-height: auto;
    transform: none;
  }

  .meter-section {
    padding: 22px;
  }

  .footer-inner {
    display: block;
    padding-block: 14px;
  }

  .footer-inner p + p {
    margin-top: 8px;
  }
}
