@font-face {
  font-family: DM Sans;
  src: url('./dm-sans-regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: DM Sans;
  src: url('./dm-sans-semibold.ttf') format('truetype');
  font-weight: 500 800;
  font-display: swap;
}
@font-face {
  font-family: IBM Plex Mono;
  src: url('./ibm-plex-mono.ttf') format('truetype');
  font-weight: 400 600;
  font-display: swap;
}
:root {
  --paper: #f7f7f2;
  --white: #fff;
  --ink: #252720;
  --muted: #666c60;
  --line: #dddfd5;
  --orange: #e76736;
  --orange-dark: #b4411b;
  --green: #59715b;
  --pale-green: #eef2e9;
  --mono: 'IBM Plex Mono',monospace;
  --radius: 6px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans',Arial,sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) {
  overflow: hidden;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
button:disabled {
  cursor: wait;
  opacity: .6;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
}
h1,
h2 {
  letter-spacing: -.062em;
  line-height: 1.055;
}
h2 {
  font-size: clamp(36px,4.3vw,58px);
}
h3 {
  letter-spacing: -.035em;
  line-height: 1.3;
}
p {
  color: var(--muted);
}
::selection {
  background: #f5c6ac;
  color: var(--ink);
}
[hidden] {
  display: none!important;
}
.container {
  width: min(1280px,calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: middle;
}
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.mono,
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .055em;
  line-height: 1.6;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  margin-bottom: 23px;
  font-weight: 400;
}
.section-index {
  color: var(--orange-dark);
  margin-right: 6px;
}
.orange {
  color: var(--orange);
}
.muted {
  color: #919487;
}
.orange-dot,
.green-dot,
.live-dot,
.nav-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.green-dot {
  background: var(--green);
}
.live-dot {
  box-shadow: 0 0 0 4px #e7673610;
}
.button {
  min-height: 50px;
  padding: 14px 23px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  transition: background .2s,transform .2s,border-color .2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-dark {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.button-dark:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}
.button-small {
  min-height: 42px;
  padding: 11px 17px;
  font-size: 12px;
  gap: 20px;
}
.button-light {
  background: var(--paper);
  color: var(--ink);
}
.button-light:hover {
  background: #e8c3ad;
}
.button-outline {
  border-color: #cfd2c6;
  background: transparent;
}
.button-outline:hover {
  border-color: var(--ink);
  background: #fff8;
}
.button-text {
  background: none;
  padding-inline: 9px;
  gap: 13px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
}
.text-link:hover {
  color: var(--orange-dark);
}
.text-link .icon {
  width: 17px;
  height: 17px;
  transition: transform .2s;
}
.text-link:hover .icon {
  transform: translateX(3px);
}
.small-label {
  font-size: 9px;
  color: var(--muted);
}
.synthetic-label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .025em;
  color: var(--muted);
  padding: 4px 6px;
  border: 1px solid var(--line);
  border-radius: 3px;
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 8px;
  z-index: 20;
  padding: 10px 20px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
/* Navigation */
.site-header {
  border-bottom: 1px solid var(--line);
  background: #f7f7f2ed;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}
.nav-wrap {
  height: 83px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wordmark {
  font-size: 28px;
  letter-spacing: -1.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.brand-mark {
  width: 34px;
  height: 26px;
  display: block;
  margin-right: 1px;
}
.brand-period {
  color: var(--orange);
  margin-left: -8px;
}
.desktop-nav {
  display: flex;
  gap: 30px;
  margin-left: 35px;
}
.desktop-nav a,
.nav-contact {
  font-size: 12px;
  transition: color .2s;
}
.desktop-nav a:hover,
.nav-contact:hover {
  color: var(--orange-dark);
}
.nav-dot {
  width: 4px;
  height: 4px;
  vertical-align: middle;
  margin-left: 4px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 38px;
  height: 38px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  margin: 6px 0;
}
.mobile-nav {
  border-top: 1px solid var(--line);
  padding: 20px 28px;
}
.mobile-nav a {
  display: block;
  padding: 12px 0;
}
/* Hero */
.hero {
  position: relative;
  padding-top: 66px;
  padding-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  column-gap: 4px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}
.hero-eyebrow {
  font-size: 9px;
  gap: 10px;
  margin-bottom: 25px;
}
.hero-eyebrow .icon {
  width: 15px;
  height: 15px;
  margin-left: 7px;
}
.hero h1 {
  font-size: clamp(60px,6.6vw,92px);
  line-height: 1.05;
  letter-spacing: -.067em;
}
.hero-description {
  max-width: 403px;
  font-size: 15px;
  line-height: 1.8;
  margin: 28px 0 26px;
  color: #777b70;
}
.hero-ctas {
  display: flex;
  gap: 18px;
  align-items: center;
}
.hero-ctas > .button:first-child {
  min-width: 177px;
}
.play-circle {
  display: inline-flex;
  border: 1px solid #a5a99c;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  padding-left: 2px;
}
.hero-cta-note {
  font-size: 10px;
  margin-top: 15px;
  color: #8a8d81;
}
.hero-visual {
  height: 548px;
  position: relative;
  isolation: isolate;
  margin-top: -4px;
  min-width: 0;
}
.scene-grid {
  position: absolute;
  inset: 20px -35px -15px;
  background-image: linear-gradient(#dadcc34a 1px,transparent
    1px),linear-gradient(90deg,#dadcc34a 1px,transparent 1px);
  background-size: 39px 39px;
  mask-image: radial-gradient(ellipse at 50% 47%,#000 25%,transparent 70%);
  z-index: -1;
}
.scene-topline {
  position: absolute;
  left: 15px;
  right: 0;
  top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #909486;
  z-index: 1;
}
.scene-topline > .mono {
  font-size: 8px;
  letter-spacing: .07em;
}
.scene-topline .synthetic-label {
  font-size: 7px;
  border: 0;
}
.building-scene {
  position: absolute;
  inset: 14px -30px 90px -30px;
  cursor: default;
  /* The scene is autonomous; touch and mouse gestures remain normal page input. */
  pointer-events: none;
}
.building-scene canvas {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.scene-fallback {
  position: absolute;
  width: 100%;
  height: 100%;
}
.building-scene[data-rendered=true] .scene-fallback {
  display: none;
}
.party-tag {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  border: 1px solid #dcded3;
  background: #fcfcf8ee;
  box-shadow: 0 4px 14px #31382b04;
  border-radius: 4px;
  font-size: 10px;
  line-height: 1.45;
  pointer-events: none;
}
.party-tag .node-icon {
  font-family: var(--mono);
  font-size: 11px;
  color: #7c8473;
  width: 26px;
  height: 29px;
  background: #eff0e8;
  display: grid;
  place-items: center;
  border: 1px solid #dfe2d5;
  border-radius: 3px;
}
.party-tag > div {
  font-weight: 500;
}
.party-tag > div > span {
  display: block;
  font-size: 8px;
  color: #989c8d;
  font-weight: 400;
  margin-top: 1px;
}
.party-tag > .icon {
  width: 11px;
  height: 11px;
  color: #94998b;
  margin-left: 10px;
  align-self: flex-start;
  margin-top: 3px;
}
.tag-architect {
  top: 109px;
  left: 9px;
}
.tag-engineer {
  top: 155px;
  right: -12px;
}
.tag-contractor {
  top: 320px;
  left: -7px;
}
.tag-owner {
  top: 338px;
  right: -20px;
}
.floating-answer {
  position: absolute;
  left: 14%;
  right: 9%;
  bottom: 42px;
  background: #ffffffed;
  border: 1px solid #d8decf;
  border-radius: 5px;
  box-shadow: 0 8px 30px #343e2010;
  z-index: 3;
  transform: rotate(-1.5deg);
  transition: transform .3s;
}
.hero-visual:hover .floating-answer {
  transform: rotate(0);
}
.answer-status {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  font-size: 10px;
  font-weight: 500;
  border-bottom: 1px solid #e7e9e0;
}
.check-circle {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--pale-green);
  color: var(--green);
}
.check-circle .icon {
  width: 12px;
  height: 12px;
  stroke-width: 2;
}
.mini-dots {
  margin-left: auto;
  letter-spacing: 2px;
  font-size: 13px;
  color: #8e9584;
}
.floating-answer-bottom {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  color: var(--muted);
}
.floating-answer-bottom strong {
  font-size: 25px;
  color: var(--ink);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-left: auto;
  white-space: nowrap;
}
.floating-answer-bottom small {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
}
.revision-chip {
  font-family: var(--mono);
  font-size: 8px;
  background: #f1f3ec;
  color: #65715d;
  padding: 4px 7px;
  border-radius: 3px;
}
.scene-bottomline {
  position: absolute;
  left: 18px;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  font: 7px var(--mono);
  letter-spacing: .055em;
  color: #929789;
}
.scene-bottomline > span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}
.scene-bottomline .orange-dot {
  width: 4px;
  height: 4px;
}
.scene-hint {
  margin-left: auto;
  display: flex;
  gap: 7px;
  align-items: center;
}
.scene-hint .icon {
  width: 13px;
  height: 13px;
}
.scene-motion {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 10px;
  width: 22px;
  height: 22px;
  padding: 0;
  color: #71796b;
}
.hero-trust {
  grid-column: 1/-1;
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 33px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: #7c8173;
}
.hero-trust > span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-trust .icon {
  width: 13px;
  height: 13px;
  color: #929b86;
}
.role-strip {
  border-block: 1px solid var(--line);
  background: #eef0e7;
}
.role-strip-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.role-strip .mono {
  max-width: 143px;
  line-height: 1.6;
  font-size: 8px;
  color: #8b907f;
  letter-spacing: .04em;
}
.role-strip a {
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color .2s;
}
.role-strip a:hover {
  color: var(--orange-dark);
}
.role-strip .icon {
  width: 13px;
  height: 13px;
  color: #878e7b;
}
/* Intro and process */
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 55px;
  margin-bottom: 49px;
}
.section-heading > p {
  font-size: 14px;
  line-height: 1.9;
  max-width: 355px;
  padding-bottom: 4px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 36px;
}
.problem-grid article {
  border-top: 1px solid #cfd4c3;
  padding: 24px 0 25px;
}
.problem-number {
  font-family: var(--mono);
  font-size: 9px;
  color: #9aa08f;
}
.problem-grid h3 {
  font-size: 20px;
  margin: 20px 0 12px;
  letter-spacing: -.045em;
}
.problem-grid p {
  font-size: 12px;
  line-height: 1.9;
  max-width: 310px;
}
.problem-resolution {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 10px;
  margin-top: 22px;
  color: #657252;
}
.problem-resolution .icon {
  width: 13px;
  height: 15px;
}
.mechanism-heading {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 23px;
  align-items: center;
}
.mechanism-heading .mono {
  font-size: 8px;
  color: #8d9381;
}
.mechanism-heading .text-link {
  font-size: 10px;
}
.mechanism {
  list-style: none;
  padding: 25px 0 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  border-top: 1px solid var(--line);
}
.mechanism li {
  position: relative;
  border-right: 1px solid var(--line);
  padding: 0 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 13px;
}
.mechanism li:first-child {
  padding-left: 0;
}
.mechanism li:last-child {
  padding-right: 0;
  border: 0;
}
.mechanism li > span {
  font: 9px var(--mono);
  color: var(--orange-dark);
}
.mechanism strong {
  font-size: 13px;
  font-weight: 500;
}
.mechanism p {
  font-size: 10px;
  margin-top: 9px;
  line-height: 1.7;
}
/* Fact pack */
.proof-section {
  background: #eeefe7;
  border-block: 1px solid #dfe1d6;
}
.proof-layout {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 70px;
  align-items: start;
}
.proof-controls {
  padding-top: 6px;
}
.question-options {
  margin-top: 18px;
}
.question-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d9ddce;
  padding: 21px 12px;
  transition: background .2s;
}
.question-option:hover {
  background: #e4e8dc;
}
.question-option.active {
  background: var(--paper);
  border: 1px solid #d7ddcc;
  border-radius: 4px;
  padding: 20px 11px;
  box-shadow: 0 4px 12px #30382304;
}
.option-number {
  font: 9px var(--mono);
  color: #9aa18d;
}
.question-option.active .option-number {
  color: var(--orange-dark);
}
.question-option > span:nth-child(2) {
  font-size: 12px;
  font-weight: 500;
}
.question-option small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: #909683;
  margin-top: 4px;
}
.question-option > .icon {
  margin-left: auto;
  width: 15px;
  height: 15px;
  color: #a1a893;
}
.question-option.active > .icon {
  color: var(--orange);
}
.proof-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 26px 0 18px;
}
.proof-note > .icon {
  width: 18px;
  height: 18px;
  color: #959e86;
  margin-top: 2px;
}
.proof-note p {
  font-size: 10px;
  line-height: 1.8;
  color: #919982;
  max-width: 285px;
}
.proof-note strong {
  font-weight: 500;
  color: #68715c;
}
.proof-controls > .text-link {
  font-size: 10px;
  margin-left: 30px;
}
.fact-card {
  background: #fcfcf9;
  border: 1px solid #d4d9c9;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 12px 40px #2e3c2510;
  min-width: 0;
}
.fact-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 21px;
  border-bottom: 1px solid #e4e7dc;
  font: 9px var(--mono);
}
.fact-topbar > span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}
.fact-topbar .icon {
  width: 14px;
  height: 14px;
  color: var(--orange);
}
.fact-id {
  color: #a1a790;
  font-size: 8px;
}
.fact-topbar .synthetic-label {
  font-size: 7px;
  border: 0;
  background: #f0f2e9;
}
.fact-body {
  padding: 23px 24px;
  min-height: 326px;
}
.fact-question {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -.02em;
  max-width: 380px;
}
.verdict-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0 14px;
  gap: 20px;
}
.fact-value {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: -3px;
  color: var(--ink);
  font-weight: 500;
}
.fact-value small {
  font-size: 18px;
  color: #929d82;
  letter-spacing: -.5px;
  font-weight: 400;
}
.fact-value.word-value {
  font-size: 42px;
}
.verdict {
  font: 8px var(--mono);
  display: flex;
  gap: 5px;
  align-items: center;
  background: #eef3e5;
  color: #5b744b;
  border: 1px solid #dce6ce;
  padding: 5px 7px;
  border-radius: 3px;
  white-space: nowrap;
}
.verdict .icon {
  width: 11px;
  height: 11px;
}
.verdict.warning {
  color: #93671e;
  background: #fbf0dc;
  border-color: #ecd9af;
}
.fact-explanation {
  font-size: 11px;
  line-height: 1.8;
  color: #828d74;
  margin-bottom: 16px;
}
.fact-citations {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #e9ece0;
}
.fact-citations li {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e9ece0;
  font-size: 9px;
  color: #69755c;
}
.fact-citations .icon {
  width: 12px;
  height: 12px;
  color: #93a280;
}
.fact-citations li > span:last-child {
  font: 8px var(--mono);
  color: #9ba78e;
  margin-left: auto;
  text-align: right;
}
.fact-method {
  font: 8px var(--mono);
  color: #8b987a;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.fact-footer {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  background: #f4f6ee;
  border-top: 1px solid #e3e7d9;
}
.fact-footer > span {
  font-size: 8px;
  color: #859476;
  display: flex;
  gap: 5px;
  align-items: center;
}
.fact-footer .icon {
  width: 10px;
  height: 10px;
}
.fact-footer button {
  background: transparent;
  border: 0;
  font: 9px var(--mono);
  color: #7b8a6b;
  padding: 2px;
  white-space: nowrap;
}
.fact-footer button:hover {
  color: var(--ink);
}
.json-panel {
  margin: 0;
  padding: 20px;
  background: #252b23;
  color: #bdd1a5;
  font: 10px/1.8 var(--mono);
  max-height: 380px;
  overflow: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.disagreement-values {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0 14px;
}
.disagreement-values > div {
  flex: 1;
  background: #f2f4eb;
  padding: 10px 15px;
  border: 1px solid #e3e7d7;
  border-radius: 3px;
}
.disagreement-values small {
  display: block;
  font: 8px var(--mono);
  color: #8b987a;
}
.disagreement-values strong {
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -1px;
}
.disagreement-values > span {
  font: 9px var(--mono);
  color: #ac7439;
}
.disagreement-find {
  font-size: 10px;
  padding: 10px;
  border-left: 2px solid #d6a051;
  background: #faf2e4;
  color: #98703a;
  margin-bottom: 15px;
}
.version-strip {
  margin-top: 45px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 22px 0 0;
  border-top: 1px solid #d8ddce;
}
.version-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #cdd5c1;
  color: #879773;
}
.version-strip h3 {
  font-size: 14px;
  margin-bottom: 5px;
}
.version-strip p {
  font-size: 10px;
  color: #8a957c;
}
.version-strip .button {
  margin-left: auto;
  white-space: nowrap;
  font-size: 10px;
  gap: 15px;
}
.version-strip .button .icon {
  width: 14px;
  height: 14px;
}
.fact-superseded {
  color: #9f4d2e;
  background: #fcf0e9;
  border: 1px solid #efcbb9;
  padding: 12px;
  font-size: 11px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.fact-superseded strong {
  display: block;
  font: 9px var(--mono);
}
/* Disclosure */
.disclosure-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
  padding-bottom: 65px;
}
.disclosure-intro > p {
  font-size: 13px;
  line-height: 1.9;
  margin-top: 26px;
  max-width: 390px;
}
.disclosure-guarantees {
  margin: 24px 0 25px;
  display: grid;
  gap: 12px;
  font-size: 10px;
  color: #77856b;
}
.disclosure-guarantees .icon {
  width: 13px;
  height: 13px;
  color: #7d9267;
  margin-right: 8px;
}
.disclosure-intro > .text-link {
  font-size: 11px;
}
.policy-card {
  background: white;
  border: 1px solid #dce1d2;
  border-radius: 6px;
  padding: 25px;
  box-shadow: 0 8px 28px #343c1b05;
}
.policy-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.policy-card-heading .mono {
  font-size: 9px;
  color: #7d8870;
}
.policy-card-heading .synthetic-label {
  font-size: 7px;
  color: var(--orange-dark);
  border: 0;
  background: #faf0e7;
}
.policy-card > p {
  font-size: 13px;
  color: var(--ink);
  margin: 21px 0 19px;
}
.policy-levels {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 6px;
  padding-bottom: 20px;
}
.policy-levels button {
  font-size: 10px;
  padding: 9px 4px;
  border: 1px solid #e0e5d7;
  background: #fafbf6;
  border-radius: 3px;
  color: #8a977b;
  transition: all .2s;
}
.policy-levels button:hover {
  border-color: #aebea0;
  color: var(--ink);
}
.policy-levels button.active {
  border-color: #94a284;
  background: #edf1e6;
  color: #4f6840;
  box-shadow: 0 0 0 1px #94a284;
}
.policy-preview {
  padding: 18px;
  background: #f6f8f0;
  border: 1px solid #e4e9d9;
  border-radius: 3px;
}
.policy-preview-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font: 8px var(--mono);
  color: #778868;
  margin-bottom: 20px;
}
.policy-preview .small-label {
  font-size: 8px;
  color: #9aa78b;
}
.policy-preview > p {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -.03em;
  color: #4f6242;
  min-height: 80px;
  margin-top: 8px;
}
.private-band {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border-top: 1px solid #dfe6d2;
  margin-top: 17px;
  padding-top: 15px;
  color: #8b9b7a;
  font-size: 9px;
  line-height: 1.7;
  min-height: 48px;
}
.private-band .icon {
  width: 12px;
  height: 12px;
  margin-top: 2px;
}
.policy-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 8px;
  color: #a1ab95;
  margin-top: 19px;
}
.policy-bottom .text-link {
  font-size: 9px;
  color: #70835d;
}
.policy-bottom .icon {
  width: 12px;
  height: 12px;
}
.sources-section {
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}
.sources-heading {
  display: grid;
  grid-template-columns: 35px 1.1fr 1fr;
  align-items: center;
  gap: 17px;
}
.sources-heading > .icon {
  width: 26px;
  height: 26px;
  color: #99a386;
}
.sources-heading h3 {
  font-size: 19px;
  line-height: 1.4;
}
.sources-heading > p {
  font-size: 11px;
  line-height: 1.85;
  max-width: 400px;
  justify-self: end;
}
.source-pipeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 24px;
  background: #f0f2e8;
  border: 1px solid #e2e6d7;
  border-radius: 5px;
}
.source-types {
  display: grid;
  gap: 5px;
  min-width: 133px;
}
.source-types > span {
  font-size: 9px;
  color: #8d9b7d;
}
.pipeline-arrow {
  width: 17px;
  height: 17px;
  color: #a1af8e;
}
.own-node {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px dashed #a9b994;
  padding: 17px 20px;
  border-radius: 4px;
  background: #f8faf1;
  flex: 1;
  justify-content: center;
}
.own-node > .icon {
  width: 24px;
  height: 24px;
  color: #7c9267;
}
.own-node strong,
.vetted-extract strong {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #657a53;
}
.own-node div > span,
.vetted-extract div > span {
  display: block;
  font-size: 8px;
  color: #93a37f;
}
.own-node > .mono {
  font-size: 7px;
  color: #8fa077;
  margin-left: 20px;
}
.vetted-extract {
  display: flex;
  gap: 12px;
  align-items: center;
}
.vetted-extract > .icon {
  color: #7e9567;
  width: 20px;
  height: 20px;
}
.inference-note {
  font-size: 10px;
  line-height: 1.8;
  margin-top: 20px;
  color: #939f85;
  max-width: 1000px;
}
.inference-note strong {
  color: #738361;
  font-weight: 500;
}
/* Readiness */
.readiness-section .section-heading h2 {
  font-size: clamp(35px,3.8vw,51px);
}
.readiness-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-block: 1px solid var(--line);
  margin-bottom: 24px;
}
.readiness-toolbar > .mono {
  font-size: 8px;
  color: #8b987c;
}
.readiness-toolbar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.readiness-toolbar label {
  font-size: 9px;
  color: #98a38b;
  margin-left: 10px;
}
.readiness-toolbar select {
  font-size: 10px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #c8d2bd;
  padding: 5px 20px 5px 1px;
  max-width: 180px;
  color: #647652;
  cursor: pointer;
}
.readiness-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.readiness-card {
  border: 1px solid #dee4d3;
  border-radius: 4px;
  padding: 23px;
  background: #f9faf5;
}
.readiness-state {
  font: 8px var(--mono);
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6b8258;
}
.readiness-state:before {
  content: '';
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
}
.readiness-card h3 {
  font-size: 17px;
  line-height: 1.4;
  margin: 25px 0 11px;
  min-height: 48px;
}
.readiness-card > p {
  font-size: 10px;
  line-height: 1.8;
  min-height: 74px;
}
.readiness-detail {
  font-size: 9px;
  padding-top: 14px;
  border-top: 1px solid #e2e7d8;
  margin-top: 16px;
  color: #718360;
  line-height: 1.7;
}
.readiness-card.pending {
  background: #faf7f0;
  border-color: #e8dfcb;
}
.readiness-card.pending .readiness-state,
.readiness-card.pending .readiness-detail {
  color: #a28348;
}
.readiness-card.premature {
  background: #f0f1eb;
}
.readiness-card.premature .readiness-state,
.readiness-card.premature .readiness-detail {
  color: #919b85;
}
.section-footnote {
  font-size: 9px;
  line-height: 1.8;
  margin-top: 20px;
  color: #9ba58d;
}
/* Dark trust section */
.ledger-section {
  padding: 95px 0 34px;
  background: #272c25;
  color: #edf0e6;
}
.ledger-layout {
  display: grid;
  grid-template-columns: 1fr 1.03fr;
  gap: 80px;
  align-items: center;
}
.ledger-section .eyebrow {
  font-size: 9px;
  color: #9ba58e;
}
.ledger-section .section-index {
  color: #f1a777;
}
.ledger-section h2 {
  font-size: 64px;
  color: #edf0e6;
  margin-bottom: 23px;
}
.ledger-layout > div > p {
  font-size: 13px;
  line-height: 1.9;
  color: #a4af97;
  max-width: 400px;
}
.ledger-features {
  display: flex;
  gap: 8px;
  margin: 22px 0;
}
.ledger-features > span {
  font: 8px var(--mono);
  padding: 5px 9px;
  border: 1px solid #505b45;
  border-radius: 3px;
  color: #b5c0a8;
}
.ledger-layout > div > .ledger-small {
  font-size: 10px;
  line-height: 1.9;
  color: #8e9c7f;
  max-width: 335px;
}
.ledger-demo {
  border: 1px solid #505b45;
  border-radius: 5px;
  background: #2e342b;
  overflow: hidden;
}
.ledger-demo-top {
  padding: 19px 21px;
  border-bottom: 1px solid #444e3c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.ledger-demo-top .mono {
  font-size: 8px;
  color: #a1b08f;
}
.ledger-demo .synthetic-label {
  font-size: 6px;
  border-color: #4c5940;
  color: #849875;
}
.ledger-entries {
  list-style: none;
  margin: 0;
  padding: 9px 22px;
}
.ledger-entries li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  position: relative;
}
.ledger-entries li:not(:last-child):before {
  content: '';
  position: absolute;
  left: 4px;
  top: 38px;
  height: 49px;
  width: 1px;
  background: #667852;
}
.ledger-entry-dot {
  width: 9px;
  height: 9px;
  border: 1px solid #879c6f;
  background: #3c4a32;
  border-radius: 3px;
  z-index: 1;
  flex-shrink: 0;
}
.ledger-entries li > div {
  font-size: 11px;
  min-width: 0;
}
.ledger-entries strong {
  font-weight: 400;
  color: #d1dcc4;
  display: block;
}
.ledger-entries li > div > span {
  display: block;
  color: #849974;
  font-size: 8px;
  margin-top: 3px;
}
.ledger-entries code {
  margin-left: auto;
  font: 8px var(--mono);
  color: #7e986b;
}
.ledger-entries li.tampered .ledger-entry-dot {
  border-color: #e89d6d;
  background: #9b613c;
}
.ledger-entries li.tampered strong,
.ledger-entries li.tampered code {
  color: #e89d6d;
}
.ledger-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 22px 0;
  border-top: 1px solid #444e3c;
}
.ledger-actions .button {
  min-height: 36px;
  padding: 9px 13px;
  font-size: 9px;
  gap: 10px;
}
.ledger-actions .icon {
  width: 13px;
  height: 13px;
}
.ledger-tamper {
  font-size: 9px;
  border: 0;
  background: none;
  color: #a9bb98;
  padding: 4px 0;
}
.ledger-tamper:hover {
  color: #f1b18a;
}
.ledger-result {
  padding: 13px 22px 20px;
  font-size: 8px;
  color: #809570;
  min-height: 46px;
}
.ledger-result.valid {
  color: #acc993;
}
.ledger-result.invalid {
  color: #ecac80;
}
.boundaries {
  border-top: 1px solid #47503f;
  margin-top: 70px;
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 45px;
}
.boundaries h3 {
  font-size: 23px;
  line-height: 1.4;
  color: #cbd5c0;
}
.boundaries .mono {
  font-size: 8px;
  color: #8d9e7f;
}
.boundaries p {
  font-size: 10px;
  line-height: 2.2;
  margin-top: 12px;
  color: #a8b79a;
}
.legal-note {
  font-size: 8px;
  line-height: 1.9;
  color: #7f8f72;
  border-top: 1px solid #424c39;
  margin-top: 30px;
  padding-top: 23px;
}
/* Stack and roles */
.stack-section {
  text-align: center;
  padding-block: 62px;
  border-bottom: 1px solid var(--line);
}
.stack-section > .mono {
  font-size: 8px;
  letter-spacing: .09em;
  color: #98a38b;
}
.stack-names {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 990px;
  margin: 37px auto 28px;
  color: #858e7b;
}
.stack-names > span {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -1.2px;
  line-height: 1;
}
.stack-orange {
  color: #acb39f;
}
.stack-names .autodesk {
  font-size: 16px;
  letter-spacing: -.6px;
  text-align: left;
  line-height: 1.05;
  font-weight: 700;
}
.stack-names .autodesk small {
  display: block;
  font-size: 9px;
  letter-spacing: 4px;
  margin-top: 4px;
}
.stack-names .aconex {
  font-family: Arial,sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  text-align: left;
}
.stack-names .aconex small {
  font-family: 'DM Sans',sans-serif;
  font-size: 23px;
  display: block;
  letter-spacing: -1px;
}
.stack-names .kahua {
  letter-spacing: -2px;
  font-size: 35px;
}
.stack-section > p {
  font-size: 11px;
  line-height: 1.9;
  color: #909d81;
}
.stack-section > p small {
  font-size: 8px;
  color: #a0ad90;
}
.role-tabs {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border-bottom: 1px solid #d1d9c6;
}
.role-tabs button {
  font-size: 12px;
  color: #9aa88b;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  padding: 17px 8px;
  transition: all .2s;
}
.role-tabs button:hover {
  color: #5d714a;
  background: #f0f3e9;
}
.role-tabs button.active {
  border-color: var(--orange);
  color: var(--ink);
}
.role-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 45px;
  padding: 36px 0;
  min-height: 231px;
}
.role-content h3 {
  font-size: 26px;
  line-height: 1.25;
  max-width: 310px;
}
.role-content .text-link {
  margin-top: 23px;
  font-size: 10px;
  color: #9a623c;
}
.role-content .small-label {
  font-size: 8px;
  color: #98a786;
}
.role-content p {
  font-size: 11px;
  line-height: 1.9;
  margin-top: 11px;
  color: #829571;
}
.role-content strong {
  font-weight: 500;
  color: #6b8058;
}
.monday-strip {
  border: 1px solid #dce3cf;
  background: #f0f3e8;
  border-radius: 4px;
  padding: 23px;
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 8px 20px;
}
.monday-strip > .mono {
  font-size: 8px;
  color: #95a77f;
  grid-row: span 2;
  padding-top: 2px;
}
.monday-strip > div {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 10px;
}
.old-way {
  text-decoration: line-through;
  color: #a6b594;
}
.monday-strip .icon {
  width: 14px;
  height: 14px;
  color: #a5b692;
}
.monday-strip strong {
  color: #6a8253;
  font-size: 10px;
  font-weight: 500;
}
.monday-strip > p {
  font-size: 9px;
  color: #96a882;
}
/* Pilot */
.pilot-section {
  background: #f2dfcf;
  padding: 83px 0 38px;
  border-block: 1px solid #e7cdb7;
}
.pilot-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}
.pilot-section .eyebrow {
  color: #a27b5d;
  font-size: 9px;
}
.pilot-section h2 {
  font-size: 59px;
  color: #4a3d2e;
}
.pilot-top > div > p {
  font-size: 13px;
  line-height: 1.9;
  max-width: 368px;
  color: #9f846b;
}
.pilot-top .button {
  margin-top: 24px;
  font-size: 12px;
}
.pilot-note {
  display: block;
  font-size: 9px;
  color: #b3977b;
  margin-top: 12px;
}
.pilot-numbers {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 36px;
  margin: 51px 0 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid #dabb9f;
}
.pilot-numbers > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pilot-numbers strong {
  font-size: 70px;
  font-weight: 400;
  letter-spacing: -5px;
  color: #765841;
  line-height: 1.2;
}
.pilot-numbers strong > span {
  color: #c79670;
  font-size: 40px;
  letter-spacing: -3px;
}
.pilot-numbers > div > span {
  font: 9px var(--mono);
  color: #aa8667;
  letter-spacing: .02em;
}
.pilot-phases {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 36px;
}
.pilot-phases .mono {
  font-size: 8px;
  color: #b38f6e;
}
.pilot-phases h3 {
  font-size: 19px;
  margin: 10px 0;
  color: #70563e;
}
.pilot-phases p {
  font-size: 11px;
  line-height: 1.85;
  color: #a5886c;
  max-width: 315px;
}
.pilot-details {
  border-block: 1px solid #dabb9f;
  margin-top: 31px;
  padding: 14px 0;
}
.pilot-details summary {
  font-size: 10px;
  color: #8f6b4c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}
.pilot-details .icon {
  width: 15px;
  height: 15px;
}
.pilot-details p {
  font-size: 11px;
  line-height: 1.8;
  color: #987455;
  margin-top: 15px;
  max-width: 1000px;
}
.pilot-pricing {
  display: flex;
  gap: 45px;
  justify-content: space-between;
  padding: 22px 0 18px;
  font-size: 9px;
  color: #ad8a6c;
}
.pilot-pricing strong {
  font-weight: 500;
  color: #8b6749;
}
.consultancy-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  border-top: 1px solid #e1c4aa;
  padding-top: 20px;
}
.consultancy-note p {
  font-size: 9px;
  line-height: 1.85;
  color: #ab886a;
  max-width: 760px;
}
.consultancy-note strong {
  font-weight: 500;
  color: #8b6749;
}
.consultancy-note .text-link {
  white-space: nowrap;
  font-size: 9px;
  color: #8b6749;
}
.consultancy-note .icon {
  width: 13px;
  height: 13px;
}
/* Status, FAQ, footer */
.status-section {
  padding-block: 56px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  border-bottom: 1px solid var(--line);
}
.status-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font: 8px var(--mono);
  color: #8e9c80;
}
.status-badge .orange-dot {
  width: 5px;
  height: 5px;
}
.status-section h3 {
  font-size: 23px;
  line-height: 1.4;
  margin-top: 14px;
  color: #5e714c;
}
.status-section p {
  font-size: 11px;
  line-height: 1.9;
  color: #8c9e7b;
  max-width: 530px;
}
.standards {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 19px;
  color: #91a380;
}
.standards .mono {
  font-size: 7px;
}
.standards a {
  font-size: 9px;
  border-bottom: 1px solid #cfd8c3;
}
.standards a:hover {
  color: var(--orange-dark);
}
.faq-section {
  display: grid;
  grid-template-columns: .95fr 1.15fr;
  gap: 80px;
}
.faq-section h2 {
  font-size: 44px;
}
.faq-section > div > p {
  font-size: 12px;
  margin-top: 17px;
}
.faq-section > div > .text-link {
  font-size: 11px;
  margin-top: 28px;
}
.faq-list {
  border-top: 1px solid #d8dfcd;
}
.faq-list details {
  border-bottom: 1px solid #d8dfcd;
}
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  padding: 18px 0;
  font-size: 12px;
  line-height: 1.5;
  color: #5f7351;
}
.faq-list summary:hover {
  color: var(--orange-dark);
}
summary::-webkit-details-marker {
  display: none;
}
.faq-list .icon {
  width: 15px;
  height: 15px;
  color: #9aad87;
  transition: transform .2s;
}
details[open] summary > .icon {
  transform: rotate(45deg);
}
.faq-list p {
  font-size: 11px;
  line-height: 1.9;
  padding: 0 25px 20px 0;
  color: #8e9f7e;
}
.contact-link {
  color: var(--orange-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.contact-link:hover {
  color: var(--ink);
}
.final-cta {
  padding-block: 50px 63px;
  border-top: 1px solid #d8dfcd;
}
.final-cta .eyebrow {
  font-size: 8px;
  color: #92a07f;
}
.final-cta h2 {
  font-size: 64px;
  margin-bottom: 26px;
}
.final-cta > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.final-cta p {
  font-size: 13px;
  line-height: 1.8;
  color: #8a9b78;
}
.final-cta .button {
  font-size: 12px;
}
.site-footer {
  border-top: 1px solid #dce2d2;
  background: #f0f2e9;
  padding-top: 49px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer-top .wordmark {
  font-size: 25px;
}
.footer-top .brand-mark {
  width: 29px;
  height: 22px;
}
.footer-top p {
  font-size: 10px;
  color: #9aa58c;
  margin-top: 15px;
}
.footer-top > div:not(:first-child) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}
.footer-top .mono {
  font-size: 8px;
  color: #9ca98d;
  margin-bottom: 9px;
}
.footer-top > div > a:not(.wordmark),
.footer-top > div > button {
  font-size: 10px;
  color: #82956e;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
}
.footer-top a:hover,
.footer-top button:hover {
  color: var(--orange-dark);
}
.footer-bottom {
  border-top: 1px solid #d9e0cd;
  margin-top: 36px;
  padding: 21px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 8px;
  color: #a1ad90;
}
.footer-bottom > a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-bottom .orange-dot {
  width: 4px;
  height: 4px;
}
/* Forms and dialogs */
dialog {
  border: 1px solid #d6ddc9;
  border-radius: 10px;
  padding: 45px;
  background: var(--paper);
  color: var(--ink);
  max-height: 90dvh;
  width: min(650px,calc(100% - 32px));
  box-shadow: 0 30px 100px #19231040;
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: #1e281db3;
  backdrop-filter: blur(8px);
}
.dialog-close {
  position: absolute;
  right: 16px;
  top: 13px;
  font-size: 27px;
  line-height: 1;
  background: transparent;
  border: 0;
  width: 33px;
  height: 33px;
  color: #9ba78c;
}
.dialog-close:hover {
  color: var(--ink);
}
dialog h2 {
  font-size: 42px;
}
.dialog-description {
  font-size: 12px;
  line-height: 1.8;
  margin: 18px 0 25px;
  color: #869775;
}
dialog .eyebrow {
  font-size: 8px;
  color: #9ca78f;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.form-grid > label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 10px;
  color: #758668;
}
.form-grid .full-width {
  grid-column: 1/-1;
}
.optional {
  font-weight: 400;
  color: #9eac91;
  display: contents;
}
input,
textarea,
select {
  border: 1px solid #d4ddc7;
  background: #fdfef9;
  border-radius: 3px;
  padding: 10px 12px;
  color: #536746;
  font-size: 12px;
  min-width: 0;
}
input::placeholder,
textarea::placeholder {
  color: #a6b098;
  opacity: 1;
}
textarea {
  resize: vertical;
  max-height: 250px;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 10px;
  color: #8b9a7c;
  line-height: 1.7;
  margin-top: 20px;
}
.consent-label input {
  accent-color: #627f4a;
  margin: 3px 0 0;
  width: 14px;
  height: 14px;
}
.consent-label button {
  background: transparent;
  border: 0;
  padding: 0;
  font-size: inherit;
  color: #667f51;
  text-decoration: underline;
}
.form-note {
  font-size: 9px;
  line-height: 1.8;
  color: #9caa8d;
  margin-top: 12px;
}
.form-note a {
  color: #728a5b;
  text-decoration: underline;
}
.form-submit {
  margin-top: 18px;
  width: 100%;
  font-size: 12px;
  justify-content: space-between;
}
.form-error {
  font-size: 11px;
  color: #b6512f;
  margin-top: 15px;
}
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
#pilot-success {
  padding: 25px 0;
}
#pilot-success > p {
  font-size: 12px;
  line-height: 1.85;
  color: #8b9c7a;
  margin-top: 20px;
}
#pilot-success > .mono {
  font-size: 9px;
}
#pilot-success > .button {
  font-size: 11px;
  margin: 25px 0;
}
#pilot-success > .text-link {
  display: flex;
  font-size: 11px;
}
.success-icon {
  width: 44px;
  height: 44px;
  background: #e8efdd;
  color: #6e8756;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
}
.privacy-dialog > p {
  font-size: 12px;
  line-height: 1.9;
  margin-top: 18px;
  color: #8b9c7a;
}
.privacy-dialog > h3 {
  font-size: 17px;
  margin-top: 24px;
  color: #667e51;
}
.privacy-dialog .button {
  margin-top: 28px;
  font-size: 12px;
}
.noscript-note {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e7d1bc;
  color: #624831;
  padding: 10px 25px;
  z-index: 20;
  font-size: 12px;
}
.noscript-note a {
  text-decoration: underline;
}
/* Readable secondary text: retain the quiet palette without low-contrast labels. */
.muted,
.hero-description,
.hero-cta-note,
.scene-topline,
.party-tag .node-icon,
.party-tag > div > span,
.party-tag > .icon,
.mini-dots,
.revision-chip,
.scene-bottomline,
.scene-motion,
.hero-trust,
.hero-trust .icon,
.role-strip .mono,
.role-strip .icon,
.problem-number,
.problem-resolution,
.mechanism-heading .mono,
.option-number,
.question-option small,
.question-option > .icon,
.proof-note > .icon,
.proof-note p,
.proof-note strong,
.fact-id,
.fact-value small,
.verdict,
.fact-explanation,
.fact-citations li,
.fact-citations .icon,
.fact-citations li > span:last-child,
.fact-method,
.fact-footer > span,
.fact-footer button,
.disagreement-values small,
.version-icon,
.version-strip p,
.disclosure-guarantees,
.disclosure-guarantees .icon,
.policy-card-heading .mono,
.policy-levels button,
.policy-preview-header,
.policy-preview .small-label,
.private-band,
.policy-bottom,
.policy-bottom .text-link,
.sources-heading > .icon,
.source-types > span,
.pipeline-arrow,
.own-node > .icon,
.own-node strong,
.vetted-extract strong,
.own-node div > span,
.vetted-extract div > span,
.own-node > .mono,
.vetted-extract > .icon,
.inference-note,
.inference-note strong,
.readiness-toolbar > .mono,
.readiness-toolbar label,
.readiness-toolbar select,
.readiness-state,
.readiness-detail,
.readiness-card.premature .readiness-state,
.readiness-card.premature .readiness-detail,
.section-footnote,
.stack-section > .mono,
.stack-names,
.stack-orange,
.stack-section > p,
.stack-section > p small,
.role-tabs button,
.role-tabs button:hover,
.role-content .text-link,
.role-content .small-label,
.role-content p,
.role-content strong,
.monday-strip > .mono,
.old-way,
.monday-strip .icon,
.monday-strip strong,
.monday-strip > p,
.status-badge,
.status-section h3,
.status-section p,
.standards,
.faq-list summary,
.faq-list .icon,
.faq-list p,
.final-cta .eyebrow,
.final-cta p,
.footer-top p,
.footer-top .mono,
.footer-top > div > a:not(.wordmark),
.footer-top > div > button,
.footer-bottom,
.dialog-close,
.dialog-description,
dialog .eyebrow,
.form-grid > label,
.optional,
input::placeholder,
textarea::placeholder,
.consent-label,
.consent-label button,
.form-note,
.form-note a,
#pilot-success > p,
.success-icon,
.privacy-dialog > p,
.privacy-dialog > h3 {
  color: #626c59;
}
.verdict.warning,
.disagreement-values > span,
.disagreement-find,
.readiness-card.pending .readiness-state,
.readiness-card.pending .readiness-detail {
  color: #876023;
}
.form-error {
  color: #a84424;
}
.ledger-layout > div > .ledger-small,
.ledger-demo .synthetic-label,
.ledger-entries li > div > span,
.ledger-entries code,
.ledger-result,
.boundaries .mono,
.legal-note {
  color: #a9b99b;
}
.pilot-section .eyebrow,
.pilot-top > div > p,
.pilot-note,
.pilot-numbers strong > span,
.pilot-numbers > div > span,
.pilot-phases .mono,
.pilot-phases p,
.pilot-details summary,
.pilot-details p,
.pilot-pricing,
.pilot-pricing strong,
.consultancy-note p,
.consultancy-note strong,
.consultancy-note .text-link {
  color: #7b593c;
}
/* Responsive */
@media (min-width:1500px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 35px;
  }
  .hero-visual {
    height: 590px;
  }
  .tag-architect {
    top: 119px;
  }
  .tag-engineer {
    top: 175px;
  }
  .tag-contractor {
    top: 345px;
  }
  .tag-owner {
    top: 358px;
  }
  .floating-answer {
    bottom: 50px;
  }
  .hero-trust {
    margin-top: 37px;
  }
}
@media (max-width:1150px) {
  .container {
    width: calc(100% - 72px);
  }
  .desktop-nav {
    gap: 20px;
    margin-left: 10px;
  }
  .nav-actions {
    gap: 17px;
  }
  .nav-contact {
    display: none;
  }
  .hero h1 {
    font-size: 75px;
  }
  .hero-visual {
    height: 510px;
  }
  .hero-description {
    max-width: 365px;
    font-size: 14px;
  }
  .hero-ctas {
    gap: 9px;
  }
  .hero-ctas .button {
    font-size: 12px;
  }
  .party-tag {
    padding: 7px;
    gap: 6px;
    font-size: 9px;
  }
  .party-tag > .icon {
    margin-left: 4px;
  }
  .tag-architect {
    left: 0;
  }
  .tag-engineer {
    right: -12px;
    top: 158px;
  }
  .tag-contractor {
    left: 0;
    top: 304px;
  }
  .tag-owner {
    right: -12px;
    top: 322px;
  }
  .party-tag > div > span {
    font-size: 7px;
  }
  .floating-answer {
    left: 7%;
    right: 1%;
    bottom: 38px;
  }
  .scene-bottomline {
    left: 0;
  }
  .role-strip-inner {
    gap: 15px;
  }
  .role-strip a {
    font-size: 10px;
    gap: 10px;
  }
  .role-strip .mono {
    font-size: 7px;
    max-width: 110px;
  }
  .proof-layout {
    gap: 38px;
    grid-template-columns: .75fr 1fr;
  }
  .disclosure-section {
    gap: 45px;
  }
  .section-heading {
    gap: 40px;
  }
  .section-heading > p {
    max-width: 290px;
    font-size: 12px;
  }
  .mechanism li {
    padding-inline: 14px;
    gap: 8px;
  }
  .mechanism strong {
    font-size: 12px;
  }
  .mechanism p {
    font-size: 9px;
  }
  .ledger-layout {
    gap: 45px;
  }
  .ledger-demo-top {
    padding-inline: 15px;
  }
  .ledger-demo-top .mono {
    font-size: 7px;
  }
  .ledger-entries,
  .ledger-actions {
    padding-inline: 15px;
  }
  .ledger-actions {
    gap: 12px;
  }
  .ledger-tamper {
    font-size: 8px;
  }
  .ledger-result {
    padding-inline: 15px;
  }
  .pilot-top {
    gap: 55px;
  }
  .faq-section {
    gap: 50px;
  }
  .sources-heading {
    grid-template-columns: 25px 1.1fr 1fr;
  }
  .source-pipeline {
    gap: 12px;
    padding: 20px;
  }
  .own-node {
    padding: 14px 12px;
  }
  .own-node > .mono {
    margin-left: 4px;
  }
  .vetted-extract {
    gap: 7px;
  }
  .vetted-extract strong {
    font-size: 10px;
  }
  .footer-top {
    gap: 30px;
  }
}
@media (max-width:950px) {
  .nav-wrap {
    height: 74px;
  }
  .wordmark {
    font-size: 25px;
  }
  .desktop-nav {
    gap: 16px;
    margin-left: 0;
  }
  .desktop-nav a {
    font-size: 10px;
  }
  .nav-actions .button {
    font-size: 10px;
    gap: 10px;
  }
  .hero {
    padding-top: 48px;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero-visual {
    height: 470px;
  }
  .hero-eyebrow {
    font-size: 7px;
    gap: 7px;
  }
  .hero-eyebrow .icon {
    margin-left: 0;
  }
  .hero-description {
    font-size: 12px;
    max-width: 300px;
    margin-block: 23px;
  }
  .hero-ctas {
    gap: 4px;
  }
  .hero-ctas .button {
    font-size: 10px;
    gap: 12px;
    padding-inline: 16px;
  }
  .hero-ctas > .button:first-child {
    min-width: 145px;
  }
  .hero-ctas .button-text {
    padding-inline: 7px;
  }
  .hero-cta-note {
    font-size: 8px;
  }
  .hero-trust {
    font-size: 8px;
    gap: 24px;
    margin-top: 25px;
  }
  .scene-topline {
    top: 16px;
    left: 7px;
  }
  .scene-topline > .mono {
    font-size: 6px;
  }
  .scene-topline .synthetic-label {
    font-size: 5px;
  }
  .tag-architect {
    top: 93px;
    left: -9px;
  }
  .tag-engineer {
    top: 145px;
    right: -12px;
  }
  .tag-contractor {
    top: 264px;
    left: -15px;
  }
  .tag-owner {
    top: 290px;
    right: -17px;
  }
  .party-tag > div > span {
    display: none;
  }
  .party-tag .node-icon {
    width: 20px;
    height: 22px;
    font-size: 9px;
  }
  .party-tag > .icon {
    width: 9px;
    height: 9px;
    margin-left: 2px;
  }
  .floating-answer {
    bottom: 36px;
    left: 3%;
    right: -3%;
  }
  .answer-status {
    font-size: 8px;
    padding: 10px;
  }
  .floating-answer-bottom {
    font-size: 8px;
    padding: 9px 10px;
    gap: 8px;
  }
  .floating-answer-bottom strong {
    font-size: 21px;
  }
  .revision-chip {
    font-size: 6px;
  }
  .scene-bottomline {
    font-size: 5px;
    gap: 7px;
  }
  .scene-hint .icon {
    width: 10px;
    height: 10px;
  }
  .scene-motion {
    width: 19px;
    height: 19px;
    font-size: 9px;
  }
  .role-strip .mono {
    display: none;
  }
  .role-strip-inner {
    min-height: 63px;
  }
  .role-strip a {
    font-size: 9px;
  }
  .section {
    padding-block: 85px;
  }
  .section-heading h2 {
    font-size: 43px;
  }
  .section-heading > p {
    font-size: 11px;
    max-width: 250px;
  }
  .eyebrow {
    font-size: 8px;
  }
  .problem-grid {
    gap: 24px;
  }
  .problem-grid h3 {
    font-size: 17px;
  }
  .problem-grid p {
    font-size: 11px;
  }
  .problem-resolution {
    font-size: 8px;
  }
  .proof-layout {
    gap: 27px;
    grid-template-columns: .8fr 1fr;
  }
  .question-option {
    gap: 9px;
    padding: 18px 7px;
  }
  .question-option.active {
    padding: 17px 6px;
  }
  .question-option > span:nth-child(2) {
    font-size: 10px;
  }
  .question-option small {
    font-size: 8px;
  }
  .proof-note p {
    font-size: 8px;
  }
  .fact-topbar {
    font-size: 7px;
    padding: 14px;
  }
  .fact-id {
    font-size: 6px;
  }
  .fact-topbar .synthetic-label {
    font-size: 5px;
  }
  .fact-body {
    padding: 20px 17px;
  }
  .fact-question {
    font-size: 12px;
  }
  .fact-footer {
    padding-inline: 13px;
  }
  .fact-footer > span {
    font-size: 6px;
  }
  .fact-footer button {
    font-size: 7px;
  }
  .fact-method {
    font-size: 6px;
  }
  .fact-citations li {
    font-size: 8px;
  }
  .fact-citations li > span:last-child {
    font-size: 6px;
  }
  .version-strip h3 {
    font-size: 12px;
  }
  .version-strip p {
    font-size: 9px;
    max-width: 430px;
  }
  .version-strip .button {
    font-size: 8px;
  }
  .disclosure-section {
    gap: 32px;
  }
  .disclosure-section h2 {
    font-size: 43px;
  }
  .disclosure-intro > p {
    font-size: 11px;
  }
  .disclosure-guarantees {
    font-size: 8px;
  }
  .disclosure-intro > .text-link {
    font-size: 9px;
  }
  .policy-card {
    padding: 18px;
  }
  .policy-card > p {
    font-size: 11px;
  }
  .policy-preview > p {
    font-size: 14px;
    min-height: 95px;
  }
  .policy-bottom {
    font-size: 6px;
  }
  .policy-bottom .text-link {
    font-size: 8px;
  }
  .sources-section {
    padding-bottom: 50px;
  }
  .sources-heading h3 {
    font-size: 16px;
  }
  .sources-heading > p {
    font-size: 9px;
  }
  .source-pipeline {
    gap: 10px;
    padding: 14px;
  }
  .source-types {
    min-width: 110px;
  }
  .source-types > span {
    font-size: 8px;
  }
  .own-node {
    padding: 11px;
    gap: 7px;
  }
  .own-node > .mono {
    display: none;
  }
  .own-node strong {
    font-size: 9px;
  }
  .own-node div > span {
    font-size: 7px;
  }
  .vetted-extract strong {
    font-size: 9px;
  }
  .vetted-extract div > span {
    font-size: 7px;
  }
  .inference-note {
    font-size: 8px;
  }
  .readiness-section .section-heading h2 {
    font-size: 36px;
  }
  .readiness-toolbar > .mono {
    font-size: 6px;
  }
  .readiness-toolbar label,
  .readiness-toolbar select {
    font-size: 8px;
  }
  .readiness-grid {
    gap: 12px;
  }
  .readiness-card {
    padding: 19px;
  }
  .readiness-card h3 {
    font-size: 15px;
  }
  .readiness-card > p {
    min-height: 90px;
  }
  .ledger-section {
    padding-top: 75px;
  }
  .ledger-layout {
    gap: 35px;
    grid-template-columns: .85fr 1fr;
  }
  .ledger-section h2 {
    font-size: 51px;
  }
  .ledger-layout > div > p {
    font-size: 11px;
  }
  .ledger-layout > div > .ledger-small {
    font-size: 9px;
  }
  .ledger-demo-top {
    flex-wrap: wrap;
    gap: 8px;
  }
  .ledger-entries li > div {
    font-size: 9px;
  }
  .ledger-entries li > div > span {
    font-size: 7px;
  }
  .ledger-entries code {
    font-size: 6px;
  }
  .ledger-actions {
    gap: 8px;
  }
  .ledger-actions .button {
    font-size: 8px;
    padding: 8px 10px;
    gap: 5px;
  }
  .ledger-tamper {
    font-size: 7px;
  }
  .ledger-result {
    font-size: 7px;
  }
  .boundaries {
    gap: 25px;
    margin-top: 50px;
  }
  .boundaries h3 {
    font-size: 20px;
  }
  .boundaries p {
    font-size: 8px;
  }
  .legal-note {
    font-size: 7px;
  }
  .role-content {
    gap: 30px;
  }
  .role-content h3 {
    font-size: 23px;
  }
  .role-content p {
    font-size: 10px;
  }
  .role-tabs button {
    font-size: 10px;
  }
  .monday-strip {
    grid-template-columns: 100px 1fr;
    padding: 18px;
    gap: 8px 10px;
  }
  .monday-strip > div {
    gap: 8px;
    font-size: 8px;
  }
  .monday-strip strong {
    font-size: 8px;
  }
  .monday-strip > p {
    font-size: 8px;
  }
  .pilot-section h2 {
    font-size: 49px;
  }
  .pilot-top > div > p {
    font-size: 11px;
  }
  .pilot-phases h3 {
    font-size: 17px;
  }
  .pilot-phases p {
    font-size: 10px;
  }
  .pilot-pricing {
    font-size: 8px;
    gap: 25px;
  }
  .consultancy-note {
    gap: 25px;
  }
  .consultancy-note p {
    font-size: 8px;
  }
  .consultancy-note .text-link {
    font-size: 8px;
  }
  .status-section {
    gap: 40px;
  }
  .status-badge {
    font-size: 6px;
  }
  .status-section h3 {
    font-size: 20px;
  }
  .status-section p {
    font-size: 10px;
  }
  .standards {
    gap: 10px;
  }
  .standards a {
    font-size: 8px;
  }
  .faq-section {
    gap: 40px;
    grid-template-columns: .8fr 1.15fr;
  }
  .faq-section h2 {
    font-size: 34px;
  }
  .faq-list summary {
    font-size: 10px;
  }
  .faq-list p {
    font-size: 10px;
  }
  .final-cta h2 {
    font-size: 55px;
  }
  .footer-top {
    gap: 20px;
  }
  .footer-top p {
    font-size: 8px;
  }
  .footer-top > div > a:not(.wordmark),
  .footer-top > div > button {
    font-size: 9px;
  }
  .footer-top .mono {
    font-size: 7px;
  }
}
@media (max-width:720px) {
  html {
    scroll-padding-top: 90px;
  }
  .container {
    width: calc(100% - 44px);
  }
  .nav-wrap {
    height: 69px;
    gap: 15px;
  }
  .desktop-nav {
    display: none;
  }
  .wordmark {
    font-size: 26px;
  }
  .brand-mark {
    width: 30px;
    height: 23px;
  }
  .nav-actions {
    gap: 12px;
  }
  .nav-actions .button {
    font-size: 10px;
    min-height: 35px;
    padding: 8px 12px;
  }
  .nav-actions .button .icon {
    width: 14px;
    height: 14px;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 39px;
    padding-bottom: 24px;
  }
  .hero-copy {
    padding-bottom: 0;
    max-width: 560px;
  }
  .hero h1 {
    font-size: clamp(58px,12vw,80px);
  }
  .hero-eyebrow {
    font-size: 8px;
    margin-bottom: 22px;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.8;
    max-width: 400px;
    margin: 23px 0;
  }
  .hero-ctas {
    gap: 15px;
  }
  .hero-ctas .button {
    font-size: 12px;
    padding: 14px 20px;
    gap: 17px;
  }
  .hero-ctas > .button:first-child {
    min-width: 165px;
  }
  .hero-ctas .button-text {
    padding-inline: 6px;
  }
  .hero-cta-note {
    font-size: 9px;
    margin-top: 14px;
  }
  .hero-visual {
    height: 490px;
    margin: 30px auto 0;
    width: min(100%,530px);
  }
  .scene-topline {
    top: 0;
    left: 7px;
  }
  .scene-topline > .mono {
    font-size: 7px;
  }
  .scene-topline .synthetic-label {
    font-size: 6px;
  }
  .scene-grid {
    inset: 0 -10px -10px;
  }
  .building-scene {
    inset: -8px -16px 90px;
  }
  .tag-architect {
    top: 80px;
    left: 0;
  }
  .tag-engineer {
    top: 141px;
    right: 0;
  }
  .tag-contractor {
    top: 277px;
    left: 0;
  }
  .tag-owner {
    top: 294px;
    right: 0;
  }
  .party-tag {
    font-size: 10px;
    padding: 8px;
    gap: 8px;
  }
  .party-tag .node-icon {
    width: 24px;
    height: 27px;
    font-size: 10px;
  }
  .party-tag > div > span {
    display: block;
    font-size: 7px;
  }
  .party-tag > .icon {
    width: 10px;
    height: 10px;
    margin-left: 7px;
  }
  .floating-answer {
    left: 10%;
    right: 5%;
    bottom: 36px;
  }
  .answer-status {
    font-size: 9px;
    padding: 11px;
  }
  .floating-answer-bottom {
    font-size: 9px;
    padding: 11px;
  }
  .floating-answer-bottom strong {
    font-size: 25px;
  }
  .revision-chip {
    font-size: 7px;
  }
  .scene-bottomline {
    font-size: 6px;
    bottom: 0;
  }
  .scene-hint .icon {
    width: 12px;
    height: 12px;
  }
  .hero-trust {
    margin-top: 30px;
    gap: 15px;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 8px;
    padding-top: 20px;
  }
  .hero-trust .icon {
    width: 11px;
    height: 11px;
  }
  .hero-trust > span {
    gap: 5px;
  }
  .role-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-block: 18px;
    gap: 17px 25px;
    min-height: auto;
  }
  .role-strip a {
    font-size: 10px;
    gap: 10px;
  }
  .role-strip a .icon {
    width: 12px;
    height: 12px;
  }
  .section {
    padding-block: 66px;
  }
  .section-heading {
    display: block;
    margin-bottom: 31px;
  }
  .eyebrow {
    font-size: 8px;
    margin-bottom: 18px;
  }
  .section-heading h2 {
    font-size: 42px;
  }
  .section-heading > p {
    font-size: 12px;
    max-width: 400px;
    margin-top: 23px;
    line-height: 1.8;
  }
  .section-heading > p br {
    display: none;
  }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .problem-grid article {
    padding: 23px 0;
  }
  .problem-number {
    float: left;
    padding-top: 5px;
    font-size: 9px;
  }
  .problem-grid h3 {
    font-size: 20px;
    margin: 0 0 11px;
    padding-left: 33px;
  }
  .problem-grid p {
    font-size: 12px;
    max-width: 460px;
    padding-left: 33px;
  }
  .problem-resolution {
    font-size: 9px;
    margin-top: 15px;
    padding-left: 33px;
  }
  .mechanism-heading {
    margin-top: 30px;
    align-items: flex-start;
    gap: 15px;
  }
  .mechanism-heading .mono {
    font-size: 7px;
    max-width: 180px;
  }
  .mechanism-heading .text-link {
    font-size: 8px;
    gap: 5px;
    white-space: nowrap;
  }
  .mechanism-heading .icon {
    width: 13px;
    height: 13px;
  }
  .mechanism {
    grid-template-columns: repeat(3,1fr);
    row-gap: 24px;
    padding-top: 22px;
  }
  .mechanism li {
    padding: 0 15px;
  }
  .mechanism li:nth-child(3) {
    border: 0;
  }
  .mechanism li:nth-child(4) {
    padding-left: 0;
  }
  .mechanism strong {
    font-size: 12px;
  }
  .mechanism p {
    font-size: 9px;
    margin-top: 7px;
  }
  .proof-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .proof-controls > .small-label {
    font-size: 8px;
  }
  .question-options {
    margin-top: 10px;
  }
  .question-option {
    padding: 14px 10px;
    gap: 14px;
  }
  .question-option.active {
    padding: 13px 9px;
  }
  .question-option > span:nth-child(2) {
    font-size: 12px;
  }
  .question-option small {
    font-size: 9px;
  }
  .proof-note {
    margin: 18px 0 12px;
  }
  .proof-note p {
    font-size: 9px;
    max-width: 100%;
  }
  .proof-controls > .text-link {
    font-size: 9px;
  }
  .fact-topbar {
    font-size: 8px;
    padding: 15px 18px;
  }
  .fact-id {
    font-size: 7px;
  }
  .fact-topbar .synthetic-label {
    font-size: 6px;
  }
  .fact-body {
    padding: 24px;
    min-height: 320px;
  }
  .fact-question {
    font-size: 14px;
  }
  .fact-method {
    font-size: 7px;
  }
  .fact-citations li {
    font-size: 9px;
  }
  .fact-citations li > span:last-child {
    font-size: 7px;
  }
  .fact-footer {
    padding: 14px 18px;
  }
  .fact-footer > span {
    font-size: 7px;
  }
  .fact-footer button {
    font-size: 8px;
  }
  .version-strip {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 29px;
  }
  .version-icon {
    width: 33px;
    height: 33px;
  }
  .version-icon .icon {
    width: 17px;
    height: 17px;
  }
  .version-strip > div:nth-child(2) {
    flex: 1;
  }
  .version-strip h3 {
    font-size: 13px;
  }
  .version-strip p {
    font-size: 10px;
  }
  .version-strip .button {
    margin-left: 45px;
    font-size: 9px;
    min-height: 37px;
    margin-top: 2px;
  }
  .disclosure-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 40px;
  }
  .disclosure-section h2 {
    font-size: 44px;
  }
  .disclosure-intro > p {
    font-size: 12px;
    max-width: 450px;
  }
  .disclosure-guarantees {
    font-size: 10px;
    margin-block: 20px;
  }
  .disclosure-intro > .text-link {
    font-size: 10px;
  }
  .policy-card {
    padding: 23px;
  }
  .policy-card > p {
    font-size: 13px;
  }
  .policy-levels button {
    font-size: 11px;
    padding-block: 10px;
  }
  .policy-preview > p {
    font-size: 18px;
    min-height: 75px;
  }
  .policy-preview .small-label {
    font-size: 8px;
  }
  .private-band {
    font-size: 10px;
  }
  .policy-bottom {
    font-size: 8px;
  }
  .policy-bottom .text-link {
    font-size: 9px;
  }
  .sources-section {
    padding-bottom: 42px;
  }
  .sources-heading {
    grid-template-columns: 27px 1fr;
    gap: 15px;
    align-items: start;
  }
  .sources-heading h3 {
    font-size: 18px;
  }
  .sources-heading > p {
    grid-column: 2;
    font-size: 11px;
    max-width: none;
  }
  .source-pipeline {
    display: grid;
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 17px;
    justify-items: center;
  }
  .source-types {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: center;
  }
  .source-types > span {
    font-size: 9px;
    background: #f8faf2;
    border: 1px solid #dce5cf;
    padding: 5px 7px;
    border-radius: 3px;
  }
  .pipeline-arrow {
    transform: rotate(90deg);
  }
  .own-node {
    width: 100%;
    padding: 18px;
    gap: 12px;
  }
  .own-node strong {
    font-size: 12px;
  }
  .own-node div > span {
    font-size: 9px;
  }
  .own-node > .mono {
    display: block;
    font-size: 7px;
    margin-left: auto;
  }
  .vetted-extract {
    gap: 12px;
  }
  .vetted-extract strong {
    font-size: 12px;
  }
  .vetted-extract div > span {
    font-size: 9px;
  }
  .inference-note {
    font-size: 9px;
  }
  .readiness-section .section-heading h2 {
    font-size: 35px;
  }
  .readiness-toolbar {
    display: block;
    padding-block: 16px;
  }
  .readiness-toolbar > .mono {
    font-size: 8px;
  }
  .readiness-toolbar > div {
    margin-top: 13px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .readiness-toolbar label {
    font-size: 9px;
    margin-left: 0;
  }
  .readiness-toolbar label[for=project-stage] {
    margin-left: 10px;
  }
  .readiness-toolbar select {
    font-size: 10px;
    max-width: 165px;
  }
  .readiness-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .readiness-card {
    padding: 23px;
  }
  .readiness-state {
    font-size: 9px;
  }
  .readiness-card h3 {
    font-size: 20px;
    min-height: 0;
    margin-top: 17px;
  }
  .readiness-card > p {
    font-size: 11px;
    min-height: 0;
    max-width: 460px;
  }
  .readiness-detail {
    font-size: 10px;
  }
  .section-footnote {
    font-size: 8px;
  }
  .ledger-section {
    padding: 65px 0 25px;
  }
  .ledger-layout {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .ledger-section h2 {
    font-size: 56px;
  }
  .ledger-layout > div > p {
    font-size: 12px;
    max-width: 460px;
  }
  .ledger-layout > div > .ledger-small {
    font-size: 10px;
    max-width: 430px;
  }
  .ledger-demo-top {
    padding: 20px;
    flex-wrap: nowrap;
  }
  .ledger-demo-top .mono {
    font-size: 8px;
  }
  .ledger-demo .synthetic-label {
    font-size: 6px;
  }
  .ledger-entries {
    padding: 9px 20px;
  }
  .ledger-entries li > div {
    font-size: 11px;
  }
  .ledger-entries li > div > span {
    font-size: 8px;
  }
  .ledger-entries code {
    font-size: 8px;
  }
  .ledger-actions {
    padding: 18px 20px 0;
    gap: 20px;
  }
  .ledger-actions .button {
    font-size: 10px;
    padding: 10px 14px;
    gap: 10px;
  }
  .ledger-tamper {
    font-size: 8px;
  }
  .ledger-result {
    padding: 16px 20px 20px;
    font-size: 8px;
  }
  .boundaries {
    grid-template-columns: 1fr 1fr;
    gap: 25px 20px;
    margin-top: 40px;
    padding-top: 26px;
  }
  .boundaries h3 {
    grid-column: 1/-1;
    font-size: 24px;
  }
  .boundaries h3 br {
    display: none;
  }
  .boundaries p {
    font-size: 9px;
    line-height: 1.85;
  }
  .boundaries .mono {
    font-size: 7px;
  }
  .legal-note {
    font-size: 8px;
    line-height: 1.9;
    margin-top: 25px;
  }
  .stack-section {
    padding-block: 42px;
  }
  .stack-section > .mono {
    font-size: 7px;
  }
  .stack-names {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px 30px;
    margin: 30px auto 25px;
  }
  .stack-names > span {
    font-size: 26px;
  }
  .stack-names .kahua {
    font-size: 29px;
  }
  .stack-names .autodesk {
    font-size: 13px;
  }
  .stack-names .aconex {
    font-size: 12px;
  }
  .stack-names .aconex small {
    font-size: 20px;
  }
  .stack-section > p {
    font-size: 10px;
  }
  .stack-section > p small {
    font-size: 8px;
  }
  .role-tabs {
    grid-template-columns: 1fr 1fr;
    border-bottom: 0;
    gap: 3px;
  }
  .role-tabs button {
    font-size: 11px;
    padding: 12px 6px;
    background: #edf1e4;
    border: 1px solid #e2e9d5;
    border-radius: 3px;
  }
  .role-tabs button.active {
    border-color: #ce9c77;
    background: #f5eade;
  }
  .role-content {
    grid-template-columns: 1fr 1fr;
    gap: 25px 20px;
    min-height: 0;
    padding-block: 29px;
  }
  .role-content > div:first-child {
    grid-column: 1/-1;
  }
  .role-content h3 {
    font-size: 29px;
    max-width: 400px;
  }
  .role-content .text-link {
    margin-top: 16px;
    font-size: 10px;
  }
  .role-content p {
    font-size: 10px;
  }
  .role-content .small-label {
    font-size: 8px;
  }
  .monday-strip {
    display: block;
    padding: 20px;
  }
  .monday-strip > div {
    flex-wrap: wrap;
    font-size: 9px;
    gap: 8px;
    margin-top: 11px;
  }
  .monday-strip strong {
    font-size: 11px;
  }
  .monday-strip > p {
    font-size: 9px;
    margin-top: 9px;
  }
  .pilot-section {
    padding: 61px 0 30px;
  }
  .pilot-top {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .pilot-section h2 {
    font-size: 49px;
  }
  .pilot-top > div > p {
    font-size: 12px;
    max-width: 430px;
  }
  .pilot-top .button {
    margin-top: 20px;
  }
  .pilot-numbers {
    gap: 15px;
    margin: 36px 0 26px;
    padding-bottom: 25px;
  }
  .pilot-numbers strong {
    font-size: 56px;
    letter-spacing: -4px;
  }
  .pilot-numbers strong > span {
    font-size: 22px;
    letter-spacing: -1.5px;
  }
  .pilot-numbers > div > span {
    font-size: 7px;
    max-width: 95px;
    line-height: 1.7;
  }
  .pilot-phases {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .pilot-phases article {
    display: grid;
    grid-template-columns: 95px 1fr;
    gap: 4px 15px;
  }
  .pilot-phases .mono {
    font-size: 8px;
    padding-top: 5px;
  }
  .pilot-phases h3 {
    font-size: 19px;
    margin: 0 0 5px;
  }
  .pilot-phases p {
    grid-column: 2;
    font-size: 11px;
    max-width: 360px;
  }
  .pilot-details {
    margin-top: 27px;
  }
  .pilot-details summary {
    font-size: 10px;
  }
  .pilot-pricing {
    display: grid;
    gap: 10px;
    font-size: 9px;
  }
  .consultancy-note {
    display: block;
  }
  .consultancy-note p {
    font-size: 9px;
  }
  .consultancy-note .text-link {
    font-size: 10px;
    margin-top: 18px;
  }
  .status-section {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-block: 38px;
  }
  .status-badge {
    font-size: 7px;
  }
  .status-section h3 {
    font-size: 24px;
  }
  .status-section p {
    font-size: 11px;
    max-width: 460px;
  }
  .standards a {
    font-size: 9px;
  }
  .standards {
    gap: 13px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-section h2 {
    font-size: 42px;
  }
  .faq-section > div > .text-link {
    margin-top: 17px;
  }
  .faq-list summary {
    font-size: 12px;
    padding-block: 18px;
  }
  .faq-list p {
    font-size: 11px;
  }
  .final-cta {
    padding: 40px 0 46px;
  }
  .final-cta h2 {
    font-size: 47px;
    line-height: 1.1;
    max-width: 550px;
  }
  .final-cta > div {
    display: block;
  }
  .final-cta p {
    font-size: 12px;
  }
  .final-cta .button {
    margin-top: 22px;
    font-size: 11px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px 22px;
  }
  .footer-top > div:first-child {
    grid-column: 1/-1;
  }
  .footer-top p {
    font-size: 10px;
  }
  .footer-top .mono {
    font-size: 8px;
  }
  .footer-top > div > a:not(.wordmark),
  .footer-top > div > button {
    font-size: 10px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 8px;
    margin-top: 30px;
  }
  .footer-bottom > a {
    width: 100%;
  }
  .site-footer {
    padding-top: 35px;
  }
  dialog {
    padding: 35px 24px;
    max-height: 92dvh;
  }
  dialog h2 {
    font-size: 36px;
  }
  .form-grid {
    gap: 15px;
  }
  .form-grid > label {
    font-size: 9px;
  }
  input,
  textarea,
  select {
    font-size: 16px;
    padding: 10px;
  }
  .form-grid select {
    font-size: 12px;
  }
  .form-note {
    font-size: 9px;
  }
  .dialog-description {
    font-size: 11px;
  }
  .privacy-dialog > p {
    font-size: 11px;
  }
}
@media (max-width:390px) {
  .container {
    width: calc(100% - 36px);
  }
  .nav-actions {
    gap: 5px;
  }
  .nav-actions .button {
    font-size: 9px;
    padding-inline: 10px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-eyebrow {
    font-size: 7px;
  }
  .hero-ctas {
    gap: 8px;
  }
  .hero-ctas .button {
    font-size: 11px;
    padding-inline: 16px;
  }
  .hero-ctas > .button:first-child {
    min-width: 151px;
  }
  .hero-cta-note {
    font-size: 8px;
  }
  .hero-visual {
    height: 430px;
  }
  .tag-architect {
    top: 79px;
  }
  .tag-engineer {
    top: 133px;
  }
  .tag-contractor {
    top: 240px;
  }
  .tag-owner {
    top: 252px;
  }
  .party-tag > div > span {
    display: none;
  }
  .party-tag {
    font-size: 9px;
    gap: 6px;
    padding: 6px;
  }
  .party-tag > .icon {
    margin-left: 3px;
  }
  .floating-answer {
    left: 4%;
    right: 1%;
    bottom: 32px;
  }
  .answer-status {
    font-size: 8px;
  }
  .floating-answer-bottom {
    font-size: 8px;
  }
  .hero-trust {
    gap: 12px;
    font-size: 7px;
  }
  .role-strip a {
    font-size: 9px;
  }
  .mechanism-heading .mono {
    max-width: 145px;
    font-size: 6px;
  }
  .mechanism li {
    padding-inline: 12px;
  }
  .mechanism strong {
    font-size: 11px;
  }
  .fact-body {
    padding: 19px;
  }
  .fact-topbar {
    padding: 13px;
    font-size: 7px;
  }
  .fact-id {
    display: none;
  }
  .fact-footer > span {
    font-size: 6px;
  }
  .fact-citations li > span:last-child {
    font-size: 6px;
  }
  .policy-bottom {
    font-size: 7px;
  }
  .readiness-toolbar label[for=project-stage] {
    margin-left: 0;
  }
  .readiness-toolbar select {
    font-size: 9px;
    max-width: 145px;
  }
  .ledger-demo-top .mono {
    font-size: 6px;
  }
  .ledger-entries code {
    font-size: 6px;
  }
  .ledger-actions {
    gap: 12px;
  }
  .ledger-actions .button {
    font-size: 9px;
    padding-inline: 10px;
  }
  .ledger-tamper {
    font-size: 7px;
  }
  .pilot-numbers strong {
    font-size: 49px;
  }
  .pilot-phases article {
    grid-template-columns: 80px 1fr;
    gap: 4px 12px;
  }
  .pilot-phases h3 {
    font-size: 17px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full-width {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none!important;
    transition: none!important;
  }
  .floating-answer {
    transform: none;
  }
  .button:hover {
    transform: none;
  }
}
@media print {
  .site-header,
  .hero-visual,
  .hero-ctas,
  .role-strip,
  dialog,
  button,
  .final-cta,
  .site-footer {
    display: none!important;
  }
  .container {
    width: 100%;
  }
  .section {
    padding-block: 25px;
  }
  .hero {
    display: block;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-trust {
    margin-bottom: 15px;
  }
  .ledger-section {
    background: white;
    color: black;
  }
  .ledger-section h2,
  .ledger-section p {
    color: black;
  }
  body {
    font-size: 11px;
  }
  a {
    text-decoration: underline;
  }
  .fact-card,
  .policy-card,
  .readiness-card {
    break-inside: avoid;
  }
  .faq-list details > p {
    display: block;
  }
  .faq-list details {
    content-visibility: visible;
  }
}
