@font-face {
  font-family: "Anton";
  src: url("/assets/fonts/anton-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #0a0a0a;
  --paper: #f5f3ec;
  --white: #fff;
  --gray: #d8d5cc;
  --muted: #706e67;
  --lime: #c8ff3d;
  --max: 1240px;
  --shadow: 6px 6px 0 var(--ink);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: .16;
  background-image:
    radial-gradient(circle at 17% 30%, #0a0a0a 0 0.5px, transparent 0.8px),
    radial-gradient(circle at 72% 68%, #0a0a0a 0 0.5px, transparent 0.8px);
  background-size: 17px 19px, 23px 29px;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

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

.skip-link {
  position: fixed;
  left: 20px;
  top: 16px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 12px 18px;
  background: var(--lime);
  border: 2px solid var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 2px solid transparent;
  background: rgba(245, 243, 236, .92);
  backdrop-filter: blur(12px);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  border-color: var(--ink);
  box-shadow: 0 3px 0 rgba(10, 10, 10, .12);
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}

.wordmark-main,
.footer-logo {
  font-family: "Anton", Impact, sans-serif;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -.02em;
}

.wordmark-ticker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .1em;
}

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

.site-nav a {
  position: relative;
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-receipt)::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 2px;
  content: "";
  background: var(--ink);
  transition: right .2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after { right: 0; }

.nav-receipt {
  padding: 10px 13px;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--ink);
}

.nav-receipt:hover,
.nav-receipt:focus-visible { color: var(--ink); background: var(--lime); }

.menu-toggle { display: none; }

.section-shell {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
}

.ruled-section {
  padding-block: 112px;
  border-top: 3px solid var(--ink);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  padding-block: 54px 80px;
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 27px;
}

.eyebrow span {
  display: inline-block;
  padding: 6px 9px;
  border: 1.5px solid var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.025em;
  text-wrap: balance;
  word-break: normal;
}

.hero h1 {
  font-size: clamp(92px, 10.2vw, 156px);
  max-width: 770px;
}

.hero h1 span { display: block; }

.hero-slogan {
  margin: 24px 0 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: .06em;
}

.hero-lead {
  max-width: 560px;
  margin: 0;
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 2px solid var(--ink);
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover,
.button:focus-visible { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.button-dark { color: var(--paper); background: var(--ink); }
.button-dark:hover,
.button-dark:focus-visible { color: var(--ink); background: var(--lime); }
.button-paper { background: var(--paper); }

.fine-print {
  max-width: 530px;
  margin: 22px 0 0;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: .04em;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  position: absolute;
  inset: 10% -8% 8% 5%;
  z-index: -1;
  content: "";
  background: var(--ink);
  clip-path: polygon(2% 4%, 98% 0, 100% 92%, 5% 100%, 0 68%);
}

.hero-visual img {
  width: min(720px, 116%);
  transform: translateX(3%);
  filter: drop-shadow(0 7px 0 rgba(0, 0, 0, .22));
}

.ink-label {
  position: absolute;
  z-index: 3;
  padding: 5px 8px;
  color: var(--paper);
  border: 1px solid var(--paper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: .08em;
}

.ink-label-top { top: 13%; left: 11%; }
.ink-label-bottom { right: 4%; bottom: 12%; }

.section-heading { margin-bottom: 55px; }
.section-number {
  margin: 0 0 18px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
}

.section-heading h2 { max-width: 1100px; font-size: clamp(58px, 7.2vw, 96px); }
.section-heading > p:last-child {
  max-width: 610px;
  margin: 24px 0 0;
  font-size: 20px;
  font-weight: 700;
}

.split-heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: end;
  gap: 60px;
}

.split-heading > p:last-child { margin: 0 0 8px; }

.receipt-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 38px;
  align-items: stretch;
}

.receipt-image {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.receipt-image img { width: 100%; height: 100%; object-fit: contain; background: var(--paper); }
.receipt-image span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 11px 13px;
  color: var(--paper);
  background: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
}

.receipt-timeline {
  border: 2px solid var(--ink);
  background: var(--white);
}

.receipt-timeline article { padding: 25px 28px; border-bottom: 2px solid var(--ink); }
.receipt-timeline article p,
.employee-card-top,
.result-meta {
  margin: 0 0 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
}
.receipt-timeline h3 { margin: 0 0 5px; font-family: "Anton", sans-serif; font-size: 31px; font-weight: 400; line-height: 1; }
.receipt-timeline span { color: var(--muted); font-size: 15px; }
.receipt-disclaimer { padding: 18px 28px; background: var(--ink); color: var(--paper); font-family: "IBM Plex Mono", monospace; font-size: 10px; }

.loop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}

.loop-card {
  position: relative;
  min-width: 0;
  padding: 15px 15px 23px;
  background: var(--white);
  border-right: 2px solid var(--ink);
}

.loop-card:last-child { border-right: 0; }
.loop-card::after {
  position: absolute;
  top: 40%;
  right: -16px;
  z-index: 2;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  content: "→";
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font-family: "IBM Plex Mono", monospace;
  font-size: 15px;
}

.loop-card:last-child::after { display: none; }
.loop-card img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.loop-index { position: absolute; top: 11px; left: 12px; z-index: 1; padding: 4px 6px; color: var(--paper); background: var(--ink); font: 600 10px "IBM Plex Mono", monospace; }
.loop-card h3 { margin: 10px 0 4px; font-family: "Anton", sans-serif; font-size: 35px; font-weight: 400; line-height: 1; }
.loop-card p { margin: 0; color: var(--muted); font-size: 14px; }
.loop-card-final { background: var(--ink); color: var(--paper); }
.loop-card-final img { filter: drop-shadow(0 0 0 var(--paper)); }
.loop-card-final p { color: var(--gray); }

.loop-equation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 4vw, 58px);
  margin-top: 55px;
  font-family: "Anton", sans-serif;
  font-size: clamp(32px, 5vw, 70px);
  line-height: 1;
}

