:root {
  --paper: #f6f0e5;
  --paper-bright: #fffdf8;
  --ink: #142321;
  --ink-soft: #42514e;
  --line: #cfc5b4;
  --line-dark: #8e887c;
  --ai: #0e604d;
  --ai-light: #dcefe8;
  --ai-mid: #79ac9d;
  --human: #8a5c06;
  --human-light: #f1dfba;
  --human-mid: #d1aa5c;
  --shadow: rgba(42, 36, 27, 0.14);
  --max: 1180px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(58, 51, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 51, 40, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  font-size: 1rem;
  line-height: 1.65;
}

button, a { font: inherit; }
a { color: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
code, pre { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.site-nav { display: flex; align-items: center; gap: 1.7rem; }
.site-nav a, .site-footer a { color: var(--ink-soft); text-decoration: none; font-size: 0.9rem; font-weight: 650; }
.site-nav a:hover, .site-nav a:focus-visible, .site-footer a:hover, .site-footer a:focus-visible { color: var(--ai); text-decoration: underline; text-underline-offset: 0.25rem; }
.site-header > .button { justify-self: end; }
.mobile-menu { display: none; position: relative; justify-self: end; z-index: 15; }
.mobile-menu summary {
  min-height: 42px;
  padding: 0.5rem 0.8rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink);
  background: var(--paper-bright);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary::after { content: "+"; margin-left: 0.55rem; color: var(--ai); font-size: 1.2rem; line-height: 1; }
.mobile-menu[open] summary::after { content: "−"; }
.mobile-menu nav {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  width: min(78vw, 280px);
  padding: 0.65rem;
  display: grid;
  border: 1px solid var(--line-dark);
  background: var(--paper-bright);
  box-shadow: 8px 8px 0 rgba(14,96,77,0.18);
}
.mobile-menu nav a { min-height: 44px; padding: 0.65rem 0.7rem; display: flex; align-items: center; color: var(--ink); text-decoration: none; font-weight: 700; }
.mobile-menu nav a:hover, .mobile-menu nav a:focus-visible { color: var(--ai); background: var(--ai-light); }
.mobile-menu nav .mobile-install { margin-top: 0.35rem; color: white; background: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.72rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: white;
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--ai-mid);
  text-decoration: none;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover, .button:focus-visible { background: var(--ai); transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--human-mid); }
.button-small { min-height: 40px; padding: 0.5rem 0.9rem; font-size: 0.9rem; box-shadow: 3px 3px 0 var(--ai-mid); }
.text-link { display: inline-flex; gap: 0.4rem; align-items: center; color: var(--ink); font-weight: 750; text-underline-offset: 0.28rem; }
.text-link:hover, .text-link:focus-visible { color: var(--ai); }

.hero {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 680px;
  margin: 0 auto;
  padding: 4.25rem 0 4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--ai);
  font-size: 0.84rem;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}
.eyebrow-mark { display: inline-block; width: 9px; height: 9px; margin-right: 0.35rem; transform: rotate(45deg); background: var(--human-mid); }

h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 520;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
h1 { font-size: clamp(3.5rem, 5.25vw, 5rem); }
h1 em { color: var(--ai); font-weight: inherit; }
h2 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
h3 { margin: 0; font-size: 1.2rem; line-height: 1.25; }

.hero-lede { max-width: 650px; margin: 2rem 0 0; color: var(--ink-soft); font-size: 1.18rem; line-height: 1.65; }
.hero-actions { margin-top: 2rem; display: flex; align-items: center; flex-wrap: wrap; gap: 1.25rem; }
.hero-meta { margin: 1.6rem 0 0; color: var(--ink-soft); font-size: 0.86rem; font-weight: 650; }

.hero-art { position: relative; min-height: 520px; isolation: isolate; }
.paper-shadow { position: absolute; inset: 4% 0 8% 4%; background: rgba(84, 68, 43, 0.15); filter: blur(28px); transform: rotate(-2deg); z-index: -1; }
.request-note, .delivery-note {
  position: absolute;
  margin: 0;
  border: 1px solid;
  box-shadow: 12px 14px 0 rgba(60, 51, 37, 0.08);
}
.request-note {
  z-index: 3;
  top: 32px;
  left: 2%;
  width: min(78%, 390px);
  min-height: 208px;
  padding: 2rem 2.2rem;
  transform: rotate(-4deg);
  background: var(--human-light);
  border-color: var(--human-mid);
  clip-path: polygon(0 0, 84% 0, 100% 25%, 100% 100%, 0 100%);
}
.request-note::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 16%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #dbc184 49%, #fff5dd 51%);
  border-left: 1px solid var(--human-mid);
  border-bottom: 1px solid var(--human-mid);
}
.request-note p { max-width: 300px; margin: 1.5rem 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; line-height: 1.35; }
.owner-label { color: currentColor; font-size: 0.78rem; letter-spacing: 0.13em; font-weight: 850; }
.owner-human { color: var(--human); }
.owner-ai { color: var(--ai); }

