:root {
  --paper: #f0eee7;
  --paper-2: #e4e0d5;
  --ink: #11120f;
  --muted: #67675f;
  --cobalt: #2746ff;
  --orange: #ff5d2b;
  --lime: #d9ff43;
  --white: #fbfaf5;
  --line: rgba(17, 18, 15, 0.92);
  --thin-line: rgba(17, 18, 15, 0.22);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --serif: Georgia, "Times New Roman", serif;
  --page: min(1500px, calc(100vw - 48px));
  --gutter: clamp(20px, 4vw, 72px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body.cart-open { overflow: hidden; }

a { color: inherit; }

button, input, select { font: inherit; }

button { color: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  transform: translateY(-150%);
}

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

.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;
}

.signal-bar {
  min-height: 32px;
  padding: 7px 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: var(--ink);
  font: 10px/1.4 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.signal-bar strong { color: var(--lime); font-weight: 600; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(245px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(240, 238, 231, .95);
  backdrop-filter: blur(14px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.04em;
}

.wordmark small {
  display: block;
  margin-top: 1px;
  font: 8px/1.1 var(--mono);
  letter-spacing: .14em;
}

.wordmark-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--lime);
  font: 800 16px/1 var(--mono);
  transform: rotate(-3deg);
}

.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 42px); }

.desktop-nav a,
.site-footer nav a {
  position: relative;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font: 11px/1 var(--mono);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.desktop-nav a::after,
.site-footer nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transition: right .2s ease;
}

.desktop-nav a:hover::after,
.site-footer nav a:hover::after { right: 0; }

.cart-button {
  justify-self: end;
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--ink);
  background: transparent;
  font: 11px/1 var(--mono);
  text-transform: uppercase;
  cursor: pointer;
}

.cart-button span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
}

.menu-button { display: none; }
.mobile-nav { display: none; }

.section-grid {
  display: grid;
  grid-template-columns: minmax(150px, .7fr) minmax(0, 3fr);
  gap: clamp(28px, 5vw, 100px);
}

.hero {
  width: var(--page);
  min-height: calc(100vh - 112px);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 120px) var(--gutter) clamp(48px, 7vw, 100px);
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  overflow: hidden;
}

.eyebrow,
.section-index {
  margin: 0 0 22px;
  font: 10px/1.2 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-index { padding-top: 11px; color: var(--muted); }

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 7.4vw, 126px);
  font-weight: 700;
  line-height: .82;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.hero h1 em {
  font-family: var(--serif);
  font-weight: 400;
  text-transform: none;
}

.hero-lede {
  max-width: 650px;
  margin: 38px 0 0;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.35;
  letter-spacing: -.02em;
}

.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.button {
  min-height: 46px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 0;
  text-decoration: none;
  font: 700 11px/1 var(--mono);
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, color .16s ease, background .16s ease;
}

.button:hover { transform: translate(-3px, -3px); box-shadow: 3px 3px 0 var(--ink); }
.button-primary { background: var(--lime); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { color: var(--ink); background: var(--lime); }
.button-outline { background: transparent; }
.button-full { width: 100%; }
.button:disabled { opacity: .4; cursor: not-allowed; transform: none; box-shadow: none; }

.button-row {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.error-actions { margin-top: 40px; }

.text-link {
  padding: 0;
  border: 0;
  background: transparent;
  font: 11px/1.2 var(--mono);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-transform: uppercase;
  cursor: pointer;
}

.truth-strip {
  max-width: 560px;
  margin-top: 46px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--thin-line);
  border-bottom: 1px solid var(--thin-line);
}

.truth-strip li {
  padding: 12px 10px;
  font: 9px/1 var(--mono);
  text-align: center;
  text-transform: uppercase;
}

.truth-strip li + li { border-left: 1px solid var(--thin-line); }

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

.hero-object::before {
  content: "";
  position: absolute;
  width: min(42vw, 630px);
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--cobalt);
  z-index: -3;
}

