/* Self-hosted webfonts (SIL Open Font License 1.1 - see assets/fonts/OFL-*.txt).
   Served from our own origin on purpose: loading them from fonts.googleapis.com
   would send every visitor's IP address to a third party without consent.
   Do not reintroduce the Google Fonts <link> - it also breaks the CSP. */
@font-face {
  font-family: Archivo;
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url(assets/fonts/archivo-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Archivo;
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url(assets/fonts/archivo-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
  src: url(assets/fonts/outfit-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
  src: url(assets/fonts/outfit-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/space-mono-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/space-mono-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  --paper: #f6f6f1;
  --ink: #14150f;
  --muted: #4a4e45;
  --line: #e1e1d8;
  --lime: #c8f53c;
  --chip: #fdfdfb;
  --faint: #8a8e82;
  --radius: 28px;
  --gutter: 16px;
  --pad: 56px;
  --shell: 1360px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { background: var(--paper); scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Outfit, Arial, sans-serif; font-weight: 300; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); }
.eyebrow { margin: 0; color: var(--faint); font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Topbar ---------- */
.topbar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; max-width: var(--shell); margin: 0 auto; padding: 26px var(--pad); }
.wordmark { color: var(--ink); font-family: Archivo, Arial, sans-serif; font-size: 30px; font-weight: 800; letter-spacing: -.03em; text-decoration: none; justify-self: start; }
.nav { display: flex; gap: 30px; }
.nav a { color: var(--muted); font-size: 15px; text-decoration: none; transition: color .15s; }
.nav a:hover { color: var(--ink); }
.topbar .pill { justify-self: end; }

/* ---------- Pill buttons ---------- */
.pill { display: inline-flex; align-items: center; gap: 12px; padding: 12px 14px 12px 26px; border: 1.5px solid transparent; border-radius: 999px; font-family: Outfit, Arial, sans-serif; font-size: 15px; font-weight: 400; text-decoration: none; cursor: pointer; transition: background-color .15s, color .15s, border-color .15s; }
.pill-solid { background: var(--ink); color: var(--paper); }
.pill-solid:hover { background: var(--lime); color: var(--ink); }
.pill-ghost { border-color: var(--line); background: var(--chip); color: var(--ink); }
.pill-ghost:hover { border-color: var(--ink); background: var(--lime); }
.pill-light { background: var(--paper); color: var(--ink); }
.pill-light:hover { background: var(--lime); }
.pill .badge { display: grid; place-items: center; width: 30px; height: 30px; flex: none; border-radius: 999px; background: var(--paper); color: var(--ink); }
.pill-solid .badge { background: var(--paper); }
.pill-ghost .badge, .pill-light .badge { background: var(--ink); color: var(--paper); }
.pill .badge svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pill-plain { padding: 12px 26px; }
.pill-on-dark { border-color: rgba(246,246,241,.34); color: var(--paper); }
.pill-on-dark:hover { border-color: var(--lime); background: var(--lime); color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; margin: 0 var(--gutter) 0; border-radius: var(--radius); overflow: hidden; isolation: isolate; min-height: min(78vh, 780px); display: flex; flex-direction: column; justify-content: flex-end; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, rgba(12,14,10,.92) 0%, rgba(12,14,10,.74) 38%, rgba(12,14,10,.28) 72%, rgba(12,14,10,.42) 100%); }
.hero-copy { padding: 96px var(--pad) 40px; max-width: 1120px; }
.hero .eyebrow { color: rgba(246,246,241,.72); }
.hero h1 { margin: 22px 0 0; color: var(--paper); font-family: Archivo, Arial, sans-serif; font-size: clamp(38px, 4.6vw, 66px); font-weight: 800; letter-spacing: -.035em; line-height: .96; text-transform: uppercase; }
.hero h1 em { font-style: normal; box-shadow: inset 0 -.11em 0 var(--lime); }
.hero-sub { max-width: 620px; margin: 28px 0 0; color: rgba(246,246,241,.8); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; text-wrap: pretty; }

/* Hero / CTA action row */
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin: 34px 0 0; }
.hero-note { margin: 16px 0 0; color: rgba(246,246,241,.6); font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }

/* Capability marquee at the foot of the hero card */
.marquee { position: relative; margin-top: 56px; padding: 18px 0; border-top: 1px solid rgba(246,246,241,.18); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 56px; padding-left: 56px; animation: marquee 38s linear infinite; }
.marquee span { color: rgba(246,246,241,.66); font-family: "Space Mono", monospace; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Section frame ---------- */
.section { padding: 108px 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-flush, .section-flush + .section { border-top: 0; }
.section-head { max-width: 780px; }
.section-head h2 { margin: 16px 0 0; font-family: Archivo, Arial, sans-serif; font-size: clamp(30px, 4vw, 54px); font-weight: 800; letter-spacing: -.035em; line-height: 1.02; text-transform: uppercase; }
.section-head h2 em { font-style: normal; box-shadow: inset 0 -.1em 0 var(--lime); }
.section-head p { margin: 22px 0 0; color: var(--muted); font-size: 18px; line-height: 1.6; text-wrap: pretty; }

/* ---------- How it works: editorial steps, not cards ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin-top: 64px; border-top: 1px solid var(--ink); }
.step { padding: 26px 40px 0; border-right: 1px solid var(--line); }
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; border-right: 0; }
.step > span { color: var(--faint); font-family: "Space Mono", monospace; font-size: 12px; letter-spacing: .18em; }
.step h3 { margin: 14px 0 0; font-family: Archivo, Arial, sans-serif; font-size: 22px; font-weight: 600; letter-spacing: -.02em; }
.step p { margin: 10px 0 0; color: var(--muted); font-size: 16px; line-height: 1.6; }

/* ---------- Split layout ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; align-items: center; }
.split-wide { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }

/* ---------- Pricing receipt ---------- */
.panel { padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: var(--chip); }
.panel-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.panel-head strong { font-family: Archivo, Arial, sans-serif; font-size: 15px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; }
.tag { padding: 5px 11px; border-radius: 999px; background: var(--lime); color: var(--ink); font-family: "Space Mono", monospace; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.rows { margin: 0; font-family: "Space Mono", monospace; font-size: 14px; }
.rows div { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px dashed var(--line); }
.rows div:last-child { border-bottom: 0; }
.rows dt { color: var(--muted); }
.rows dd { margin: 0; font-variant-numeric: tabular-nums; }
.rows .total { margin-top: 6px; padding-top: 16px; border-top: 1.5px solid var(--ink); border-bottom: 0; font-size: 17px; }
.rows .total dt { color: var(--ink); }
.criteria { margin: 0; padding: 0; list-style: none; display: grid; gap: 0; }
.criteria li { position: relative; padding: 13px 0 13px 26px; border-bottom: 1px dashed var(--line); color: var(--ink); font-size: 16px; }
.criteria li:last-child { border-bottom: 0; }
.criteria li::before { content: ""; position: absolute; left: 2px; top: 50%; width: 8px; height: 8px; margin-top: -4px; border: 1.5px solid var(--faint); border-radius: 2px; }
.panel-note { margin: 18px 0 0; color: var(--faint); font-size: 14px; line-height: 1.55; }

/* ---------- Build plate ---------- */
.plate { padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: var(--chip); }
.plate svg { width: 100%; height: auto; }
.plate-grid { stroke: var(--line); stroke-width: 1; }
.plate-part { fill: var(--ink); }
.plate-part.is-highlight { fill: var(--lime); stroke: var(--ink); stroke-width: 1.5; }
.plate-label { fill: var(--paper); font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: .08em; }
.plate-label.on-lime { fill: var(--ink); }
.metrics { display: grid; gap: 0; margin: 30px 0 0; }
.metrics div { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.metrics div:last-child { border-bottom: 0; }
.metrics dt { color: var(--muted); font-size: 16px; }
.metrics dd { margin: 0; font-family: "Space Mono", monospace; font-size: 16px; font-variant-numeric: tabular-nums; }
.meter { height: 8px; margin-top: 12px; border-radius: 999px; background: var(--line); overflow: hidden; }
.meter i { display: block; height: 100%; border-radius: 999px; background: var(--lime); }
.meter .meter-68 { width: 68%; }

/* ---------- Use cases ---------- */
.cases { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin-top: 56px; border-top: 1px solid var(--ink); }
.case { padding: 30px 34px 30px 0; border-bottom: 1px solid var(--line); }
.case:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 34px; }
.case:nth-child(even) { padding-left: 34px; }
.case h3 { margin: 0; font-family: Archivo, Arial, sans-serif; font-size: 21px; font-weight: 600; letter-spacing: -.02em; }
.case p { margin: 10px 0 0; color: var(--muted); font-size: 16px; line-height: 1.6; }

/* ---------- CTA band ---------- */
.cta { margin: 0 var(--gutter); padding: 84px var(--pad); border-radius: var(--radius); background: var(--ink); color: var(--paper); }
.cta .eyebrow { color: rgba(246,246,241,.6); }
.cta h2 { margin: 16px 0 0; max-width: 760px; font-family: Archivo, Arial, sans-serif; font-size: clamp(30px, 4vw, 52px); font-weight: 800; letter-spacing: -.035em; line-height: 1.03; text-transform: uppercase; }
.cta p { max-width: 560px; margin: 22px 0 0; color: rgba(246,246,241,.72); font-size: 18px; line-height: 1.6; }
.cta .actions { margin-top: 34px; }

/* ---------- FAQ ---------- */
.faq { margin-top: 56px; border-top: 1px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; font-family: Archivo, Arial, sans-serif; font-size: 20px; font-weight: 600; letter-spacing: -.02em; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; color: var(--faint); font-family: "Space Mono", monospace; font-size: 22px; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { color: var(--ink); }
.faq p { margin: 0 0 26px; max-width: 720px; color: var(--muted); font-size: 16px; line-height: 1.65; }

/* ---------- Dark anchor footer ---------- */
.anchor { margin: var(--gutter); padding: 76px var(--pad) 34px; border-radius: var(--radius); background: var(--ink); color: var(--paper); }
.anchor-top { display: grid; grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, .9fr)); gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(246,246,241,.16); }
.anchor-mark { font-family: Archivo, Arial, sans-serif; font-size: clamp(56px, 9vw, 128px); font-weight: 800; letter-spacing: -.045em; line-height: .85; }
.anchor-mark span { display: block; margin-top: 18px; color: rgba(246,246,241,.6); font-family: Outfit, Arial, sans-serif; font-size: 16px; font-weight: 300; letter-spacing: 0; line-height: 1.55; }
.anchor h3 { margin: 0 0 18px; color: rgba(246,246,241,.5); font-family: "Space Mono", monospace; font-size: 11px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; }
.anchor ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.anchor a { color: rgba(246,246,241,.86); font-size: 16px; text-decoration: none; }
.anchor a:hover { color: var(--lime); }
.anchor .person { color: rgba(246,246,241,.55); font-size: 14px; }
.anchor-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; padding-top: 26px; color: rgba(246,246,241,.5); font-size: 14px; }
.anchor-bottom a { color: rgba(246,246,241,.7); text-decoration: underline; text-underline-offset: 3px; }

.ext { display: inline-block; width: .68em; height: .68em; margin-left: .42em; vertical-align: baseline; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.ext-back { margin: 0 .42em 0 0; width: .8em; height: .8em; }

/* ---------- Focus ---------- */
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }

.doc { max-width: calc(760px + 2 * var(--pad)); margin: 0 auto; padding: 48px var(--pad) 88px; overflow-wrap: break-word; }
.doc h2 { margin: 72px 0 8px; padding-top: 40px; border-top: 1px solid var(--line); font-family: Archivo, Arial, sans-serif; font-size: clamp(22px, 6vw, 40px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; }
.doc h2 span { display: block; margin-top: 10px; color: #8a8e82; font-family: "Space Mono", monospace; font-size: 11px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; }
.doc h3 { margin: 40px 0 10px; font-family: Archivo, Arial, sans-serif; font-size: 21px; font-weight: 600; letter-spacing: -.02em; }
.doc h4 { margin: 24px 0 6px; font-size: 17px; font-weight: 400; }
.doc p { margin: 10px 0 0; font-size: 17px; line-height: 1.65; text-wrap: pretty; }
.doc-lead { padding: 18px 20px; border-left: 3px solid var(--lime); background: var(--chip); }
.doc ul { margin: 12px 0 0; padding-left: 20px; font-size: 17px; line-height: 1.65; }
.doc ul li { margin-top: 6px; }
.doc a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.doc a:hover { background: var(--lime); }
.doc-list--tight { gap: 22px; margin-top: 22px; }
.doc-list--tight dt { font-family: Archivo, Arial, sans-serif; font-size: 16px; font-weight: 600; letter-spacing: -.01em; text-transform: none; color: var(--ink); }
.doc-list--tight dd { margin-top: 5px; font-size: 17px; color: var(--muted); }
.doc-callout { margin: 36px 0 0; padding: 24px 26px; border: 1.5px solid var(--ink); border-radius: 16px; background: var(--chip); }
.doc-callout h4 { margin: 0 0 4px; font-family: Archivo, Arial, sans-serif; font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.doc-back { margin: 36px 0 0; font-size: 16px; }


/* ---------- Legal page shell ---------- */
.doc-page .topbar { border-bottom: 1px solid var(--line); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  :root { --pad: 32px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step:nth-child(2n) { border-right: 0; padding-right: 0; }
  .step:nth-child(2n+1) { padding-left: 0; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); padding-bottom: 26px; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .anchor-top { grid-template-columns: 1fr 1fr; }
  .anchor-mark { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  :root { --pad: 22px; --radius: 22px; --gutter: 10px; }
  .topbar { grid-template-columns: 1fr auto; padding: 20px var(--pad); }
  .nav { display: none; }
  .hero { min-height: 0; }
  .hero-copy { padding: 120px var(--pad) 32px; }
  .section { padding: 72px 0; }
  .steps, .cases { grid-template-columns: 1fr; }
  .step, .case { border-right: 0 !important; padding: 24px 0 !important; border-bottom: 1px solid var(--line); }
  .actions .pill { width: 100%; justify-content: space-between; }
  .doc { padding: 28px var(--pad) 64px; }
}

/* ---------- Example scenario page (distributed-manufacturing.html) ---------- */
.section-head a, .doc-back a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.section-head a:hover, .doc-back a:hover { background: var(--lime); }
.compare { width: 100%; margin-top: 6px; border-collapse: collapse; }
.compare th, .compare td { padding: 14px 16px 14px 0; text-align: left; vertical-align: baseline; border-bottom: 1px dashed var(--line); }
.compare th:last-child, .compare td:last-child { padding-right: 0; }
.compare thead th { padding-top: 0; padding-bottom: 12px; border-bottom: 1px solid var(--line); color: var(--faint); font-family: "Space Mono", monospace; font-size: 10px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; }
.compare thead th:last-child { color: var(--ink); }
.compare tbody th { width: 28%; color: var(--faint); font-family: "Space Mono", monospace; font-size: 10px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; }
.compare td { color: var(--muted); font-size: 16px; line-height: 1.45; }
.compare td:last-child { color: var(--ink); font-weight: 400; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare-total th, .compare-total td { padding-top: 20px; }
.compare-total td { color: var(--muted); font-family: Archivo, Arial, sans-serif; font-size: 24px; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.compare-total td:last-child { color: var(--ink); }
.compare-total em { font-style: normal; box-shadow: inset 0 -.12em 0 var(--lime); }

.scenario { margin: 64px 0 0; }
.scenario-map { overflow-x: auto; border: 1px solid var(--line); border-radius: 22px; background: #deded6; }
.scenario-map svg { min-width: 900px; width: 100%; height: auto; }
.map text { paint-order: stroke; stroke: #fff; stroke-width: 5px; stroke-linejoin: round; }
.map .ml { fill: #6b6c60; font-family: "Space Mono", monospace; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; }
.map .ml-wide { letter-spacing: .28em; }
.map .ml-ink { fill: var(--ink); }
.map .ml-end { text-anchor: end; }
.map .ml-mid { text-anchor: middle; }
.map .mh { fill: var(--ink); font-family: Archivo, Arial, sans-serif; font-size: 30px; font-weight: 800; letter-spacing: -.03em; }
.map .mh-sm { font-size: 22px; }
.scenario-caption { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 16px 40px; margin: 22px 0 0; }
.legend { display: flex; flex-wrap: wrap; gap: 12px 30px; margin: 0; padding: 0; list-style: none; }
.legend li { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 15px; }
.legend svg { width: 44px; height: 22px; flex: none; }
.scenario-caption .panel-note { max-width: 520px; margin: 0; }
@media (max-width: 760px) {
  .compare-total td { font-size: 20px; }
  .scenario { margin-top: 44px; }
}

/* ---------- Shared build plate page (shared-build-plate.html) ---------- */
.plate-figure { max-width: 1100px; margin: 56px auto 0; }
.section-head strong { font-weight: 600; color: var(--ink); }
.plate-figure picture, .plate-figure img { display: block; width: 100%; height: auto; }
.plate-figure img { border: 1px solid var(--line); border-radius: 22px; background: var(--chip); }
.plate-figure figcaption { margin: 16px 0 0; color: var(--faint); font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: .18em; text-align: center; text-transform: uppercase; }
.doc-inline { max-width: 760px; margin: 64px auto 0; padding: 0; }
.doc-inline h2 { margin-top: 0; padding-top: 0; border-top: 0; }
@media (max-width: 760px) {
  .doc-inline { margin-top: 48px; padding: 0; }
}

/* ---------- Scenario page: mobile map + stacked comparison table ---------- */
.map-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.map-mobile { display: none; }
@media (max-width: 600px) {
  .map-desktop { display: none; }
  .scenario-map .map-mobile { display: block; min-width: 0; }
  .map-mobile text { stroke-width: 9px; }
  .map-mobile .ml { font-size: 30px; letter-spacing: .1em; }
  .map-mobile .ml-wide { font-size: 28px; letter-spacing: .2em; }
  .map-mobile .mh { font-size: 46px; }
  .map-mobile .mh-sm { font-size: 38px; }
  .compare thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .compare, .compare tbody, .compare tr, .compare th, .compare td { display: block; }
  .compare tr { padding: 14px 0; border-bottom: 1px dashed var(--line); }
  .compare tbody tr:last-child { border-bottom: 0; }
  .compare th, .compare td { padding: 0; border: 0; }
  .compare tbody th { width: auto; margin-bottom: 8px; }
  .compare td { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 12px; align-items: baseline; padding: 3px 0; }
  .compare td::before { color: var(--faint); font-family: "Space Mono", monospace; font-size: 10px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; }
  .compare td:nth-child(2)::before { content: "Conventional"; }
  .compare td:nth-child(3)::before { content: "With treede"; color: var(--ink); }
  .compare-total { padding-top: 18px; }
  .compare-total td { font-size: 22px; }
}

/* ---------- Founders ---------- */
.founders { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: 56px; border-top: 1px solid var(--ink); }
.founder { padding: 30px 34px 30px 0; border-right: 1px solid var(--line); }
.founder + .founder { padding-left: 34px; }
.founder:last-child { padding-right: 0; border-right: 0; }
.monogram { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 999px; background: var(--ink); color: var(--lime); font-family: Archivo, Arial, sans-serif; font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.founder h3 { margin: 22px 0 0; font-family: Archivo, Arial, sans-serif; font-size: 21px; font-weight: 600; letter-spacing: -.02em; }
.founder .role { margin: 6px 0 0; color: var(--faint); font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.founder p { margin: 12px 0 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.founder-links { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 16px 0 0; padding: 0; list-style: none; }
.founder-links a { color: var(--ink); font-size: 15px; text-decoration: underline; text-underline-offset: 3px; }
.founder-links a:hover { background: var(--lime); }

/* ---------- CTA band: what happens next ---------- */
.cta-next { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px 32px; max-width: 900px; margin: 34px 0 0; padding: 26px 0 0; border-top: 1px solid rgba(246,246,241,.18); list-style: none; }
.cta-next li { color: rgba(246,246,241,.78); font-size: 15px; line-height: 1.55; }
.cta-next span { display: block; margin-bottom: 8px; color: var(--lime); font-family: "Space Mono", monospace; font-size: 11px; letter-spacing: .18em; }
@media (max-width: 1080px) {
  .founders { grid-template-columns: 1fr; }
  .founder { padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .founder + .founder { padding-left: 0; }
  .founder:last-child { border-bottom: 0; }
}
@media (max-width: 760px) {
  .cta-next { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Cookie notice (information only: the site sets no cookies) ---------- */
.notice { position: fixed; left: 50%; bottom: 16px; z-index: 10; display: flex; align-items: center; gap: 18px; width: calc(100% - 2 * var(--gutter)); max-width: 720px; padding: 14px 14px 14px 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--chip); box-shadow: 0 12px 40px rgba(20,21,15,.12); transform: translateX(-50%); }
.notice p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.notice strong { color: var(--ink); font-weight: 400; }
.notice a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.notice a:hover { background: var(--lime); }
.notice .pill { flex: none; padding: 10px 18px; font-size: 14px; }
#notice-dismiss:checked ~ .notice { display: none; }
#notice-dismiss:focus-visible ~ .notice .pill { outline: 3px solid var(--lime); outline-offset: 3px; }
@media (max-width: 760px) {
  .notice { flex-direction: column; align-items: stretch; gap: 12px; padding: 16px; }
  .notice .pill { justify-content: center; }
}
