:root {
  --navy: #0b2947;
  --navy-2: #103756;
  --navy-3: #061a2c;
  --blue: #2d6f9e;
  --cyan: #62d2c9;
  --ice: #eaf5f5;
  --paper: #f7f7f3;
  --white: #ffffff;
  --ink: #122337;
  --muted: #647284;
  --line: #d8e0e5;
  --amber: #a86916;
  --amber-soft: #f5ead6;
  --green: #2f7664;
  --green-soft: #e7f1ed;
  --ease: cubic-bezier(.2,.8,.2,1);
  --font-manrope: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI";
  --font-plex: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono";
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-manrope), Arial, sans-serif; }
body.admin-bar .site-header { top: 32px; }
body.aegi-shield-site main { min-height: 50vh; }
body.aegi-shield-site img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
em { font-style: normal; color: var(--blue); }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: 12px; transform: translateY(-150%); background: var(--navy); color: white; padding: 12px 16px; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(247,247,243,.94); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(11,41,71,.1); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: 165px; }
.brand img { display: block; width: 106px; height: auto; }
.brand span { font: 600 10px/1 var(--font-plex), monospace; letter-spacing: .22em; color: var(--blue); padding-left: 13px; border-left: 1px solid var(--line); }
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 21px; font-size: 12px; font-weight: 680; white-space: nowrap; }
.nav-links > a:not(.nav-cta) { position: relative; }
.nav-links > a:not(.nav-cta)::after { content: ""; position: absolute; height: 1px; left: 0; right: 100%; bottom: -8px; background: var(--blue); transition: right 200ms var(--ease); }
.nav-links > a:hover::after, .nav-links > a.active::after { right: 0; }
.nav-links > a.active { color: var(--blue); }
.nav-cta, .button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; transition: transform 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease); }
.nav-cta { margin-left: 4px; background: var(--navy); color: white; padding: 14px 17px; }
.nav-cta:hover, .button.primary:hover { background: var(--blue); transform: translateY(-2px); }
.menu-button { display: none; border: 0; background: transparent; padding: 10px; }
.menu-button span { display: block; width: 24px; height: 1px; margin: 6px 0; background: var(--navy); }

