:root {
  --home-ink: var(--color-bg);
  --home-paper: var(--color-text);
  --home-paper-dim: var(--color-text-muted);
  --home-paper-faint: var(--color-text-faint);
  --home-rule: var(--color-border);
  --home-rule-soft: color-mix(in srgb, var(--color-border) 42%, transparent);
  --home-blue-pencil: var(--color-accent);
  --home-green-proof: var(--color-legit);
  --home-amber-proof: var(--color-mixed);
  --home-red-pencil: var(--color-overhyped);
  --home-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --home-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --home-mono: "IBM Plex Mono", monospace;
  --home-ease: cubic-bezier(.22, 1, .36, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body.homepage {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--home-paper);
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255,255,255,.018) 50%, transparent calc(50% + 1px)),
    radial-gradient(ellipse at 50% -15%, color-mix(in srgb, var(--home-blue-pencil) 5.5%, transparent), transparent 42rem),
    var(--home-ink);
  font-family: var(--home-body);
  -webkit-font-smoothing: antialiased;
}

body.homepage::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  pointer-events: none;
}

.homepage a {
  color: inherit;
  text-decoration: none;
}

.homepage button,
.homepage input {
  font: inherit;
}

.homepage :focus-visible {
  outline: 2px solid var(--home-blue-pencil);
  outline-offset: 4px;
}

.home-shell {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

.home-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--home-rule-soft);
}

.home-nav {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.home-brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.03em;
}

.home-brand svg {
  width: 28px;
  height: 28px;
}

.home-nav-center {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--home-paper-dim);
  font-size: 12px;
  font-weight: 500;
}

.home-nav-center a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 160ms ease;
}

.home-nav-center a:hover,
.home-nav-action:hover {
  color: var(--home-paper);
}

.home-nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-nav-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-bottom: 3px;
  color: var(--home-paper);
  font-family: var(--home-mono);
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.home-nav-action span {
  border-bottom: 1px solid var(--home-paper-faint);
  padding-bottom: 3px;
}

.home-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 0;
  color: var(--home-paper-dim);
  background: transparent;
  cursor: pointer;
}

.home-menu-button svg {
  width: 20px;
  height: 20px;
}

.home-mobile-menu {
  display: none;
  border-top: 1px solid var(--home-rule-soft);
  background: var(--home-ink);
}

.home-mobile-menu.open {
  display: block;
}

.home-mobile-links {
  padding: 8px 0 16px;
}

.home-mobile-link {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--home-rule-soft);
  color: var(--home-paper-dim);
  font-size: 14px;
}

.home-mobile-link:last-child {
  border-bottom: 0;
}

.home-story-hero {
  padding: 54px 0 72px;
}

.home-story-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
  color: var(--home-paper-faint);
  font-family: var(--home-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(310px, .62fr);
  gap: clamp(56px, 7vw, 108px);
  align-items: end;
  margin-bottom: 70px;
}

.home-story-title {
  margin: 0;
  font-family: var(--home-display);
  font-size: clamp(78px, 8.15vw, 122px);
  font-weight: 800;
  line-height: .79;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.home-story-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  color: color-mix(in srgb, var(--home-paper) 69%, transparent);
}

.home-story-title-evidence {
  position: relative;
  color: var(--home-paper);
}

.home-story-title-evidence:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 3px;
  background: var(--home-blue-pencil);
  transform: scaleX(0);
  transform-origin: left;
}

.home-story-support {
  padding-top: 24px;
  border-top: 1px solid var(--home-rule);
}

.home-story-support p {
  margin: 0;
  color: var(--home-paper-dim);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -.02em;
}

.home-story-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
  margin-top: 25px;
  color: var(--home-paper-faint);
  font-family: var(--home-mono);
  font-size: 8px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.home-story-scope span {
  position: relative;
}

.home-story-scope span + span::before {
  content: "/";
  position: absolute;
  left: -10px;
  color: var(--home-rule);
}