.fold-path { position: absolute; z-index: 1; inset: 174px 10% auto 15%; height: 190px; }
.fold { position: absolute; display: block; border: 1px solid var(--ai-mid); background: var(--ai-light); filter: drop-shadow(6px 9px 0 rgba(42, 36, 27, 0.07)); }
.fold-one { left: 2%; top: 0; width: 43%; height: 125px; transform: skewY(14deg) rotate(3deg); clip-path: polygon(0 0, 100% 18%, 76% 100%, 10% 79%); }
.fold-two { left: 36%; top: 17px; width: 42%; height: 142px; transform: skewY(-8deg) rotate(-2deg); background: #c8e5dc; clip-path: polygon(12% 0, 100% 17%, 87% 100%, 0 74%); }
.fold-three { right: 0; top: 52px; width: 31%; height: 98px; transform: rotate(9deg); background: #b4d8cd; clip-path: polygon(0 10%, 100% 0, 83% 100%, 8% 81%); }
.delivery-note {
  z-index: 2;
  right: 1%;
  bottom: 48px;
  width: min(69%, 360px);
  padding: 1.6rem 1.8rem;
  transform: rotate(3deg);
  color: var(--ink);
  background: var(--paper-bright);
  border-color: var(--ai-mid);
}
.delivery-note .owner-label { color: var(--ai); }
.delivery-note strong { display: block; margin-top: 0.75rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; }
.delivery-note ul { margin: 0.85rem 0 0; padding-left: 1.3rem; color: var(--ink-soft); }
.delivery-note li::marker { color: var(--ai); }
.art-legend { position: absolute; bottom: 0; left: 3%; display: flex; flex-wrap: wrap; gap: 1rem; color: var(--ink-soft); font-size: 0.86rem; font-weight: 700; }
.art-legend span { display: inline-flex; align-items: center; gap: 0.45rem; }
.art-legend i { width: 10px; height: 10px; display: inline-block; transform: rotate(45deg); }
.legend-human { background: var(--human-mid); }
.legend-ai { background: var(--ai-mid); }

.definition {
  padding: 1.2rem max(1rem, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 3rem;
  color: white;
  background: var(--ink);
}
.definition p { margin: 0; }
.definition p:last-child { color: #d0dbd8; }

.section { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; padding: 7rem 0; }
.section-heading { display: grid; grid-template-columns: 1.35fr 0.65fr; column-gap: 4rem; align-items: end; margin-bottom: 3.5rem; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading > p:last-child { max-width: 480px; margin: 0; color: var(--ink-soft); font-size: 1.05rem; }
.section-heading.compact { grid-template-columns: 1fr; max-width: 850px; }

.workflow-shell { border-top: 1px solid var(--line-dark); }
.demo-disclosure {
  margin: 0;
  padding: 0.85rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.8rem;
  border: 1px solid var(--line-dark);
  border-top: 0;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.34);
  font-size: 0.9rem;
}
.demo-disclosure strong { color: var(--human); letter-spacing: 0.08em; text-transform: uppercase; }
.stage-rail { display: grid; grid-template-columns: repeat(6, 1fr); }
.stage-tab {
  position: relative;
  min-height: 146px;
  padding: 1rem 0.9rem 1.1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  gap: 1.5rem 0.5rem;
  text-align: left;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255,255,255,0.25);
  cursor: pointer;
}
.stage-tab:first-child { border-left: 1px solid var(--line); }
.stage-tab::after { content: ""; position: absolute; inset: auto 0 -1px; height: 4px; transform: scaleX(0); transform-origin: left; background: currentColor; transition: transform 180ms ease; }
.stage-tab:hover::after, .stage-tab:focus-visible::after, .stage-tab.is-active::after { transform: scaleX(1); }
.stage-tab.owner-human { background: rgba(241,223,186,0.22); }
.stage-tab.owner-ai { background: rgba(220,239,232,0.22); }
.stage-tab.is-active.owner-human { background: var(--human-light); }
.stage-tab.is-active.owner-ai { background: var(--ai-light); }
.stage-tab:focus-visible { z-index: 2; outline: 3px solid var(--ink); outline-offset: -3px; }
.stage-tab strong { grid-column: 1 / -1; color: var(--ink); font-size: 1rem; }
.stage-number { color: var(--ink-soft); font-size: 0.84rem; font-variant-numeric: tabular-nums; }

.stage-panels { min-height: 330px; }
.stage-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 330px;
  padding: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  border: 1px solid var(--line-dark);
  border-top: 0;
  background: var(--paper-bright);
  color: var(--ink);
}
.stage-panel.owner-human { border-color: var(--human-mid); background: linear-gradient(125deg, rgba(241,223,186,0.5), var(--paper-bright) 48%); }
.stage-panel.owner-ai { border-color: var(--ai-mid); background: linear-gradient(125deg, rgba(220,239,232,0.62), var(--paper-bright) 48%); }
.stage-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0.75;
  pointer-events: none;
}
.stage-panel.owner-human::after { background: var(--human-mid); }
.stage-panel.owner-ai::after { background: var(--ai-mid); }
.js-ready .stage-panel { display: none; }
.stage-panel.is-active { display: grid; animation: unfold 280ms ease-out both; transform-origin: top left; }
.stage-panel h3 { max-width: 580px; margin-top: 0.65rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 3.5vw, 3.1rem); font-weight: 520; }
.stage-panel p:not(.owner-line) { max-width: 650px; color: var(--ink-soft); }
.owner-line { margin: 0; display: flex; align-items: center; gap: 0.6rem; color: currentColor; font-size: 0.84rem; letter-spacing: 0.11em; font-weight: 800; text-transform: uppercase; }
.stage-panel.owner-human .owner-line { color: var(--human); }
.stage-panel.owner-ai .owner-line { color: var(--ai); }
.owner-dot { width: 10px; height: 10px; transform: rotate(45deg); background: currentColor; }
.stage-panel blockquote { margin: 0; padding: 2rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; line-height: 1.45; border: 1px solid var(--human-mid); background: var(--human-light); box-shadow: 8px 8px 0 rgba(138,92,6,0.1); }
.artifact-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.artifact-list li { padding: 0.85rem 0; display: grid; grid-template-columns: 5.5rem 1fr; gap: 0.8rem; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.artifact-list span { color: var(--ai); font-weight: 850; font-size: 0.82rem; letter-spacing: 0.08em; }
.decision-card { display: grid; gap: 0.7rem; padding: 1.5rem; border: 1px solid var(--human-mid); background: var(--human-light); }
.decision-card strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; }
.decision-card span { padding: 0.65rem 0.8rem; border: 1px solid var(--human-mid); background: rgba(255,255,255,0.35); font-weight: 700; }
.stage-controls { display: none; }
.decision-note { padding: 1.1rem 1.4rem; display: grid; grid-template-columns: 210px 1fr; gap: 1rem; align-items: center; border: 1px dashed var(--human); border-top: 0; color: var(--human); background: rgba(241,223,186,0.46); }
.decision-note p { margin: 0; color: var(--ink-soft); }