.loop-equation b { color: var(--muted); font: 600 .7em "IBM Plex Mono", monospace; }
.loop-equation span:last-child { padding: 6px 12px; color: var(--paper); background: var(--ink); transform: rotate(-1deg); }

.meet-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 38px; }
.employee-card { border: 2px solid var(--ink); background: var(--white); box-shadow: var(--shadow); }
.employee-card-top { display: flex; justify-content: space-between; margin: 0; padding: 13px 18px; border-bottom: 2px solid var(--ink); }
.employee-body { display: grid; grid-template-columns: 45% 55%; }
.employee-body img { width: 100%; height: 100%; min-height: 450px; object-fit: cover; background: var(--paper); border-right: 2px solid var(--ink); }
.employee-body dl { margin: 0; }
.employee-body dl div { padding: 17px 20px; border-bottom: 1.5px solid var(--ink); }
.employee-body dl div:last-child { border-bottom: 0; }
.employee-body dt { font: 600 9px "IBM Plex Mono", monospace; letter-spacing: .1em; }
.employee-body dd { margin: 3px 0 0; font-family: "Anton", sans-serif; font-size: clamp(25px, 2.5vw, 37px); line-height: 1; }

.anatomy-notes { display: grid; align-content: stretch; border: 2px solid var(--ink); }
.anatomy-notes article { display: grid; grid-template-columns: 58px 1fr; gap: 18px; align-items: start; padding: 25px 24px; border-bottom: 2px solid var(--ink); background: var(--paper); }
.anatomy-notes article:last-child { border-bottom: 0; }
.anatomy-notes article > span { width: 45px; height: 45px; display: grid; place-items: center; color: var(--paper); background: var(--ink); border-radius: 50%; font: 600 11px "IBM Plex Mono", monospace; }
.anatomy-notes h3 { margin: 0; font-family: "Anton", sans-serif; font-size: 31px; font-weight: 400; line-height: 1; }
.anatomy-notes p { margin: 5px 0 0; color: var(--muted); font-size: 15px; }

