:root {
  --ink: #090909;
  --paper: #f5f3ee;
  --signal: #c83a2c;
  --muted: #67645e;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
body {
  margin: 0;
}
body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 5px;
  background: var(--signal);
  z-index: 20;
}
header {
  height: 68px;
  padding: 0 clamp(18px, 4vw, 58px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid;
  font: 900 11px/1 Arial;
  letter-spacing: 0.14em;
}
header nav {
  display: flex;
  gap: 18px;
}
header a {
  color: inherit;
  text-decoration: none;
}
main {
  max-width: 1180px;
  margin: auto;
  padding: 0 clamp(18px, 4vw, 58px);
}
section {
  padding: clamp(64px, 10vw, 125px) 0;
  border-bottom: 1px solid;
}
.hero {
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kicker {
  font: 900 11px/1 Arial;
  letter-spacing: 0.16em;
}
.hero h1,
h1 {
  font-size: clamp(58px, 11vw, 145px);
  line-height: 0.82;
  letter-spacing: -0.065em;
  margin: 18px 0;
  max-width: 11ch;
}
h2 {
  font-size: clamp(38px, 7vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  margin: 18px 0;
  max-width: 14ch;
}
h3 {
  font-size: clamp(25px, 4vw, 48px);
  line-height: 0.95;
  margin: 16px 0;
}
.hero-lines {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  margin: 35px 0;
}
.hero-lines span {
  display: block;
}
.button,
button {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  background: transparent;
  color: inherit;
  text-decoration: none;
  padding: 17px 22px;
  font: 900 11px/1 Arial;
  letter-spacing: 0.12em;
  cursor: pointer;
}
.button.primary,
button.primary {
  background: var(--ink);
  color: var(--paper);
}
.receipt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.receipt-grid figure {
  margin: 0;
}
.receipt-grid img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: contain;
  object-position: top;
  background: #fff;
  border: 1px solid;
}
.receipt-grid figcaption {
  margin-top: 10px;
  font: 900 10px/1.35 Arial;
  letter-spacing: 0.11em;
}
.verdict-line {
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.05em;
  margin: 50px 0;
}
.vote {
  margin-inline: calc(-1 * clamp(18px, 4vw, 58px));
  padding-inline: clamp(18px, 4vw, 58px);
  background: var(--ink);
  color: var(--paper);
}
.vote h2 {
  max-width: 14ch;
}
.binary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.binary button {
  width: 100%;
  min-height: 110px;
  border-color: currentColor;
  font-size: 24px;
}
.binary button:hover,
.binary button:focus {
  background: var(--paper);
  color: var(--ink);
}
.result {
  border-top: 1px solid;
  margin-top: 26px;
  padding-top: 24px;
}
.result strong {
  font-size: clamp(38px, 7vw, 78px);
}
.status {
  min-height: 1.2em;
  font-weight: 900;
}
.doctrine {
  display: grid;
  gap: 9px;
  margin: 45px 0;
  font-size: clamp(28px, 5vw, 62px);
  font-weight: 900;
  line-height: 0.95;
}
.prose {
  max-width: 760px;
  font:
    clamp(19px, 2.2vw, 25px) / 1.55 Georgia,
    serif;
}
.warning {
  border: 2px solid;
  padding: clamp(24px, 5vw, 52px);
  margin-top: 45px;
}
.links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.record-card {
  border: 2px solid;
  padding: clamp(24px, 5vw, 52px);
  margin-top: 44px;
}
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid;
  margin-top: 35px;
}
.facts div {
  padding: 16px;
  border-right: 1px solid;
}
.facts div:last-child {
  border: 0;
}
.facts dt {
  font: 900 9px/1 Arial;
  letter-spacing: 0.12em;
}
.facts dd {
  margin: 8px 0 0;
  font-weight: 800;
}
.tag {
  font: 900 10px/1 Arial;
  letter-spacing: 0.12em;
}
.forensic-block p,
.scope p {
  max-width: 780px;
  font:
    20px/1.5 Georgia,
    serif;
}
.source-viewer {
  position: relative;
  border: 1px solid;
  display: grid;
  place-items: center;
  min-height: 380px;
}
.source-viewer img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
}
.source-nav {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.source-nav button {
  min-width: 46px;
  padding: 13px;
}
.integrity article {
  padding: 18px 0;
  border-top: 1px solid;
}
.integrity code {
  display: block;
  word-break: break-all;
  font-size: 11px;
  margin-top: 8px;
}
.integrity a {
  color: inherit;
}
.method-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid;
}
.method-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid;
}
.method-list b {
  font-size: 24px;
}
.method-list span {
  font:
    19px/1.45 Georgia,
    serif;
}
.media video {
  display: block;
  width: min(100%, 460px);
  max-height: 80vh;
  margin: auto;
  background: var(--ink);
}
.notice {
  border: 2px solid;
  padding: 20px;
  max-width: 780px;
  margin: 28px auto 0;
}
.notice p {
  font:
    17px/1.5 Georgia,
    serif;
  margin: 10px 0 0;
}
form {
  max-width: 780px;
  margin-top: 35px;
}
label {
  display: block;
  margin: 20px 0;
  font: 900 10px/1 Arial;
  letter-spacing: 0.12em;
}
textarea,
input,
select {
  display: block;
  width: 100%;
  margin-top: 9px;
  padding: 14px;
  border: 1px solid;
  background: var(--paper);
  font:
    16px/1.4 Georgia,
    serif;
}
input[type="checkbox"] {
  display: inline-block;
  width: auto;
  margin: 0 8px 0 0;
  padding: 0;
}
textarea {
  min-height: 130px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.state-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.state-list span {
  border: 1px solid;
  padding: 9px 11px;
  font: 900 9px/1 Arial;
  letter-spacing: 0.1em;
}
footer {
  max-width: 1180px;
  margin: auto;
  padding: 36px clamp(18px, 4vw, 58px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font: 900 10px/1.3 Arial;
  letter-spacing: 0.12em;
}
footer a {
  color: inherit;
}
.share-card {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(28px, 6vw, 70px);
}
.share-card h2 {
  max-width: 11ch;
}
.hidden {
  display: none !important;
}
@media (max-width: 700px) {
  header nav a:not(:last-child) {
    display: none;
  }
  .receipt-grid,
  .facts,
  .field-grid {
    grid-template-columns: 1fr;
  }
  .receipt-grid img {
    height: auto;
  }
  .facts div {
    border-right: 0;
    border-bottom: 1px solid;
  }
  .facts div:last-child {
    border-bottom: 0;
  }
  .binary {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: calc(100svh - 68px);
  }
  .source-viewer {
    min-height: 220px;
  }
  .method-list li {
    grid-template-columns: 42px 1fr;
  }
}