.home-story-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 204px;
  margin-top: 31px;
  padding: 0 16px;
  color: var(--home-ink) !important;
  background: var(--home-blue-pencil);
  font-size: 12px;
  font-weight: 700;
  transition: background 160ms ease, transform 160ms ease;
}

.home-story-cta:hover {
  background: color-mix(in srgb, var(--home-blue-pencil) 75%, white);
  transform: translateY(-2px);
}

.home-story-casefile {
  --home-pointer-x: 50%;
  --home-pointer-y: 50%;
  position: relative;
  isolation: isolate;
  border-top: 1px solid var(--home-rule);
  border-bottom: 1px solid var(--home-rule);
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255,255,255,.018) 50%, transparent calc(50% + 1px)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(255,255,255,.018) 38px 39px);
}

.home-story-casefile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(circle 210px at var(--home-pointer-x) var(--home-pointer-y), color-mix(in srgb, var(--home-blue-pencil) 7%, transparent), transparent 72%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.home-story-casefile.is-pointer-active::after {
  opacity: 1;
}

.home-trace-scan {
  position: absolute;
  inset: 0;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}

.home-trace-scan::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 20%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--home-blue-pencil) 8%, transparent) 72%, color-mix(in srgb, var(--home-blue-pencil) 32%, transparent));
  border-right: 1px solid color-mix(in srgb, var(--home-blue-pencil) 45%, transparent);
  opacity: 0;
  transform: translateX(-110%);
}

.home-story-case-head {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 18px;
  border-bottom: 1px solid var(--home-rule);
  color: var(--home-paper-faint);
  font-family: var(--home-mono);
  font-size: 8px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.home-story-chain {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr) 1.25fr;
}

.home-story-chain > article {
  position: relative;
  min-width: 0;
  min-height: 230px;
  padding: 27px 22px 24px;
  border-right: 1px solid var(--home-rule);
}

.home-story-chain > article:last-child {
  border-right: 0;
}

.home-story-chain > article::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 2px;
  background: var(--home-blue-pencil);
}

.home-story-chain > article:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -8px;
  top: 50%;
  z-index: 2;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  color: var(--home-paper-faint);
  background: var(--home-ink);
  font-family: var(--home-mono);
  font-size: 10px;
  transform: translateY(-50%);
}

.home-story-claim-card {
  background: color-mix(in srgb, var(--home-blue-pencil) 2.5%, transparent);
}