.scale-lab { display: grid; grid-template-columns: .75fr 1.25fr; gap: 38px; }
.problem-controls { display: grid; align-content: start; gap: 10px; }
.problem-option,
.scale-button {
  min-height: 57px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  text-align: left;
  background: var(--paper);
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.problem-option:hover,
.problem-option:focus-visible { background: var(--gray); }
.problem-option.is-active { color: var(--paper); background: var(--ink); }
.problem-option.is-active::before { content: "● "; color: var(--lime); }
.scale-button { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; color: var(--ink); background: var(--lime); font-family: "Anton", sans-serif; font-size: 27px; letter-spacing: .02em; }
.scale-button:hover,
.scale-button:focus-visible { transform: translate(-3px, -3px); box-shadow: var(--shadow); }
.local-note { margin: 8px 0 0; text-align: center; color: var(--muted); font: 600 9px "IBM Plex Mono", monospace; letter-spacing: .06em; }

.scale-result {
  position: relative;
  min-height: 500px;
  overflow: clip;
  contain: paint;
  padding: 28px 31% 28px 30px;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}
.scale-result::before { position: absolute; inset: 8px; content: ""; border: 1px solid rgba(245, 243, 236, .45); pointer-events: none; }
.result-meta { position: relative; z-index: 2; display: flex; justify-content: space-between; margin-bottom: 68px; color: var(--gray); }
.result-problem { position: relative; z-index: 2; margin: 0 0 13px; color: var(--lime); font: 600 11px "IBM Plex Mono", monospace; letter-spacing: .07em; }
.scale-result h3 { position: relative; z-index: 2; max-width: 700px; margin: 0; font-family: "Anton", sans-serif; font-size: clamp(57px, 7vw, 104px); font-weight: 400; line-height: .96; letter-spacing: -.02em; text-wrap: balance; }
.result-signoff { position: relative; z-index: 2; max-width: 490px; margin: 22px 0 0; color: var(--gray); font: 600 10px "IBM Plex Mono", monospace; }
.result-actions { position: absolute; z-index: 4; left: 30px; bottom: 30px; display: flex; gap: 9px; }
.result-actions button { min-height: 43px; padding: 0 13px; color: var(--paper); background: transparent; border: 1px solid var(--paper); cursor: pointer; font: 600 10px "IBM Plex Mono", monospace; }
.result-actions button:hover,
.result-actions button:focus-visible { color: var(--ink); background: var(--lime); }
.result-character { position: absolute; right: 0; bottom: -13%; width: 38%; opacity: .88; transform: rotate(-3deg); }
.copy-status { position: absolute; z-index: 5; right: 20px; bottom: 15px; margin: 0; color: var(--lime); font: 600 10px "IBM Plex Mono", monospace; }
.scale-result.is-scaling { animation: thump .3s ease; }

@keyframes thump { 50% { transform: scale(1.018); } }

.kit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.kit-card { overflow: hidden; background: var(--white); border: 2px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); }
.kit-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-bottom: 2px solid var(--ink); }
.kit-card > div:not(.kit-actions) { padding: 21px 22px 18px; }
.kit-card h3 { margin: 0; font-family: "Anton", sans-serif; font-size: 35px; font-weight: 400; line-height: 1; }
.kit-card p { margin: 7px 0 0; color: var(--muted); font-size: 14px; }
.kit-actions { display: grid; grid-template-columns: 1fr 1fr; border-top: 1.5px solid var(--ink); }
.kit-actions a,
.kit-actions button { min-height: 48px; display: flex; align-items: center; justify-content: center; border: 0; background: var(--paper); cursor: pointer; text-decoration: none; font: 600 10px "IBM Plex Mono", monospace; }
.kit-actions > :first-child { border-right: 1.5px solid var(--ink); }
.kit-actions a:hover,
.kit-actions a:focus-visible,
.kit-actions button:hover,
.kit-actions button:focus-visible { background: var(--lime); }

.download-strip { margin-top: 54px; border: 2px solid var(--ink); background: var(--ink); color: var(--paper); box-shadow: var(--shadow); }
.download-strip img { width: 100%; aspect-ratio: 3 / 1; object-fit: cover; border-bottom: 2px solid var(--paper); }
.download-strip > div { display: grid; grid-template-columns: .6fr 1.4fr; gap: 32px; padding: 25px 27px 28px; align-items: end; }
.download-strip p { margin: 0; color: var(--gray); font: 600 10px "IBM Plex Mono", monospace; letter-spacing: .07em; }
.download-strip h3 { margin: 7px 0 0; font-family: "Anton", sans-serif; font-size: 31px; font-weight: 400; line-height: 1; }
.download-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.download-links a { padding: 10px 12px; color: var(--paper); border: 1px solid var(--paper); text-decoration: none; font: 600 9px "IBM Plex Mono", monospace; }
.download-links a:hover,
.download-links a:focus-visible { color: var(--ink); background: var(--lime); }