.hero-object::after {
  content: "TEST ARTICLE / NOT TO SCALE";
  position: absolute;
  right: -2%;
  top: 23%;
  padding: 7px 10px;
  color: var(--white);
  background: var(--ink);
  font: 8px/1 var(--mono);
  letter-spacing: .08em;
  transform: rotate(90deg);
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(17,18,15,.38);
  border-radius: 50%;
  z-index: -2;
  animation: orbit 30s linear infinite;
}

.orbit::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: -5px;
  left: 50%;
  border: 1px solid var(--ink);
  background: var(--lime);
}

.orbit-one { width: 90%; aspect-ratio: 1; }
.orbit-two { width: 72%; aspect-ratio: 1; animation-direction: reverse; animation-duration: 22s; }

@keyframes orbit { to { transform: rotate(360deg); } }

.hero-photo {
  position: relative;
  width: min(38vw, 570px);
  aspect-ratio: 1;
  margin: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 22px 26px 0 rgba(17,18,15,.18);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.object-caption {
  position: absolute;
  left: 3%;
  bottom: 6%;
  max-width: 230px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--thin-line);
  background: var(--paper);
  box-shadow: 6px 7px 0 rgba(17, 18, 15, .14);
  font: 9px/1.4 var(--mono);
  text-transform: uppercase;
}

.object-caption span { display: block; margin-bottom: 4px; color: var(--muted); }

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--white);
  background: var(--cobalt);
}

.ticker div {
  width: max-content;
  padding: 13px 0;
  font: 700 11px/1 var(--mono);
  letter-spacing: .05em;
  animation: ticker 35s linear infinite;
}

@keyframes ticker { to { transform: translateX(-50%); } }

.manifesto,
.evidence-preview,
.build-proof,
.faq {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 160px) var(--gutter);
  border-bottom: 1px solid var(--ink);
}

.manifesto h2,
.section-head h2,
.builder-intro h2,
.evidence-preview h2,
.build-proof h2,
.faq h2,
.page-hero h1,
.page-section h2,
.dispatch h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 92px);
  line-height: .92;
  letter-spacing: -.065em;
}

.manifesto h2 { max-width: 1050px; }

.manifesto-copy {
  max-width: 970px;
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 6vw, 110px);
}

.manifesto-copy p { margin: 0; font-size: clamp(18px, 1.4vw, 23px); letter-spacing: -.02em; }

.shop { width: var(--page); margin: 0 auto; padding: clamp(80px, 9vw, 140px) 0 0; }

