:root {
  color-scheme: light;
  --ink: #11211e;
  --ink-soft: #283b37;
  --muted: #64746f;
  --line: #d9dfdb;
  --paper: #fffefa;
  --cream: #f3f1e9;
  --wash: #e8ede9;
  --night: #10211e;
  --night-2: #18312c;
  --teal: #08786f;
  --teal-dark: #065b55;
  --teal-light: #d8f1ec;
  --lime: #c8f56b;
  --amber: #d68a2a;
  --red: #b94d43;
  --green: #337d50;
  --blue: #3c70b8;
  --shadow: 0 24px 60px rgba(14, 34, 30, 0.13);
  --shadow-small: 0 12px 30px rgba(14, 34, 30, 0.09);
  --radius: 18px;
  --shell: 1180px;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

button,
input,
textarea { font: inherit; }

a { color: inherit; }

img,
svg { display: block; max-width: 100%; }

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
  font-family: Iowan Old Style, Charter, "Bitstream Charter", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 25px;
  font-size: clamp(3.3rem, 7vw, 6.5rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 11px;
  font-size: 1.45rem;
  line-height: 1.18;
}

:focus-visible {
  outline: 3px solid rgba(8, 120, 111, 0.34);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: rgba(217, 223, 219, 0.9);
  background: rgba(255, 254, 250, 0.92);
  box-shadow: 0 5px 20px rgba(14, 34, 30, 0.05);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 770;
  letter-spacing: -0.025em;
}

.brand small {
  margin-left: 2px;
  padding: 2px 7px;
  border: 1px solid rgba(8, 120, 111, 0.3);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(216, 241, 236, 0.55);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  width: 34px;
  height: 34px;
  padding: 4px;
  border-radius: 10px;
  color: var(--teal-dark);
  background: var(--teal-light);
}

.brand-mark path,
.core-mark path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

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

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover { color: var(--teal-dark); }

.site-nav .nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  transition: color 150ms ease, background 150ms ease;
}

