:root {
  --infield: #0f2418;
  --infield-deep: #07140d;
  --chalk: #f3efe4;
  --chalk-mute: rgba(243, 239, 228, 0.72);
  --heat: #c45a1a;
  --heat-bright: #e06a22;
  --clay: #8b4a2b;
  --line: rgba(243, 239, 228, 0.16);
  --ink: #121812;
  --paper: #efe8d8;
  --paper-deep: #e4d9c4;
  --display: "Bebas Neue", Impact, sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "IBM Plex Sans", "Helvetica Neue", sans-serif;
  --max: 72rem;
  --narrow: 40rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.125rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--heat);
}

a:hover {
  color: var(--heat-bright);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--chalk);
  color: var(--ink);
  padding: 0.75rem 1rem;
  font-family: var(--sans);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.wrap.narrow {
  width: min(100% - 2.5rem, var(--narrow));
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--chalk);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 20, 13, 0.25), transparent 45%),
    url("/images/hero.jpg") center / cover no-repeat;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out alternate infinite;
  z-index: -2;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 20, 13, 0.35) 0%, rgba(7, 20, 13, 0.55) 45%, rgba(7, 20, 13, 0.92) 100%),
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(196, 90, 26, 0.22), transparent 55%);
  z-index: -1;
}

.hero__content {
  width: min(100% - 2.5rem, 44rem);
  margin: 0 auto 12vh;
  padding-top: 30vh;
  opacity: 0;
  transform: translateY(1.5rem);
  animation: rise 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.brand {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(4.5rem, 14vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
  line-height: 1.2;
  max-width: 18ch;
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 34ch;
  color: var(--chalk-mute);
  font-size: 1.05rem;
}

.cta {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--heat);
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta:hover {
  background: var(--heat-bright);
  color: var(--ink);
  transform: translateY(-1px);
}

.cta--dark {
  background: var(--infield);
  color: var(--chalk);
  margin-top: 0.5rem;
}

.cta--dark:hover {
  background: #163524;
  color: var(--chalk);
}

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.section:nth-child(even) {
  background: var(--paper-deep);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--heat);
}

.section h2 {
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 16ch;
}

.section-lede {
  max-width: 42rem;
  margin: 0 0 2.5rem;
  font-size: 1.2rem;
}

.section-lede.after {
  margin: 2.5rem 0 0;
}

.vanish p,
.ballot p,
.process p,
.momentum p,
.verdict p,
.defense p {
  margin: 0 0 1.15rem;
}

.stat-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink);
  font-family: var(--sans);
}

.stat-grid__head,
.stat-grid__row {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 0.75rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(18, 24, 18, 0.14);
  align-items: baseline;
}

.stat-grid__head {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(18, 24, 18, 0.55);
}

.stat-grid__row span:first-child {
  font-weight: 500;
  color: rgba(18, 24, 18, 0.7);
}

.stat-grid__row span:nth-child(2) {
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: var(--heat);
}

.stat-grid__row.is-highlight {
  background: linear-gradient(90deg, rgba(196, 90, 26, 0.08), transparent 70%);
}

.footnote {
  margin: 1.5rem 0 0;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: rgba(18, 24, 18, 0.65);
  max-width: 48rem;
}

.split {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.plain-list {
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.1rem;
  border-bottom: 1px solid rgba(18, 24, 18, 0.12);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--heat);
}

.pull {
  padding: 1.75rem 1.5rem;
  background: var(--infield);
  color: var(--chalk);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 18rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.pull.is-visible {
  opacity: 1;
  transform: none;
}

.pull__stat {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 7rem);
  line-height: 0.9;
  color: var(--heat-bright);
}

.pull__label {
  margin: 0.35rem 0 1rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.pull__note {
  margin: 0;
  color: var(--chalk-mute);
  font-size: 1rem;
}

.case-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.5rem;
}

.case-points li {
  margin: 0;
  padding-top: 1rem;
  border-top: 2px solid var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
}

.case-points span {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.02em;
  color: var(--heat);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.timeline {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  border-left: 2px solid rgba(18, 24, 18, 0.15);
}

.timeline li {
  position: relative;
  padding: 0 0 1.75rem 1.5rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -0.4rem;
  top: 0.35rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--heat);
}

.timeline time {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heat);
  margin-bottom: 0.35rem;
}

.timeline p {
  margin: 0;
}

.verdict {
  background: var(--infield-deep) !important;
  color: var(--chalk);
}

.verdict .eyebrow {
  color: var(--heat-bright);
}

.verdict h2 {
  color: var(--chalk);
  max-width: 12ch;
}

.verdict a:not(.cta) {
  color: var(--heat-bright);
}

.brand-end {
  margin: 2rem 0 1.25rem !important;
  font-family: var(--display);
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--heat-bright);
}

.site-footer {
  background: #050c08;
  color: rgba(243, 239, 228, 0.55);
  padding: 2.5rem 0 3rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.55;
}

.site-footer a {
  color: rgba(243, 239, 228, 0.8);
}

.site-footer .credit {
  margin-top: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

@media (max-width: 860px) {
  .stat-grid__head,
  .stat-grid__row {
    grid-template-columns: 0.9fr repeat(3, 1fr);
    gap: 0.4rem;
    font-size: 0.9rem;
  }

  .stat-grid__row span:nth-child(2) {
    font-size: 1.35rem;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .case-points {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .hero__content {
    margin-bottom: 8vh;
  }

  .brand {
    font-size: clamp(3.6rem, 18vw, 5rem);
  }

  .case-points {
    grid-template-columns: 1fr;
  }

  .stat-grid__head,
  .stat-grid__row {
    font-size: 0.78rem;
  }

  .stat-grid__head span:not(:first-child) {
    word-break: break-word;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__media,
  .hero__content,
  .reveal,
  .pull {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