.section-head { padding: 0 var(--gutter) clamp(56px, 7vw, 100px); }
.section-head h2 { font-size: clamp(64px, 9vw, 150px); }
.section-head > div > p:last-child { max-width: 660px; margin: 26px 0 0; font-size: 20px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.product-card {
  min-height: 860px;
  display: grid;
  grid-template-rows: minmax(390px, 1.1fr) minmax(390px, .9fr);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.product-card-wide {
  grid-column: 1 / -1;
  min-height: 670px;
  grid-template-columns: minmax(0, 1.15fr) minmax(410px, .85fr);
  grid-template-rows: 1fr;
}

.product-card-wide .product-info { border-left: 1px solid var(--ink); }

.product-visual {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(rgba(17,18,15,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(17,18,15,.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.product-visual-black::before {
  background-image: linear-gradient(rgba(251,250,245,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(251,250,245,.05) 1px, transparent 1px);
}

.product-visual-cobalt { background: var(--cobalt); }
.product-visual-orange { background: var(--orange); }
.product-visual-cream { background: var(--paper-2); }
.product-visual-black { color: var(--white); background: var(--ink); }
.product-visual-lime { background: var(--lime); }

.product-status {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  padding: 6px 8px;
  color: var(--ink);
  border: 1px solid currentColor;
  background: var(--white);
  font: 8px/1 var(--mono);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.visual-number {
  position: absolute;
  right: 12px;
  bottom: -25px;
  z-index: 2;
  color: rgba(255,255,255,.3);
  font: 800 clamp(100px, 18vw, 280px)/.8 var(--sans);
  letter-spacing: -.11em;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.product-visual-cream .visual-number,
.product-visual-lime .visual-number { color: rgba(17,18,15,.16); mix-blend-mode: multiply; }

.product-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .6, .2, 1);
}

.product-card:hover .product-photo { transform: scale(1.045); }

.render-tag {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  padding: 5px 7px;
  color: var(--white);
  background: rgba(17, 18, 15, .82);
  font: 10px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-info {
  padding: clamp(28px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-kicker {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font: 9px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 24px 0 18px;
  font-size: clamp(36px, 4vw, 68px);
  line-height: .9;
  letter-spacing: -.06em;
}

.product-info > p { max-width: 620px; margin: 0; font-size: 17px; }

.spec-list {
  width: 100%;
  margin: 32px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--thin-line);
}

.spec-list li { padding: 9px 0; border-bottom: 1px solid var(--thin-line); font: 9px/1.2 var(--mono); text-transform: uppercase; }
.spec-list li::before { content: "✓"; margin-right: 10px; color: var(--cobalt); font-weight: 700; }
.product-info .button { margin-top: auto; }

.pacer {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 160px) var(--gutter);
  border-bottom: 1px solid var(--ink);
}

.pacer-intro > p:last-child { max-width: 640px; margin: 26px 0 0; font-size: 19px; }

.pacer-panel {
  margin-top: 68px;
  display: grid;
  grid-template-columns: minmax(420px, 1.2fr) minmax(320px, .8fr);
  border: 1px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.pacer-stage {
  position: relative;
  min-height: 480px;
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 30px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.pacer-ring {
  width: min(64%, 280px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(251, 250, 245, .4);
  border-radius: 50%;
}

.pacer-core {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  transform: scale(.42);
  transition: transform 8s cubic-bezier(.45, 0, .55, 1);
}

.pacer-core.is-inhale { transform: scale(.98); transition-duration: 4s; }
.pacer-core.is-exhale { transform: scale(.42); transition-duration: 8s; }
.pacer-core.is-idle { transform: scale(.42); transition-duration: .8s; }

.pacer-phase {
  margin: 0;
  font: 700 13px/1 var(--mono);
  letter-spacing: .34em;
  text-transform: uppercase;
}

.pacer-meter { margin: 0; color: rgba(251, 250, 245, .6); font: 10px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }

.pacer-controls {
  padding: clamp(26px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 1px solid var(--ink);
  background: var(--paper-2);
}

.pacer-note { max-width: 380px; margin: 24px 0 0; color: var(--muted); font: 11px/1.7 var(--mono); }

.pacer-debrief { max-width: 380px; margin: 24px 0 0; font-family: var(--serif); font-style: italic; font-size: 19px; }

html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.protocol-builder {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 160px) var(--gutter);
  border-bottom: 1px solid var(--ink);
}

.builder-intro > p:last-child { max-width: 640px; margin: 26px 0 0; font-size: 19px; }

.builder-panel {
  margin-top: 68px;
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(420px, 1.2fr);
  border: 1px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.builder-controls { padding: clamp(26px, 4vw, 56px); border-right: 1px solid var(--ink); background: var(--paper-2); }
.builder-controls fieldset { margin: 0 0 36px; padding: 0; border: 0; }
.builder-controls legend { width: 100%; margin-bottom: 15px; font: 10px/1 var(--mono); text-transform: uppercase; }
.builder-controls label { display: inline-block; margin: 0 6px 8px 0; }
.builder-controls input[type="radio"] { position: absolute; opacity: 0; }
.builder-controls label span { padding: 9px 13px; display: block; border: 1px solid var(--ink); font: 10px/1 var(--mono); text-transform: uppercase; cursor: pointer; }
.builder-controls input:checked + span { color: var(--white); background: var(--cobalt); }
.builder-controls select { width: 100%; padding: 12px; border: 1px solid var(--ink); border-radius: 0; background: var(--white); }

.protocol-output { min-height: 460px; padding: clamp(28px, 5vw, 70px); display: flex; flex-direction: column; color: var(--white); background: var(--cobalt); }
.protocol-output-head { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.5); font: 9px/1 var(--mono); }
.protocol-name { margin: 42px 0 34px; font-size: clamp(38px, 5vw, 72px); line-height: .9; letter-spacing: -.06em; text-transform: uppercase; }
.protocol-output ol { margin: 0; padding-left: 1.3em; font: 14px/1.5 var(--mono); }
.protocol-output li { padding: 8px 0 12px 10px; border-bottom: 1px solid rgba(255,255,255,.25); }
.protocol-rule { margin: 32px 0 24px; font-family: var(--serif); font-style: italic; font-size: 19px; }
.protocol-copy { margin-top: auto; color: var(--white); align-self: flex-start; }

.evidence-grid { margin: 58px 0 42px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.evidence-grid article { min-height: 280px; padding: 26px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.evidence-grid article > strong { color: var(--cobalt); font-size: 44px; letter-spacing: -.06em; }
.evidence-grid h3 { margin: 20px 0 14px; font-size: 20px; }
.evidence-grid p { margin: 0; font-size: 14px; }

.build-proof-content > p:not(.eyebrow) { max-width: 750px; margin: 32px 0 0; font-size: 19px; }
.cost-strip { margin: 48px 0 38px; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.cost-strip li { min-height: 130px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.cost-strip strong { font-size: 32px; letter-spacing: -.06em; }
.cost-strip span { font: 9px/1 var(--mono); text-transform: uppercase; }

.accordion { margin-top: 56px; border-top: 1px solid var(--ink); }
.accordion details { border-bottom: 1px solid var(--ink); }
.accordion summary { position: relative; padding: 24px 54px 24px 0; list-style: none; font-size: clamp(20px, 2vw, 30px); letter-spacing: -.03em; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font: 28px/1 var(--mono); }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { max-width: 760px; margin: 0; padding: 0 0 28px; font-size: 17px; }

.dispatch {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 120px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: end;
  color: var(--white);
  background: var(--ink);
}

.dispatch h2 { font-size: clamp(48px, 6vw, 100px); }
.dispatch-form { display: grid; grid-template-columns: 1fr auto; }
.dispatch-form input { min-width: 0; padding: 13px 4px; color: var(--white); border: 0; border-bottom: 1px solid var(--white); background: transparent; font: 12px/1 var(--mono); }
.dispatch-form input::placeholder { color: rgba(255,255,255,.55); }
.dispatch-form .form-note { grid-column: 1 / -1; margin: 12px 0 0; color: rgba(255,255,255,.6); font: 8px/1.4 var(--mono); }

.site-footer {
  width: var(--page);
  margin: 0 auto;
  padding: 52px var(--gutter) 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  border: 1px solid var(--ink);
  border-top: 0;
}

.footer-mark { font-size: clamp(34px, 5vw, 72px); font-weight: 800; line-height: .8; letter-spacing: -.07em; }
.footer-mark sup { font: 8px/1 var(--mono); letter-spacing: 0; vertical-align: top; }
.site-footer p { margin: 0; }
.site-footer .muted { margin-top: 12px; color: var(--muted); font-size: 12px; }
.site-footer nav { display: grid; gap: 13px; align-content: start; justify-content: end; }
.footer-meta { grid-column: 1 / -1; padding-top: 30px; border-top: 1px solid var(--thin-line); font: 8px/1.3 var(--mono); letter-spacing: .08em; }

.cart-scrim { position: fixed; inset: 0; z-index: 79; background: rgba(17,18,15,.48); backdrop-filter: blur(3px); }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  width: min(500px, 100vw);
  padding: 24px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: -20px 0 70px rgba(17,18,15,.2);
  transform: translateX(105%);
  transition: transform .25s ease;
}
.cart-drawer:not([hidden]) { transform: translateX(0); }
.cart-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--ink); }
.cart-head h2 { margin: 0; font-size: 38px; letter-spacing: -.05em; }
.cart-head .eyebrow { margin-bottom: 7px; }
.icon-button { width: 40px; height: 40px; border: 1px solid var(--ink); background: transparent; font-size: 28px; line-height: 1; cursor: pointer; }
.cart-items { flex: 1; overflow: auto; }
.cart-empty { padding: 32px 0; color: var(--muted); font-family: var(--mono); font-size: 12px; }
.cart-line { padding: 18px 0; display: grid; grid-template-columns: 1fr auto; gap: 8px 20px; border-bottom: 1px solid var(--thin-line); }
.cart-line strong { font-size: 18px; }
.cart-line span { font-family: var(--mono); font-size: 11px; }
.cart-line button { grid-column: 1; min-height: 36px; justify-self: start; padding: 8px 0; border: 0; background: transparent; color: var(--muted); font: 10px/1 var(--mono); text-decoration: underline; cursor: pointer; }
.cart-foot { padding-top: 20px; border-top: 1px solid var(--ink); }
.cart-total { display: flex; justify-content: space-between; font: 12px/1 var(--mono); text-transform: uppercase; }
.cart-total strong { font-size: 22px; }
.cart-foot > p { margin: 16px 0; color: var(--muted); font-size: 11px; }
.toast { position: fixed; z-index: 100; left: 50%; bottom: 24px; padding: 12px 16px; color: var(--white); background: var(--ink); font: 10px/1.2 var(--mono); transform: translate(-50%, 150%); transition: transform .2s ease; }
.toast.show { transform: translate(-50%, 0); }

/* Secondary pages */
.page-hero {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 150px) var(--gutter) clamp(60px, 8vw, 110px);
  display: grid;
  grid-template-columns: .7fr 3fr;
  gap: clamp(30px, 6vw, 110px);
  border-bottom: 1px solid var(--ink);
}
.page-hero h1 { font-size: clamp(68px, 11vw, 180px); }
.page-hero .page-lede { max-width: 850px; margin: 38px 0 0; font-size: clamp(20px, 2vw, 30px); letter-spacing: -.03em; }
.page-section { width: var(--page); margin: 0 auto; padding: clamp(70px, 9vw, 130px) var(--gutter); border-bottom: 1px solid var(--ink); }
.page-section-grid { display: grid; grid-template-columns: minmax(150px, .7fr) minmax(0, 3fr); gap: clamp(28px, 5vw, 100px); }
.page-section h2 { font-size: clamp(44px, 6vw, 96px); }
.page-section h3 { font-size: 24px; letter-spacing: -.03em; }
.prose { max-width: 820px; }
.prose p, .prose li { font-size: 18px; }
.prose a { text-underline-offset: 4px; }
.source-note { color: var(--muted); font: 10px/1.5 var(--mono); }
.finding-grid, .risk-grid, .phase-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.finding-card, .risk-card, .phase-card { min-height: 280px; padding: 26px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.finding-card strong, .phase-card > strong { color: var(--cobalt); font-size: 38px; letter-spacing: -.06em; }
.finding-card p, .risk-card p, .phase-card p { font-size: 14px; }
.finding-card a { font: 9px/1 var(--mono); text-transform: uppercase; }
.boundary-box { margin-top: 50px; padding: clamp(28px, 4vw, 54px); color: var(--white); background: var(--cobalt); }
.boundary-box h3 { margin-top: 0; font-size: 34px; }
.boundary-box ul { margin-bottom: 0; }
.data-table-wrap { margin-top: 50px; overflow-x: auto; border: 1px solid var(--ink); }
.data-table-wrap:focus-visible { outline: 3px solid var(--cobalt); outline-offset: 3px; }
.data-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.data-table th, .data-table td { padding: 14px 16px; border-right: 1px solid var(--thin-line); border-bottom: 1px solid var(--thin-line); text-align: left; vertical-align: top; }
.data-table th { background: var(--paper-2); font: 9px/1.2 var(--mono); text-transform: uppercase; }
.data-table td { font-size: 14px; }
.data-table tr:last-child td { border-bottom: 0; }
.data-table th:last-child, .data-table td:last-child { border-right: 0; }
.callout { margin-top: 40px; padding: 22px; border: 1px solid var(--ink); background: var(--lime); font-family: var(--mono); font-size: 13px; }
.ordered-plan { margin: 50px 0 0; padding: 0; list-style: none; counter-reset: plan; border-top: 1px solid var(--ink); }
.ordered-plan li { counter-increment: plan; padding: 22px 0; display: grid; grid-template-columns: 70px 1fr; border-bottom: 1px solid var(--ink); font-size: 18px; }
.ordered-plan li::before { content: "0" counter(plan); color: var(--cobalt); font: 700 26px/1 var(--mono); }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .desktop-nav { display: none; }
  .menu-button { width: 38px; height: 38px; padding: 10px; display: grid; align-content: center; gap: 6px; border: 1px solid var(--ink); background: transparent; cursor: pointer; }
  .menu-button span { height: 1px; display: block; background: var(--ink); }
  .mobile-nav { position: fixed; z-index: 59; top: 112px; right: 0; left: 0; padding: 24px; background: var(--lime); border-bottom: 1px solid var(--ink); }
  .mobile-nav:not([hidden]) { display: grid; }
  .mobile-nav a { padding: 12px 0; border-bottom: 1px solid rgba(17,18,15,.3); text-decoration: none; font-size: 24px; letter-spacing: -.03em; }
  .hero { grid-template-columns: 1fr 420px; padding-right: 20px; padding-left: 20px; }
  .hero-object { min-height: 500px; }
  .hero-photo { width: min(36vw, 396px); }
  .hero-object::before { width: min(40vw, 436px); }
  .product-card-wide { grid-template-columns: 1fr 1fr; }
  .pacer-panel { grid-template-columns: 1fr; }
  .pacer-controls { border-left: 0; border-top: 1px solid var(--ink); }
  .dispatch { grid-template-columns: 1fr; }
  .finding-grid, .risk-grid, .phase-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --page: 100%; --gutter: 20px; }
  .signal-bar { justify-content: center; text-align: center; }
  .signal-bar span:first-child, .signal-bar span:last-child { display: none; }
  .site-header { min-height: 68px; padding: 0 14px; gap: 10px; }
  .wordmark small, .wordmark-mark { display: none; }
  .cart-button { padding: 8px; font-size: 9px; }
  .mobile-nav { top: 100px; }
  .section-grid, .page-hero, .page-section-grid { grid-template-columns: 1fr; gap: 26px; }
  .section-index { padding-top: 0; margin-bottom: 0; }
  .hero { min-height: 0; padding: 70px 20px 20px; grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(54px, 18vw, 82px); }
  .hero-lede { margin-top: 28px; font-size: 18px; }
  .truth-strip { margin-top: 34px; }
  .hero-object { min-height: 520px; }
  .hero-object::before { width: 88vw; }
  .hero-photo { width: 80vw; }
  .object-caption { left: 0; bottom: 2%; }
  .pacer-panel { margin-top: 45px; }
  .pacer-stage { min-height: 420px; }
  .manifesto-copy { grid-template-columns: 1fr; gap: 22px; }
  .product-grid { grid-template-columns: 1fr; border-left: 0; }
  .product-card, .product-card-wide { grid-column: auto; min-height: 0; grid-template-columns: 1fr; grid-template-rows: auto auto; }
  .product-card-wide .product-info { border-left: 0; }
  .product-visual { min-height: 420px; }
  .product-info { min-height: 410px; }
  .builder-panel { grid-template-columns: 1fr; margin-top: 45px; }
  .builder-controls { border-right: 0; border-bottom: 1px solid var(--ink); }
  .evidence-grid, .cost-strip { grid-template-columns: 1fr; }
  .dispatch-form { grid-template-columns: 1fr; gap: 12px; }
  .dispatch-form .form-note { grid-column: 1; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: start; }
  .footer-meta { grid-column: 1; }
  .finding-grid, .risk-grid, .phase-grid { grid-template-columns: 1fr; }
  .page-hero { padding-top: 75px; }
  .page-hero h1 { font-size: clamp(60px, 20vw, 100px); }
}

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