.faq-list { border: 2px solid var(--ink); box-shadow: var(--shadow); }
.faq-list details { background: var(--paper); border-bottom: 2px solid var(--ink); }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 23px; cursor: pointer; list-style: none; font-family: "Anton", sans-serif; font-size: clamp(25px, 3vw, 38px); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-family: "IBM Plex Mono", monospace; font-size: 25px; transition: transform .18s ease; }
.faq-list details[open] summary { color: var(--paper); background: var(--ink); }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 24px 23px 29px; max-width: 820px; font-size: 17px; }

.site-footer { color: var(--paper); background: var(--ink); }
.footer-main,
.footer-links,
.footer-legal { width: min(var(--max), calc(100% - 64px)); margin-inline: auto; }
.footer-main { display: flex; justify-content: space-between; align-items: end; padding-block: 80px 45px; border-bottom: 1px solid rgba(245, 243, 236, .35); }
.footer-logo { font-size: clamp(52px, 7vw, 94px); text-decoration: none; }
.footer-logo span { color: var(--gray); }
.footer-main p { margin: 0 0 10px; color: var(--gray); font: 600 11px "IBM Plex Mono", monospace; }
.footer-links { display: flex; gap: 25px; padding-block: 24px; border-bottom: 1px solid rgba(245, 243, 236, .35); }
.footer-links a { font: 600 10px "IBM Plex Mono", monospace; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 15px 35px; padding-block: 21px 35px; color: #aaa89f; font: 600 9px "IBM Plex Mono", monospace; }
.footer-legal b { color: var(--lime); }

@media (max-width: 1080px) {
  .site-nav { gap: 17px; }
  .hero { grid-template-columns: 50% 50%; }
  .hero h1 { font-size: clamp(83px, 11.3vw, 122px); }
  .hero-visual { min-height: 580px; }
  .loop-grid { grid-template-columns: repeat(2, 1fr); }
  .loop-card:nth-child(2) { border-right: 0; }
  .loop-card:nth-child(-n+2) { border-bottom: 2px solid var(--ink); }
  .loop-card:nth-child(2)::after { display: none; }
  .meet-grid { grid-template-columns: 1fr; }
  .employee-body img { min-height: 410px; }
  .scale-lab { grid-template-columns: .85fr 1.15fr; }
  .scale-result { padding-right: 24%; }
  .result-character { right: 0; width: 36%; opacity: .55; transform: none; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 70px; }
  body { font-size: 17px; }
  .site-header { min-height: 68px; padding-inline: 20px; }
  .menu-toggle { width: 43px; height: 40px; display: grid; place-content: center; gap: 5px; padding: 0; background: transparent; border: 1.5px solid var(--ink); }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 2px; display: block; background: var(--ink); }
  .site-nav { position: absolute; top: 68px; left: 0; right: 0; display: none; align-items: stretch; gap: 0; padding: 12px 20px 20px; background: var(--paper); border-bottom: 2px solid var(--ink); }
  .site-nav.is-open { display: grid; }
  .site-nav a { min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid var(--gray); }
  .site-nav a::after { display: none; }
  .nav-receipt { justify-content: center; margin-top: 10px; border-bottom: 2px solid var(--ink) !important; }
  .section-shell { width: min(100% - 36px, 720px); }
  .ruled-section { padding-block: 72px; }
  .hero { min-height: 0; grid-template-columns: 1fr; padding-block: 25px 66px; }
  .hero-visual { grid-row: 1; min-height: 440px; margin-bottom: 28px; }
  .hero-visual img { width: min(540px, 104%); }
  .hero-visual::before { inset: 9% -10% 5%; }
  .ink-label-top { left: 3%; }
  .hero h1 { font-size: clamp(80px, 22vw, 130px); }
  .hero-copy { grid-row: 2; }
  .split-heading { grid-template-columns: 1fr; gap: 27px; }
  .receipt-grid { grid-template-columns: 1fr; }
  .receipt-image { min-height: 380px; }
  .loop-equation { flex-wrap: wrap; }
  .scale-lab { grid-template-columns: 1fr; }
  .scale-result { min-height: 480px; }
  .kit-grid { grid-template-columns: 1fr; }
  .download-strip > div { grid-template-columns: 1fr; }
  .download-links { justify-content: flex-start; }
  .footer-main { align-items: start; flex-direction: column; gap: 21px; }
}

