:root {
  --black: #090909;
  --charcoal: #151515;
  --ink: #202020;
  --white: #ffffff;
  --soft-white: #f4f4f1;
  --green: #2daf34;
  --green-dark: #087616;
  --red: #c7191e;
  --red-dark: #8f1115;
  --yellow: #f1c74b;
  --line: #d4d4cc;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft-white);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(90deg, #000 1px, transparent 1px),
    linear-gradient(#000 1px, transparent 1px);
  background-size: 22px 22px;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px 36px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 270px;
  min-height: 52px;
  padding: 7px 10px 6px;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid var(--green);
}

.brand-main,
h1,
h2,
h3,
.button,
.banner,
.timeline-list time,
.paper-stack span {
  font-family: Impact, "Arial Black", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-main {
  font-size: 27px;
  line-height: 0.9;
}

.brand-main strong {
  color: var(--green);
  font-size: 20px;
}

.brand-sub {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 800;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.main-nav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 12px 25px;
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  border: 0;
  border-radius: 0;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.22);
}

.button-red {
  background: var(--red);
}

.button-red:hover,
.button-red:focus-visible {
  background: var(--red-dark);
}

.button-green {
  background: var(--green-dark);
  outline: 2px solid var(--green);
  outline-offset: -2px;
}

.button-green:hover,
.button-green:focus-visible {
  background: var(--green);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  align-items: stretch;
  min-height: 500px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(7, 7, 7, 0.92) 46%, rgba(7, 7, 7, 0.62) 100%),
    var(--black);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(120deg, transparent 0 46%, rgba(255, 255, 255, 0.16) 46% 47%, transparent 47% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 4px);
}

.hero-copy {
  width: min(650px, 100%);
  padding: 50px 36px 42px;
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: 58px;
  line-height: 0.95;
}

h1 span {
  display: block;
  color: var(--green);
  font-size: 78px;
  line-height: 0.9;
}

.hero-lede {
  max-width: 560px;
  margin: 20px 0 22px;
  font-size: 18px;
  line-height: 1.42;
}

.hero-cta {
  min-width: 260px;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black), transparent 28%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(0.96);
}

.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 18px 32px;
  color: var(--black);
  background: var(--yellow);
  border-block: 4px solid var(--black);
  text-align: center;
  font-size: 38px;
  line-height: 1;
}

.section-light,
.section-dark {
  padding: 34px 36px;
}

.section-light {
  background: var(--soft-white);
}

.section-dark {
  color: var(--white);
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 3px),
    var(--charcoal);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 20px;
  text-align: center;
}

h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1;
}

.section-heading h2::after,
.records-intro h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 4px;
  margin: 8px auto 0;
  background: var(--green);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 18px;
  min-height: 190px;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.fact-card:last-child {
  border-right: 0;
}

.fact-icon {
  grid-row: 1 / span 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
}

h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1;
}

.fact-card p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.38;
}

.text-link {
  align-self: end;
  width: max-content;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.timeline {
  padding-top: 30px;
  padding-bottom: 46px;
}

.timeline-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin: 32px auto 0;
  padding: 0;
  list-style: none;
}

.timeline-list::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255, 255, 255, 0.55);
}

.timeline-list li {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.timeline-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 14px;
  color: var(--white);
  background: var(--green-dark);
  border: 8px solid rgba(45, 175, 52, 0.46);
  border-radius: 50%;
  font-weight: 900;
}

.timeline-list time {
  display: block;
  color: var(--green);
  font-size: 23px;
}

.timeline-list p {
  width: 140px;
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.25;
}

.records {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 2fr);
  gap: 34px;
  align-items: center;
}

.records-intro {
  max-width: 340px;
  justify-self: end;
}

.records-intro h2 {
  font-size: 30px;
}

.records-intro h2::after {
  margin-left: 0;
}

blockquote {
  position: relative;
  margin: 34px 0 0;
  padding-left: 40px;
  font-size: 25px;
  line-height: 1.18;
  font-weight: 900;
}

blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 0;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
}

.record-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 840px;
}

.record-card {
  overflow: hidden;
  color: var(--black);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.12);
}

.document-preview {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 180px;
  padding: 24px;
  color: #111;
  background:
    linear-gradient(105deg, transparent 0 78%, rgba(0, 0, 0, 0.08) 78% 100%),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.11) 0 1px, transparent 1px 18px),
    #f5f3ed;
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
}

.document-preview span {
  font-weight: 900;
  text-transform: uppercase;
}

.document-preview b {
  justify-self: center;
  padding: 6px 10px;
  border: 2px solid #333;
  font-size: 15px;
  text-transform: uppercase;
}