.site-nav .nav-cta:hover { color: #fff; background: var(--ink); }

.menu-button { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 94px;
  background:
    radial-gradient(circle at 8% 15%, rgba(200, 245, 107, 0.24), transparent 25%),
    linear-gradient(145deg, #fffefa 0%, #f7f5ed 58%, #e8efea 100%);
}

.hero::after {
  position: absolute;
  right: -180px;
  bottom: -280px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(8, 120, 111, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(8, 120, 111, 0.035), 0 0 0 130px rgba(8, 120, 111, 0.025);
  content: "";
}

.hero-glow {
  position: absolute;
  top: 130px;
  left: 46%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(8, 120, 111, 0.1);
  filter: blur(100px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 68px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.115em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light { color: var(--lime); }

.hero-lede {
  max-width: 660px;
  margin-bottom: 32px;
  color: #3c514c;
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, color 150ms ease, background 150ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: #fff;
  background: var(--teal-dark);
  box-shadow: 0 8px 20px rgba(6, 91, 85, 0.2);
}

.button-primary:hover { background: #034f4a; box-shadow: 0 12px 26px rgba(6, 91, 85, 0.24); }

.button-quiet { border-color: #a9b4af; color: var(--ink); background: rgba(255,255,255,0.55); }

.button-quiet:hover { border-color: var(--ink); background: #fff; }

.button-accent { width: 100%; color: var(--night); background: var(--lime); }

.button-accent:hover { background: #d8ff83; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  color: #53635f;
  font-size: 0.82rem;
  font-weight: 650;
  list-style: none;
}

.check {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 4px;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--teal-light);
  place-items: center;
  font-size: 0.72rem;
}

.hero-product { position: relative; perspective: 1200px; }

.product-window {
  overflow: hidden;
  border: 1px solid rgba(17, 33, 30, 0.15);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotateY(-2.5deg) rotateX(1deg);
}

.window-bar {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 17px;
  color: #e7efec;
  background: var(--night);
  font-size: 0.68rem;
}

.window-brand,
.window-env { display: flex; align-items: center; gap: 8px; font-weight: 700; }

.mini-mark {
  display: grid;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(200, 245, 107, 0.55);
  border-radius: 7px;
  color: var(--lime);
  place-items: center;
}

.window-env { color: #b7c8c2; font-weight: 550; }

.window-env span { width: 7px; height: 7px; border-radius: 50%; background: #68d597; box-shadow: 0 0 0 3px rgba(104, 213, 151, 0.15); }

.initiative-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 21px 16px;
  border-bottom: 1px solid var(--line);
}

.window-kicker {
  margin-bottom: 5px;
  color: var(--teal-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.initiative-head h2 {
  max-width: 340px;
  margin: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.015em;
}

.status {
  display: inline-flex;
  flex: none;
  min-height: 25px;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.status-review { color: #765014; background: #fff0ce; }
.status-open { color: #345f99; background: #e7f0fc; }
.status-resolved { color: #226b42; background: #def3e5; }

.evidence-row {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 1.3fr;
  border-bottom: 1px solid var(--line);
}

.metric-card {
  min-height: 112px;
  padding: 17px;
  border-right: 1px solid var(--line);
}

.metric-card:last-child { border-right: 0; }

.metric-card > span,
.contract-label,
.recommendation span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.metric-card > strong { display: block; font-size: 1.35rem; line-height: 1.2; }
.metric-card > small { color: var(--muted); font-size: 0.67rem; }
.metric-chart { padding-bottom: 8px; }
.metric-chart svg { width: 100%; height: 60px; margin-top: -4px; overflow: visible; }
.metric-chart line { stroke: var(--amber); stroke-dasharray: 2 3; stroke-width: 1; }
.chart-area { fill: rgba(8, 120, 111, 0.09); }
.chart-line { fill: none; stroke: var(--teal); stroke-width: 2.3; }

.recommendation {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  margin: 16px;
  padding: 14px;
  border: 1px solid #c8e4de;
  border-radius: 11px;
  background: #f2fbf8;
}

.recommendation-icon {
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  color: var(--teal-dark);
  background: var(--teal-light);
  place-items: center;
}

.recommendation strong { display: block; font-size: 0.76rem; line-height: 1.4; }
.recommendation p { margin: 4px 0 0; color: var(--muted); font-size: 0.64rem; line-height: 1.45; }

.outcome-contract {
  display: grid;
  grid-template-columns: 1.35fr 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 17px 17px;
  border-top: 1px solid var(--line);
  background: #fafaf8;
}

.outcome-contract strong { display: block; font-size: 0.68rem; line-height: 1.35; }

.floating-proof {
  position: absolute;
  right: -25px;
  bottom: -38px;
  display: flex;
  width: 270px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(17,33,30,0.12);
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow-small);
}

.proof-icon {
  display: grid;
  width: 35px;
  height: 35px;
  flex: none;
  border-radius: 50%;
  color: #fff;
  background: var(--teal-dark);
  place-items: center;
}

.floating-proof strong,
.floating-proof small { display: block; }
.floating-proof strong { font-size: 0.74rem; }
.floating-proof small { color: var(--muted); font-size: 0.62rem; line-height: 1.4; }

.loop-band { border-block: 1px solid var(--line); background: var(--paper); }

.loop {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #4e625c;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.loop i { width: 40px; height: 1px; background: #b7c2bd; position: relative; }
.loop i::after { position: absolute; top: -3px; right: 0; width: 6px; height: 6px; border-top: 1px solid #84938d; border-right: 1px solid #84938d; content: ""; transform: rotate(45deg); }

.section { padding: 112px 0; }

.section-intro { max-width: 760px; margin-bottom: 60px; }
.section-intro.centered { margin-inline: auto; text-align: center; }
.section-intro.centered .eyebrow { justify-content: center; }
.section-intro > p:last-child { max-width: 660px; margin-bottom: 0; color: var(--muted); font-size: 1.08rem; }
.section-intro.centered > p:last-child { margin-inline: auto; }

.problem-section { background: var(--paper); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.problem-card {
  min-height: 290px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(17,33,30,0.02);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.problem-card:hover { border-color: #b7c6c0; box-shadow: var(--shadow-small); transform: translateY(-5px); }
.card-number { display: inline-block; margin-bottom: 60px; color: var(--teal-dark); font-family: ui-monospace, monospace; font-size: 0.76rem; font-weight: 800; }
.problem-card p { margin-bottom: 0; color: var(--muted); font-size: 0.93rem; }

.coverage-section { overflow: hidden; color: #fff; background: var(--night); }
.coverage-layout { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr); align-items: start; gap: 82px; }
.coverage-copy > p:not(.eyebrow, .coverage-note) { color: #b7c8c2; font-size: 1.03rem; }
.coverage-proof { display: grid; grid-template-columns: repeat(3, 1fr); margin: 36px 0 24px; overflow: hidden; border: 1px solid #35504a; border-radius: 14px; background: rgba(255,255,255,0.025); }
.coverage-proof > div { min-height: 142px; padding: 20px; border-right: 1px solid #35504a; }
.coverage-proof > div:last-child { border-right: 0; }
.coverage-proof strong,
.coverage-proof span { display: block; }
.coverage-proof strong { margin-bottom: 15px; color: var(--lime); font-family: Iowan Old Style, Charter, "Bitstream Charter", "Times New Roman", serif; font-size: 2.3rem; font-weight: 600; line-height: 1; }
.coverage-proof span { color: #c3d0cc; font-size: 0.68rem; font-weight: 650; line-height: 1.45; }
.coverage-note { max-width: 620px; margin-bottom: 0; color: #91a8a1; font-size: 0.76rem; }
.coverage-modes { display: grid; gap: 13px; }
.coverage-mode { padding: 25px 27px; border: 1px solid #35504a; border-radius: var(--radius); background: rgba(255,255,255,0.045); transition: border-color 180ms ease, background 180ms ease, transform 180ms ease; }
.coverage-mode:hover { border-color: #58736c; background: rgba(255,255,255,0.065); transform: translateX(4px); }
.mode-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 27px; }
.mode-head span { color: var(--lime); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.68rem; font-weight: 800; }
.mode-head em { padding: 4px 9px; border: 1px solid #46635b; border-radius: 999px; color: #b9cbc5; font-size: 0.57rem; font-style: normal; font-weight: 750; letter-spacing: 0.06em; text-transform: uppercase; }
.coverage-mode h3 { margin-bottom: 8px; color: #fff; font-size: 1.5rem; }
.coverage-mode p { margin-bottom: 18px; color: #b7c8c2; font-size: 0.82rem; }
.coverage-mode small { display: block; padding-top: 15px; border-top: 1px solid #304a44; color: #819891; font-size: 0.61rem; font-weight: 700; }

.how-section { overflow: hidden; background: var(--cream); }
.steps { display: grid; gap: 100px; }
.step { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr); align-items: center; gap: 92px; }
.step-reverse .step-copy { order: 2; }
.step-reverse .step-visual { order: 1; }
.step-label { display: block; margin-bottom: 13px; color: var(--teal-dark); font-family: ui-monospace, monospace; font-size: 0.73rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.step-copy h3 { max-width: 520px; font-size: clamp(2rem, 3vw, 3rem); }
.step-copy > p { color: var(--muted); }
.step-copy ul { display: grid; gap: 8px; margin: 25px 0 0; padding: 0; list-style: none; }
.step-copy li { position: relative; padding-left: 24px; color: var(--ink-soft); font-size: 0.9rem; font-weight: 650; }
.step-copy li::before { position: absolute; top: 9px; left: 0; width: 9px; height: 9px; border: 2px solid var(--teal); border-radius: 50%; content: ""; }

.step-visual {
  border: 1px solid rgba(17,33,30,0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-small);
}

.evidence-stack { display: grid; gap: 11px; padding: 24px; background: #e3e9e5; }
.source-card { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 13px; padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.source-card > span { display: grid; width: 40px; height: 40px; border-radius: 10px; color: var(--teal-dark); background: var(--teal-light); place-items: center; font-family: ui-monospace, monospace; font-size: 0.74rem; font-weight: 800; }
.source-card small,
.source-card strong { display: block; }
.source-card small { color: var(--muted); font-size: 0.66rem; }
.source-card strong { font-size: 0.8rem; }
.source-card em { padding: 3px 8px; border-radius: 999px; color: var(--muted); background: #edf0ee; font-size: 0.58rem; font-style: normal; font-weight: 700; }
.source-primary { border-color: #a9d5cc; transform: translateX(13px); }

.pr-card { overflow: hidden; }
.pr-head { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 11px; padding: 18px; border-bottom: 1px solid var(--line); }
.github-mark { display: grid; width: 32px; height: 32px; border-radius: 50%; color: #fff; background: var(--night); place-items: center; }
.pr-head small,
.pr-head strong { display: block; }
.pr-head small { color: var(--muted); font-size: 0.65rem; }
.pr-head strong { font-size: 0.78rem; }
.pr-check { display: flex; align-items: center; gap: 11px; margin: 17px; padding: 13px; border: 1px solid #bde0c8; border-radius: 10px; background: #f1faf4; }
.pr-check > span { display: grid; width: 27px; height: 27px; border-radius: 50%; color: #fff; background: var(--green); place-items: center; }
.pr-check strong,
.pr-check small { display: block; }
.pr-check strong { font-size: 0.74rem; }
.pr-check small { color: var(--muted); font-size: 0.61rem; }
.diff { margin: 0 17px 17px; padding: 19px; border-radius: 10px; color: #d7e5e0; background: #15221f; font-size: 0.73rem; line-height: 1.75; }
.diff-add { color: #8be0aa; }
.pr-footer { display: flex; justify-content: space-between; gap: 12px; padding: 12px 17px; border-top: 1px solid var(--line); color: var(--muted); background: #fafbf9; font-size: 0.62rem; font-weight: 700; }

.plan-card { overflow: hidden; }
.plan-head { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 16px; padding: 17px 19px; border-bottom: 1px solid var(--line); }
.plan-head small,
.plan-head strong { display: block; }
.plan-head small { color: var(--muted); font-size: 0.65rem; }
.plan-head strong { font-size: 0.83rem; }
.plan-strategy { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 13px 19px; border-bottom: 1px solid var(--line); color: var(--teal-dark); background: #f3faf8; font-size: 0.59rem; font-weight: 800; text-transform: uppercase; }
.plan-strategy i { width: 19px; height: 1px; background: #a5c8c0; }
.plan-rows { padding: 5px 17px; }
.plan-row { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid #e6ebe8; }
.plan-row:last-child { border-bottom: 0; }
.plan-row b { display: grid; width: 25px; height: 25px; border: 1px solid #cbd4d0; border-radius: 50%; color: var(--muted); place-items: center; font-size: 0.61rem; }
.plan-row p,
.plan-row strong,
.plan-row small { display: block; margin: 0; }
.plan-row strong { font-size: 0.7rem; line-height: 1.35; }
.plan-row small { margin-top: 2px; color: var(--muted); font-size: 0.57rem; }
.plan-row em { padding: 3px 7px; border-radius: 999px; color: var(--muted); background: #eef1ef; font-size: 0.55rem; font-style: normal; font-weight: 750; }
.plan-row.complete b { border-color: var(--green); color: #fff; background: var(--green); }
.plan-row.current { margin-inline: -8px; padding-inline: 8px; border-radius: 8px; background: #f0faf7; }
.plan-row.current b { border-color: var(--teal); color: #fff; background: var(--teal); }
.plan-row.current em { color: var(--teal-dark); background: var(--teal-light); }
.plan-row.human { margin-inline: -8px; padding-inline: 8px; border-radius: 8px; background: #fff8e9; }
.plan-row.human b { border-color: #d89a3c; color: #88550a; background: #ffedc7; }
.plan-row.human em { color: #7b500e; background: #ffedc7; }
.plan-foot { padding: 11px 18px; border-top: 1px solid var(--line); color: var(--muted); background: #fafbf9; font-size: 0.61rem; font-weight: 650; text-align: center; }

.ambient-card { overflow: hidden; }
.ambient-top { display: grid; grid-template-columns: 37px 1fr auto; align-items: center; gap: 11px; padding: 18px; border-bottom: 1px solid var(--line); }
.ambient-logo { display: grid; width: 35px; height: 35px; border-radius: 10px; color: var(--lime); background: var(--night); place-items: center; font-size: 0.75rem; font-weight: 800; }
.ambient-top small,
.ambient-top strong { display: block; }
.ambient-top small { color: var(--muted); font-size: 0.62rem; }
.ambient-top strong { font-size: 0.83rem; }
.ambient-summary { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.ambient-summary > div { padding: 16px; border-right: 1px solid var(--line); }
.ambient-summary > div:last-child { border-right: 0; }
.ambient-summary strong,
.ambient-summary small { display: block; }
.ambient-summary strong { font-size: 1.18rem; }
.ambient-summary small { color: var(--muted); font-size: 0.58rem; }
.ambient-decision { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; margin: 16px; padding: 14px; border: 1px solid #e5c88f; border-radius: 10px; background: #fff9ed; }
.ambient-decision > span { padding: 4px 8px; border-radius: 999px; color: #79500e; background: #ffebc2; font-size: 0.55rem; font-weight: 800; }
.ambient-decision p,
.ambient-decision strong,
.ambient-decision small { display: block; margin: 0; }
.ambient-decision strong { font-size: 0.69rem; line-height: 1.38; }
.ambient-decision small { margin-top: 2px; color: var(--muted); font-size: 0.57rem; }
.ambient-button { padding: 7px 9px; border: 1px solid #c99b48; border-radius: 7px; color: #724b0d; background: #fff; font-size: 0.57rem; font-style: normal; font-weight: 750; white-space: nowrap; }
.ambient-foot { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 11px 15px; border-top: 1px solid var(--line); background: #fafbf9; }
.ambient-foot span { padding: 3px 7px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: #fff; font-size: 0.54rem; font-weight: 750; }

.outcome-card { overflow: hidden; }
.outcome-head { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px; padding: 20px; border-bottom: 1px solid var(--line); }
.outcome-check { display: grid; width: 40px; height: 40px; border-radius: 50%; color: #fff; background: var(--green); place-items: center; }
.outcome-head small,
.outcome-head strong { display: block; }
.outcome-head small { color: var(--muted); font-size: 0.66rem; }
.outcome-head strong { font-size: 1.15rem; }
.comparison-chart { display: grid; grid-template-columns: repeat(3, 1fr); height: 205px; align-items: end; gap: 18px; padding: 25px 25px 0; }
.comparison-chart > div { display: grid; height: 100%; grid-template-rows: 1fr auto auto; align-items: end; text-align: center; }
.comparison-chart span { display: block; width: 56%; height: var(--bar); margin: auto auto 9px; border-radius: 7px 7px 0 0; background: #a8b7b2; }
.comparison-chart .regression-bar { background: var(--amber); }
.comparison-chart .outcome-bar { background: var(--teal); }
.comparison-chart small { color: var(--muted); font-size: 0.61rem; }
.comparison-chart strong { font-size: 0.74rem; }
.outcome-foot { display: flex; justify-content: space-around; gap: 8px; padding: 12px; border-top: 1px solid var(--line); color: var(--muted); background: #fafbf9; font-size: 0.62rem; font-weight: 700; }

.surfaces-section { background: var(--paper); }
.surfaces-intro { display: grid; grid-template-columns: 1fr 0.7fr; align-items: end; gap: 90px; margin-bottom: 58px; }
.surfaces-intro h2 { max-width: 710px; margin-bottom: 0; }
.surfaces-intro > div:last-child > p { color: var(--muted); }
.surface-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.surface-card { min-height: 265px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.surface-card:hover { border-color: #b4c7c0; box-shadow: var(--shadow-small); transform: translateY(-4px); }
.surface-name { display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 9px; margin-bottom: 48px; }
.surface-name strong { font-size: 0.76rem; }
.surface-name em { color: var(--muted); font-size: 0.57rem; font-style: normal; font-weight: 750; letter-spacing: 0.045em; text-transform: uppercase; }
.surface-icon { display: grid; width: 34px; height: 34px; border-radius: 9px; place-items: center; font-family: ui-monospace, monospace; font-size: 0.63rem; font-weight: 850; }
.slack-icon { color: #315e56; background: #dff1ec; }
.console-icon { color: #fff; background: var(--teal-dark); }
.github-icon { color: #fff; background: #1c2825; }
.datadog-icon { color: #6941a1; background: #eee5fa; }
.tracker-icon { color: #3067a9; background: #e7effa; }
.mcp-icon { color: #7a4d05; background: #fff0ce; }
.surface-card h3 { font-size: 1.25rem; }
.surface-card p { margin-bottom: 0; color: var(--muted); font-size: 0.82rem; }

.truth-section { color: #fff; background: var(--night); }
.truth-grid { display: grid; grid-template-columns: 0.88fr 1.12fr; align-items: center; gap: 80px; }
.truth-copy p:not(.eyebrow) { color: #b7c8c2; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--teal-dark); font-size: 0.9rem; font-weight: 750; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.light-link { color: var(--lime); }
.verdict-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.verdict-grid article { min-height: 220px; padding: 22px; border: 1px solid #33504a; border-radius: 14px; background: rgba(255,255,255,0.035); }
.verdict-grid h3 { margin-top: 40px; font-family: inherit; font-size: 1rem; font-weight: 750; letter-spacing: 0; }
.verdict-grid p { margin-bottom: 0; color: #a9bbb5; font-size: 0.78rem; }
.verdict-dot { display: block; width: 10px; height: 10px; border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,255,255,0.06); }
.verdict-dot.green { background: #68d597; }
.verdict-dot.red { background: #ec766d; }
.verdict-dot.amber { background: #eab65e; }

.trust-section { background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-card { min-height: 290px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); }
.trust-icon { display: grid; width: 48px; height: 48px; margin-bottom: 56px; border-radius: 12px; color: var(--teal-dark); background: var(--teal-light); place-items: center; font-family: ui-monospace, monospace; font-size: 0.72rem; font-weight: 850; }
.trust-card h3 { font-family: inherit; font-size: 1.05rem; font-weight: 750; letter-spacing: -0.02em; }
.trust-card p { margin-bottom: 0; color: var(--muted); font-size: 0.84rem; }

.difference-section { background: var(--wash); }
.difference-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; align-items: center; gap: 80px; }
.difference-copy p:not(.eyebrow) { color: var(--muted); }
.ownership-table { overflow: hidden; border: 1px solid #cbd5d0; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-small); }
.ownership-table > div { display: grid; grid-template-columns: 1fr 1fr; }
.ownership-table span { padding: 17px 20px; border-bottom: 1px solid var(--line); font-size: 0.79rem; }
.ownership-table span:first-child { border-right: 1px solid var(--line); color: var(--muted); }
.ownership-table > div:last-child span { border-bottom: 0; }
.ownership-head { color: #fff; background: var(--night); }
.ownership-head span { border-color: #39504b; color: #d5e2de !important; font-size: 0.67rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }

.audience-section { overflow: hidden; }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.audience-art { position: relative; min-height: 520px; }
.orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(8,120,111,0.25); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-one { width: 310px; height: 310px; }
.orbit-two { width: 480px; height: 480px; border-style: dashed; }
.core-mark { position: absolute; top: 50%; left: 50%; display: grid; width: 126px; height: 126px; border: 1px solid #aad0c8; border-radius: 35px; color: var(--teal-dark); background: var(--teal-light); box-shadow: 0 25px 70px rgba(8,120,111,0.16); place-items: center; transform: translate(-50%, -50%) rotate(-4deg); }
.core-mark svg { width: 74px; }
.orbit-label { position: absolute; padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; box-shadow: var(--shadow-small); font-size: 0.7rem; font-weight: 750; }
.label-one { top: 42px; left: 43%; }
.label-two { top: 47%; left: -5px; }
.label-three { top: 42%; right: -5px; }
.label-four { right: 7%; bottom: 35px; }
.audience-copy > p:not(.eyebrow) { color: var(--muted); }
.fit-list { display: grid; gap: 17px; margin-top: 30px; }
.fit-list > div { display: grid; grid-template-columns: 28px 1fr; gap: 11px; }
.fit-list > div > span { display: grid; width: 26px; height: 26px; border-radius: 50%; color: var(--teal-dark); background: var(--teal-light); place-items: center; font-size: 0.75rem; font-weight: 800; }
.fit-list p,
.fit-list strong,
.fit-list small { display: block; margin: 0; }
.fit-list strong { font-size: 0.88rem; }
.fit-list small { margin-top: 2px; color: var(--muted); font-size: 0.76rem; }

.pilot-section { color: #fff; background: linear-gradient(135deg, #10211e, #183b34); }
.pilot-shell { display: grid; grid-template-columns: 1fr 0.82fr; align-items: center; gap: 110px; }
.pilot-copy > p:not(.eyebrow) { color: #b9cac4; }
.pilot-copy ul { display: grid; gap: 9px; margin: 28px 0 0; padding-left: 20px; color: #d3e0dc; font-size: 0.87rem; }
.pilot-form { padding: 28px; border: 1px solid #36574f; border-radius: var(--radius); background: rgba(255,255,255,0.055); box-shadow: 0 30px 80px rgba(0,0,0,0.18); }
.form-head { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; margin-bottom: 22px; padding-bottom: 15px; border-bottom: 1px solid #36574f; }
.form-head span { font-weight: 750; }
.form-head small { color: #9fb4ad; font-size: 0.66rem; }
.pilot-form label { display: block; margin: 13px 0 5px; color: #d8e4e0; font-size: 0.7rem; font-weight: 700; }
.pilot-form input,
.pilot-form textarea { width: 100%; border: 1px solid #47645e; border-radius: 8px; color: #fff; background: rgba(4,19,16,0.38); }
.pilot-form input { height: 44px; padding: 8px 11px; }
.pilot-form textarea { resize: vertical; padding: 10px 11px; }
.pilot-form input:focus,
.pilot-form textarea:focus { border-color: var(--lime); outline: none; box-shadow: 0 0 0 3px rgba(200,245,107,0.14); }
.pilot-form .button { margin-top: 20px; border: 0; }
.form-note { margin: 9px 0 0; color: #91a9a1; font-size: 0.65rem; text-align: center; }
.form-note.error { color: #ffc7c1; }

.faq-section { background: var(--cream); }
.faq-shell { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 100px; }
.faq-list { border-top: 1px solid #c8d0cc; }
.faq-list details { border-bottom: 1px solid #c8d0cc; }
.faq-list summary { position: relative; padding: 24px 45px 24px 0; cursor: pointer; font-weight: 750; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 22px; right: 5px; color: var(--teal-dark); content: "+"; font-size: 1.4rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list details p { max-width: 680px; margin: -5px 0 24px; color: var(--muted); font-size: 0.88rem; }

.site-footer { padding: 58px 0; color: #b4c4bf; background: #0b1715; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 35px; }
.footer-brand { color: #fff; }
.footer-brand .brand-mark { color: var(--lime); background: #19302b; }
.footer-grid > div:first-child p { margin: 10px 0 0; font-size: 0.78rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 25px; }
.footer-links a { color: #cfdbd7; font-size: 0.74rem; text-decoration: none; }
.footer-links a:hover { color: var(--lime); }
.footer-note { grid-column: 1 / -1; margin: 35px 0 0; padding-top: 23px; border-top: 1px solid #243632; color: #718680; font-size: 0.68rem; }

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 650ms ease, transform 650ms ease; }
.js .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .site-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero-product { width: min(720px, 95%); margin-inline: auto; }
  .product-window { transform: none; }
  .step { gap: 45px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .surface-grid { grid-template-columns: repeat(2, 1fr); }
  .pilot-shell { gap: 65px; }
}

@media (max-width: 860px) {
  .js .site-nav {
    position: fixed;
    z-index: 90;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - 78px);
    align-content: start;
    align-items: stretch;
    padding: 28px 24px;
    background: var(--paper);
  }
  .js .site-nav.open { display: grid; gap: 0; }
  .site-nav a { padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .site-nav .nav-cta { margin-top: 20px; border: 0; border-radius: 10px; color: #fff; background: var(--teal-dark); text-align: center; }
  .menu-button { display: grid; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 8px; background: transparent; place-content: center; gap: 5px; }
  .menu-button span:not(.sr-only) { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform 150ms ease, opacity 150ms ease; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .loop { flex-wrap: wrap; justify-content: center; padding-block: 22px; }
  .loop i { width: 22px; }
  .step,
  .truth-grid,
  .difference-grid,
  .audience-grid,
  .pilot-shell,
  .faq-shell,
  .surfaces-intro,
  .coverage-layout { grid-template-columns: 1fr; }
  .step { gap: 42px; }
  .step-reverse .step-copy,
  .step-reverse .step-visual { order: initial; }
  .truth-grid,
  .difference-grid,
  .audience-grid,
  .pilot-shell,
  .faq-shell { gap: 55px; }
  .surfaces-intro { align-items: start; gap: 22px; }
  .coverage-layout { gap: 50px; }
  .verdict-grid { max-width: 680px; }
  .difference-copy { max-width: 680px; }
  .audience-art { min-height: 440px; }
  .audience-copy { max-width: 680px; }
  .pilot-form { max-width: 620px; }
  html:not(.js) .header-inner { flex-wrap: wrap; padding-bottom: 13px; }
  html:not(.js) .menu-button { display: none; }
  html:not(.js) .site-nav { width: 100%; flex-wrap: wrap; gap: 8px 22px; }
  html:not(.js) .site-nav .nav-cta { margin: 0; padding: 0; border: 0; color: var(--teal-dark); background: transparent; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .header-inner { min-height: 68px; }
  .js .site-nav { top: 68px; height: calc(100vh - 68px); }
  .brand small { display: none; }
  .hero { padding: 126px 0 74px; }
  h1 { font-size: clamp(3.15rem, 15vw, 4.6rem); }
  h2 { font-size: clamp(2.15rem, 11vw, 3.2rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .trust-list { display: grid; gap: 9px; }
  .hero-product { width: 100%; }
  .window-bar { align-items: flex-start; }
  .window-env { max-width: 150px; text-align: right; }
  .initiative-head { display: grid; }
  .evidence-row { grid-template-columns: 1fr 1fr; }
  .metric-card:nth-child(2) { border-right: 0; }
  .metric-chart { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .outcome-contract { grid-template-columns: 1fr; }
  .floating-proof { position: relative; right: auto; bottom: auto; width: calc(100% - 24px); margin: 12px; }
  .loop { align-items: flex-start; flex-direction: column; padding: 25px 16px; }
  .loop i { width: 1px; height: 18px; margin-left: 4px; }
  .loop i::after { top: auto; right: -3px; bottom: 0; transform: rotate(135deg); }
  .section { padding: 82px 0; }
  .section-intro { margin-bottom: 40px; }
  .problem-grid,
  .trust-grid,
  .verdict-grid,
  .surface-grid { grid-template-columns: 1fr; }
  .problem-card,
  .trust-card { min-height: 0; }
  .card-number,
  .trust-icon { margin-bottom: 34px; }
  .coverage-proof { grid-template-columns: 1fr; }
  .coverage-proof > div { min-height: 0; border-right: 0; border-bottom: 1px solid #35504a; }
  .coverage-proof > div:last-child { border-bottom: 0; }
  .coverage-mode { padding: 22px; }
  .steps { gap: 76px; }
  .step { grid-template-columns: minmax(0, 1fr); }
  .source-card { grid-template-columns: 40px 1fr; }
  .source-card em { grid-column: 2; justify-self: start; }
  .source-primary { transform: none; }
  .plan-strategy { justify-content: flex-start; overflow-x: auto; }
  .plan-strategy span { flex: none; }
  .plan-strategy i { flex: 0 0 16px; }
  .plan-row { grid-template-columns: 27px 1fr; }
  .plan-row em { grid-column: 2; justify-self: start; }
  .ambient-decision { grid-template-columns: 1fr; }
  .ambient-decision > span,
  .ambient-button { justify-self: start; }
  .surface-card { min-height: 0; }
  .surface-name { margin-bottom: 34px; }
  .pr-head { grid-template-columns: 32px 1fr; }
  .pr-head .status { grid-column: 2; justify-self: start; }
  .pr-footer,
  .outcome-foot { flex-direction: column; align-items: flex-start; padding-left: 20px; }
  .comparison-chart { gap: 8px; padding-inline: 12px; }
  .verdict-grid article { min-height: 180px; }
  .verdict-grid h3 { margin-top: 25px; }
  .ownership-table span { padding: 13px 11px; font-size: 0.68rem; }
  .audience-art { min-height: 340px; transform: scale(0.82); margin: -30px; }
  .pilot-form { padding: 21px; }
  .form-head { align-items: flex-start; flex-direction: column; gap: 3px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

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