@media (max-width: 540px) {
  .wordmark-ticker { display: none; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2 { font-size: clamp(44px, 14vw, 72px); }
  .hero-visual { min-height: 370px; }
  .hero-visual img { width: 112%; }
  .hero h1 { font-size: clamp(73px, 23vw, 104px); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .receipt-image { min-height: 260px; }
  .receipt-image span { left: 10px; bottom: 10px; font-size: 9px; }
  .receipt-timeline article { padding: 21px 20px; }
  .loop-grid { grid-template-columns: 1fr; }
  .loop-card { border-right: 0; border-bottom: 2px solid var(--ink) !important; }
  .loop-card:last-child { border-bottom: 0 !important; }
  .loop-card::after { display: none; }
  .loop-card h3 { font-size: 40px; }
  .loop-equation { gap: 10px 16px; font-size: 34px; }
  .employee-body { grid-template-columns: 1fr; }
  .employee-body img { min-height: 330px; height: 370px; border-right: 0; border-bottom: 2px solid var(--ink); object-position: center; }
  .employee-body dd { font-size: 31px; }
  .anatomy-notes article { grid-template-columns: 45px 1fr; padding: 20px 17px; }
  .anatomy-notes article > span { width: 38px; height: 38px; }
  .scale-result { min-height: 520px; padding: 25px 23px 115px; }
  .result-meta { margin-bottom: 52px; }
  .scale-result h3 { font-size: clamp(55px, 17vw, 83px); }
  .result-character { right: 0; bottom: -2%; width: 52%; opacity: .28; transform: none; }
  .result-actions { left: 23px; right: 23px; bottom: 26px; display: grid; grid-template-columns: 1fr; }
  .result-actions button { width: 100%; }
  .copy-status { right: 24px; bottom: 10px; }
  .kit-card h3 { font-size: 31px; }
  .kit-actions { grid-template-columns: 1fr; }
  .kit-actions > :first-child { border-right: 0; border-bottom: 1.5px solid var(--ink); }
  .download-strip > div { padding: 21px 18px 24px; }
  .download-links { display: grid; }
  .download-links a { text-align: center; }
  .faq-list summary { min-height: 68px; padding: 12px 16px; font-size: 26px; }
  .faq-list details p { padding-inline: 16px; }
  .footer-main,
  .footer-links,
  .footer-legal { width: calc(100% - 36px); }
  .footer-main { padding-block: 64px 35px; }
  .footer-logo { font-size: 54px; }
  .footer-links { display: grid; gap: 15px; }
  .footer-legal { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@font-face {
  font-family: "Bangers";
  src: url("/assets/fonts/bangers-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Patrick Hand";
  src: url("/assets/fonts/patrick-hand-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Patrick Hand SC";
  src: url("/assets/fonts/patrick-hand-sc-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

/* Comic typography system */
body {
  font-family: "Patrick Hand", "Comic Sans MS", cursive;
  font-size: 19px;
  line-height: 1.45;
}

.wordmark-main,
.footer-logo,
.hero h1,
.section-heading h2,
.receipt-timeline h3,
.loop-card h3,
.loop-equation,
.employee-body dd,
.anatomy-notes h3,
.scale-button,
.scale-result h3,
.kit-card h3,
.download-strip h3,
.faq-list summary {
  font-family: "Bangers", "Comic Sans MS", cursive;
  font-weight: 400;
  letter-spacing: .015em;
}

.hero h1,
.section-heading h2,
.scale-result h3 {
  line-height: 1.02;
}

.wordmark-ticker,
.site-nav a,
.eyebrow span,
.button,
.problem-option,
.result-actions button,
.kit-actions a,
.kit-actions button,
.download-links a,
.footer-links a {
  font-family: "Patrick Hand SC", "Comic Sans MS", cursive;
  font-weight: 400;
  letter-spacing: .035em;
}

.wordmark-main { font-size: 30px; }
.wordmark-ticker { font-size: 14px; }
.site-nav a { font-size: 15px; }
.eyebrow span { font-size: 13px; }
.button { font-size: 16px; }
.hero-lead,
.section-heading > p:last-child {
  font-weight: 400;
}
.problem-option { font-size: 17px; }
.scale-button { font-size: 32px; }
.result-actions button,
.kit-actions a,
.kit-actions button { font-size: 14px; }
.download-links a { font-size: 13px; }
.footer-links a { font-size: 14px; }

@media (max-width: 820px) {
  body { font-size: 19px; }
  .site-nav a { font-size: 18px; }
}