.benefits { border-top: 1px solid var(--line); }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.benefit-grid article { min-height: 300px; padding: clamp(1.7rem, 4vw, 3.2rem); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: rgba(255,255,255,0.22); }
.benefit-index { color: var(--ai); font-size: 0.84rem; font-weight: 800; }
.benefit-grid h3 { max-width: 440px; margin-top: 3.6rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 520; }
.benefit-grid p { max-width: 490px; color: var(--ink-soft); }
code { padding: 0.1em 0.3em; background: rgba(14,96,77,0.1); border-radius: 2px; }

.setup {
  width: 100%;
  padding-inline: max(1rem, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(3rem, 8vw, 8rem);
  color: #eef5f2;
  background: var(--ink);
}
.setup h2 { color: white; }
.setup-intro > p { color: #bac9c5; }
.setup-requirements { margin-top: 2rem; padding: 1.1rem 1.2rem; border: 1px solid #53625e; background: rgba(255,255,255,0.035); }
.setup-requirements > strong { color: white; font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; }
.setup-requirements ul { margin: 0.75rem 0 0; padding-left: 1.2rem; color: #bac9c5; }
.setup-requirements li + li { margin-top: 0.45rem; }
.setup-requirements code { color: #d8e5e1; background: #0c1917; }
.setup .eyebrow { color: #91c9b9; }
.setup-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid #53625e; }
.setup-steps > li { padding: 2.2rem 0; display: grid; grid-template-columns: 3.2rem 1fr; gap: 1rem; border-bottom: 1px solid #53625e; }
.step-number { color: #91c9b9; font-size: 0.84rem; font-weight: 800; }
.setup-steps p { color: #bac9c5; }
.setup .text-link { color: white; }
.prompt-card { position: relative; margin-top: 1.1rem; padding: 1.1rem 7.8rem 1.1rem 1.1rem; border: 1px solid #61716d; background: #0c1917; }
.prompt-card pre { margin: 0; white-space: pre-wrap; overflow-wrap: anywhere; color: #d8e5e1; font-size: 0.9rem; line-height: 1.6; }
.copy-button { position: absolute; top: 0.8rem; right: 0.8rem; min-height: 38px; padding: 0.45rem 0.7rem; color: white; border: 1px solid #71817c; border-radius: 2px; background: #203532; cursor: pointer; font-size: 0.84rem; font-weight: 750; }
.copy-button:hover, .copy-button:focus-visible { border-color: #b7dbd1; background: var(--ai); }
.multi-repo { margin-top: 1.2rem; color: #d8e5e1; }
.multi-repo summary { cursor: pointer; font-weight: 750; }
.multi-repo p { font-size: 0.92rem; }
.setup-footnote { grid-column: 2; margin: -5rem 0 0 4.2rem; color: #bac9c5; }
.setup-footnote a { color: white; }

.faq-list { border-top: 1px solid var(--line-dark); }
.faq-list details { border-bottom: 1px solid var(--line-dark); }
.faq-list summary { position: relative; padding: 1.45rem 3.5rem 1.45rem 0; cursor: pointer; list-style: none; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0.5rem; top: 1.2rem; color: var(--ai); font-family: ui-sans-serif, system-ui, sans-serif; font-size: 1.8rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 820px; margin: 0 0 1.5rem; color: var(--ink-soft); }

.closing { text-align: center; }
.closing img { margin: 0 auto 1.5rem; }
.closing .hero-actions { justify-content: center; }

.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 150px;
  margin: 0 auto;
  padding: 2.2rem 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--line-dark);
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.7rem; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { color: var(--ink); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.site-footer p { margin: 0; }

.toast { position: fixed; z-index: 20; right: 1rem; bottom: 1rem; margin: 0; padding: 0.75rem 1rem; color: white; background: var(--ink); border: 1px solid #6f8d85; box-shadow: 5px 5px 0 var(--ai-mid); opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity 160ms ease, transform 160ms ease; }
.toast.is-visible { opacity: 1; transform: none; }

@keyframes unfold {
  from { opacity: 0.5; transform: perspective(800px) rotateX(-5deg) translateY(-5px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: 0.75rem; }
  .site-nav { display: none; }
  .mobile-menu { display: block; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 4rem; }
  .hero-copy { max-width: 760px; }
  .hero-art { width: min(100%, 650px); margin: 0 auto; }
  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .stage-rail { overflow-x: auto; grid-template-columns: repeat(6, minmax(150px, 1fr)); }
  .stage-panel { grid-template-columns: 1fr; }
  .stage-controls { padding: 0.85rem; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0.75rem; border: 1px solid var(--line-dark); border-top: 0; background: rgba(255,255,255,0.34); }
  .stage-controls button { min-height: 44px; padding: 0.55rem 0.75rem; border: 1px solid var(--line-dark); background: var(--paper-bright); cursor: pointer; font-weight: 750; }
  .stage-controls button:last-child { justify-self: stretch; }
  .stage-controls button:disabled { cursor: not-allowed; opacity: 0.42; }
  .stage-controls > span { white-space: nowrap; color: var(--ink-soft); font-size: 0.9rem; font-variant-numeric: tabular-nums; }
  .setup { grid-template-columns: 1fr; }
  .setup-footnote { grid-column: 1; margin: -1rem 0 0 4.2rem; }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { min-height: 68px; grid-template-columns: 1fr auto; }
  .brand img { width: 36px; height: 36px; }
  .site-header > .button { display: none; }
  .hero { padding: 3.5rem 0 3rem; gap: 2.5rem; }
  h1 { font-size: clamp(3.2rem, 15vw, 4.4rem); }
  h2 { font-size: clamp(2.5rem, 12vw, 3.6rem); }
  .hero-art { min-height: 500px; }
  .request-note { left: 0; width: 88%; }
  .delivery-note { right: 0; width: 82%; }
  .fold-path { inset-inline: 6%; }
  .definition { grid-template-columns: 1fr; gap: 0.4rem; }
  .section { padding-block: 5rem; }
  .stage-panel { padding: 2rem 1.25rem; }
  .stage-controls { grid-template-columns: 1fr 1fr; }
  .stage-controls > span { grid-column: 1 / -1; grid-row: 1; justify-self: center; }
  .decision-note { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid article { min-height: 250px; }
  .setup-steps > li { grid-template-columns: 2.4rem 1fr; }
  .prompt-card { padding: 1rem; }
  .copy-button { position: static; margin-top: 1rem; width: 100%; }
  .setup-footnote { margin-left: 3.4rem; }
  .site-footer nav { display: grid; grid-template-columns: repeat(2, 1fr); }
}

html:not(.js-ready) .stage-rail,
html:not(.js-ready) .stage-controls { display: none; }
html:not(.js-ready) .stage-panel + .stage-panel { border-top: 0; }

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