.eyebrow { margin: 0 0 27px; color: var(--blue); font: 600 10px/1.55 var(--font-plex), monospace; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow i { display: inline-block; width: 24px; height: 1px; background: var(--cyan); vertical-align: middle; margin-right: 10px; }
.hero { min-height: 695px; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 80px; padding-top: 68px; padding-bottom: 74px; }
.hero h1, .section-heading h2, .page-hero h1, .core-band h2, .team-teaser h2, .contact-strip h2, .split-panel h2, .contact-cta h2 { color: var(--navy); letter-spacing: -.055em; margin: 0; font-weight: 650; }
.hero h1 { max-width: 660px; font-size: clamp(48px, 5.45vw, 76px); line-height: 1.04; }
.hero-sub { margin: 30px 0 14px; max-width: 650px; font-size: 22px; line-height: 1.45; font-weight: 620; color: var(--navy); }
.hero-body { max-width: 620px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 34px; }
.button { min-height: 54px; padding: 0 23px; font-size: 12px; font-weight: 720; border: 1px solid transparent; }
.button.primary { background: var(--navy); color: white; }
.button.secondary { border-color: var(--navy); color: var(--navy); }
.button.secondary:hover { background: var(--navy); color: white; transform: translateY(-2px); }
.text-link { display: inline-flex; align-items: center; gap: 14px; font-size: 12px; font-weight: 720; border-bottom: 1px solid var(--line); padding-bottom: 6px; }
.center { text-align: center; margin-top: 44px; }

.hero-system { position: relative; color: white; background: linear-gradient(145deg, #0c2945, #071d31); box-shadow: 0 35px 80px rgba(11,41,71,.21); padding: 20px 24px; min-height: 530px; overflow: hidden; }
.hero-system::before { content: ""; position: absolute; width: 330px; height: 330px; right: -135px; top: -135px; border: 1px solid rgba(98,210,201,.18); border-radius: 50%; box-shadow: 0 0 90px rgba(98,210,201,.1); animation: ambient 14s var(--ease) infinite alternate; }
@keyframes ambient { from { transform: translate3d(-8px,-6px,0) scale(.98); opacity: .45; } to { transform: translate3d(18px,14px,0) scale(1.05); opacity: .8; } }
.system-topline, .system-foot { position: relative; display: flex; justify-content: space-between; align-items: center; font: 500 8px/1 var(--font-plex), monospace; letter-spacing: .14em; color: #8aa7bb; }
.system-topline span:last-child { color: var(--cyan); }
.signal-row { display: grid; grid-template-columns: 1fr 50px 1fr; align-items: center; gap: 10px; margin-top: 40px; }
.signal-row > div { position: relative; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.035); padding: 17px; min-height: 82px; display: flex; flex-direction: column; justify-content: center; }
.signal-row small, .context-node small, .recommendation small { font: 500 8px/1.4 var(--font-plex), monospace; color: #7e9bb0; letter-spacing: .13em; }
.signal-row strong, .recommendation strong { font-size: 12px; margin-top: 6px; }
.signal-row b { position: absolute; right: 14px; top: 19px; color: var(--cyan); font: 500 25px/1 var(--font-plex), monospace; opacity: .7; }
.flow-line { height: 1px; background: linear-gradient(90deg, rgba(98,210,201,.2), var(--cyan), rgba(98,210,201,.2)); }
.context-node { width: 290px; margin: 42px auto 30px; border: 1px solid rgba(98,210,201,.36); background: rgba(36,105,129,.16); min-height: 155px; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; }
.context-node::before, .context-node::after { content: ""; position: absolute; width: 1px; height: 43px; top: -43px; background: linear-gradient(rgba(98,210,201,0), var(--cyan)); }
.context-node::after { top: auto; bottom: -31px; height: 31px; background: var(--cyan); opacity: .5; }
.context-node strong { font-size: 16px; margin-top: 7px; }
.orbit { width: 68px; height: 42px; margin-top: 15px; border: 1px solid rgba(98,210,201,.4); border-radius: 50%; position: relative; display: grid; place-items: center; }
.orbit span { color: var(--cyan); font: 400 18px/1 var(--font-plex), monospace; }
.orbit i { position: absolute; width: 5px; height: 5px; background: var(--cyan); border-radius: 50%; }
.orbit i:nth-child(1) { top: -3px; left: 30px; }.orbit i:nth-child(2) { bottom: -3px; right: 20px; }.orbit i:nth-child(3) { left: -3px; top: 18px; }.orbit i:nth-child(4) { right: -3px; top: 18px; }
.recommendation { display: grid; grid-template-columns: 1fr 34px 1fr; gap: 8px; align-items: center; }
.recommendation > div { border: 1px solid rgba(255,255,255,.12); padding: 15px 16px; display: flex; flex-direction: column; }
.recommendation > span { text-align: center; color: var(--cyan); font-size: 23px; }
.recommendation .authority { border-color: rgba(98,210,201,.46); }
.system-foot { margin-top: 33px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.09); }
.system-foot i { display: inline-block; width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; margin-right: 8px; box-shadow: 0 0 12px var(--cyan); }

.authority-band { background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.authority-grid { min-height: 105px; display: grid; grid-template-columns: repeat(3,1fr); align-items: center; }
.authority-grid p { margin: 0; padding: 12px 34px; font-size: 16px; color: var(--muted); border-right: 1px solid var(--line); }
.authority-grid p:first-child { padding-left: 0; }.authority-grid p:last-child { border: 0; }
.authority-grid strong { color: var(--navy); }

.section { padding-top: 120px; padding-bottom: 120px; }
.two-col-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 90px; margin-bottom: 65px; }
.section-heading h2 { font-size: clamp(38px, 4.1vw, 58px); line-height: 1.08; }
.section-heading > p, .two-col-heading > p { font-size: 14px; line-height: 1.8; color: var(--muted); margin: 0 0 6px; max-width: 490px; }
.loop-visual { display: grid; grid-template-columns: 1fr .72fr 1fr; align-items: stretch; background: white; border: 1px solid var(--line); }
.loop-card, .bounded-context { min-height: 220px; padding: 34px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.loop-card:first-child::after, .bounded-context::after { content: ""; position: absolute; width: 38px; height: 1px; background: var(--cyan); right: -19px; top: 50%; z-index: 2; }
.loop-card span, .bounded-context span, .value-card span, .start-small span, .contact-strip span, .split-panel span, .integration-note span, .product-status-note span, .core-statement span, .quality-grid span, .mental-model-grid span, .metric-grid span, .interpretation span, .evidence-separation span, .boundary-list span, .decision-gates span, .contact-cta span, .contact-options span, .guidance-grid span, .responsibility-grid span, .evaluation-exchange span, .evaluation-safety-note span, .evidence-maturity-grid span { color: var(--blue); font: 600 9px/1.45 var(--font-plex), monospace; letter-spacing: .13em; text-transform: uppercase; }
.loop-card strong, .bounded-context strong { margin: 25px 0 8px; color: var(--navy); font-size: 20px; }
.loop-card small, .bounded-context small { color: var(--muted); line-height: 1.6; }
.bounded-context { background: var(--navy); text-align: center; }.bounded-context span { color: var(--cyan); }.bounded-context strong { color: white; }.bounded-context small { color: #9eb2c2; }

.value-section { background: white; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.value-card { min-height: 315px; padding: 34px 30px; border-right: 1px solid var(--line); position: relative; }
.value-card:last-child { border: 0; }.value-card h3 { color: var(--navy); margin: 55px 0 18px; font-size: 21px; line-height: 1.4; }.value-card p { color: var(--muted); font-size: 13px; line-height: 1.75; }
.value-card.accent { background: var(--ice); }.value-card.accent::before { content: ""; position: absolute; left: -1px; right: -1px; top: -5px; height: 5px; background: var(--cyan); }
.start-small { display: grid; grid-template-columns: .3fr 1fr; gap: 35px; align-items: center; border: 1px solid #cfe0e0; border-top: 0; background: var(--ice); padding: 24px 30px; }.start-small p { margin: 0; font-size: 13px; color: var(--muted); }

.dark-section { background: var(--navy-3); color: white; }
.light-heading .eyebrow { color: var(--cyan); }.light-heading h2 { color: white; }.light-heading h2 em { color: var(--cyan); }.light-heading > p { color: #9ab0c1; }
.path-teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.14); }
.path-teaser { min-height: 310px; padding: 32px; border-right: 1px solid rgba(255,255,255,.14); }.path-teaser:last-child { border: 0; }
.path-teaser > span { color: var(--cyan); font: 600 9px/1 var(--font-plex), monospace; }.path-teaser h3 { margin: 62px 0 18px; font-size: 24px; }.path-teaser p { color: #97adbe; line-height: 1.75; font-size: 13px; }
.invariant-strip { display: grid; grid-template-columns: 1fr 1fr auto; border: 1px solid rgba(98,210,201,.35); border-top: 0; }
.invariant-strip > * { margin: 0; padding: 25px 28px; border-right: 1px solid rgba(98,210,201,.24); font-size: 12px; }.invariant-strip > *:last-child { border: 0; }.invariant-strip a { color: var(--cyan); font-weight: 700; display: flex; gap: 14px; align-items: center; }

.core-teaser { padding-top: 105px; padding-bottom: 105px; }
.core-band { position: relative; overflow: hidden; background: var(--ice); border: 1px solid #c9dfdf; display: grid; grid-template-columns: 1fr 1fr; gap: 85px; padding: 52px; }
.core-band::before { content: ""; position: absolute; height: 2px; left: 0; right: 0; top: 0; background: linear-gradient(90deg, transparent, var(--cyan), transparent); transform-origin: left; }
.motion-ready .core-band.is-visible::before { animation: band-reveal 900ms var(--ease) both; }
@keyframes band-reveal { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.core-band h2 { font-size: 40px; line-height: 1.12; }.core-band p { color: var(--muted); line-height: 1.8; margin: 0 0 27px; font-size: 14px; }

.proof-section { background: #f0f3f2; }
.proof-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.proof-card { background: white; border: 1px solid var(--line); padding: 31px; transition: transform 200ms var(--ease), box-shadow 200ms var(--ease); }
.proof-card:hover { transform: translateY(-2px) scale(1.005); box-shadow: 0 18px 40px rgba(11,41,71,.08); }
.proof-card > span { color: var(--blue); font: 600 9px/1 var(--font-plex), monospace; letter-spacing: .14em; text-transform: uppercase; }.proof-card h3 { min-height: 54px; margin: 34px 0 22px; color: var(--navy); font-size: 20px; line-height: 1.35; }.proof-card p { font-size: 12px; line-height: 1.65; }.proof-anchor { min-height: 60px; color: var(--ink); font-weight: 650; }.proof-boundary { color: var(--muted); border-top: 1px solid var(--line); padding-top: 17px; }.proof-card a { display: inline-flex; gap: 12px; margin-top: 12px; color: var(--blue); font-size: 11px; font-weight: 700; }
.boundary { display: grid; grid-template-columns: 52px 1fr; gap: 26px; background: white; border: 1px solid var(--line); border-left: 4px solid var(--blue); margin-top: 34px; padding: 28px; }
.boundary-icon { width: 42px; height: 42px; border: 1px solid var(--blue); display: grid; place-items: center; color: var(--blue); font: 500 18px/1 var(--font-plex), monospace; }
.boundary h3 { margin: 8px 0; font-size: 17px; }.boundary p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; max-width: 920px; }.boundary a { display: inline-flex; gap: 12px; margin-top: 18px; color: var(--blue); font-size: 11px; font-weight: 700; }

.evaluation-teaser-footer { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 30px; }.evaluation-teaser-footer p { color: var(--muted); font-size: 12px; line-height: 1.7; }
.team-teaser { background: var(--navy); color: white; padding: 90px 0; }.team-teaser-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 95px; align-items: end; }.team-teaser .eyebrow { color: var(--cyan); }.team-teaser h2 { color: white; font-size: 48px; line-height: 1.1; }.team-teaser p { color: #9bb0c1; line-height: 1.8; }.light-link { color: white; border-color: rgba(255,255,255,.2); margin-top: 18px; }
.contact-strip { background: var(--cyan); padding: 58px 0; }.contact-strip-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }.contact-strip h2 { font-size: 36px; margin-top: 9px; }.contact-strip-grid > div:last-child { display: flex; gap: 26px; align-items: center; }.contact-strip-grid > div:last-child > a:first-child { font-weight: 750; color: var(--navy); }.light-button { background: white; }

.page-hero { background: linear-gradient(140deg, #f7f7f3 55%, #eef5f4); border-bottom: 1px solid var(--line); padding: 115px 0 105px; }
.compact-page-hero { padding: 85px 0 75px; }
.compact-page-hero h1 { color: var(--navy); font-size: clamp(44px, 5vw, 68px); letter-spacing: -.05em; line-height: 1.05; margin: 0; }
.content-page { min-height: 42vh; }
.content-page > p { color: var(--muted); line-height: 1.8; }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: end; }.page-hero h1 { font-size: clamp(52px, 6vw, 82px); line-height: 1; }.page-hero-copy > p { color: var(--muted); font-size: 16px; line-height: 1.85; margin: 0 0 29px; }
.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }.scope-grid article { background: white; border: 1px solid var(--line); padding: 34px; }.scope-grid ul { list-style: none; padding: 0; margin: 32px 0 0; }.scope-grid li { padding: 16px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }.scope-grid li::before { content: "+"; color: var(--blue); margin-right: 14px; font-family: var(--font-plex); }.scope-grid article:last-child li::before { content: "×"; }
.product-status-note { display: grid; grid-template-columns: 190px 1fr; gap: 28px; align-items: center; margin: -24px 0 28px; padding: 20px 24px; border: 1px solid #cbdede; background: var(--ice); }
.product-status-note p { color: var(--muted); font-size: 12px; line-height: 1.7; margin: 0; }
.operating-model { border: 1px solid rgba(255,255,255,.15); }.operating-model article { display: grid; grid-template-columns: 150px repeat(7,auto); align-items: center; gap: 12px; padding: 25px; border-bottom: 1px solid rgba(255,255,255,.12); }.operating-model article:last-child { border: 0; }.operating-model span { color: var(--cyan); font: 600 8px/1.4 var(--font-plex), monospace; letter-spacing: .13em; }.operating-model p { margin: 0; border: 1px solid rgba(255,255,255,.12); padding: 14px; color: #d6e0e7; font-size: 11px; }.operating-model i { color: var(--cyan); font-style: normal; }.operating-model .assurance-row { background: rgba(98,210,201,.06); grid-template-columns: 150px 1.5fr auto .65fr auto 1.5fr; }
.split-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; padding: 52px; border: 1px solid #cbdede; background: var(--ice); }.split-panel h2 { font-size: 38px; line-height: 1.15; margin-top: 24px; }.split-panel p { color: var(--muted); line-height: 1.8; }.integration-note { display: grid; grid-template-columns: .3fr 1fr; gap: 40px; border: 1px solid var(--line); border-top: 0; padding: 28px 36px; }.integration-note p { color: var(--muted); margin: 0; font-size: 13px; line-height: 1.75; }
.core-statement { display: grid; grid-template-columns: 130px 1.4fr auto 150px 1fr; align-items: center; gap: 20px; background: var(--navy); color: white; padding: 34px; }.core-statement span { color: var(--cyan); }.core-statement strong { font-size: 14px; line-height: 1.6; }.core-statement i { color: var(--cyan); font-style: normal; font-size: 24px; }
.core-qualities-section { background: white; }.quality-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); }.quality-grid article { min-height: 315px; padding: 30px; border-right: 1px solid var(--line); }.quality-grid article:last-child { border: 0; }.quality-grid h3 { margin: 60px 0 16px; color: var(--navy); }.quality-grid p { color: var(--muted); font-size: 12px; line-height: 1.75; }
.mental-model-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid rgba(255,255,255,.14); }.mental-model-grid article { min-height: 280px; padding: 34px; border-right: 1px solid rgba(255,255,255,.14); }.mental-model-grid article:last-child { border: 0; }.mental-model-grid span { color: var(--cyan); }.mental-model-grid h3 { margin: 58px 0 15px; font-size: 23px; }.mental-model-grid p { color: #98aebe; font-size: 13px; line-height: 1.7; }
.nonclaim-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); }.nonclaim-grid div { display: flex; align-items: center; gap: 16px; min-height: 90px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }.nonclaim-grid div:nth-child(3n) { border-right: 0; }.nonclaim-grid div:nth-last-child(-n+3) { border-bottom: 0; }.nonclaim-grid span { color: var(--blue); font-size: 23px; }.nonclaim-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }.core-boundary { margin-top: 50px; }
.responsibility-boundary-grid div { align-items: flex-start; }
.responsibility-boundary-grid p strong { color: var(--navy); }
.security-review-note { margin: 24px 0 0; padding: 18px 22px; border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.72); font-size: 11px; line-height: 1.7; }

.metric-grid { display: grid; background: white; border: 1px solid var(--line); }.metric-grid.four { grid-template-columns: repeat(4,1fr); }.metric-grid.five { grid-template-columns: repeat(5,1fr); }.metric-grid article { min-height: 190px; padding: 29px 24px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }.metric-grid article:last-child { border: 0; }.metric-grid strong { color: var(--navy); font-size: 46px; letter-spacing: -.05em; }.metric-grid span { color: var(--muted); text-transform: none; letter-spacing: 0; font-size: 10px; }.metric-grid .metric-qualifier { display: block; margin-top: 10px; color: var(--blue); font-size: 8px; line-height: 1.55; }
.interpretation { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-top: 0; }.interpretation div { padding: 26px 30px; border-right: 1px solid var(--line); }.interpretation div:last-child { border: 0; }.interpretation p { margin: 12px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.controls-section { background: var(--ice); }.controls-section .metric-grid { border-color: #cbdede; }.controls-section .metric-grid article, .controls-section .interpretation { border-color: #cbdede; }
.evidence-separation { display: grid; grid-template-columns: 1fr auto 1fr; gap: 45px; align-items: stretch; }.evidence-separation > div:not(:nth-child(2)) { background: white; border: 1px solid var(--line); padding: 34px; }.evidence-separation > div:nth-child(2) { align-self: center; color: var(--cyan); background: var(--navy); width: 50px; height: 50px; display: grid; place-items: center; font-size: 22px; }.evidence-separation h2 { color: var(--navy); font-size: 26px; line-height: 1.3; margin: 35px 0 15px; }.evidence-separation p { color: var(--muted); font-size: 12px; line-height: 1.7; }

.benchmark-section { background: white; scroll-margin-top: 90px; }
.benchmark-intro { display: grid; grid-template-columns: 1.03fr .97fr; gap: 90px; align-items: end; margin-bottom: 56px; }
.benchmark-intro h2 { color: var(--navy); font-size: clamp(40px, 4.6vw, 62px); line-height: 1.06; letter-spacing: -.055em; margin: 0; }
.benchmark-intro > div:last-child > p { color: var(--muted); font-size: 13px; line-height: 1.8; margin: 0 0 18px; }
.benchmark-intro > div:last-child > p:last-child { margin-bottom: 0; }
.benchmark-intro .benchmark-lede { color: var(--navy); font-size: 18px; line-height: 1.55; font-weight: 650; }
.benchmark-intro .benchmark-record-name { color: var(--blue); font: 600 9px/1.5 var(--font-plex), monospace; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 14px; }
.benchmark-intro code { color: var(--navy); background: var(--amber-soft); padding: 2px 5px; font: 500 11px/1.4 var(--font-plex), monospace; }
.benchmark-design { display: grid; grid-template-columns: .9fr 1.1fr; border: 1px solid var(--line); }
.benchmark-method { background: var(--navy); color: white; padding: 38px; display: flex; flex-direction: column; }
.benchmark-method > span, .benchmark-proof span, .benchmark-boundaries span, .benchmark-next span, .maturity-path span, .benchmark-crosslink span, .benchmark-method-note span, .benchmark-trace span { color: var(--blue); font: 600 9px/1.45 var(--font-plex), monospace; letter-spacing: .13em; text-transform: uppercase; }
.benchmark-method > span { color: var(--cyan); }
.benchmark-method h3 { font-size: 27px; line-height: 1.3; margin: 48px 0 16px; }
.benchmark-method > p { color: #a4b8c7; font-size: 12px; line-height: 1.75; margin: 0; max-width: 390px; }
.benchmark-method-note { margin-top: 26px; border: 1px solid rgba(98,210,201,.24); background: rgba(98,210,201,.06); padding: 17px 18px; }
.benchmark-method-note span { color: var(--cyan); }
.benchmark-method-note p { color: #a4b8c7; font-size: 10px; line-height: 1.65; margin: 9px 0 0; }
.queue-comparison { margin-top: auto; padding-top: 40px; }
.queue-row { display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 16px; margin-top: 13px; }
.queue-row small { color: #8da8ba; font: 500 8px/1.35 var(--font-plex), monospace; letter-spacing: .08em; }
.queue-row > div { display: grid; grid-template-columns: repeat(6,1fr); gap: 5px; }
.queue-row i { display: block; height: 18px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06); }
.queue-row.shared i:nth-child(2), .queue-row.shared i:nth-child(5) { border-color: var(--cyan); background: rgba(98,210,201,.22); }
.queue-comparison > strong { display: block; color: var(--cyan); margin-top: 15px; font: 500 9px/1.5 var(--font-plex), monospace; letter-spacing: .05em; }
.benchmark-proof-grid { display: grid; grid-template-columns: 1fr 1fr; background: white; }
.benchmark-proof { position: relative; min-height: 210px; padding: 31px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.benchmark-proof:nth-child(2n) { border-right: 0; }
.benchmark-proof:nth-last-child(-n+2) { border-bottom: 0; }
.benchmark-proof::before { content: ""; position: absolute; left: -1px; right: -1px; top: -1px; height: 4px; background: var(--blue); }
.benchmark-proof.neutral { background: var(--amber-soft); }
.benchmark-proof.neutral::before { background: var(--amber); }
.benchmark-proof.positive { background: var(--green-soft); }
.benchmark-proof.positive::before { background: var(--green); }
.benchmark-proof.pass::before { background: var(--green); }
.benchmark-proof.core::before { background: var(--blue); }
.benchmark-proof strong { color: var(--navy); font: 600 clamp(18px, 2.1vw, 29px)/1.2 var(--font-plex), monospace; letter-spacing: -.035em; overflow-wrap: normal; word-break: normal; }
.benchmark-proof.neutral strong { font-size: clamp(16px, 1.55vw, 22px); white-space: nowrap; }
.benchmark-proof.positive strong { font-size: clamp(15px, 1.5vw, 21px); white-space: nowrap; }
.benchmark-proof small { color: var(--muted); font-size: 10px; line-height: 1.55; }
.benchmark-trace { display: grid; grid-template-columns: 1.05fr 1fr 1.15fr; border: 1px solid var(--line); border-top: 0; background: var(--paper); }
.benchmark-trace > div { min-height: 112px; padding: 23px 25px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; gap: 13px; }
.benchmark-trace > div:last-child { border-right: 0; }
.benchmark-trace code, .benchmark-trace strong { color: var(--navy); font: 600 11px/1.55 var(--font-plex), monospace; overflow-wrap: anywhere; }
.benchmark-trace small { color: var(--muted); font-size: 9px; line-height: 1.5; }
.benchmark-boundaries { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-top: 0; }
.benchmark-boundaries article { padding: 34px; border-right: 1px solid var(--line); }
.benchmark-boundaries article:last-child { border-right: 0; }
.benchmark-boundaries ul { list-style: none; padding: 0; margin: 26px 0 0; }
.benchmark-boundaries li { position: relative; padding: 13px 0 13px 25px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.55; }
.benchmark-boundaries li::before { content: "+"; position: absolute; left: 0; color: var(--green); font: 600 13px/1.5 var(--font-plex), monospace; }
.benchmark-boundaries .does-not li::before { content: "−"; color: var(--amber); }
.benchmark-next { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; background: var(--ice); border: 1px solid #cbdede; border-top: 0; padding: 38px; }
.benchmark-next h3 { color: var(--navy); font-size: 25px; line-height: 1.35; margin: 22px 0 0; }
.benchmark-next p { color: var(--muted); font-size: 12px; line-height: 1.75; margin: 0 0 22px; }
.benchmark-source { display: grid; grid-template-columns: 160px 1fr; gap: 28px; border: 1px solid var(--line); border-top: 0; padding: 24px 30px; background: var(--paper); }
.benchmark-source strong { color: var(--navy); font: 600 9px/1.45 var(--font-plex), monospace; letter-spacing: .11em; text-transform: uppercase; }
.benchmark-source p { color: var(--muted); font-size: 10px; line-height: 1.7; margin: 0; overflow-wrap: anywhere; }
.benchmark-source code { color: var(--navy); background: white; padding: 1px 4px; font: 500 9px/1.5 var(--font-plex), monospace; }
.benchmark-source a { color: var(--blue); border-bottom: 1px solid rgba(45,111,158,.35); }
.evidence-maturity-section { background: #f0f3f2; }
.evidence-maturity-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); background: white; }
.evidence-maturity-grid article { min-height: 350px; padding: 31px; border-right: 1px solid var(--line); }
.evidence-maturity-grid article:last-child { border-right: 0; background: var(--ice); }
.evidence-maturity-grid h3 { color: var(--navy); font-size: 21px; line-height: 1.4; margin: 48px 0 23px; }
.evidence-maturity-grid ul { list-style: none; padding: 0; margin: 0; }
.evidence-maturity-grid li { position: relative; color: var(--muted); font-size: 11px; line-height: 1.65; padding: 13px 0 13px 20px; border-top: 1px solid var(--line); }
.evidence-maturity-grid li::before { content: "+"; position: absolute; left: 0; color: var(--blue); font-family: var(--font-plex); }
.evidence-track-boundary { color: var(--navy); font-size: 12px; line-height: 1.7; font-weight: 650; margin: 0; padding: 22px 28px; border: 1px solid #cbdede; border-top: 0; background: var(--ice); }

.responsibility-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); background: white; }
.responsibility-grid article { min-height: 345px; padding: 31px; border-right: 1px solid var(--line); position: relative; }
.responsibility-grid article:last-child { border-right: 0; }
.responsibility-grid article.aegi-role { background: var(--ice); }
.responsibility-grid article.aegi-role::before { content: ""; position: absolute; left: -1px; right: -1px; top: -1px; height: 4px; background: var(--cyan); }
.responsibility-grid h3 { color: var(--navy); font-size: 21px; line-height: 1.35; margin: 48px 0 22px; }
.responsibility-grid ul, .evaluation-exchange ul { list-style: none; padding: 0; margin: 0; }
.responsibility-grid li, .evaluation-exchange li { color: var(--muted); font-size: 12px; line-height: 1.6; padding: 12px 0 12px 20px; border-top: 1px solid var(--line); position: relative; }
.responsibility-grid li::before, .evaluation-exchange li::before { content: "+"; position: absolute; left: 0; color: var(--blue); font-family: var(--font-plex); }
.responsibility-grid article:last-child li::before { content: "→"; }
.evaluation-purpose { color: var(--navy); font-size: 13px; line-height: 1.75; font-weight: 650; border: 1px solid var(--line); border-top: 0; background: var(--paper); margin: 0; padding: 22px 28px; }
.evaluation-path-section { background: #f0f3f2; }
.evaluation-grid { display: grid; grid-template-columns: repeat(4,1fr); position: relative; }.evaluation-grid::before { content: ""; position: absolute; top: 18px; left: 12%; right: 12%; height: 1px; background: var(--line); }.evaluation-grid article { padding: 0 25px 28px; position: relative; }.evaluation-grid article > span { position: relative; display: grid; place-items: center; width: 37px; height: 37px; background: var(--navy); color: var(--cyan); margin-bottom: 30px; font: 600 9px/1 var(--font-plex), monospace; }.evaluation-grid h3 { font-size: 22px; margin: 0 0 12px; color: var(--navy); }.evaluation-grid p { color: var(--muted); font-size: 11px; line-height: 1.65; }.evaluation-step-pair { display: block; min-height: 42px; color: var(--blue); font: 600 9px/1.5 var(--font-plex), monospace; letter-spacing: .02em; text-transform: uppercase; }.evaluation-step-details { margin-top: 18px; border-top: 1px solid var(--line); }.evaluation-step-details p { margin: 0; padding: 13px 0; border-bottom: 1px solid var(--line); }.evaluation-step-details b { color: var(--navy); }.evaluation-exchange { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); background: white; }.evaluation-exchange article { padding: 34px; border-right: 1px solid var(--line); }.evaluation-exchange article:last-child { border-right: 0; background: var(--ice); }.evaluation-exchange h3 { color: var(--navy); font-size: 23px; line-height: 1.4; margin: 42px 0 25px; }.evaluation-safety-note { display: grid; grid-template-columns: 190px 1fr; gap: 28px; border: 1px solid var(--line); border-top: 0; padding: 22px 28px; background: var(--paper); }.evaluation-safety-note p, .evaluation-output-boundary { color: var(--muted); font-size: 11px; line-height: 1.7; margin: 0; }.evaluation-output-boundary { border: 1px solid #cbdede; border-top: 0; background: var(--ice); padding: 22px 28px; }.boundary-list { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(255,255,255,.14); }.boundary-list div { min-height: 215px; padding: 28px; border-right: 1px solid rgba(255,255,255,.14); }.boundary-list div:last-child { border: 0; }.boundary-list span { color: var(--cyan); }.boundary-list p { margin: 48px 0 0; line-height: 1.65; font-size: 12px; }
.decision-gates { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); }.decision-gates article { min-height: 250px; padding: 30px; border-right: 1px solid var(--line); }.decision-gates article:last-child { border: 0; }.decision-gates h3 { color: var(--navy); margin: 55px 0 12px; }.decision-gates p { color: var(--muted); font-size: 12px; line-height: 1.7; }.contact-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; background: var(--ice); border: 1px solid #cbdede; margin-top: 50px; padding: 48px; }.contact-cta h2 { font-size: 36px; margin-top: 20px; }.contact-cta p { color: var(--muted); margin: 0 0 26px; }

.benchmark-crosslink { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; margin-top: 52px; padding: 42px; border: 1px solid #cbdede; background: var(--ice); }
.benchmark-crosslink h2 { color: var(--navy); font-size: 30px; line-height: 1.28; letter-spacing: -.04em; margin: 22px 0 0; }
.benchmark-crosslink p { color: var(--muted); font-size: 12px; line-height: 1.75; margin: 0 0 24px; }
.maturity-section { background: #f0f3f2; }
.maturity-path { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); background: white; }
.maturity-path article { min-height: 285px; padding: 28px; border-right: 1px solid var(--line); }
.maturity-path article:last-child { border-right: 0; }
.maturity-path article > div { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.maturity-path article > div > strong { display: inline-block; color: var(--navy); background: var(--ice); border: 1px solid #cbdede; padding: 7px 9px; font: 600 8px/1.4 var(--font-plex), monospace; letter-spacing: .04em; text-transform: uppercase; }
.maturity-path article:nth-child(2) > div > strong { color: var(--green); background: var(--green-soft); border-color: #c4ded5; }
.maturity-path h3 { color: var(--navy); font-size: 19px; line-height: 1.4; margin: 45px 0 13px; }
.maturity-path p { color: var(--muted); font-size: 11px; line-height: 1.7; margin: 0; }

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }.team-card { background: white; border: 1px solid var(--line); overflow: hidden; transition: transform 200ms var(--ease); }.team-card:hover { transform: translateY(-2px); }.portrait { height: 200px; background: linear-gradient(145deg, var(--navy), #164a6b); display: grid; place-items: center; position: relative; overflow: hidden; }.portrait::before, .portrait::after { content: ""; position: absolute; border: 1px solid rgba(98,210,201,.16); width: 190px; height: 190px; border-radius: 50%; }.portrait::after { width: 105px; height: 105px; }.portrait span { position: relative; z-index: 2; font-size: 42px; font-weight: 350; color: white; }.portrait i { position: absolute; width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; bottom: 32px; right: 32px; box-shadow: 0 0 18px var(--cyan); }.member-body { padding: 28px; }.member-body h3 { font-size: 20px; margin: 0 0 10px; color: var(--navy); }.member-body h4 { font-size: 11px; line-height: 1.55; color: var(--blue); margin: 0 0 22px; min-height: 54px; }.member-body p { color: var(--muted); font-size: 11px; line-height: 1.75; }.team-model { margin-top: 20px; background: var(--ice); border: 1px solid #cce0e0; padding: 26px 30px; display: grid; grid-template-columns: .32fr 1fr; gap: 50px; align-items: center; }.team-model p { color: var(--muted); font-size: 12px; line-height: 1.7; }

.contact-options { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }.contact-options > a { display: flex; justify-content: space-between; align-items: center; min-height: 190px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 200ms var(--ease), transform 200ms var(--ease); }.contact-options > a:nth-child(2n) { border-right: 0; }.contact-options > a:nth-last-child(-n+2) { border-bottom: 0; }.contact-options > a:hover { background: var(--ice); transform: translateY(-2px); }.contact-options h3 { color: var(--navy); margin: 28px 0 10px; }.contact-options p { color: var(--muted); font-size: 12px; }.contact-options > a > span { color: var(--blue); font-size: 20px; }
.contact-guidance { background: var(--navy); }.guidance-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,.14); }.guidance-grid article { padding: 38px; border-right: 1px solid rgba(255,255,255,.14); }.guidance-grid article:last-child { border: 0; }.guidance-grid span { color: var(--cyan); }.guidance-grid h3 { color: white; margin: 45px 0 15px; }.guidance-grid p { color: #a2b5c3; font-size: 13px; line-height: 1.7; }.guidance-grid small { color: #718da2; line-height: 1.6; }

.hero-qualifier, .section-boundary, .card-qualifier, .privacy-boundary { color: var(--muted); font-size: 11px; line-height: 1.7; }
.hero-qualifier { max-width: 620px; margin-top: 19px; }
.section-boundary { border: 1px solid var(--line); border-top: 0; margin: 0; padding: 18px 24px; background: var(--paper); }
.buyer-reason-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(255,255,255,.14); }
.buyer-reason-grid article { min-height: 275px; padding: 29px; border-right: 1px solid rgba(255,255,255,.14); }
.buyer-reason-grid article:last-child { border-right: 0; }
.buyer-reason-grid span { color: var(--cyan); }
.buyer-reason-grid h3 { margin: 52px 0 15px; color: white; font-size: 20px; }
.buyer-reason-grid p { color: #9fb2c0; font-size: 12px; line-height: 1.7; }
.home-evidence-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); background: white; }
.home-evidence-card { min-height: 520px; padding: 31px; border-right: 1px solid var(--line); position: relative; }
.home-evidence-card:last-child { border-right: 0; background: var(--ice); }
.home-evidence-card::before { content: ""; position: absolute; left: -1px; right: -1px; top: -1px; height: 4px; background: var(--blue); }
.home-evidence-card.empirical::before { background: var(--green); }.home-evidence-card.required::before { background: var(--amber); }
.home-evidence-card > strong { display: block; color: var(--navy); font: 600 12px/1.5 var(--font-plex), monospace; margin-top: 18px; }
.home-evidence-card h3 { color: var(--navy); font-size: 22px; line-height: 1.35; margin: 40px 0 17px; }
.home-evidence-card p, .home-evidence-card dd, .home-evidence-card li { color: var(--muted); font-size: 11px; line-height: 1.7; }
.home-evidence-card dl { margin: 24px 0; }.home-evidence-card dl div { border-top: 1px solid var(--line); padding: 13px 0; }.home-evidence-card dt { color: var(--navy); font-size: 9px; font-weight: 650; text-transform: uppercase; }.home-evidence-card dd { margin: 5px 0 0; }
.home-evidence-card ul { list-style: none; padding: 0; margin: 22px 0; }.home-evidence-card li { border-top: 1px solid var(--line); padding: 9px 0; }.home-evidence-card a { color: var(--blue); font-size: 11px; font-weight: 650; }
.measurement-grid, .trust-grid, .privacy-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); background: white; }.measurement-grid article, .trust-grid article, .privacy-grid article { min-height: 260px; padding: 29px; border-right: 1px solid var(--line); }.measurement-grid article:last-child, .privacy-grid article:last-child, .trust-grid article:last-child { border-right: 0; }.measurement-grid p, .trust-grid p, .privacy-grid p { color: var(--muted); font-size: 12px; line-height: 1.75; margin-top: 48px; }.trust-grid { grid-template-columns: repeat(5,1fr); }.trust-grid h3 { margin: 45px 0 0; font-size: 19px; line-height: 1.35; }.privacy-grid h2 { color: var(--navy); margin: 42px 0 0; font-size: 21px; line-height: 1.35; }.privacy-boundary { border: 1px solid #cbdede; border-top: 0; background: var(--ice); margin: 0; padding: 22px 28px; }
.contact-form { max-width: 900px; border: 1px solid var(--line); background: white; padding: 36px; }.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }.contact-form label { display: block; margin-bottom: 23px; }.contact-form label > span { display: block; color: var(--navy); font-size: 10px; font-weight: 650; margin-bottom: 9px; }.contact-form input[type="text"], .contact-form input[type="email"], .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); background: var(--paper); color: var(--navy); padding: 13px 14px; font: inherit; }.contact-form textarea { resize: vertical; }.contact-form input:focus-visible, .contact-form select:focus-visible, .contact-form textarea:focus-visible { outline: 3px solid rgba(45,111,158,.22); border-color: var(--blue); }.contact-form .consent { display: flex; gap: 12px; align-items: flex-start; }.contact-form .consent input { margin-top: 3px; }.contact-form .consent span { color: var(--muted); font-weight: 400; line-height: 1.65; }.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }.form-safety { border: 1px solid #cbdede; background: var(--ice); padding: 20px 23px; margin: 0 0 24px; }.form-safety p { color: var(--muted); font-size: 11px; line-height: 1.7; margin: 8px 0 0; }.form-status { max-width: 900px; margin: 0 0 20px; padding: 17px 20px; border: 1px solid var(--line); font-size: 12px; }.form-status.success { background: var(--green-soft); border-color: #c4ded5; }.form-status.error { background: var(--amber-soft); border-color: #e4d2a5; }.contact-fallback { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; border: 1px solid #cbdede; background: var(--ice); padding: 36px; margin-bottom: 18px; }.contact-fallback h2 { color: var(--navy); margin: 18px 0 10px; }.contact-fallback p { color: var(--muted); font-size: 12px; line-height: 1.7; margin: 0; }

/* Bounded evaluation questions and readable public intake. */
.evaluation-question-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--line); background: white; }
.evaluation-question-grid article { padding: 30px; border-right: 1px solid var(--line); }
.evaluation-question-grid article:last-child { border-right: 0; }
.evaluation-question-grid article > span { color: var(--blue); font: 500 11px/1.5 var(--font-plex), monospace; letter-spacing: .06em; }
.evaluation-question-grid h3 { color: var(--navy); font-size: 23px; line-height: 1.35; margin: 28px 0 18px; }
.evaluation-question-grid p { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0; }
.contact-form label > span, .contact-form .field-hint { font-size: 14px; line-height: 1.65; }
.contact-form .field-hint { display: block; color: var(--muted); margin-top: 10px; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form select, .contact-form textarea { font-size: 16px; }
#enquiry .form-safety p, #enquiry .form-status, .contact-fallback p, .form-email-option { font-size: 16px; line-height: 1.7; }
.form-email-option { color: var(--muted); margin: 20px 0 0; }
.form-email-option a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 820px) {
  .evaluation-question-grid { grid-template-columns: 1fr; }
  .evaluation-question-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .evaluation-question-grid article:last-child { border-bottom: 0; }
}
@media (max-width: 560px) {
  .contact-form, .contact-fallback, .evaluation-question-grid article { padding: 24px; }
  .contact-fallback .button { width: 100%; white-space: normal; text-align: center; }
}

footer { background: #04131f; color: white; padding: 50px 0 24px; }
footer .brand img { filter: brightness(0) invert(1); opacity: .92; }
.footer-grid { display: grid; grid-template-columns: .4fr .9fr .7fr; gap: 50px; align-items: center; }.footer-grid > p { color: #8099ad; font-size: 12px; line-height: 1.7; max-width: 430px; }.footer-grid > div { display: flex; justify-content: flex-end; gap: 22px; font-size: 11px; }
.legal { display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.09); margin-top: 35px; padding-top: 20px; color: #60798d; font: 400 8px/1.5 var(--font-plex), monospace; letter-spacing: .04em; }

/* Static-first semantic motion. Without JavaScript, content remains fully visible. */
.motion-ready [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 400ms var(--ease), transform 400ms var(--ease); transition-delay: var(--reveal-delay, 0ms); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: none; }
.delay-1 { --reveal-delay: 50ms; }.delay-2 { --reveal-delay: 110ms; }.delay-3 { --reveal-delay: 170ms; }.delay-4 { --reveal-delay: 230ms; }

@media (max-width: 1080px) {
  .nav-links { gap: 15px; font-size: 11px; }.nav-cta { display: none; }
  .hero { gap: 45px; }.page-hero-grid { gap: 60px; }
  .operating-model article, .operating-model .assurance-row { grid-template-columns: 130px 1fr; }.operating-model i { display: none; }
  .quality-grid { grid-template-columns: 1fr 1fr; }.quality-grid article:nth-child(2) { border-right: 0; }.quality-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .metric-grid.five { grid-template-columns: repeat(3,1fr); }.metric-grid.five article { border-bottom: 1px solid var(--line); }.metric-grid.five article:nth-child(3) { border-right: 0; }
  .maturity-path { grid-template-columns: 1fr 1fr; }.maturity-path article:nth-child(2) { border-right: 0; }.maturity-path article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
	.responsibility-grid, .evidence-maturity-grid { grid-template-columns: 1fr 1fr; }.responsibility-grid article:nth-child(2), .evidence-maturity-grid article:nth-child(2) { border-right: 0; }.responsibility-grid article:last-child, .evidence-maturity-grid article:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); }
	.buyer-reason-grid, .measurement-grid, .privacy-grid { grid-template-columns: 1fr 1fr; }.trust-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 32px, 1180px); }
  .nav-wrap { min-height: 68px; }.brand img { width: 94px; }.brand { min-width: auto; }.brand span { display: none; }.menu-button { display: block; }
  .nav-links { display: none; }.nav-links.open { display: grid; position: absolute; left: 0; right: 0; top: 68px; background: var(--paper); padding: 18px 16px 25px; box-shadow: 0 20px 35px rgba(11,41,71,.12); border-bottom: 1px solid var(--line); }.nav-links.open a { display: block; padding: 14px; border-bottom: 1px solid var(--line); }.nav-links.open .nav-cta { display: block; margin: 12px 0 0; text-align: center; border: 0; }
  .hero { grid-template-columns: 1fr; gap: 52px; padding-top: 75px; }.hero-system { max-width: 650px; width: 100%; margin: auto; }
  .authority-grid { grid-template-columns: 1fr; padding: 18px 0; }.authority-grid p, .authority-grid p:first-child { padding: 14px 0; border: 0; border-bottom: 1px solid var(--line); }.authority-grid p:last-child { border: 0; }
  .section { padding-top: 82px; padding-bottom: 82px; }.two-col-heading, .page-hero-grid, .core-band, .team-teaser-grid, .split-panel, .contact-cta, .benchmark-intro, .benchmark-design, .benchmark-crosslink { grid-template-columns: 1fr; gap: 30px; }.two-col-heading { margin-bottom: 45px; }.page-hero { padding: 84px 0 76px; }
  .loop-visual { grid-template-columns: 1fr; }.loop-card:first-child::after, .bounded-context::after { width: 1px; height: 26px; right: 50%; top: auto; bottom: -13px; }.bounded-context::after { background: var(--cyan); }.loop-card, .bounded-context { min-height: 170px; }
  .value-grid, .path-teaser-grid, .proof-cards, .mental-model-grid, .team-grid { grid-template-columns: 1fr; }.value-card, .path-teaser, .mental-model-grid article { border-right: 0; border-bottom: 1px solid var(--line); }.path-teaser, .mental-model-grid article { border-color: rgba(255,255,255,.14); }.value-card:last-child, .path-teaser:last-child, .mental-model-grid article:last-child { border-bottom: 0; }
	.home-evidence-grid { grid-template-columns: 1fr; }.home-evidence-card { border-right: 0; border-bottom: 1px solid var(--line); }.home-evidence-card:last-child { border-bottom: 0; }
	.trust-grid { grid-template-columns: 1fr 1fr; }.contact-fallback { grid-template-columns: 1fr; gap: 22px; }
  .invariant-strip { grid-template-columns: 1fr; }.invariant-strip > * { border-right: 0; border-bottom: 1px solid rgba(98,210,201,.24); }.invariant-strip > *:last-child { border: 0; }
  .evaluation-grid, .boundary-list, .decision-gates { grid-template-columns: 1fr 1fr; }.boundary-list div:nth-child(2), .decision-gates article:nth-child(2) { border-right: 0; }.evaluation-grid::before { display: none; }.evaluation-grid article { padding: 22px; border-bottom: 1px solid var(--line); }
  .evaluation-teaser-footer { align-items: flex-start; flex-direction: column; }.contact-strip-grid { grid-template-columns: 1fr; }.contact-strip-grid > div:last-child { justify-content: space-between; }
  .scope-grid, .metric-grid.four, .metric-grid.five, .interpretation, .evidence-separation, .nonclaim-grid, .contact-options, .guidance-grid, .benchmark-boundaries, .benchmark-trace, .evaluation-exchange { grid-template-columns: 1fr 1fr; }.evidence-separation > div:nth-child(2) { display: none; }.quality-grid { grid-template-columns: 1fr 1fr; }
  .benchmark-method { min-height: 520px; }.benchmark-next { grid-template-columns: 1fr; gap: 24px; }.benchmark-source { grid-template-columns: 1fr; gap: 12px; }.benchmark-trace > div:nth-child(2) { border-right: 0; }.benchmark-trace > div:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .core-statement { grid-template-columns: 1fr; }.core-statement i { transform: rotate(90deg); width: min-content; }.integration-note, .product-status-note, .evaluation-safety-note { grid-template-columns: 1fr; gap: 15px; }
  .team-card { display: grid; grid-template-columns: 210px 1fr; }.portrait { height: auto; min-height: 265px; }.footer-grid { grid-template-columns: 1fr; gap: 22px; }.footer-grid > div { justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 45px; }.hero-sub { font-size: 19px; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-system { min-height: 500px; padding: 18px 14px; }.signal-row { grid-template-columns: 1fr 24px 1fr; }.signal-row > div { padding: 12px; }.signal-row strong { font-size: 10px; }.signal-row b { display: none; }.context-node { width: 240px; }
  .section-heading h2 { font-size: 38px; }.page-hero h1 { font-size: 52px; }.page-hero-copy > p { font-size: 14px; }
  .value-grid, .proof-cards, .scope-grid, .quality-grid, .metric-grid.four, .metric-grid.five, .interpretation, .nonclaim-grid, .evaluation-grid, .boundary-list, .decision-gates, .contact-options, .guidance-grid, .benchmark-proof-grid, .benchmark-boundaries, .benchmark-trace, .maturity-path, .responsibility-grid, .evaluation-exchange, .evidence-maturity-grid { grid-template-columns: 1fr; }
	.buyer-reason-grid, .measurement-grid, .trust-grid, .privacy-grid, .form-grid { grid-template-columns: 1fr; }
  .value-card, .quality-grid article, .metric-grid article, .nonclaim-grid div, .boundary-list div, .decision-gates article, .contact-options > a, .guidance-grid article { border-right: 0; border-bottom: 1px solid var(--line); }.metric-grid article:last-child, .nonclaim-grid div:last-child, .boundary-list div:last-child, .decision-gates article:last-child, .contact-options > a:last-child, .guidance-grid article:last-child { border-bottom: 0; }
  .boundary { grid-template-columns: 1fr; }.core-band { padding: 34px 25px; }.core-band h2 { font-size: 34px; }.start-small, .team-model { grid-template-columns: 1fr; gap: 13px; }
  .benchmark-proof, .benchmark-proof:nth-child(2n), .benchmark-proof:nth-last-child(-n+2), .benchmark-boundaries article, .maturity-path article, .responsibility-grid article, .evaluation-exchange article, .benchmark-trace > div, .evidence-maturity-grid article { border-right: 0; border-bottom: 1px solid var(--line); }.benchmark-proof:last-child, .benchmark-boundaries article:last-child, .maturity-path article:last-child, .responsibility-grid article:last-child, .evaluation-exchange article:last-child, .benchmark-trace > div:last-child, .evidence-maturity-grid article:last-child { border-bottom: 0; }.responsibility-grid article:last-child, .benchmark-trace > div:last-child, .evidence-maturity-grid article:last-child { grid-column: auto; border-top: 0; }.benchmark-method { padding: 30px 24px; min-height: 500px; }.benchmark-next, .benchmark-crosslink { padding: 30px 24px; }.queue-row { grid-template-columns: 1fr; }.benchmark-intro h2 { font-size: 40px; }.product-status-note { margin-top: -10px; }
  .team-card { display: block; }.portrait { height: 190px; min-height: auto; }.contact-strip-grid > div:last-child { flex-direction: column; align-items: flex-start; }.legal { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* v0.1.4.5 — AEGI Labs capability framing, operating controls and proof families. */
.home-evidence-card.operations::before { background: var(--cyan); }
.home-evidence-boundary { margin-top: 0; }
.home-evidence-boundary strong { color: var(--navy); }

.aegi-labs-teaser { background: var(--navy); padding: 82px 0; }
.aegi-labs-teaser .team-teaser-grid { margin-bottom: 34px; }
.aegi-labs-teaser h2 { max-width: 650px; }
.aegi-labs-teaser .team-teaser-grid p { max-width: 690px; }
.labs-capability-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border: 1px solid rgba(255,255,255,.15); }
.labs-capability-grid article { min-height: 165px; padding: 25px 27px; border-right: 1px solid rgba(255,255,255,.15); display: flex; flex-direction: column; justify-content: space-between; gap: 18px; }
.labs-capability-grid article:last-child { border-right: 0; }
.labs-capability-grid span { color: var(--cyan); font: 600 9px/1.5 var(--font-plex), monospace; letter-spacing: .1em; }
.labs-capability-grid strong { color: white; font-size: 13px; line-height: 1.6; }
.labs-capability-grid small { color: #849dac; font-size: 10px; line-height: 1.55; }
.labs-capability-grid.light { border-color: var(--line); background: white; }
.labs-capability-grid.light article { min-height: 285px; border-right-color: var(--line); justify-content: flex-start; gap: 0; }
.labs-capability-grid.light span { color: var(--blue); }
.labs-capability-grid.light strong { color: var(--navy); margin: 38px 0 18px; font-size: 17px; }
.labs-capability-grid.light p { color: var(--muted); font-size: 12px; line-height: 1.75; margin: 0 0 28px; }
.labs-capability-grid.light a { color: var(--blue); font-size: 11px; font-weight: 650; margin-top: auto; }
.labs-boundary { display: grid; grid-template-columns: .36fr 1fr; gap: 40px; align-items: center; border: 1px solid #cbdede; border-top: 0; background: var(--ice); padding: 23px 28px; }
.labs-boundary span { color: var(--blue); font: 600 9px/1.5 var(--font-plex), monospace; letter-spacing: .08em; }
.labs-boundary p { color: var(--muted); font-size: 12px; line-height: 1.7; margin: 0; }
.founding-team-section { background: #f0f3f2; }

.evaluation-operating-controls { margin-top: 34px; border: 1px solid #cbdede; background: white; }
.operating-controls-head { display: grid; grid-template-columns: 1fr .9fr; gap: 50px; padding: 31px 34px; align-items: end; }
.operating-controls-head > div > span { color: var(--blue); font: 600 9px/1.5 var(--font-plex), monospace; letter-spacing: .09em; }
.operating-controls-head h2 { color: var(--navy); font-size: 27px; line-height: 1.3; letter-spacing: -.035em; margin: 14px 0 0; }
.operating-controls-head p { color: var(--muted); font-size: 12px; line-height: 1.75; margin: 0; }
.operating-controls-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.operating-controls-grid article { min-height: 130px; padding: 24px 25px; border-right: 1px solid var(--line); }
.operating-controls-grid article:last-child { border-right: 0; }
.operating-controls-grid span { display: block; color: var(--blue); font: 600 9px/1.5 var(--font-plex), monospace; letter-spacing: .09em; margin-bottom: 34px; }
.operating-controls-grid strong { color: var(--navy); font-size: 12px; line-height: 1.65; }
.operating-controls-link { display: block; padding: 15px 25px; border-top: 1px solid var(--line); background: var(--ice); color: var(--blue); font-size: 11px; font-weight: 650; }

.evidence-family-index { padding-top: 55px; padding-bottom: 0; }
.proof-family-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); background: white; }
.proof-family-grid > a { min-height: 185px; padding: 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; transition: background 180ms var(--ease), transform 180ms var(--ease); }
.proof-family-grid > a:last-child { border-right: 0; }
.proof-family-grid > a:hover { background: var(--ice); transform: translateY(-2px); }
.proof-family-grid span { color: var(--blue); font: 600 9px/1.5 var(--font-plex), monospace; letter-spacing: .08em; }
.proof-family-grid strong { color: var(--navy); font: 600 13px/1.5 var(--font-plex), monospace; margin: 38px 0 8px; }
.proof-family-grid small { color: var(--muted); font-size: 10px; line-height: 1.6; }
.operations-evidence-section { background: #eef3f1; }
.operations-evidence-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; margin-bottom: 42px; }
.operations-evidence-intro h2 { color: var(--navy); font-size: 44px; line-height: 1.16; letter-spacing: -.05em; margin: 18px 0 0; }
.operations-evidence-intro p { color: var(--muted); font-size: 13px; line-height: 1.8; margin: 0; }
.operations-proof-grid { display: grid; grid-template-columns: 1.35fr .75fr .75fr 1.1fr; border: 1px solid var(--line); background: white; }
.operations-proof-grid article { min-height: 165px; padding: 25px; border-right: 1px solid var(--line); }
.operations-proof-grid article:last-child { border-right: 0; }
.operations-proof-grid span { color: var(--blue); font: 600 9px/1.5 var(--font-plex), monospace; letter-spacing: .08em; }
.operations-proof-grid strong { display: block; color: var(--navy); font: 600 12px/1.55 var(--font-plex), monospace; margin: 35px 0 8px; overflow-wrap: anywhere; }
.operations-proof-grid small { color: var(--muted); font-size: 10px; line-height: 1.55; }
.operations-proof-layout { display: grid; grid-template-columns: minmax(0,1.7fr) minmax(280px,.7fr); gap: 20px; margin-top: 20px; align-items: stretch; }
.operations-screenshot { margin: 0; border: 1px solid var(--line); background: white; overflow: hidden; }
.operations-screenshot img { display: block; width: 100%; height: auto; }
.operations-screenshot figcaption { display: grid; gap: 6px; padding: 20px 23px; border-top: 1px solid var(--line); }
.operations-screenshot figcaption strong { color: var(--navy); font-size: 13px; }
.operations-screenshot figcaption span { color: var(--muted); font-size: 11px; line-height: 1.65; }
.operations-screenshot figcaption small { color: #809095; font-size: 10px; line-height: 1.55; }
.operations-boundary { border: 1px solid #cbdede; background: var(--ice); padding: 28px; }
.operations-boundary span { display: block; color: var(--blue); font: 600 9px/1.5 var(--font-plex), monospace; letter-spacing: .09em; margin: 0 0 8px; }
.operations-boundary p { color: var(--muted); font-size: 11px; line-height: 1.75; margin: 0 0 28px; }
.operations-boundary p:last-child { margin-bottom: 0; }

@media (max-width: 980px) {
  .labs-capability-grid, .proof-family-grid, .operations-proof-grid { grid-template-columns: 1fr 1fr; }
  .labs-capability-grid article:nth-child(2), .proof-family-grid > a:nth-child(2), .operations-proof-grid article:nth-child(2) { border-right: 0; }
  .labs-capability-grid article:last-child, .proof-family-grid > a:last-child { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.15); }
  .labs-capability-grid.light article:last-child, .proof-family-grid > a:last-child { border-top-color: var(--line); }
  .operations-proof-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .operations-proof-grid article:nth-child(3) { border-right: 1px solid var(--line); }
  .operating-controls-grid { grid-template-columns: 1fr 1fr; }
  .operating-controls-grid article:nth-child(2) { border-right: 0; }
  .operating-controls-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .operations-proof-layout { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .aegi-labs-teaser { padding: 68px 0; }
  .labs-capability-grid, .proof-family-grid, .operations-proof-grid, .operating-controls-grid { grid-template-columns: 1fr; }
  .labs-capability-grid article, .proof-family-grid > a, .operations-proof-grid article, .operating-controls-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .labs-capability-grid article:last-child, .proof-family-grid > a:last-child, .operations-proof-grid article:last-child, .operating-controls-grid article:last-child { grid-column: auto; border-bottom: 0; }
  .aegi-labs-teaser .labs-capability-grid article { border-bottom-color: rgba(255,255,255,.15); }
  .labs-boundary, .operating-controls-head, .operations-evidence-intro { grid-template-columns: 1fr; gap: 18px; }
  .operating-controls-head { padding: 26px 24px; }
  .operations-evidence-intro h2 { font-size: 36px; }
}

/* v0.1.4.8 — sales-surface confidence with evidence-layer precision. */
.bounded-offer-section { background: #eef3f1; }
.engagement-unit-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border: 1px solid var(--line); background: white; }
.engagement-unit-grid article { min-height: 300px; padding: 28px 27px; border-right: 1px solid var(--line); }
.engagement-unit-grid article:last-child { border-right: 0; background: var(--ice); }
.engagement-unit-grid span { display: block; color: var(--blue); font: 600 9px/1.5 var(--font-plex), monospace; letter-spacing: .1em; margin-bottom: 42px; }
.engagement-unit-grid ul { list-style: none; padding: 0; margin: 0; }
.engagement-unit-grid li { color: var(--navy); font-size: 12px; line-height: 1.65; padding: 11px 0; border-top: 1px solid var(--line); }
.engagement-unit-grid li:first-child { border-top: 0; padding-top: 0; }
.offer-qualification { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: 22px 27px; border: 1px solid var(--line); border-top: 0; background: #f8faf9; }
.offer-qualification p { color: var(--muted); font-size: 11px; line-height: 1.7; margin: 0; max-width: 780px; }
.offer-qualification a { color: var(--blue); font-size: 11px; font-weight: 650; white-space: nowrap; }
.commercial-proof-grid .home-evidence-card { min-height: 440px; }
.commercial-proof-grid .home-evidence-card h3 { margin-top: 32px; }
.proof-scope-badge { display: inline-flex; align-items: center; min-height: 26px; margin: 22px 0 26px; padding: 5px 9px; border: 1px solid #c9dfdf; background: var(--ice); color: var(--blue); font: 600 10px/1.4 var(--font-plex), monospace; letter-spacing: .06em; text-transform: uppercase; }
.proof-detail-link { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 18px 22px; border: 1px solid var(--line); border-top: 0; background: #f8faf9; }
.proof-detail-link span { color: var(--muted); font-size: 10px; line-height: 1.65; }
.proof-detail-link a { color: var(--blue); font-size: 11px; font-weight: 650; white-space: nowrap; }
.operating-controls-home { padding-top: 0; }
.operating-controls-home .evaluation-operating-controls { margin-top: 0; }
.contact-strip-note { color: #245064; max-width: 720px; margin: 12px 0 0; font-size: 12px; line-height: 1.65; }

@media (max-width: 980px) {
  .engagement-unit-grid { grid-template-columns: 1fr 1fr; }
  .engagement-unit-grid article:nth-child(2) { border-right: 0; }
  .engagement-unit-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .engagement-unit-grid article:nth-child(3) { border-right: 1px solid var(--line); }
  .offer-qualification { grid-template-columns: 1fr; gap: 14px; }
  .proof-detail-link { align-items: flex-start; flex-direction: column; gap: 12px; }
}
@media (max-width: 720px) {
  .engagement-unit-grid { grid-template-columns: 1fr; }
  .engagement-unit-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .engagement-unit-grid article:last-child { border-bottom: 0; }
  .engagement-unit-grid span { margin-bottom: 28px; }
  .commercial-proof-grid .home-evidence-card { min-height: auto; }
}


/* v0.1.4.8 technical diligence disclosure */
.technical-release-boundary {
  margin-top: 1.25rem;
  border-top: 1px solid var(--line, rgba(255,255,255,.12));
  padding-top: 1rem;
}
.technical-release-boundary summary {
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .02em;
}
.technical-release-boundary p {
  max-width: 78ch;
  margin: .75rem 0 0;
}

/* v0.1.4.9 — opportunity routing without changing buyer-first product hierarchy. */
.labs-opportunity-section { margin-top: -36px; margin-bottom: 88px; position: relative; z-index: 2; }
.labs-opportunity-strip { display: grid; grid-template-columns: .8fr .8fr 1.35fr 1.45fr; border: 1px solid var(--line); background: #f8faf9; box-shadow: 0 16px 40px rgba(15,35,48,.05); }
.labs-opportunity-strip > div { min-height: 126px; padding: 23px 24px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; gap: 24px; }
.labs-opportunity-strip > div:last-child { border-right: 0; }
.labs-opportunity-strip span { color: var(--blue); font: 600 10px/1.5 var(--font-plex), monospace; letter-spacing: .09em; }
.labs-opportunity-strip strong { color: var(--navy); font-size: 12px; line-height: 1.6; font-weight: 650; }
.labs-opportunity-strip .opportunity-link { color: var(--blue); display: inline-flex; align-items: center; gap: 10px; width: fit-content; font-size: 11px; font-weight: 700; border-bottom: 1px solid #c9d9df; padding-bottom: 4px; }
.labs-opportunity-strip .opportunity-link:hover { color: var(--navy); border-bottom-color: var(--blue); }

@media (max-width: 980px) {
  .labs-opportunity-section { margin-top: -24px; margin-bottom: 70px; }
  .labs-opportunity-strip { grid-template-columns: 1fr 1fr; }
  .labs-opportunity-strip > div:nth-child(2) { border-right: 0; }
  .labs-opportunity-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 720px) {
  .labs-opportunity-section { margin-top: -12px; margin-bottom: 54px; }
  .labs-opportunity-strip { grid-template-columns: 1fr; }
  .labs-opportunity-strip > div { min-height: 104px; border-right: 0; border-bottom: 1px solid var(--line); }
  .labs-opportunity-strip > div:last-child { border-bottom: 0; }
}


/* v0.1.5.2 — Insights publishing foundation. */
.insights-archive { padding-top: 96px; }
.insights-archive-intro { display: grid; grid-template-columns: 1.08fr .92fr; gap: 92px; align-items: end; margin-bottom: 54px; }
.insights-archive-intro h2 { color: var(--navy); font-size: clamp(36px, 4vw, 54px); line-height: 1.1; letter-spacing: -.05em; margin: 0; }
.insights-archive-intro > p { color: var(--muted); font-size: 13px; line-height: 1.8; margin: 0 0 6px; max-width: 520px; }
.insights-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.insight-card { display: flex; flex-direction: column; min-width: 0; background: white; border: 1px solid var(--line); transition: transform 180ms var(--ease), box-shadow 180ms var(--ease); }
.insight-card:hover { transform: translateY(-3px); box-shadow: 0 20px 46px rgba(11,41,71,.08); }
.insight-card-media { display: block; position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--navy); border-bottom: 1px solid var(--line); }
.insight-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 320ms var(--ease); }
.insight-card:hover .insight-card-media img { transform: scale(1.018); }
.insight-card-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 25px 27px; color: white; background: linear-gradient(145deg,#0c2945,#071d31); overflow: hidden; }
.insight-card-placeholder::before { content: ""; position: absolute; width: 220px; height: 220px; border: 1px solid rgba(98,210,201,.24); border-radius: 50%; right: -85px; top: -95px; box-shadow: 0 0 60px rgba(98,210,201,.09); }
.insight-card-placeholder::after { content: ""; position: absolute; left: 27px; right: 27px; bottom: 46px; height: 1px; background: linear-gradient(90deg,var(--cyan),rgba(98,210,201,0)); opacity: .55; }
.insight-card-placeholder small { position: relative; z-index: 1; color: #8aa7bb; font: 600 9px/1.4 var(--font-plex), monospace; letter-spacing: .13em; }
.insight-card-placeholder strong { position: relative; z-index: 1; max-width: 88%; color: white; font-size: 21px; line-height: 1.35; font-weight: 620; }
.insight-card-placeholder i { position: relative; z-index: 1; width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 16px var(--cyan); }
.insight-card-body { display: flex; flex-direction: column; flex: 1; padding: 27px; }
.insight-card-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.insight-card-meta span { border: 1px solid #d5e1e1; background: #f7faf9; padding: 5px 7px; color: var(--blue); font: 600 8px/1.35 var(--font-plex), monospace; letter-spacing: .07em; text-transform: uppercase; }
.insight-card h3 { color: var(--navy); font-size: 20px; line-height: 1.38; letter-spacing: -.025em; margin: 0 0 16px; }
.insight-card h3 a:hover { color: var(--blue); }
.insight-card-body > p { color: var(--muted); font-size: 12px; line-height: 1.72; margin: 0 0 28px; }
.insight-card-foot { margin-top: auto; padding-top: 17px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.insight-card-foot time { color: #72828a; font: 500 9px/1.4 var(--font-plex), monospace; }
.insight-card-foot a { color: var(--blue); font-size: 10px; font-weight: 700; white-space: nowrap; }
.insights-pagination { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 52px; }
.insights-pagination .page-numbers { min-width: 40px; height: 40px; padding: 0 11px; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; color: var(--navy); font-size: 11px; }
.insights-pagination .page-numbers.current { background: var(--navy); border-color: var(--navy); color: white; }
.insights-pagination a:hover { border-color: var(--blue); color: var(--blue); }
.insights-empty { border: 1px solid var(--line); background: var(--ice); padding: 38px; }
.insights-empty h3 { color: var(--navy); margin: 0 0 10px; }
.insights-empty p { color: var(--muted); margin: 0; line-height: 1.75; }

.insight-hero { background: linear-gradient(140deg,#f7f7f3 58%,#edf5f4); border-bottom: 1px solid var(--line); padding: 72px 0 76px; }
.insight-hero-inner { max-width: 1020px; }
.article-breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-bottom: 46px; color: #6e7e86; font-size: 10px; }
.article-breadcrumb a { color: var(--blue); }
.article-breadcrumb a:hover { text-decoration: underline; text-underline-offset: 3px; }
.insight-kicker { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.insight-kicker span { color: var(--blue); font: 600 9px/1.4 var(--font-plex), monospace; letter-spacing: .1em; text-transform: uppercase; border: 1px solid #cfe0e0; background: rgba(255,255,255,.55); padding: 6px 8px; }
.insight-hero h1 { color: var(--navy); max-width: 950px; font-size: clamp(44px,5.35vw,72px); line-height: 1.06; letter-spacing: -.055em; margin: 0; font-weight: 650; }
.insight-standfirst { max-width: 860px; margin: 28px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.insight-byline { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; color: #667982; font: 500 10px/1.4 var(--font-plex), monospace; }
.insight-byline span:first-child { color: var(--navy); font-weight: 650; }
.insight-context-strip { display: flex; flex-wrap: wrap; gap: 1px; margin-top: 28px; background: var(--line); border: 1px solid var(--line); max-width: 880px; }
.insight-context-strip > div { flex: 1 1 260px; min-width: 0; background: #f8faf9; padding: 16px 18px; }
.insight-context-strip small { display: block; color: var(--blue); font: 600 8px/1.4 var(--font-plex), monospace; letter-spacing: .08em; margin-bottom: 6px; }
.insight-context-strip strong { color: var(--navy); font-size: 11px; line-height: 1.55; font-weight: 650; }
.insight-featured-image { margin-top: 54px; margin-bottom: -34px; position: relative; z-index: 2; }
.insight-featured-image img { display: block; width: 100%; height: auto; max-height: 680px; object-fit: cover; border: 1px solid var(--line); background: white; }
.insight-reading-layout { display: grid; grid-template-columns: minmax(180px,230px) minmax(0,760px); gap: 74px; justify-content: center; align-items: start; padding-top: 92px; }
.article-aside { position: sticky; top: 110px; min-width: 0; }
.article-toc { border-top: 2px solid var(--navy); padding-top: 17px; }
.article-toc > strong { color: var(--navy); font: 650 10px/1.4 var(--font-plex), monospace; letter-spacing: .09em; text-transform: uppercase; }
.article-toc ol { list-style: none; padding: 0; margin: 17px 0 0; }
.article-toc li { border-top: 1px solid var(--line); }
.article-toc li:last-child { border-bottom: 1px solid var(--line); }
.article-toc a { display: block; padding: 9px 0; color: #63757d; font-size: 10px; line-height: 1.5; }
.article-toc a:hover { color: var(--blue); }
.article-back-link { display: inline-block; margin-top: 24px; color: var(--blue); font-size: 10px; font-weight: 700; }
.insight-body { min-width: 0; color: #253e4b; font-size: 15px; line-height: 1.85; }
.insight-body > *:first-child { margin-top: 0; }
.insight-body h2 { color: var(--navy); font-size: 30px; line-height: 1.25; letter-spacing: -.035em; margin: 62px 0 18px; scroll-margin-top: 108px; }
.insight-body h3 { color: var(--navy); font-size: 20px; line-height: 1.42; letter-spacing: -.02em; margin: 34px 0 13px; }
.insight-body p { margin: 0 0 20px; }
.insight-body ul, .insight-body ol { margin: 0 0 24px; padding-left: 23px; }
.insight-body li { margin: 7px 0; padding-left: 3px; }
.insight-body a { color: var(--blue); text-decoration: underline; text-decoration-color: #bad3d5; text-underline-offset: 3px; overflow-wrap: anywhere; }
.insight-body a:hover { text-decoration-color: var(--blue); }
.insight-body blockquote { margin: 34px 0; padding: 22px 26px; border-left: 3px solid var(--cyan); background: var(--ice); color: var(--navy); }
.insight-body code { font-family: var(--font-plex), monospace; font-size: .9em; }
.insight-body h2[id*="claim-boundary"], .insight-body h2[id*="sources"] { margin-top: 72px; padding-top: 22px; border-top: 1px solid var(--line); }
.insight-body h2[id*="claim-boundary"] + p { background: #f3f7f6; border-left: 3px solid var(--blue); padding: 20px 22px; color: #566b74; font-size: 12px; line-height: 1.75; }

.related-insights-section { background: #eef3f1; }
.related-insights-head { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 36px; }
.related-insights-head h2 { color: var(--navy); font-size: 38px; line-height: 1.12; letter-spacing: -.045em; margin: 0; }
.related-insights-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border: 1px solid var(--line); background: white; }
.related-insights-grid article { min-height: 285px; padding: 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.related-insights-grid article:last-child { border-right: 0; }
.related-insights-grid article > span { color: var(--blue); font: 600 9px/1.4 var(--font-plex), monospace; letter-spacing: .09em; text-transform: uppercase; }
.related-insights-grid h3 { color: var(--navy); font-size: 19px; line-height: 1.42; margin: 36px 0 13px; }
.related-insights-grid p { color: var(--muted); font-size: 11px; line-height: 1.7; margin: 0 0 24px; }
.related-insights-grid article > a { color: var(--blue); font-size: 10px; font-weight: 700; margin-top: auto; }

@media (max-width: 1080px) {
  .insights-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .insight-reading-layout { grid-template-columns: minmax(160px,205px) minmax(0,720px); gap: 44px; }
}
@media (max-width: 820px) {
  .insights-archive-intro { grid-template-columns: 1fr; gap: 24px; }
  .insight-reading-layout { grid-template-columns: 1fr; gap: 34px; padding-top: 72px; }
  .article-aside { position: static; }
  .article-toc { border: 1px solid var(--line); background: #f8faf9; padding: 20px 22px; }
  .article-toc li:first-child { border-top: 0; }
  .article-back-link { margin-top: 16px; }
  .related-insights-grid { grid-template-columns: 1fr; }
  .related-insights-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .related-insights-grid article:last-child { border-bottom: 0; }
  .related-insights-head { align-items: flex-start; flex-direction: column; gap: 18px; }
}
@media (max-width: 620px) {
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card-body { padding: 23px; }
  .insight-card-placeholder { padding: 22px 23px; }
  .insight-hero { padding: 54px 0 58px; }
  .article-breadcrumb { margin-bottom: 32px; }
  .insight-hero h1 { font-size: 43px; }
  .insight-standfirst { font-size: 16px; }
  .insight-featured-image { margin-top: 34px; margin-bottom: -10px; }
  .insight-body { font-size: 14px; }
  .insight-body h2 { font-size: 26px; margin-top: 50px; }
  .insight-body h3 { font-size: 19px; }
  .related-insights-head h2 { font-size: 32px; }
}

/* Footer remains stable as Insights is added to the public IA. */
.footer-grid > div { flex-wrap: wrap; row-gap: 12px; }

/* v0.1.5.3 — Buyer Committee Routing Patch. */
.hero-qualifier strong, .contact-strip-note strong { color: var(--navy); font-weight: 750; }

.buyer-decision-map { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border: 1px solid var(--line); background: white; }
.buyer-decision-map article { min-height: 255px; padding: 30px; border-right: 1px solid var(--line); position: relative; display: flex; flex-direction: column; }
.buyer-decision-map article:last-child { border-right: 0; }
.buyer-decision-map article.aegi { background: var(--ice); }
.buyer-decision-map article.aegi::before { content: ""; position: absolute; left: -1px; right: -1px; top: -1px; height: 4px; background: var(--cyan); }
.buyer-decision-map span { color: var(--blue); font: 600 9px/1.45 var(--font-plex), monospace; letter-spacing: .1em; }
.buyer-decision-map h3 { color: var(--navy); font-size: 22px; line-height: 1.35; margin: 52px 0 15px; }
.buyer-decision-map p { color: var(--muted); font-size: 12px; line-height: 1.72; margin: 0; }

.bounded-change-strip { display: grid; grid-template-columns: .72fr 1.28fr; border: 1px solid var(--line); border-top: 0; background: #f8faf9; }
.bounded-change-strip > div { padding: 25px 28px; border-right: 1px solid var(--line); }
.bounded-change-strip > div span { display: block; color: var(--blue); font: 600 8px/1.45 var(--font-plex), monospace; letter-spacing: .11em; margin-bottom: 9px; }
.bounded-change-strip > div strong { color: var(--navy); font-size: 15px; line-height: 1.5; }
.bounded-change-strip ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); }
.bounded-change-strip li { min-height: 74px; display: flex; align-items: center; padding: 17px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--navy); font-size: 11px; line-height: 1.45; font-weight: 650; }
.bounded-change-strip li:nth-child(3n) { border-right: 0; }
.bounded-change-strip li:nth-last-child(-n+3) { border-bottom: 0; }
.bounded-change-strip li::before { content: "+"; color: var(--blue); font-family: var(--font-plex), monospace; margin-right: 10px; }

.home-insights-section { background: white; }
.home-insights-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border: 1px solid var(--line); background: var(--paper); }
.home-insight-card { min-height: 360px; padding: 31px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.home-insight-card:last-child { border-right: 0; }
.home-insight-card > span { color: var(--blue); font: 600 9px/1.45 var(--font-plex), monospace; letter-spacing: .11em; }
.home-insight-card h3 { color: var(--navy); font-size: 22px; line-height: 1.4; margin: 48px 0 17px; }
.home-insight-card h3 a:hover { color: var(--blue); }
.home-insight-card p { color: var(--muted); font-size: 12px; line-height: 1.72; margin: 0 0 28px; }
.home-insight-card > a { color: var(--blue); font-size: 11px; font-weight: 700; margin-top: auto; display: inline-flex; gap: 12px; align-items: center; }
.home-insights-footer { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 28px; }
.home-insights-footer p { color: var(--muted); font-size: 11px; line-height: 1.7; margin: 0; max-width: 760px; }

@media (max-width: 820px) {
  .buyer-decision-map { grid-template-columns: 1fr 1fr; }
  .buyer-decision-map article:nth-child(2) { border-right: 0; }
  .buyer-decision-map article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .bounded-change-strip { grid-template-columns: 1fr; }
  .bounded-change-strip > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .home-insights-grid { grid-template-columns: 1fr; }
  .home-insight-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .home-insight-card:last-child { border-bottom: 0; }
  .home-insights-footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .buyer-decision-map { grid-template-columns: 1fr; }
  .buyer-decision-map article, .buyer-decision-map article:nth-child(2) { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .buyer-decision-map article:last-child { border-bottom: 0; }
  .buyer-decision-map h3 { margin-top: 30px; }
  .bounded-change-strip ul { grid-template-columns: 1fr; }
  .bounded-change-strip li, .bounded-change-strip li:nth-child(3n), .bounded-change-strip li:nth-last-child(-n+3) { border-right: 0; border-bottom: 1px solid var(--line); min-height: 58px; }
  .bounded-change-strip li:last-child { border-bottom: 0; }
}


/* v0.1.5.4 — Typography & Readability Polish.
   Visual-only patch: preserves positioning, page architecture and publishing logic. */
:root {
  --font-display: "Avenir Next", "Segoe UI Variable", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body { font-family: var(--font-body); }
.hero h1,
.section-heading h2,
.page-hero h1,
.compact-page-hero h1,
.core-band h2,
.team-teaser h2,
.contact-strip h2,
.split-panel h2,
.contact-cta h2,
.insights-archive-intro h2,
.insight-hero h1,
.related-insights-head h2,
.buyer-decision-map h3,
.home-insight-card h3,
.insight-card h3,
.insight-body h2,
.insight-body h3 {
  font-family: var(--font-display);
}

/* More stable display weights and less compressed tracking across platforms. */
.hero h1, .page-hero h1, .compact-page-hero h1, .insight-hero h1 { letter-spacing: -.04em; font-weight: 600; }
.section-heading h2, .core-band h2, .team-teaser h2, .contact-strip h2, .split-panel h2, .contact-cta h2,
.insights-archive-intro h2, .related-insights-head h2 { letter-spacing: -.035em; font-weight: 600; }
.value-card h3, .proof-card h3, .path-teaser h3, .buyer-decision-map h3, .home-insight-card h3,
.insight-card h3, .related-insights-grid h3 { letter-spacing: -.02em; font-weight: 600; }

/* Navigation and primary controls should read as product UI, not microcopy. */
.nav-links { font-size: 13px; font-weight: 600; }
.button { font-size: 13px; font-weight: 700; }
.text-link { font-size: 13px; font-weight: 700; }

/* Editorial labels use sans; mono remains reserved for hashes, release IDs and evidence states. */
.eyebrow,
.buyer-decision-map span,
.bounded-change-strip > div span,
.home-insight-card > span,
.insight-card-meta span,
.insight-kicker span,
.article-toc > strong,
.related-insights-grid article > span {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .09em;
}
.eyebrow { font-size: 11px; line-height: 1.5; }

/* General reading hierarchy. */
.hero-body { font-size: 16px; line-height: 1.78; }
.section-heading > p, .two-col-heading > p { font-size: 16px; line-height: 1.72; }
.value-card p { font-size: 14px; line-height: 1.75; }
.start-small p { font-size: 14px; line-height: 1.7; }
.path-teaser p { font-size: 14px; line-height: 1.72; }
.core-band p { font-size: 15px; line-height: 1.75; }
.proof-card p { font-size: 13.5px; line-height: 1.7; }
.proof-card a, .boundary a { font-size: 12.5px; }
.boundary p { font-size: 13.5px; line-height: 1.72; }
.evaluation-teaser-footer p { font-size: 13.5px; }
.product-status-note p { font-size: 13px; }
.contact-strip-note { font-size: 13.5px; line-height: 1.65; }

/* Buyer Committee Routing surface: this is the translation layer, so it must be the easiest layer to scan. */
.buyer-decision-map span { font-size: 11px; line-height: 1.45; }
.buyer-decision-map h3 { font-size: 24px; line-height: 1.3; }
.buyer-decision-map p { font-size: 14px; line-height: 1.7; }
.bounded-change-strip > div span { font-size: 10.5px; }
.bounded-change-strip > div strong { font-size: 16px; line-height: 1.5; }
.bounded-change-strip li { font-size: 13px; line-height: 1.5; font-weight: 600; }
.home-insight-card > span { font-size: 10.5px; }
.home-insight-card h3 { font-size: 23px; line-height: 1.36; }
.home-insight-card p { font-size: 14px; line-height: 1.72; }
.home-insight-card > a { font-size: 12.5px; }
.home-insights-footer p { font-size: 13px; line-height: 1.7; }

/* Opportunity strip remains compact, but no longer depends on tiny text. */
.labs-opportunity-strip span { font-size: 10.5px; }
.labs-opportunity-strip strong { font-size: 13.5px; line-height: 1.55; }
.labs-opportunity-strip .opportunity-link { font-size: 12.5px; }

/* Insights archive: stronger reading comfort and more useful card metadata. */
.insights-archive-intro > p { font-size: 16px; line-height: 1.72; }
.insight-card-placeholder small { font-size: 10.5px; font-family: var(--font-body); font-weight: 700; }
.insight-card-placeholder strong { font-size: 22px; line-height: 1.32; font-weight: 600; }
.insight-card-meta span { font-size: 10.5px; line-height: 1.35; }
.insight-card h3 { font-size: 21px; line-height: 1.35; }
.insight-card-body > p { font-size: 14px; line-height: 1.72; }
.insight-card-foot time { color: #60737c; font-size: 11.5px; line-height: 1.4; }
.insight-card-foot a { font-size: 12.5px; }
.insights-pagination .page-numbers { font-size: 12.5px; }

/* Long-form Insights reading experience. */
.article-breadcrumb { color: #60737c; font-size: 12px; }
.insight-kicker span { font-size: 11px; line-height: 1.4; }
.insight-hero h1 { letter-spacing: -.04em; }
.insight-standfirst { font-size: 19px; line-height: 1.65; }
.insight-byline { color: #5d717a; font-size: 12px; line-height: 1.5; }
.insight-context-strip small { font-size: 10.5px; line-height: 1.4; }
.insight-context-strip strong { font-size: 13px; line-height: 1.5; }
.article-toc > strong { font-size: 11.5px; line-height: 1.4; }
.article-toc a { color: #536a73; font-size: 12.5px; line-height: 1.5; padding: 10px 0; }
.article-back-link { font-size: 12.5px; }
.insight-body { color: #253e4b; font-size: 17px; line-height: 1.78; }
.insight-body h2 { font-size: 32px; line-height: 1.22; letter-spacing: -.03em; font-weight: 600; }
.insight-body h3 { font-size: 21.5px; line-height: 1.38; letter-spacing: -.015em; font-weight: 600; }
.insight-body p { margin-bottom: 22px; }
.insight-body li { margin: 8px 0; }
.insight-body h2[id*="claim-boundary"] + p { color: #465f69; font-size: 14px; line-height: 1.75; }
.related-insights-grid article > span { font-size: 10.5px; }
.related-insights-grid h3 { font-size: 20px; line-height: 1.38; }
.related-insights-grid p { font-size: 13.5px; line-height: 1.7; }
.related-insights-grid article > a { font-size: 12.5px; }

/* Evidence/operations captions: avoid low-contrast tiny disclosures. */
.operations-proof-grid small { color: #5d717a; font-size: 11.5px; }
.operations-screenshot figcaption span { color: #536a73; font-size: 12.5px; line-height: 1.65; }
.operations-screenshot figcaption small { color: #5d717a; font-size: 11.5px; line-height: 1.55; }
.operations-boundary p { font-size: 12.5px; line-height: 1.72; }
.engagement-unit-grid li { font-size: 13px; }
.offer-qualification p, .offer-qualification a { font-size: 12.5px; }
.proof-detail-link span { font-size: 11.5px; }
.proof-detail-link a { font-size: 12.5px; }

@media (max-width: 820px) {
  .section-heading > p, .two-col-heading > p { font-size: 15.5px; }
  .buyer-decision-map p { font-size: 14px; }
  .home-insight-card p { font-size: 14px; }
  .article-toc a { font-size: 13px; }
}

@media (max-width: 620px) {
  .nav-links { font-size: 13px; }
  .hero h1 { letter-spacing: -.035em; }
  .hero-body { font-size: 16px; line-height: 1.72; }
  .section-heading > p, .two-col-heading > p { font-size: 15.5px; }
  .buyer-decision-map h3 { font-size: 23px; }
  .buyer-decision-map p { font-size: 14px; }
  .bounded-change-strip li { font-size: 13px; }
  .home-insight-card h3 { font-size: 22px; }
  .home-insight-card p { font-size: 14px; }
  .insight-hero h1 { font-size: 43px; letter-spacing: -.035em; }
  .insight-standfirst { font-size: 17px; line-height: 1.65; }
  .insight-body { font-size: 16px; line-height: 1.76; }
  .insight-body h2 { font-size: 28px; line-height: 1.24; }
  .insight-body h3 { font-size: 20.5px; }
}

/* v0.1.5.5 — Full Readability, Link & Footer Polish.
   Presentation-only system pass: no positioning, evidence, route or publishing-logic changes. */
:root {
  --muted: #586b79;
  --text-dark-secondary: #a6bac8;
  --footer-secondary: #91a7b8;
  --footer-line: rgba(255,255,255,.13);
}

html { -webkit-text-size-adjust: 100%; }
body { font-size: 16px; line-height: 1.65; text-rendering: optimizeLegibility; }

/* Primary navigation and actions: readable at a glance on laptop screens. */
.nav-links { gap: 22px; font-size: 14px; font-weight: 600; }
.nav-cta { padding: 14px 19px; }
.button { min-height: 56px; padding: 0 25px; font-size: 14px; font-weight: 700; }
.text-link { font-size: 14px; line-height: 1.45; font-weight: 700; border-bottom-color: #b9c8cf; }
.text-link:hover { color: var(--blue); border-bottom-color: var(--blue); }
.brand span { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.eyebrow { font-size: 12px; line-height: 1.5; letter-spacing: .085em; }

/* General copy scale: normal explanatory text should not render like metadata. */
.hero-body { font-size: 17px; line-height: 1.72; }
.page-hero-copy > p { font-size: 17px; line-height: 1.75; }
.section-heading > p, .two-col-heading > p { font-size: 17px; line-height: 1.7; }
.hero-qualifier, .section-boundary, .card-qualifier, .privacy-boundary { font-size: 13px; line-height: 1.65; }

/* Buyer-facing editorial labels are sans and large enough to scan. */
.loop-card span, .bounded-context span, .value-card span, .start-small span, .contact-strip span,
.split-panel span, .integration-note span, .product-status-note span, .core-statement span,
.quality-grid span, .mental-model-grid span, .metric-grid span, .interpretation span,
.evidence-separation span, .boundary-list span, .decision-gates span, .contact-cta span,
.contact-options span, .guidance-grid span, .responsibility-grid span, .evaluation-exchange span,
.evaluation-safety-note span, .evidence-maturity-grid span, .labs-capability-grid span,
.operating-controls-head > div > span, .operating-controls-grid span, .proof-family-grid span,
.operations-proof-grid span, .operations-boundary span {
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: .075em;
}

/* Cards and explanatory surfaces: no normal business copy below ~14.5px. */
.value-card p, .start-small p, .path-teaser p, .core-band p, .proof-card p, .boundary p,
.evaluation-teaser-footer p, .product-status-note p, .contact-strip-note,
.scope-grid li, .operating-model p, .integration-note p, .quality-grid p,
.mental-model-grid p, .nonclaim-grid p, .interpretation p, .evidence-separation p,
.benchmark-intro > div:last-child > p, .benchmark-method > p, .benchmark-boundaries li,
.benchmark-next p, .evidence-maturity-grid li, .evidence-track-boundary,
.responsibility-grid li, .evaluation-exchange li, .evaluation-purpose, .evaluation-grid p,
.evaluation-safety-note p, .evaluation-output-boundary, .boundary-list p, .decision-gates p,
.benchmark-crosslink p, .maturity-path p, .team-model p, .contact-options p,
.guidance-grid p, .buyer-reason-grid p, .measurement-grid p, .trust-grid p, .privacy-grid p,
.labs-capability-grid.light p, .labs-boundary p, .operating-controls-head p,
.operations-evidence-intro p, .operations-boundary p, .engagement-unit-grid li,
.offer-qualification p, .home-evidence-card p, .home-evidence-card dd, .home-evidence-card li {
  font-size: 14.5px;
  line-height: 1.72;
}

/* High-value homepage cards get a little more breathing room. */
.home-evidence-card h3 { font-size: 23px; line-height: 1.34; }
.home-evidence-card > strong { font-family: var(--font-body); font-size: 12px; line-height: 1.5; letter-spacing: .04em; }
.home-evidence-card dt { font-size: 11.5px; letter-spacing: .06em; }
.home-evidence-card a { font-size: 13.5px; line-height: 1.45; }
.home-evidence-card dl div { padding: 15px 0; }
.home-evidence-card li { padding: 11px 0; }

/* Buyer committee translation remains the clearest copy layer. */
.buyer-decision-map span { font-size: 12px; }
.buyer-decision-map h3 { font-size: 25px; line-height: 1.28; margin-top: 46px; }
.buyer-decision-map p { font-size: 15px; line-height: 1.68; }
.bounded-change-strip > div span { font-size: 11.5px; }
.bounded-change-strip > div strong { font-size: 17px; }
.bounded-change-strip li { font-size: 14px; line-height: 1.5; }

/* Controlled Evaluation lifecycle remains technical detail, but not tiny detail. */
.evaluation-grid article > span { font-size: 11px; }
.evaluation-step-pair { min-height: 44px; font-family: var(--font-body); font-size: 11.5px; line-height: 1.5; font-weight: 700; letter-spacing: .04em; }
.evaluation-grid h3 { font-size: 23px; }
.evaluation-step-details p { padding: 15px 0; }

/* Evidence and benchmark diligence: preserve density without forcing zoom. */
.metric-grid span { font-size: 12px; line-height: 1.45; }
.metric-grid .metric-qualifier { font-size: 11px; line-height: 1.5; }
.benchmark-method-note p { font-size: 12.5px; line-height: 1.65; }
.benchmark-proof small, .benchmark-trace small { font-size: 12px; line-height: 1.55; }
.benchmark-source p { font-size: 12.5px; line-height: 1.6; }
.security-review-note { font-size: 12.5px; line-height: 1.6; }

/* Operations / execution proof surfaces. */
.labs-capability-grid strong { font-size: 15px; line-height: 1.55; }
.labs-capability-grid small { font-size: 12.5px; line-height: 1.55; color: #9bb0bd; }
.labs-capability-grid.light strong { font-size: 18px; }
.labs-capability-grid.light a { font-size: 13.5px; }
.operating-controls-grid strong { font-size: 14px; line-height: 1.6; }
.operating-controls-link { font-size: 13.5px; padding: 17px 25px; }
.proof-family-grid strong { font-family: var(--font-body); font-size: 14px; line-height: 1.55; }
.proof-family-grid small { font-size: 12.5px; line-height: 1.6; }
.operations-proof-grid strong { font-size: 13px; line-height: 1.55; }
.operations-proof-grid small { font-size: 12.5px; line-height: 1.55; }
.operations-screenshot figcaption strong { font-size: 14.5px; }
.operations-screenshot figcaption span { font-size: 13.5px; line-height: 1.65; }
.operations-screenshot figcaption small { font-size: 12.5px; line-height: 1.55; }
.proof-detail-link span { font-size: 12px; }
.proof-detail-link a, .offer-qualification a { font-size: 13.5px; }

/* Team and company surfaces. */
.member-body h3 { font-size: 22px; }
.member-body h4 { min-height: 0; font-size: 13.5px; line-height: 1.5; }
.member-body p { font-size: 14.5px; line-height: 1.72; }
.guidance-grid small { color: #91a9b9; font-size: 12.5px; line-height: 1.6; }

/* Contact surfaces. */
.form-safety p, .form-status, .contact-fallback p { font-size: 15px; line-height: 1.7; }
.contact-options h3 { font-size: 22px; }
.contact-form label > span, .contact-form .field-hint { font-size: 14.5px; }

/* Insights cards and long-form articles. */
.insights-archive-intro > p { font-size: 17px; line-height: 1.7; }
.insight-card-placeholder small, .insight-card-meta span { font-size: 11.5px; }
.insight-card-body > p { font-size: 15px; line-height: 1.7; }
.insight-card-foot time { font-size: 12.5px; }
.insight-card-foot a, .insights-pagination .page-numbers { font-size: 13.5px; }
.article-breadcrumb { font-size: 13px; }
.insight-kicker span { font-size: 12px; }
.insight-standfirst { font-size: 20px; line-height: 1.6; }
.insight-byline { font-size: 13px; }
.insight-context-strip small { font-size: 11.5px; }
.insight-context-strip strong { font-size: 14px; }
.article-toc > strong { font-size: 12.5px; }
.article-toc a, .article-back-link { font-size: 13.5px; line-height: 1.5; }
.insight-body { font-size: 17.5px; line-height: 1.78; }
.insight-body h2[id*="claim-boundary"] + p { font-size: 14.5px; }
.related-insights-grid article > span { font-size: 11.5px; }
.related-insights-grid p { font-size: 14.5px; }
.related-insights-grid article > a { font-size: 13.5px; }
.home-insight-card > span { font-size: 11.5px; }
.home-insight-card p { font-size: 15px; }
.home-insight-card > a { font-size: 13.5px; }
.home-insights-footer p { font-size: 14px; }

/* Links must look actionable; prose links should not depend on colour alone. */
main p a:not(.button):not(.text-link),
main li a:not(.button):not(.text-link),
.insight-body a {
  color: var(--blue);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #9ebfca;
  text-underline-offset: 3px;
  transition: color 160ms var(--ease), text-decoration-color 160ms var(--ease);
}
main p a:not(.button):not(.text-link):hover,
main li a:not(.button):not(.text-link):hover,
.insight-body a:hover {
  color: var(--navy);
  text-decoration-color: var(--navy);
}
.proof-card a, .boundary a, .home-evidence-card a, .home-insight-card > a,
.related-insights-grid article > a, .operating-controls-link, .proof-detail-link a,
.offer-qualification a, .insight-card-foot a {
  color: var(--blue);
  font-weight: 700;
  text-underline-offset: 3px;
}
.proof-card a:hover, .boundary a:hover, .home-evidence-card a:hover,
.home-insight-card > a:hover, .related-insights-grid article > a:hover,
.operating-controls-link:hover, .proof-detail-link a:hover, .offer-qualification a:hover,
.insight-card-foot a:hover { color: var(--navy); }

/* Technical system illustration remains intentionally compact, but never 8px. */
.system-topline, .system-foot { font-size: 10.5px; line-height: 1.3; }
.signal-row small, .context-node small, .recommendation small { font-size: 10.5px; line-height: 1.35; }
.signal-row strong, .recommendation strong { font-size: 13px; }
.context-node strong { font-size: 17px; }

/* Professional footer: clear hierarchy, grouped navigation, readable legal copy. */
.site-footer { background: #04131f; color: white; padding: 68px 0 28px; }
.site-footer .footer-main { display: grid; grid-template-columns: minmax(260px,.95fr) minmax(480px,1.4fr); gap: 92px; align-items: start; }
.footer-brand-block { max-width: 430px; }
.site-footer .footer-brand { display: inline-flex; margin-bottom: 25px; }
.site-footer .footer-brand img { width: 118px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand-block > p { margin: 0; color: #b0c0cb; font-size: 15.5px; line-height: 1.72; }
.footer-enquiry { display: inline-flex; flex-direction: column; gap: 5px; margin-top: 27px; padding-top: 20px; border-top: 1px solid var(--footer-line); color: white; }
.footer-enquiry span { color: var(--footer-secondary); font-size: 12px; line-height: 1.4; font-weight: 600; }
.footer-enquiry strong { color: white; font-size: 14.5px; line-height: 1.4; font-weight: 650; }
.footer-enquiry:hover strong { color: var(--cyan); }
.footer-nav { display: grid; grid-template-columns: 1.15fr .9fr .8fr; gap: 42px; }
.footer-nav-group { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-nav-group > strong { margin-bottom: 7px; color: #8fa7b8; font-size: 11.5px; line-height: 1.4; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-nav-group a { color: #f0f5f7; font-size: 14px; line-height: 1.45; font-weight: 550; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px; transition: color 160ms var(--ease), text-decoration-color 160ms var(--ease); }
.footer-nav-group a:hover, .footer-nav-group a:focus-visible { color: var(--cyan); text-decoration-color: var(--cyan); }
.footer-meta { display: flex; justify-content: space-between; gap: 28px; margin-top: 54px; padding-top: 22px; border-top: 1px solid var(--footer-line); color: var(--footer-secondary); font-family: var(--font-body); font-size: 12.5px; line-height: 1.55; letter-spacing: 0; }

/* Responsive typography should remain generous rather than collapsing to microcopy. */
@media (max-width: 1080px) {
  .nav-links { gap: 16px; font-size: 13px; }
  .site-footer .footer-main { gap: 52px; }
}

@media (max-width: 820px) {
  .nav-links.open a { font-size: 15px; line-height: 1.4; padding: 15px 14px; }
  .section-heading > p, .two-col-heading > p, .page-hero-copy > p { font-size: 16.5px; }
  .site-footer { padding-top: 56px; }
  .site-footer .footer-main { grid-template-columns: 1fr; gap: 42px; }
  .footer-brand-block { max-width: 560px; }
  .footer-nav { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px; }
  .footer-meta { margin-top: 42px; }
}

@media (max-width: 620px) {
  .hero-body { font-size: 16.5px; }
  .section-heading > p, .two-col-heading > p, .page-hero-copy > p { font-size: 16px; line-height: 1.68; }
  .buyer-decision-map p { font-size: 15px; }
  .bounded-change-strip li { font-size: 14px; }
  .home-insight-card p, .insight-card-body > p { font-size: 15px; }
  .insight-body { font-size: 16.5px; line-height: 1.76; }
  .insight-standfirst { font-size: 18px; }
  .footer-nav { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .footer-nav-group:last-child { grid-column: 1 / -1; }
  .footer-meta { flex-direction: column; gap: 8px; font-size: 12.5px; }
}

@media (max-width: 420px) {
  .footer-nav { grid-template-columns: 1fr; }
  .footer-nav-group:last-child { grid-column: auto; }
  .footer-nav-group a { font-size: 14.5px; }
}

/* Final audit corrections for residual legacy microcopy selectors. */
.path-teaser > span, .proof-card > span, .operating-model span,
.benchmark-intro .benchmark-record-name, .benchmark-method > span, .benchmark-proof span,
.benchmark-boundaries span, .benchmark-next span, .maturity-path span, .benchmark-crosslink span,
.benchmark-method-note span, .benchmark-trace span, .benchmark-source strong,
.evaluation-question-grid article > span, .engagement-unit-grid span, .labs-boundary span,
.labs-opportunity-strip span {
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: .07em;
}
.invariant-strip > * { font-size: 14px; line-height: 1.65; }
.proof-card a, .boundary a { font-size: 13.5px; line-height: 1.45; }
.operating-model p { font-size: 14px; line-height: 1.6; }
.benchmark-intro code { font-size: 12px; }
.queue-row small { font-size: 10.5px; line-height: 1.4; }
.queue-comparison > strong { font-size: 11px; }
.benchmark-trace code, .benchmark-trace strong { font-size: 12px; line-height: 1.55; }
.benchmark-source code { font-size: 11.5px; line-height: 1.5; }
.maturity-path article > div > strong { font-size: 10.5px; line-height: 1.45; }
.proof-scope-badge { font-size: 11px; line-height: 1.4; }
.labs-opportunity-strip strong { font-size: 14.5px; line-height: 1.55; }
.labs-opportunity-strip .opportunity-link { font-size: 13.5px; }

@media (max-width: 620px) {
  .invariant-strip > * { font-size: 14px; }
  .operating-model p { font-size: 13.5px; }
}

/* v0.1.5.6 footer hotfix — clean rendering and stable responsive layout. */
.site-footer {
  background: #04131f;
  color: #fff;
  padding: 64px 0 26px;
  overflow: hidden;
}
.site-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: start;
}
.site-footer .footer-brand-block {
  min-width: 0;
  max-width: 460px;
}
.site-footer .footer-brand {
  display: inline-flex;
  min-width: 0;
  margin: 0 0 24px;
}
.site-footer .footer-brand img {
  display: block;
  width: 118px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .96;
}
.site-footer .footer-brand-block > p {
  max-width: 430px;
  margin: 0;
  color: #b7c5cf;
  font-size: 15.5px;
  line-height: 1.72;
}
.site-footer .footer-enquiry {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  width: fit-content;
  max-width: 100%;
  margin-top: 26px;
  padding-top: 19px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #fff;
  text-decoration: none;
}
.site-footer .footer-enquiry span {
  color: #9fb1bd;
  font-size: 12.5px;
  line-height: 1.4;
  font-weight: 600;
}
.site-footer .footer-enquiry strong {
  color: #fff;
  font-size: 14.5px;
  line-height: 1.45;
  font-weight: 650;
  overflow-wrap: anywhere;
}
.site-footer .footer-enquiry:hover strong,
.site-footer .footer-enquiry:focus-visible strong {
  color: var(--cyan);
}
.site-footer .footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 44px);
  min-width: 0;
}
.site-footer .footer-nav-group {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.site-footer .footer-nav-group > strong {
  margin: 0 0 6px;
  color: #94a9b8;
  font-size: 11.5px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-footer .footer-nav-group a {
  display: inline-block;
  max-width: 100%;
  color: #f3f7f9;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 550;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 160ms var(--ease), transform 160ms var(--ease);
}
.site-footer .footer-nav-group a:hover,
.site-footer .footer-nav-group a:focus-visible {
  color: var(--cyan);
}
.site-footer .footer-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 20px 36px;
  margin-top: 52px;
  padding-top: 21px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: #93a8b6;
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.55;
  letter-spacing: 0;
}
.site-footer .footer-meta span:last-child {
  text-align: right;
}

@media (max-width: 900px) {
  .site-footer {
    padding-top: 54px;
  }
  .site-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .site-footer .footer-brand-block {
    max-width: 600px;
  }
  .site-footer .footer-nav {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 48px 0 24px;
  }
  .site-footer .footer-main {
    gap: 36px;
  }
  .site-footer .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }
  .site-footer .footer-nav-group:last-child {
    grid-column: 1 / -1;
  }
  .site-footer .footer-meta {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 38px;
    font-size: 12.5px;
  }
  .site-footer .footer-meta span:last-child {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .site-footer .footer-nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .site-footer .footer-nav-group:last-child {
    grid-column: auto;
  }
  .site-footer .footer-nav-group a {
    font-size: 14.5px;
  }
}