.home-story-node-label {
  display: flex;
  gap: 9px;
  margin-bottom: 50px;
  color: var(--home-paper-faint);
  font-family: var(--home-mono);
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-story-node-label span {
  color: var(--home-blue-pencil);
  font-variant-numeric: tabular-nums;
}

.home-story-claim-card blockquote {
  min-height: 74px;
  display: flex;
  align-items: flex-end;
  margin: 0;
  color: var(--home-paper);
  font-family: var(--home-display);
  font-size: clamp(32px, 3.2vw, 47px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.025em;
  text-transform: uppercase;
  transition: opacity 180ms ease, transform 220ms var(--home-ease);
}

.home-story-claim-card blockquote.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.home-story-chain strong {
  display: block;
  min-height: 45px;
  color: var(--home-paper);
  font-size: 14px;
  line-height: 1.45;
}

.home-story-chain p {
  margin: 13px 0 0;
  color: var(--home-paper-faint);
  font-size: 10px;
  line-height: 1.55;
}

.home-story-result-card {
  background: color-mix(in srgb, var(--home-blue-pencil) 3%, transparent);
}

.home-story-result-card strong {
  color: color-mix(in srgb, var(--home-paper) 86%, var(--home-blue-pencil));
}

.home-trace-controls {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-top: 1px solid var(--home-rule);
  color: var(--home-paper-faint);
  font-family: var(--home-mono);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-trace-controls button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid var(--home-rule);
  color: var(--home-paper);
  background: var(--home-ink);
  font-family: inherit;
  font-size: 9px;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.home-trace-controls button:hover {
  border-color: var(--home-paper-faint);
  background: color-mix(in srgb, var(--home-blue-pencil) 6%, var(--home-ink));
}

.home-trace-controls button:disabled {
  cursor: wait;
}

.home-trace-play {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--home-blue-pencil);
}

.home-trace-controls button.is-playing .home-trace-play {
  width: 8px;
  height: 8px;
  border: 1px solid var(--home-blue-pencil);
  border-radius: 50%;
  background: transparent;
  animation: home-status-pulse 800ms ease-in-out infinite alternate;
}

.home-trace-status {
  min-width: 112px;
  color: var(--home-paper-faint);
}

.home-story-hero.run .home-story-title-line {
  animation: home-story-title-enter 680ms var(--home-ease) both;
}

.home-story-hero.run .home-story-title-line:nth-child(2) {
  animation-delay: 80ms;
}

.home-story-hero.run .home-story-title-line:nth-child(3) {
  animation-delay: 160ms;
}

.home-story-hero.run .home-story-title-line:nth-child(4) {
  animation-delay: 240ms;
}

.home-story-hero.run .home-story-title-evidence:last-child::after {
  animation: home-story-rule-draw 650ms var(--home-ease) 620ms forwards;
}

.home-story-hero.run .home-story-chain > article {
  animation: home-story-node-enter 420ms var(--home-ease) both;
}

.home-story-hero.run .home-story-chain > article:nth-child(1) {
  animation-delay: 430ms;
}

.home-story-hero.run .home-story-chain > article:nth-child(2) {
  animation-delay: 760ms;
}

.home-story-hero.run .home-story-chain > article:nth-child(3) {
  animation-delay: 1080ms;
}

.home-story-hero.run .home-story-chain > article:nth-child(4) {
  animation-delay: 1400ms;
}

.home-story-hero.run .home-story-chain > article:nth-child(5) {
  animation-delay: 1720ms;
}

.home-story-hero.run .home-story-chain > article::before {
  animation: home-story-rule-draw 440ms var(--home-ease) forwards;
}

.home-story-hero.run .home-story-chain > article:nth-child(1)::before {
  animation-delay: 590ms;
}

.home-story-hero.run .home-story-chain > article:nth-child(2)::before {
  animation-delay: 900ms;
}

.home-story-hero.run .home-story-chain > article:nth-child(3)::before {
  animation-delay: 1220ms;
}

.home-story-hero.run .home-story-chain > article:nth-child(4)::before {
  animation-delay: 1540ms;
}

.home-story-hero.run .home-story-chain > article:nth-child(5)::before {
  animation-delay: 1860ms;
}

.home-story-hero.run .home-trace-scan::before {
  animation: home-story-trace-sweep 2200ms var(--home-ease) 300ms both;
}

@keyframes home-story-title-enter {
  from { opacity: 0; transform: translateY(25px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes home-story-node-enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes home-story-rule-draw {
  to { width: 100%; }
}

@keyframes home-story-trace-sweep {
  0% { opacity: 0; transform: translateX(-110%); }
  10% { opacity: 1; }
  88% { opacity: .76; }
  100% { opacity: 0; transform: translateX(610%); }
}

@keyframes home-status-pulse {
  to { background: var(--home-blue-pencil); box-shadow: 0 0 0 4px color-mix(in srgb, var(--home-blue-pencil) 10%, transparent); }
}

@media (max-width: 900px) {
  .home-story-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .home-story-support {
    max-width: 640px;
  }

  .home-story-chain {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-story-claim-card,
  .home-story-result-card {
    grid-column: 1 / -1;
  }

  .home-story-chain > article {
    min-height: 190px;
  }

  .home-story-chain > article::after {
    display: none !important;
  }
}

@media (max-width: 680px) {
  .home-story-hero {
    padding: 34px 0 58px;
  }

  .home-story-eyebrow {
    margin-bottom: 31px;
  }

  .home-story-eyebrow span:last-child {
    display: none;
  }

  .home-story-grid {
    gap: 30px;
    margin-bottom: 48px;
  }

  .home-story-title {
    font-size: clamp(46px, 12.5vw, 58px);
    line-height: .83;
  }

  .home-story-title-line {
    width: 100%;
  }

  .home-story-title-evidence:last-child::after {
    bottom: -4px;
    height: 2px;
  }

  .home-story-support {
    padding-top: 19px;
  }

  .home-story-support p {
    font-size: 15px;
  }

  .home-story-scope {
    gap: 7px 14px;
    margin-top: 20px;
  }

  .home-story-cta {
    width: 100%;
    margin-top: 25px;
  }

  .home-story-case-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 14px 12px;
  }

  .home-story-case-head span:last-child {
    color: color-mix(in srgb, var(--home-paper-faint) 72%, transparent);
  }

  .home-story-chain {
    grid-template-columns: 1fr 1fr;
  }

  .home-story-claim-card,
  .home-story-node-dose,
  .home-story-result-card {
    grid-column: 1 / -1;
  }

  .home-story-chain > article {
    min-height: 164px;
    padding: 19px 14px 18px;
    border-bottom: 1px solid var(--home-rule);
  }

  .home-story-chain > article:nth-child(2) {
    border-right: 1px solid var(--home-rule);
  }

  .home-story-chain > article:nth-child(3),
  .home-story-chain > article:last-child {
    border-right: 0;
  }

  .home-story-node-label {
    margin-bottom: 31px;
  }

  .home-story-claim-card blockquote {
    min-height: 54px;
    font-size: 36px;
  }

  .home-story-chain strong {
    min-height: auto;
    font-size: 13px;
  }

  .home-story-chain p {
    margin-top: 9px;
    font-size: 11px;
  }

  .home-trace-controls {
    min-height: 66px;
    gap: 10px;
    padding: 0 11px;
  }

  .home-trace-controls button {
    padding: 0 9px;
    font-size: 8px;
  }

  .home-trace-status {
    min-width: 0;
  }
}

/* The lookup sits INSIDE the hero, directly under the headline. It used to be a
   separate band below the evidence-trace diagram, which put it under the fold on a
   laptop -- visitor look-ups ran at zero for three months. Same single form and the
   same #url-input, so the existing handler is untouched; only its position changed. */
.home-story-grid:has(+ .home-check-inline) {
  margin-bottom: 34px;
}

.home-check-inline {
  margin-bottom: 56px;
  border-top: 1px solid var(--home-rule);
  background: rgba(255, 255, 255, .022);
}

.home-check-inline .home-check-inner {
  min-height: 124px;
  /* Inset to match the method steps and check rows. Moving this band into the hero
     dropped the .home-shell wrapper it used to have, which is what held it off the
     left rule. */
  padding-left: 28px;
}

.home-check-band {
  border-bottom: 1px solid var(--home-rule);
  background: rgba(255,255,255,.015);
}

.home-check-inner {
  min-height: 156px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 46px;
  align-items: center;
}

.home-check-heading {
  color: var(--home-paper-dim);
  font-family: var(--home-display);
  font-size: 24px;
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.home-url-form {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid #5a606b;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.home-url-form:focus-within {
  border-color: var(--home-blue-pencil);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--home-blue-pencil) 7%, transparent);
}

.home-field-wrap {
  position: relative;
  min-width: 0;
}

.home-field-wrap label {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--home-paper-faint);
  font-family: var(--home-mono);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-field-wrap input {
  width: 100%;
  height: 72px;
  padding: 22px 20px 0 0;
  border: 0;
  outline: 0;
  color: var(--home-paper);
  background: transparent;
  font-size: 15px;
}

.home-field-wrap input:focus-visible {
  outline: none;
}

.home-field-wrap input::placeholder {
  color: var(--home-paper-faint);
}

.home-url-form button {
  min-width: 166px;
  align-self: stretch;
  padding: 0 22px;
  border: 0;
  color: var(--home-ink);
  background: var(--home-blue-pencil);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, opacity 160ms ease;
}

.home-url-form button:hover {
  background: color-mix(in srgb, var(--home-blue-pencil) 75%, white);
}

.home-url-form button:disabled {
  cursor: wait;
  opacity: .58;
}

.home-submit-error {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: min(1240px, calc(100% - 56px));
  margin: 22px auto;
  padding: 14px 0;
  border-top: 1px solid var(--home-red-pencil);
  border-bottom: 1px solid var(--home-rule);
  color: #e7b4b4;
}

.home-submit-error.hidden,
.home-submission-history.hidden {
  display: none;
}

.home-submit-error svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.home-submit-error p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.home-submit-error .home-error-suggestion {
  margin-top: 3px;
  color: var(--home-paper-dim);
  font-size: 11px;
}

.home-submission-history {
  width: min(1240px, calc(100% - 56px));
  margin: 22px auto 0;
  padding: 20px 0;
  border-top: 1px solid var(--home-rule);
  color: var(--home-paper-dim);
}

.home-submission-history h3 {
  margin: 0 0 12px;
  color: var(--home-paper);
  font-family: var(--home-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-submission-history ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-submission-history li {
  display: flex;
  gap: 9px;
  min-width: 0;
  font-size: 12px;
}

.home-submission-history a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: underline;
}

.home-submission-history > p {
  margin: 12px 0 0;
  color: var(--home-paper-faint);
  font-size: 10px;
}

.home-latest {
  padding: 116px 0 128px;
}

.home-section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 40px;
}

.home-section-title {
  margin: 11px 0 0;
  font-family: var(--home-display);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.home-section-top p {
  max-width: 440px;
  margin: 0;
  color: var(--home-paper-dim);
  font-size: 13px;
  line-height: 1.6;
}

.home-checks-list {
  border-top: 1px solid var(--home-rule);
}

.home-check-row {
  min-height: 118px;
  padding-left: 28px;
  display: grid;
  grid-template-columns: 46px 1fr 1.2fr auto;
  gap: 27px;
  align-items: center;
  border-bottom: 1px solid var(--home-rule);
  transition: background 180ms ease;
}

.home-check-row:hover {
  background: rgba(255,255,255,.018);
}

.home-row-index {
  color: var(--home-paper-faint);
  font-family: var(--home-mono);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.home-product-name {
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -.015em;
}

.home-chain-result {
  color: var(--home-paper-dim);
  font-size: 12px;
  line-height: 1.55;
}

.home-result-word {
  min-width: 105px;
  padding: 7px 9px;
  border: 1px solid currentColor;
  font-family: var(--home-mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .07em;
  text-align: center;
  text-transform: uppercase;
}

.home-result-overhyped {
  color: var(--home-red-pencil);
}

.home-result-legit {
  color: var(--home-green-proof);
}

.home-result-mixed {
  color: var(--home-amber-proof);
}

.home-method {
  padding: 112px 0 122px;
  border-top: 1px solid var(--home-rule);
  border-bottom: 1px solid var(--home-rule);
  background: color-mix(in srgb, var(--home-ink) 88%, black);
}

.home-method-heading {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 74px;
}

.home-method-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--home-paper-dim);
  font-size: 14px;
  line-height: 1.7;
}

.home-method-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--home-rule);
}

.home-method-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 25%;
  height: 2px;
  background: var(--home-blue-pencil);
}

.home-method-step {
  min-height: 190px;
  /* Left inset applies to every step, including the first. It used to come only
     from `.home-method-step + .home-method-step`, so 01 alone hugged the edge. */
  padding: 25px 28px 0 28px;
  border-right: 1px solid var(--home-rule);
}

.home-method-step + .home-method-step {
  padding-left: 28px;
}

.home-method-step:last-child {
  border-right: 0;
}

.home-step-num {
  margin-bottom: 50px;
  color: var(--home-blue-pencil);
  font-family: var(--home-mono);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.home-method-step h3 {
  margin: 0 0 9px;
  font-family: var(--home-display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.home-method-step p {
  margin: 0;
  color: var(--home-paper-faint);
  font-size: 11px;
  line-height: 1.55;
}

.home-closing {
  padding: 120px 0 132px;
}

.home-closing-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  padding-bottom: 33px;
  border-bottom: 1px solid var(--home-rule);
}

.home-closing h2 {
  max-width: 880px;
  margin: 0;
  font-family: var(--home-display);
  font-size: clamp(58px, 8vw, 108px);
  font-weight: 700;
  line-height: .83;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.home-closing-cta {
  min-width: 188px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  color: var(--home-ink) !important;
  background: var(--home-blue-pencil);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  transition: background 160ms ease;
}

.home-closing-cta:hover {
  background: color-mix(in srgb, var(--home-blue-pencil) 75%, white);
}

.home-footer {
  padding: 32px 0 42px;
  border-top: 1px solid var(--home-rule-soft);
  color: var(--home-paper-faint);
  font-size: 10px;
}

.home-footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.home-footer-credit {
  max-width: 600px;
  line-height: 1.6;
}

.home-footer-credit p {
  margin: 0;
}

.home-footer-credit p + p {
  margin-top: 4px;
}

.home-footer-links {
  display: flex;
  gap: 23px;
}

.home-footer-links a,
.home-footer-links button {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 8px;
  margin: -14px -8px 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: inherit;
  cursor: pointer;
}

.js .home-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 650ms ease, transform 760ms var(--home-ease);
}

.js .home-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .home-casefile {
    grid-template-columns: 1fr;
  }

  .home-claim-sheet {
    min-height: 430px;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--home-rule);
  }

  .home-evidence-sheet {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    padding-left: 0;
  }

  .home-metric {
    padding: 34px 28px;
  }

  .home-metric:first-child {
    border-right: 1px solid var(--home-rule);
  }

  .home-proof-note {
    grid-column: 1 / -1;
    margin-left: 0;
    padding-left: 28px;
  }

  .home-evidence-connector {
    display: none;
  }

  .home-hero {
    min-height: auto;
    padding-bottom: 68px;
  }

  .home-check-inner {
    grid-template-columns: 150px 1fr;
  }
}

@media (max-width: 680px) {
  .home-shell,
  .home-submit-error,
  .home-submission-history {
    width: min(100% - 32px, 560px);
  }

  .home-nav {
    min-height: 64px;
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .home-nav-center {
    display: none;
  }

  .home-nav-right {
    gap: 3px;
  }

  .home-menu-button {
    display: grid;
  }

  .home-hero {
    padding-top: 35px;
  }

  .home-hero-intro {
    margin-bottom: 34px;
  }

  .home-hero-intro p {
    max-width: 330px;
    font-size: 13px;
  }

  .home-case-index {
    display: none;
  }

  .home-casefile {
    background: repeating-linear-gradient(0deg, transparent 0 32px, rgba(255,255,255,.018) 32px 33px);
  }

  .home-claim-sheet {
    min-height: 360px;
    justify-content: flex-start;
    padding: 38px 0 43px;
  }

  .home-claim {
    font-size: clamp(59px, 18vw, 79px);
    line-height: .81;
  }

  .home-redline-target::before,
  .home-redline-target::after {
    height: 2px;
  }

  .home-correction {
    left: calc(100% + 10px);
    top: 31%;
    padding: 5px 8px 4px;
    font-size: 8px;
  }

  .home-claim-source {
    margin-top: 30px;
    max-width: 315px;
  }

  .home-metric {
    min-width: 0;
    padding: 25px 14px 27px 0;
  }

  .home-metric + .home-metric {
    padding-left: 14px;
    padding-right: 0;
  }

  .home-metric-label {
    display: block;
    min-height: 32px;
    line-height: 1.45;
  }

  .home-metric-status {
    display: block;
    margin-top: 4px;
  }

  .home-metric-value {
    font-size: clamp(58px, 17vw, 74px);
    gap: 6px;
  }

  .home-metric-unit {
    padding-bottom: 5px;
    font-size: 7px;
  }

  .home-metric-detail {
    min-height: 33px;
    font-size: 9px;
  }

  .home-proof-note {
    padding: 20px 0;
  }

  .home-proof-note strong {
    font-size: 12px;
  }

  .home-case-controls {
    bottom: -31px;
  }

  .home-check-inner {
    min-height: 202px;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 0;
  }

  .home-check-heading {
    max-width: 250px;
  }

  .home-url-form {
    grid-template-columns: 1fr;
    border: 1px solid var(--home-rule);
  }

  .home-field-wrap {
    padding: 0 14px;
  }

  .home-url-form button {
    min-height: 50px;
  }

  .home-latest {
    padding: 84px 0 94px;
  }

  .home-section-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .home-check-row {
    grid-template-columns: 31px 1fr auto;
    gap: 14px;
    padding: 23px 0 23px 18px;
  }

  .home-chain-result {
    grid-column: 2 / -1;
    margin-top: -8px;
    padding-right: 4px;
  }

  .home-result-word {
    min-width: 91px;
  }

  .home-method {
    padding: 84px 0 92px;
  }

  .home-method-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 50px;
  }

  .home-method-line {
    grid-template-columns: 1fr 1fr;
  }

  .home-method-line::before {
    width: 50%;
  }

  .home-method-step {
    min-height: 180px;
    padding: 22px 22px 20px 22px;
    border-bottom: 1px solid var(--home-rule);
  }

  .home-method-step + .home-method-step {
    padding-left: 22px;
  }

  .home-method-step:nth-child(2) {
    border-right: 0;
  }

  .home-method-step:nth-child(3),
  .home-method-step:nth-child(4) {
    border-bottom: 0;
  }

  .home-step-num {
    margin-bottom: 34px;
  }

  .home-closing {
    padding: 87px 0 98px;
  }

  .home-closing-line {
    grid-template-columns: 1fr;
  }

  .home-closing-cta {
    width: 100%;
  }

  .home-footer-row {
    flex-direction: column;
  }

  .home-footer-links {
    flex-wrap: wrap;
  }
}

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

  .homepage *,
  .homepage *::before,
  .homepage *::after {
    animation-duration: .01ms !important;
    animation-delay: 0ms !important;
    transition-duration: .01ms !important;
  }

  .home-redline-target::before {
    transform: scaleX(1) rotate(-1deg);
  }

  .home-redline-target::after {
    transform: scaleX(1) rotate(.8deg);
  }

  .home-correction,
  .home-evidence-connector {
    opacity: 1;
  }

  .home-correction {
    transform: translateY(-50%) rotate(-2deg);
  }

  .home-proof-note::before {
    width: 100%;
  }

  .home-metric::after {
    width: 100%;
  }

  .home-trace-scan,
  .home-casefile::after,
  .home-story-casefile::after {
    display: none;
  }

  .home-case-controls button.is-playing .home-trace-play,
  .home-trace-controls button.is-playing .home-trace-play {
    animation: none;
  }

  .home-story-title-line,
  .home-story-chain > article {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .home-story-title-evidence:last-child::after,
  .home-story-chain > article::before {
    width: 100%;
    transform: none;
  }

  .js .home-reveal {
    opacity: 1;
    transform: none;
  }
}