.document-preview.highlight b {
  background: #f2c74d;
  border: 0;
}

.record-card h3 {
  margin: 0;
  padding: 10px 14px;
  color: var(--white);
  background: var(--red);
  text-align: center;
  font-size: 20px;
}

.action {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  justify-content: center;
  align-items: center;
  gap: 36px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.paper-stack {
  position: relative;
  display: grid;
  place-items: center;
  width: 240px;
  aspect-ratio: 1.4;
  background: #eee8db;
  border: 1px solid #d5c5ad;
  transform: rotate(-6deg);
  box-shadow:
    12px 10px 0 #d5c5ad,
    22px 18px 0 #bda986,
    30px 26px 18px rgba(0, 0, 0, 0.35);
}

.paper-stack::before,
.paper-stack::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-top: 2px solid rgba(0, 0, 0, 0.18);
  border-bottom: 2px solid rgba(0, 0, 0, 0.18);
}

.paper-stack span {
  position: relative;
  z-index: 1;
  padding: 10px 18px;
  color: var(--red);
  border: 5px solid var(--red);
  font-size: 30px;
  transform: rotate(-2deg);
}

.action h2 {
  max-width: 770px;
  color: var(--red);
  font-size: 48px;
}

.action p {
  margin: 6px 0 14px;
  font-size: 19px;
}

.sources {
  padding-bottom: 28px;
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
}

.source-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  min-height: 154px;
  padding: 10px 6px 12px;
  color: var(--black);
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
}

.source-card:hover,
.source-card:focus-visible {
  background: #fff;
  outline: 2px solid var(--green);
}

.mini-doc {
  width: 142px;
  height: 70px;
  background:
    linear-gradient(90deg, transparent 0 70%, rgba(0, 0, 0, 0.07) 70% 100%),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.22) 0 1px, transparent 1px 10px),
    #f8f6ef;
  border: 1px solid #d0cbc2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.source-card strong {
  min-height: 34px;
  font-size: 12px;
  line-height: 1.1;
}

.source-card span:last-child {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.site-footer {
  padding: 12px 28px 16px;
  color: var(--white);
  background: #030303;
  text-align: center;
  font-size: 12px;
}

.site-footer p {
  margin: 2px 0;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  max-width: 340px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(8, 8, 8, 0.96);
  border-left: 4px solid var(--green);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.28);
  font-size: 14px;
  line-height: 1.35;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    overflow-x: auto;
    padding-bottom: 4px;
  }

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

  .hero-copy {
    margin-left: 0;
    padding-top: 40px;
  }

  .hero-visual {
    min-height: 360px;
    order: -1;
  }

  .hero-visual::after {
    background: linear-gradient(0deg, var(--black), transparent 42%);
  }

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

  .records-intro {
    max-width: var(--max);
    justify-self: start;
  }

  .record-grid {
    max-width: none;
  }

  .source-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    gap: 14px;
    padding: 10px 18px;
  }

  .brand {
    min-width: 220px;
  }

  .brand-main {
    font-size: 22px;
  }

  .site-header > .button {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 16px;
  }

  h1 {
    font-size: 43px;
  }

  h1 span {
    font-size: 56px;
  }

  .banner {
    font-size: 26px;
    gap: 12px;
  }

  .fact-grid,
  .record-grid,
  .action,
  .source-grid {
    grid-template-columns: 1fr;
  }

  .fact-grid {
    border: 0;
  }

  .fact-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline-list::before {
    top: 0;
    bottom: 0;
    left: 39px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline-list li {
    grid-template-columns: 78px 1fr;
    column-gap: 18px;
    justify-items: start;
    text-align: left;
  }

  .timeline-icon {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .timeline-list p {
    width: auto;
  }

  .paper-stack {
    justify-self: center;
  }

  .action h2 {
    font-size: 38px;
    text-align: center;
  }

  .action p,
  .action .button {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .brand {
    width: 100%;
    min-width: 0;
  }

  .main-nav {
    gap: 18px;
  }

  .hero-copy,
  .section-light,
  .section-dark {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-visual {
    min-height: 270px;
  }

  h1 {
    font-size: 35px;
  }

  h1 span {
    font-size: 43px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-cta,
  .button {
    width: 100%;
  }

  .banner {
    padding: 14px 16px;
    font-size: 22px;
  }

  .banner span {
    display: none;
  }

  .fact-card {
    grid-template-columns: 62px 1fr;
    min-height: 0;
    padding: 22px 0;
  }

  .fact-icon {
    width: 62px;
    height: 62px;
    font-size: 12px;
  }

  h2 {
    font-size: 33px;
  }

  blockquote {
    font-size: 22px;
  }

  .toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}
