:root {
  --navy-950: #041020;
  --navy-900: #071a35;
  --navy-800: #0b294f;
  --blue-700: #0b3b72;
  --blue-600: #13558f;
  --blue-400: #61b8eb;
  --ice-300: #9ed8f5;
  --steel-500: #829ab1;
  --steel-300: #b8c8d6;
  --steel-150: #d9e3eb;
  --paper: #f7f8f6;
  --white: #ffffff;
  --ink: #0a1a2e;
  --muted: #546579;
  --line: rgba(7, 26, 53, 0.14);
  --shadow: 0 22px 64px rgba(3, 16, 33, 0.12);
  --surface-card-fallback: rgba(255, 255, 255, .9);
  --surface-card: rgba(255, 255, 255, .74);
  --surface-card-strong: rgba(255, 255, 255, .8);
  --surface-card-border: rgba(255, 255, 255, .72);
  --surface-card-outline: rgba(7, 26, 53, .13);
  --surface-card-text: #07111f;
  --surface-card-blur: 8px;
  --radius: 2px;
  --shell: min(1180px, calc(100vw - 48px));
  --serif: Cambria, "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--white); background: var(--blue-600); }

.shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 830px; }
.center { text-align: center; }
.section { padding: clamp(76px, 9vw, 132px) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 12px 18px; background: var(--white); color: var(--navy-900); font-weight: 800; transition: top .2s; }
.skip-link:focus { top: 16px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; line-height: 1.05; }
h1 { font-size: clamp(3rem, 6.4vw, 6.5rem); }
h2 { font-size: clamp(2.35rem, 4.5vw, 4.8rem); }
h3 { font-size: 1.18rem; line-height: 1.3; }
em { color: var(--ice-300); font-style: italic; }
.eyebrow { margin-bottom: 20px; color: var(--blue-600); font-size: .71rem; font-weight: 800; letter-spacing: .16em; line-height: 1.3; text-transform: uppercase; }
.eyebrow.light { color: var(--ice-300); }
.large-copy { font-size: clamp(1.05rem, 2vw, 1.35rem); color: var(--muted); }

.site-header { position: absolute; top: 0; left: 0; z-index: 50; width: 100%; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.12); }
.site-header.is-scrolled { position: fixed; color: var(--navy-900); background: rgba(247,248,246,.94); border-color: var(--line); box-shadow: 0 4px 24px rgba(3,16,33,.08); backdrop-filter: blur(14px); animation: headerDrop .25s ease both; }
@keyframes headerDrop { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: inherit; font-size: 1.27rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; text-decoration: none; }
.brand > span:last-child > span { font-weight: 420; }
.brand-mark { position: relative; width: 34px; height: 34px; display: inline-grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; background: currentColor; opacity: .55; }
.brand-mark::before { width: 1px; height: 42px; }
.brand-mark::after { width: 42px; height: 1px; }
.brand-mark i { position: relative; width: 18px; height: 18px; border: 1px solid currentColor; border-radius: 50%; transform: rotate(45deg); }
.brand-mark i::before { content: ""; position: absolute; left: 7px; top: -5px; width: 2px; height: 13px; background: currentColor; clip-path: polygon(0 100%, 50% 0, 100% 100%); }
.site-nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 31px); }
.site-nav a { position: relative; font-size: .75rem; font-weight: 750; letter-spacing: .02em; text-decoration: none; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 1px; background: currentColor; transition: right .2s; }
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { right: 0; }
.nav-cta { padding: 12px 18px; color: var(--navy-900); background: var(--white); border: 1px solid var(--white); }
.is-scrolled .nav-cta { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 10px; background: transparent; color: inherit; border: 0; }
.nav-toggle > span:not(.sr-only) { display: block; width: 24px; height: 1px; margin: 6px auto; background: currentColor; transition: transform .2s, opacity .2s; }

.blueprint-field { position: relative; overflow: hidden; color: var(--white); background-color: var(--navy-900); background-image: linear-gradient(rgba(97,184,235,.075) 1px, transparent 1px), linear-gradient(90deg, rgba(97,184,235,.075) 1px, transparent 1px), linear-gradient(rgba(97,184,235,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(97,184,235,.035) 1px, transparent 1px); background-size: 80px 80px, 80px 80px, 16px 16px, 16px 16px; }
.blueprint-field::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 78% 45%, rgba(31,109,164,.25), transparent 35%), linear-gradient(90deg, rgba(4,16,32,.52), transparent 55%); }
.blueprint-paper { background-color: #edf3f6; background-image: linear-gradient(rgba(11,59,114,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(11,59,114,.055) 1px, transparent 1px); background-size: 24px 24px; }

.hero { min-height: min(950px, 100svh); padding: 148px 0 84px; display: grid; align-items: center; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: clamp(50px, 7vw, 110px); }
.hero-copy h1 { max-width: 780px; margin-bottom: 32px; font-size: clamp(3rem, 5vw, 5.5rem); }
.hero-lede { max-width: 660px; color: var(--steel-150); font-size: clamp(1.05rem, 1.5vw, 1.27rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 38px 0; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 30px; padding: 14px 22px; border: 1px solid transparent; border-radius: var(--radius); font-size: .78rem; font-weight: 800; letter-spacing: .045em; text-decoration: none; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 3px; }
.button-primary { color: var(--navy-950); background: var(--ice-300); border-color: var(--ice-300); }
.button-primary:hover { background: var(--white); border-color: var(--white); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.35); }
.button-ghost:hover, .button-outline:hover { background: rgba(255,255,255,.08); border-color: var(--white); }
.button-outline { color: var(--white); border-color: rgba(255,255,255,.4); }
.button-dark { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.button-dark:hover { color: var(--white); background: var(--navy-800); border-color: var(--navy-800); }
.button-blue { color: var(--white); background: var(--blue-700); border-color: var(--blue-700); }
.button-blue:hover { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.button-large { min-height: 58px; padding: 17px 28px; }
.trust-line { display: flex; flex-wrap: wrap; gap: 10px 28px; margin: 0; padding: 0; color: var(--steel-300); font-size: .69rem; font-weight: 700; letter-spacing: .06em; list-style: none; text-transform: uppercase; }
.trust-line li { display: flex; align-items: center; gap: 10px; }
.trust-line li::before { content: "+"; color: var(--blue-400); }
.instrument-panel { position: relative; aspect-ratio: 1; min-width: 0; }
.compass { position: absolute; width: min(88%, 500px); aspect-ratio: 1; left: 50%; top: 48%; transform: translate(-50%, -50%); border: 1px solid rgba(158,216,245,.18); border-radius: 50%; background: repeating-conic-gradient(from 0deg, rgba(158,216,245,.22) 0deg .25deg, transparent .25deg 5deg); box-shadow: 0 0 90px rgba(97,184,235,.08); }
.compass::before { content: ""; position: absolute; inset: 3%; border: 9px double rgba(184,200,214,.2); border-radius: 50%; }
.compass-ring { position: absolute; inset: 14%; border: 1px solid rgba(158,216,245,.38); border-radius: 50%; }
.ring-mid { inset: 29%; border-style: dashed; opacity: .65; }
.ring-inner { inset: 42%; border-color: rgba(255,255,255,.5); }
.compass-axis { position: absolute; left: 50%; top: 50%; background: rgba(158,216,245,.28); transform: translate(-50%, -50%); }
.axis-x { width: 118%; height: 1px; }
.axis-y { width: 1px; height: 118%; }
.compass-needle { position: absolute; width: 12%; height: 58%; left: 44%; top: 21%; transform: rotate(32deg); animation: needleSet 1.4s cubic-bezier(.2,.8,.2,1) .35s both; }
.compass-needle::before, .compass-needle::after { content: ""; position: absolute; inset-inline: 0; }
.compass-needle::before { top: 0; height: 50%; background: var(--ice-300); clip-path: polygon(50% 0, 92% 100%, 50% 84%, 8% 100%); }
.compass-needle::after { bottom: 0; height: 50%; background: rgba(184,200,214,.58); clip-path: polygon(50% 100%, 92% 0, 50% 16%, 8% 0); }
.compass-needle i { position: absolute; z-index: 2; width: 18px; height: 18px; left: calc(50% - 9px); top: calc(50% - 9px); background: var(--navy-900); border: 3px solid var(--white); border-radius: 50%; }
@keyframes needleSet { from { transform: rotate(-52deg); } to { transform: rotate(32deg); } }
.center-pin { position: absolute; width: 5px; height: 5px; left: 50%; top: 50%; background: var(--white); border-radius: 50%; transform: translate(-50%,-50%); }
.direction { position: absolute; color: var(--steel-150); font-family: var(--serif); font-size: .9rem; }
.direction.n { top: 7%; left: 50%; transform: translateX(-50%); }
.direction.s { bottom: 7%; left: 50%; transform: translateX(-50%); }
.direction.e { right: 7%; top: 50%; transform: translateY(-50%); }
.direction.w { left: 7%; top: 50%; transform: translateY(-50%); }
.coordinate { position: absolute; color: rgba(255,255,255,.68); font-size: .58rem; font-weight: 800; letter-spacing: .12em; line-height: 1.5; }
.coordinate span { color: rgba(158,216,245,.52); font-size: .52rem; }
.coordinate-nw { top: 5%; left: 0; }
.coordinate-ne { top: 5%; right: 0; text-align: right; }
.coordinate-sw { bottom: 12%; left: 0; }
.coordinate-se { bottom: 12%; right: 0; text-align: right; }
.instrument-caption { position: absolute; left: 50%; bottom: 0; width: 80%; padding-top: 12px; color: var(--steel-300); border-top: 1px solid rgba(255,255,255,.15); font-size: .66rem; letter-spacing: .08em; text-align: center; text-transform: uppercase; transform: translateX(-50%); }
.instrument-caption span { margin-right: 9px; color: var(--ice-300); }
.hero-ruler { position: absolute; right: 0; bottom: 0; left: 0; height: 18px; opacity: .3; background: repeating-linear-gradient(90deg, transparent 0 39px, var(--ice-300) 40px 41px); }

.statement-section { background: var(--paper); }
.statement-section h2 { margin-bottom: 16px; }
.statement { color: var(--blue-700); font-family: var(--serif); font-size: clamp(1.45rem, 2.7vw, 2.4rem); }
.mission-section { border-block: 1px solid var(--line); background: var(--white); }
.mission-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.mission-copy h2 { font-size: clamp(2.7rem, 5vw, 5.4rem); }
.mission-copy h2 em { color: var(--blue-700); }
.mission-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); }
.mission-copy .mission-lede { color: var(--navy-900); font-size: 1.08rem; }
.mission-ledger { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.mission-ledger article { min-height: 220px; padding: clamp(30px, 4vw, 48px); background: var(--paper); }
.mission-ledger article > span { color: var(--blue-600); font-size: .64rem; font-weight: 850; letter-spacing: .12em; }
.mission-ledger h3 { margin: 34px 0 14px; font-family: var(--serif); font-size: clamp(1.65rem, 2.8vw, 2.4rem); font-weight: 500; }
.mission-ledger p { margin-bottom: 0; color: var(--muted); }
.mission-ledger .mission-business { color: var(--white); background: var(--blue-700); }
.mission-ledger .mission-business > span { color: var(--ice-300); }
.mission-ledger .mission-business p { color: var(--steel-150); }
.mission-outcome { display: grid; grid-template-columns: .32fr 1.68fr; gap: clamp(40px, 8vw, 110px); align-items: start; margin-top: clamp(55px, 8vw, 95px); padding-top: clamp(35px, 5vw, 58px); border-top: 1px solid var(--line); }
.mission-outcome > p:last-child { max-width: 950px; margin: 0; color: var(--blue-700); font-family: var(--serif); font-size: clamp(1.55rem, 2.8vw, 2.75rem); line-height: 1.35; }
.mission-outcome strong { color: var(--navy-900); font-weight: 500; }
.contrast-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 64px; background: var(--line); border: 1px solid var(--line); }
.contrast-card { position: relative; min-height: 370px; padding: clamp(32px, 5vw, 64px); overflow: hidden; background: var(--white); }
.contrast-card h3 { max-width: 420px; margin: 50px 0 18px; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 500; }
.contrast-card p { max-width: 430px; color: var(--muted); }
.card-index { color: var(--steel-500); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.old-way { background: #f0f1ef; }
.old-way h3 { color: #5f6872; }
.blueprint-way { color: var(--white); background: var(--blue-700); }
.blueprint-way p, .blueprint-way .card-index { color: var(--steel-150); }
.constraint-lines { position: absolute; right: -50px; bottom: -38px; width: 220px; height: 220px; opacity: .17; transform: rotate(-10deg); }
.constraint-lines i { display: block; height: 1px; margin: 35px 0; background: var(--ink); }
.alignment-mark { position: absolute; right: -55px; bottom: -55px; width: 210px; height: 210px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.alignment-mark::before, .alignment-mark::after { content: ""; position: absolute; background: rgba(255,255,255,.2); }
.alignment-mark::before { width: 1px; height: 250px; left: 50%; top: -20px; }
.alignment-mark::after { height: 1px; width: 250px; top: 50%; left: -20px; }
.alignment-mark i { position: absolute; inset: 23%; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }

.inputs { border-block: 1px solid var(--line); }
.inputs-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 150px); align-items: center; }
.inputs-copy h2 { font-size: clamp(2.4rem, 4.2vw, 4.5rem); }
.inputs-copy > p:not(.eyebrow):not(.fine-print) { color: var(--muted); font-size: 1.08rem; }
.fine-print { padding-left: 14px; color: var(--steel-500); border-left: 2px solid var(--blue-400); font-size: .8rem; }
.text-link { display: inline-flex; align-items: center; gap: 26px; padding-bottom: 4px; color: var(--blue-700); border-bottom: 1px solid currentColor; font-size: .78rem; font-weight: 850; letter-spacing: .04em; text-decoration: none; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.input-stack { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.input-stack li { position: relative; min-height: 61px; display: flex; align-items: center; gap: 28px; padding: 12px 52px 12px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.18rem; }
.input-stack li > span { color: var(--blue-600); font-family: var(--sans); font-size: .62rem; font-weight: 850; letter-spacing: .1em; }
.input-stack i { position: absolute; right: 0; width: 25px; height: 25px; border: 1px solid var(--steel-300); border-radius: 50%; }
.input-stack i::before, .input-stack i::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--blue-600); transform: translate(-50%,-50%); }
.input-stack i::before { width: 9px; height: 1px; }
.input-stack i::after { width: 1px; height: 9px; }

.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; margin-bottom: 70px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { color: var(--muted); }
.process-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 0 auto; padding: 0; background: rgba(11,59,114,.15); border: 1px solid rgba(11,59,114,.15); list-style: none; }
.process-track::before { content: ""; position: absolute; left: 10%; right: 10%; top: 35px; height: 1px; background: var(--blue-400); opacity: .45; }
.process-step { position: relative; min-height: 310px; padding: 29px 24px; background: rgba(255,255,255,.75); }
.step-number { width: 42px; height: 42px; position: relative; z-index: 1; display: grid; place-items: center; color: var(--white); background: var(--blue-700); border: 6px solid #edf3f6; border-radius: 50%; font-size: .62rem; font-weight: 850; }
.process-step > div { margin-top: 52px; }
.process-step h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 550; }
.process-step p { color: var(--muted); font-size: .84rem; }
.section-action { margin-top: 45px; }

.pricing-preview { border-block: 1px solid var(--line); }
.pricing-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pricing-preview-grid span { min-height: 105px; display: grid; align-content: center; gap: 4px; padding: 22px; color: var(--navy-900); background: rgba(255,255,255,.84); font-family: var(--serif); font-size: 1.4rem; }
.pricing-preview-grid strong { color: var(--blue-600); font-family: var(--sans); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; }
.pricing-preview-grid small { color: var(--muted); font-family: var(--sans); font-size: .72rem; font-weight: 750; }
.pricing-actions { margin-bottom: 0; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pricing-card { min-width: 0; min-height: 370px; display: flex; flex-direction: column; padding: clamp(30px, 4vw, 48px); background: var(--white); }
.pricing-card-emphasis { position: relative; background: #edf5f9; box-shadow: inset 0 4px 0 var(--blue-600); }
.pricing-plan { color: var(--blue-600); font-size: .7rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.pricing-amount { margin: 48px 0 8px; color: var(--muted); font-size: .78rem; font-weight: 700; }
.pricing-amount span { display: block; color: var(--navy-900); font-family: var(--serif); font-size: clamp(3.25rem, 6vw, 5.25rem); font-weight: 500; letter-spacing: -.055em; line-height: .95; }
.pricing-annual { min-height: 48px; color: var(--blue-700); font-size: .84rem; font-weight: 800; }
.pricing-card .text-link { margin-top: auto; align-self: flex-start; }

.communications-preview-layout { display: grid; grid-template-columns: 1fr minmax(260px, .58fr); gap: clamp(42px, 8vw, 110px); align-items: center; }
.communications-preview-copy { padding: clamp(30px, 4.5vw, 58px); background: linear-gradient(145deg, var(--vellum-strong), var(--vellum)); border: 1px solid rgba(255,255,255,.68); outline: 1px solid rgba(37,83,116,.18); outline-offset: -7px; box-shadow: var(--paper-shadow); backdrop-filter: blur(9px); }
.communications-preview-copy p:not(.eyebrow) { max-width: 680px; color: var(--muted); font-size: 1.06rem; }
.communications-preview-art { max-width: 410px; justify-self: center; padding: 12px; background: rgba(248,251,252,.9); border: 1px solid rgba(255,255,255,.78); box-shadow: 0 25px 54px rgba(2,12,25,.27); transform: rotate(2.2deg); }
.communications-preview-art img { display: block; width: 100%; }

.communications-gallery-heading { margin-bottom: 44px; padding: clamp(30px, 4.5vw, 58px); background: linear-gradient(145deg, var(--vellum-strong), var(--vellum)); border: 1px solid rgba(255,255,255,.68); outline: 1px solid rgba(37,83,116,.18); outline-offset: -7px; box-shadow: var(--paper-shadow); backdrop-filter: blur(9px); }
.communications-gallery-heading > p:last-child { margin-bottom: 0; color: var(--muted); }
.communications-carousel { max-width: 860px; touch-action: pan-y; }
.carousel-viewport { overflow: hidden; padding: 28px clamp(10px, 4vw, 40px); }
.carousel-track { margin: 0; padding: 0; list-style: none; }
.communications-slide { display: grid; place-items: center; }
.communications-slide[hidden] { display: none; }
.communications-slide figure { width: min(100%, 560px); margin: 0; padding: 12px; background: rgba(249,251,252,.94); border: 1px solid rgba(255,255,255,.78); box-shadow: 0 25px 52px rgba(2,12,25,.3); transform: rotate(-.45deg); }
.communications-slide img { display: block; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; background: var(--steel-150); }
.communications-slide figcaption { padding: 12px 5px 2px; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.carousel-controls { display: grid; grid-template-columns: 52px 1fr 52px; gap: 18px; align-items: center; max-width: 560px; margin: 0 auto; }
.carousel-button { width: 52px; height: 52px; display: grid; place-items: center; color: var(--white); background: var(--navy-900); border: 1px solid rgba(255,255,255,.32); cursor: pointer; font-size: 1.25rem; transition: transform .2s, background .2s; }
.carousel-button:hover { background: var(--blue-700); transform: translateY(-2px); }
.carousel-status { margin: 0; color: var(--white); font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.communications-examples { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.communication-example { overflow: hidden; background: linear-gradient(150deg, rgba(249,252,252,.94), rgba(224,236,242,.88)); border: 1px solid rgba(255,255,255,.7); box-shadow: 0 18px 40px rgba(2,12,25,.2); }
.communication-example:nth-child(2) { transform: translateY(18px); }
.communication-example img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.communication-example div { padding: 24px; }
.communication-example h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; }
.communication-example p { margin: 0; color: var(--muted); font-size: .86rem; }

.module-map { position: relative; min-height: 670px; border: 1px solid var(--line); background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 60px 60px; }
.module-map::before, .module-map::after { content: ""; position: absolute; left: 50%; top: 50%; border: 1px dashed rgba(11,59,114,.28); border-radius: 50%; transform: translate(-50%,-50%); }
.module-map::before { width: 500px; height: 500px; }
.module-map::after { width: 300px; height: 300px; }
.module-core { position: absolute; z-index: 2; left: 50%; top: 50%; width: 145px; height: 145px; display: grid; place-items: center; align-content: center; color: var(--white); background: var(--navy-900); border-radius: 50%; text-align: center; transform: translate(-50%,-50%); box-shadow: 0 0 0 10px rgba(11,59,114,.09); }
.mini-compass { width: 28px; height: 28px; margin-bottom: 7px; border: 1px solid var(--ice-300); border-radius: 50%; background: linear-gradient(45deg, transparent 47%, var(--ice-300) 48% 52%, transparent 53%); }
.module-core strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; line-height: 1.1; }
.module-card { position: absolute; z-index: 1; min-width: 140px; padding: 13px 18px; color: var(--navy-900); background: rgba(247,248,246,.94); border: 1px solid var(--steel-300); font-size: .72rem; font-weight: 800; box-shadow: 0 8px 24px rgba(7,26,53,.06); }
.module-card span { margin-right: 12px; color: var(--blue-600); font-size: .57rem; }
.module-1 { left: 4%; top: 12%; } .module-2 { left: 35%; top: 7%; } .module-3 { right: 5%; top: 13%; }
.module-4 { left: 3%; top: 42%; } .module-5 { right: 3%; top: 40%; }
.module-6 { left: 9%; bottom: 13%; } .module-7 { left: 35%; bottom: 7%; } .module-8 { right: 7%; bottom: 14%; }
.module-9 { left: 26%; top: 29%; } .module-10 { right: 22%; bottom: 30%; }

.coach-section h2 { font-size: clamp(2.45rem, 4.8vw, 5rem); }
.coach-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .78fr; gap: clamp(60px, 10vw, 150px); align-items: center; }
.coach-copy > p:not(.eyebrow):not(.future-label) { color: var(--steel-150); font-size: 1.05rem; }
.future-label { display: flex; align-items: center; gap: 10px; margin: 28px 0; color: var(--ice-300); font-size: .7rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.future-label::before { content: ""; width: 6px; height: 6px; background: var(--blue-400); border-radius: 50%; box-shadow: 0 0 0 5px rgba(97,184,235,.12); }
.coach-card { padding: clamp(30px, 5vw, 55px); background: rgba(4,16,32,.68); border: 1px solid rgba(158,216,245,.25); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.coach-card-top { display: flex; align-items: center; gap: 12px; padding-bottom: 22px; color: var(--steel-300); border-bottom: 1px solid rgba(255,255,255,.12); font-size: .6rem; font-weight: 800; letter-spacing: .12em; }
.compass-dot { width: 22px; height: 22px; display: inline-block; flex: 0 0 auto; background: radial-gradient(circle, var(--white) 0 2px, transparent 3px), conic-gradient(from 45deg, var(--ice-300), transparent 25%, var(--ice-300) 50%, transparent 75%, var(--ice-300)); border: 1px solid var(--ice-300); border-radius: 50%; }
.coach-question { margin: 38px 0 30px; font-family: var(--serif); font-size: clamp(1.6rem, 2.7vw, 2.25rem); line-height: 1.25; }
.coach-answer-lines i { display: block; height: 7px; margin: 12px 0; background: rgba(158,216,245,.18); border-radius: 10px; }
.coach-answer-lines i:nth-child(2) { width: 92%; } .coach-answer-lines i:nth-child(3) { width: 78%; } .coach-answer-lines i:nth-child(4) { width: 45%; }
.coach-disclaimer { margin: 34px 0 0; color: var(--steel-500); font-size: .76rem; }

.privacy-band { padding: 62px 0; background: var(--white); border-block: 1px solid var(--line); }
.privacy-band-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; }
.privacy-band h2 { margin-bottom: 10px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.privacy-band p:not(.eyebrow) { margin-bottom: 0; color: var(--muted); }
.shield-mark { width: 62px; height: 72px; position: relative; display: block; border: 1px solid var(--blue-600); border-radius: 35px 35px 45px 45px; clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%); }
.shield-mark::before, .shield-mark::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--blue-600); transform: translate(-50%,-50%); }
.shield-mark::before { width: 22px; height: 1px; } .shield-mark::after { width: 1px; height: 22px; }

.final-cta { padding: clamp(90px, 12vw, 155px) 0; }
.final-cta > div { position: relative; z-index: 1; }
.final-cta h2 { margin-bottom: 16px; }
.final-cta p:not(.eyebrow) { color: var(--steel-150); font-size: 1.08rem; }
.final-cta-actions { justify-content: center; margin-bottom: 0; }

.site-footer { padding: 72px 0 28px; color: var(--steel-300); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 70px; padding-bottom: 55px; }
.brand-footer { color: var(--white); }
.footer-grid > div:first-child p { margin-top: 26px; color: var(--steel-500); font-family: var(--serif); font-size: 1.05rem; }
.footer-label { color: var(--white); font-size: .66rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) a { display: block; margin: 10px 0; color: var(--steel-300); font-size: .8rem; text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: var(--steel-500); font-size: .68rem; }

.page-hero { min-height: 650px; padding: 160px 0 80px; display: grid; align-items: center; }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; }
.page-hero h1 { margin-bottom: 28px; font-size: clamp(3.3rem, 6vw, 6rem); }
.page-hero-grid > div:first-child > p:last-child { max-width: 670px; color: var(--steel-150); font-size: 1.12rem; }
.page-instrument { position: relative; min-height: 380px; }
.page-instrument .compass { width: 350px; opacity: .72; }
.drawing-label { position: absolute; right: 0; bottom: 15px; color: var(--steel-500); font-size: .56rem; font-weight: 800; letter-spacing: .12em; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(55px, 10vw, 150px); align-items: center; }
.align-start { align-items: start; }
.three-column { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.prose { color: var(--muted); font-size: 1.06rem; }
.prose p { margin-bottom: 1.4em; }
.large-prose { font-size: clamp(1.08rem, 1.7vw, 1.3rem); }
.deep-process { margin: 0 auto; padding: 0; list-style: none; }
.deep-process-step { display: grid; grid-template-columns: 110px 1fr; gap: 45px; padding: 50px 0; border-bottom: 1px solid rgba(11,59,114,.16); }
.deep-process-step:last-child { border-bottom: 0; }
.deep-process-step .step-number { width: 64px; height: 64px; border-width: 8px; }
.deep-process-step h3 { margin-bottom: 12px; font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.45rem); font-weight: 500; }
.deep-process-step p { max-width: 700px; color: var(--muted); }
.blueprint-principles, .privacy-principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.principle { min-height: 310px; padding: clamp(32px, 5vw, 58px); background: var(--white); }
.principle > span { color: var(--blue-600); font-size: .64rem; font-weight: 850; letter-spacing: .1em; }
.principle h3 { margin: 60px 0 18px; font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 500; }
.principle p { color: var(--muted); }
.quote-layout { display: grid; grid-template-columns: .4fr 1.5fr .7fr; gap: 70px; align-items: start; }
.quote-layout blockquote { margin: 0; color: var(--blue-700); font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.15; }
.quote-layout > p:last-child { color: var(--muted); }
.capability-grid, .coach-context-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.capability-card { min-height: 280px; position: relative; padding: 38px 30px; background: var(--white); }
.capability-card h3 { margin: 82px 0 15px; font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.capability-card p { color: var(--muted); font-size: .87rem; }
.capability-cross { position: absolute; width: 34px; height: 34px; border: 1px solid var(--steel-300); border-radius: 50%; }
.capability-cross::before, .capability-cross::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--blue-600); transform: translate(-50%,-50%); }
.capability-cross::before { width: 12px; height: 1px; } .capability-cross::after { width: 1px; height: 12px; }
.capability-note { margin-top: 30px; color: var(--steel-500); font-size: .78rem; }
.coach-dialogue { max-width: 880px; padding: clamp(36px, 7vw, 80px); background: var(--navy-900); color: var(--white); box-shadow: var(--shadow); }
.coach-dialogue .question { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.4rem); line-height: 1.2; }
.coach-dialogue .answer { display: flex; gap: 20px; margin: 45px 0 0 8%; padding: 28px; color: var(--navy-900); background: var(--ice-300); }
.coach-dialogue .answer strong { display: block; margin-bottom: 7px; }
.coach-dialogue .answer p { margin: 0; font-size: .88rem; }
.coach-context-grid { margin-top: 70px; grid-template-columns: repeat(2, 1fr); }
.standalone-quote { margin: 30px 0 0; color: var(--blue-700); font-family: var(--serif); font-size: clamp(2.25rem, 5vw, 4.8rem); line-height: 1.25; }
.story-layout { display: grid; grid-template-columns: .45fr 1.55fr; gap: 100px; }
.story-mark { width: 170px; height: 170px; display: grid; place-items: center; color: var(--white); background: var(--navy-900); border-radius: 50%; font-family: var(--serif); font-size: 3rem; }
.story-mark span { position: absolute; margin: 110px 0 0 100px; color: var(--blue-600); background: var(--ice-300); padding: 5px 8px; font-family: var(--sans); font-size: .6rem; font-weight: 850; }

.intake-section { background: #eef2f4; }
.intake-layout { display: grid; grid-template-columns: .42fr .58fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.intake-aside { position: sticky; top: 120px; }
.intake-aside ol { margin: 35px 0; padding: 0; list-style: none; }
.intake-aside li { display: grid; grid-template-columns: 40px 1fr; gap: 15px; padding: 18px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: .9rem; }
.intake-aside li span { color: var(--blue-600); font-size: .62rem; font-weight: 850; }
.safety-note { margin-top: 38px; padding: 25px; background: var(--white); border-left: 3px solid var(--blue-400); }
.safety-note p { margin: 7px 0 0; color: var(--muted); font-size: .84rem; }
.intake-form { padding: clamp(28px, 5vw, 60px); background: var(--white); box-shadow: 0 20px 55px rgba(7,26,53,.08); }
.form-section { margin: 0 0 50px; padding: 0; border: 0; }
.form-section-label { width: 100%; display: flex; align-items: center; gap: 14px; margin-bottom: 26px; padding-bottom: 14px; color: var(--navy-900); border-bottom: 1px solid var(--line); font-size: .72rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.form-section-label span { color: var(--blue-600); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { display: grid; gap: 8px; margin-bottom: 24px; color: var(--navy-900); font-size: .75rem; font-weight: 750; }
.field strong, .consent strong { color: #a02e37; }
.field-full { grid-column: 1 / -1; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 14px; color: var(--ink); background: #fbfcfc; border: 1px solid #cbd6df; border-radius: 0; box-shadow: none; }
.field textarea { min-height: 135px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8795a4; }
.field-help { margin: -10px 0 22px; color: var(--muted); font-size: .78rem; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check-option { position: relative; cursor: pointer; }
.check-option input { position: absolute; opacity: 0; }
.check-option span { min-height: 48px; display: flex; align-items: center; padding: 10px 13px 10px 42px; color: var(--muted); background: #f6f8f8; border: 1px solid #d6e0e7; font-size: .78rem; }
.check-option span::before { content: ""; position: absolute; left: 14px; width: 16px; height: 16px; background: var(--white); border: 1px solid var(--steel-500); }
.check-option input:checked + span { color: var(--navy-900); background: #eaf4f9; border-color: var(--blue-400); }
.check-option input:checked + span::before { background: var(--blue-600); border-color: var(--blue-600); box-shadow: inset 0 0 0 3px #eaf4f9; }
.check-option input:focus-visible + span { outline: 3px solid var(--blue-400); outline-offset: 2px; }
.consent { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: .8rem; }
.consent input { margin-top: 5px; width: 17px; height: 17px; accent-color: var(--blue-700); }
.form-privacy { color: var(--steel-500); font-size: .7rem; }
.submit-button { width: 100%; justify-content: space-between; color: var(--white); background: var(--blue-700); border-color: var(--blue-700); }
.submit-button:hover { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.submit-button[disabled] { cursor: wait; opacity: .65; transform: none; }
.honeypot { position: absolute; left: -9999px; }
.form-status { margin-bottom: 30px; padding: 18px; color: var(--navy-900); background: #eaf4f9; border-left: 3px solid var(--blue-600); font-size: .86rem; }
.form-status.is-error { color: #6f1821; background: #faedef; border-color: #a02e37; }
.confirmation-page { min-height: 780px; padding: 170px 0 100px; display: grid; place-items: center; }
.confirmation-page > div { position: relative; z-index: 1; }
.confirmation-page h1 { font-size: clamp(3rem, 6vw, 5.8rem); }
.confirmation-page p:not(.eyebrow) { max-width: 680px; margin-inline: auto; color: var(--steel-150); font-size: 1.08rem; }
.confirmation-mark { width: 74px; height: 74px; display: grid; place-items: center; margin: 0 auto 30px; color: var(--navy-900); background: var(--ice-300); border-radius: 50%; font-size: 2rem; }
.confirmation-page .button { margin-top: 25px; }

.reveal { opacity: 1; transform: none; }
.motion-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.motion-ready .reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }

@media (max-width: 1080px) {
  .site-nav { gap: 15px; }
  .site-nav a { font-size: .69rem; }
  .hero-grid { grid-template-columns: 1fr .76fr; }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .process-track::before { display: none; }
  .process-step { min-height: 280px; }
  .process-step:nth-child(n+4) { min-height: 250px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-preview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 36px, 760px); }
  .site-header { position: absolute; }
  .site-header.is-scrolled { position: fixed; }
  .nav-toggle { display: block; position: relative; z-index: 3; }
  .site-nav { position: fixed; z-index: 2; inset: 0; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; padding: 95px 26px 38px; color: var(--white); background: var(--navy-950); opacity: 0; pointer-events: none; transform: translateY(-20px); transition: opacity .2s, transform .2s; }
  .nav-open .site-nav { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav a { padding: 15px 10px; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
  .site-nav > a::after { display: none; }
  .site-nav .nav-cta { margin-top: 18px; color: var(--navy-900); background: var(--ice-300); border: 0; font-family: var(--sans); font-size: .78rem; font-weight: 850; text-align: center; }
  .nav-open .nav-toggle { color: var(--white); }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; padding: 140px 0 70px; }
  .hero-grid, .inputs-layout, .coach-layout, .page-hero-grid, .two-column, .intake-layout, .mission-layout, .mission-outcome, .communications-preview-layout { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: clamp(2.8rem, 8vw, 4.5rem); }
  .instrument-panel { width: min(100%, 560px); margin: 20px auto 0; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .module-map { min-height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 1px; background-size: 50px 50px; }
  .module-map::before, .module-map::after { display: none; }
  .module-core { position: relative; left: auto; top: auto; width: auto; height: 140px; grid-column: 1 / -1; border-radius: 0; transform: none; }
  .module-card { position: static; min-width: 0; min-height: 64px; display: flex; align-items: center; box-shadow: none; }
  .privacy-band-inner { grid-template-columns: auto 1fr; }
  .privacy-band .text-link { grid-column: 2; justify-self: start; }
  .page-hero { min-height: 700px; padding: 145px 0 60px; }
  .page-instrument { min-height: 300px; }
  .page-instrument .compass { width: 280px; }
  .quote-layout { grid-template-columns: 1fr; gap: 28px; }
  .story-layout { grid-template-columns: 1fr; gap: 50px; }
  .intake-aside { position: static; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { min-height: 0; }
  .communications-preview-art { max-width: 360px; }
  .communications-examples { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100vw - 28px); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 72px; }
  .brand { font-size: 1.1rem; }
  .brand-mark { width: 30px; height: 30px; }
  .hero { padding-top: 120px; }
  .hero-copy h1 { font-size: clamp(2.55rem, 11.3vw, 4rem); }
  .hero-lede { font-size: 1rem; }
  .button-row { display: grid; }
  .button { width: 100%; justify-content: space-between; }
  .trust-line { display: grid; }
  .instrument-panel { margin-top: 16px; }
  .coordinate { display: none; }
  .contrast-grid, .process-track, .blueprint-principles, .privacy-principles, .three-column, .capability-grid, .coach-context-grid, .pricing-preview-grid { grid-template-columns: 1fr; }
  .contrast-card { min-height: 330px; }
  .process-step { min-height: 240px; }
  .section-heading { margin-bottom: 45px; }
  .module-map { grid-template-columns: 1fr; }
  .module-core { grid-column: auto; }
  .coach-card { padding: 28px 20px; }
  .privacy-band-inner { grid-template-columns: 1fr; }
  .privacy-band .text-link { grid-column: auto; }
  .shield-mark { width: 46px; height: 54px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .page-hero { min-height: 660px; padding-top: 125px; }
  .page-hero h1 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .page-instrument { min-height: 235px; }
  .page-instrument .compass { width: 230px; }
  .deep-process-step { grid-template-columns: 1fr; gap: 25px; padding: 42px 0; }
  .principle { min-height: 270px; }
  .capability-card { min-height: 240px; }
  .coach-dialogue .answer { margin-left: 0; padding: 22px 18px; }
  .story-mark { width: 130px; height: 130px; }
  .form-grid, .check-grid { grid-template-columns: 1fr; }
  .intake-form { padding: 28px 18px; }
  .communications-preview-copy, .communications-gallery-heading { padding: 24px 20px; }
  .communications-preview-art { max-width: 300px; }
  .communications-examples { grid-template-columns: 1fr; }
  .communication-example:nth-child(2) { transform: none; }
  .carousel-viewport { padding-inline: 0; }
  .carousel-controls { grid-template-columns: 48px 1fr 48px; gap: 10px; }
  .carousel-button { width: 48px; height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Architectural drawing-desk visual system */
:root {
  --desk-navy: #061321;
  --desk-edge: #0a2035;
  --sheet-blue: #0c477f;
  --sheet-blue-deep: #083864;
  --vellum: rgba(239, 246, 248, .72);
  --vellum-strong: rgba(250, 252, 252, .84);
  --draft-line: rgba(43, 92, 126, .23);
  --paper-shadow: 0 22px 54px rgba(2, 12, 25, .18);
}

html { background: var(--desk-navy); }
body {
  --sheet-a-angle: 38deg;
  --sheet-a-left: -31vw;
  --sheet-a-top: 7vh;
  --sheet-b-angle: -13deg;
  --sheet-b-right: -24vw;
  --sheet-b-top: 34vh;
  --sheet-c-angle: 8deg;
  --sheet-c-left: 18vw;
  --sheet-c-bottom: -31vh;
  max-width: 100%;
  overflow-x: clip;
  background-color: var(--desk-navy);
  background-image:
    radial-gradient(circle at 15% 8%, rgba(81, 126, 156, .18), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(32, 85, 124, .22), transparent 32%),
    linear-gradient(135deg, var(--desk-edge), var(--desk-navy) 58%, #04101c);
}
body.route-how-it-works,
body.route-your-blueprint,
body.route-what-it-can-become { --sheet-a-angle: 32deg; --sheet-a-left: -38vw; --sheet-b-angle: -8deg; --sheet-b-top: 24vh; --sheet-c-angle: 15deg; }
body.route-industries,
body.route-aibe,
body.route-data-privacy { --sheet-a-angle: 43deg; --sheet-a-top: -2vh; --sheet-b-angle: -17deg; --sheet-b-right: -31vw; --sheet-c-left: 8vw; }
body.route-customer-communications { --sheet-a-angle: 34deg; --sheet-a-left: -28vw; --sheet-b-angle: -15deg; --sheet-b-top: 28vh; --sheet-c-angle: 12deg; }
body.route-pricing { --sheet-a-angle: 41deg; --sheet-a-left: -25vw; --sheet-b-angle: 12deg; --sheet-b-top: 40vh; --sheet-c-angle: -9deg; }
body.route-about { --sheet-a-angle: 29deg; --sheet-a-top: 16vh; --sheet-b-angle: -19deg; --sheet-b-right: -19vw; --sheet-c-angle: 11deg; }
body.route-build-my-blueprint { --sheet-a-angle: 35deg; --sheet-a-left: -34vw; --sheet-b-angle: -6deg; --sheet-b-top: 18vh; --sheet-c-angle: 18deg; }
body.route-thank-you,
body.route-404 { --sheet-a-angle: 44deg; --sheet-a-left: -23vw; --sheet-b-angle: -15deg; --sheet-c-angle: 5deg; }

.desk-environment { position: fixed; z-index: 0; inset: 0; overflow: hidden; pointer-events: none; }
.desk-environment::before { content: ""; position: absolute; inset: 0; opacity: .34; background-image: linear-gradient(rgba(184,200,214,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(184,200,214,.035) 1px, transparent 1px); background-size: 80px 80px; }
.desk-sheet { position: absolute; display: block; overflow: hidden; background-color: var(--sheet-blue); background-repeat: no-repeat; background-position: center; background-size: cover; border: 1px solid rgba(217,227,235,.38); box-shadow: 0 34px 72px rgba(0,0,0,.34), inset 0 0 0 8px rgba(255,255,255,.025); transform-origin: center; }
.desk-sheet::after { content: ""; position: absolute; inset: 0; opacity: .42; background-image: linear-gradient(115deg, rgba(255,255,255,.08), transparent 34%, rgba(2,20,38,.15)), repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.012) 4px); }
.desk-sheet-primary { width: 112vw; height: 78vw; left: var(--sheet-a-left); top: var(--sheet-a-top); opacity: .72; background-image: url("/assets/blueprint-plan-a.svg"); transform: rotate(var(--sheet-a-angle)); }
.desk-sheet-secondary { width: 82vw; height: 72vw; right: var(--sheet-b-right); top: var(--sheet-b-top); opacity: .56; background-color: var(--sheet-blue-deep); background-image: url("/assets/blueprint-plan-b.svg"); transform: rotate(var(--sheet-b-angle)); }
.desk-sheet-tertiary { width: 74vw; height: 46vw; left: var(--sheet-c-left); bottom: var(--sheet-c-bottom); opacity: .38; background-image: url("/assets/blueprint-plan-a.svg"); transform: rotate(var(--sheet-c-angle)); }
.desk-scale { position: absolute; right: 4vw; bottom: 3vh; width: min(44vw, 620px); height: 26px; opacity: .38; border-block: 1px solid rgba(217,227,235,.36); background: repeating-linear-gradient(90deg, transparent 0 23px, rgba(217,227,235,.56) 24px 25px); transform: rotate(-3deg); }

main, .site-footer { position: relative; z-index: 1; }
[id] { scroll-margin-top: 96px; }
.site-header { background: linear-gradient(180deg, rgba(3,14,27,.52), transparent); }
.site-header.is-scrolled { color: var(--white); background: rgba(4,16,32,.91); border-color: rgba(184,200,214,.2); box-shadow: 0 8px 30px rgba(0,0,0,.24); }
.is-scrolled .nav-cta { color: var(--navy-950); background: var(--ice-300); border-color: var(--ice-300); }

.blueprint-field {
  background-color: rgba(7,26,53,.96);
  background-image:
    linear-gradient(90deg, rgba(4,16,32,.9), rgba(4,16,32,.34) 56%, rgba(4,16,32,.7)),
    url("/assets/blueprint-plan-a.svg"),
    linear-gradient(rgba(97,184,235,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97,184,235,.07) 1px, transparent 1px);
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, repeat, repeat;
  background-size: cover, min(1500px, 145vw) auto, 32px 32px, 32px 32px;
}
.blueprint-field::before { z-index: 1; background: radial-gradient(circle at 77% 44%, rgba(48,128,181,.28), transparent 33%), linear-gradient(90deg, rgba(4,16,32,.68), transparent 62%); }
.blueprint-field > * { position: relative; z-index: 2; }
.blueprint-field > .hero-ruler { position: absolute; }
.hero::after, .page-hero::after, .confirmation-page::after, .final-cta::after, .coach-section::after { content: ""; position: absolute; z-index: 0; width: min(76vw, 980px); aspect-ratio: 1; right: -18%; top: -12%; opacity: .27; pointer-events: none; background: rgba(12,71,127,.58) url("/assets/blueprint-plan-b.svg") center / cover no-repeat; border: 1px solid rgba(158,216,245,.3); box-shadow: 0 28px 65px rgba(0,0,0,.28); transform: rotate(34deg); }
.page-hero::after { right: -24%; top: -32%; transform: rotate(29deg); }
.coach-section::after, .final-cta::after { left: -18%; right: auto; top: -42%; transform: rotate(-25deg); }
.confirmation-page::after { right: -12%; top: -20%; }
.hero-grid, .page-hero-grid { z-index: 3; }
.instrument-panel, .page-instrument { filter: drop-shadow(0 20px 34px rgba(0,0,0,.2)); }
.compass { background-color: rgba(4,22,43,.28); backdrop-filter: blur(2px); }

main > .section:not(.blueprint-field), .privacy-band {
  --plan-angle: -5deg;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(7,26,53,.7), rgba(18,62,99,.54));
  border-block: 1px solid rgba(217,227,235,.22);
  box-shadow: inset 0 1px rgba(255,255,255,.11), inset 0 -1px rgba(1,10,22,.34);
  backdrop-filter: blur(2px);
}
main > .section:nth-of-type(3n+2):not(.blueprint-field) { --plan-angle: 7deg; background: linear-gradient(150deg, rgba(10,40,73,.66), rgba(20,72,111,.51)); }
main > .section:nth-of-type(3n):not(.blueprint-field) { --plan-angle: -11deg; background: linear-gradient(135deg, rgba(5,24,48,.7), rgba(17,58,94,.56)); }
main > .section.blueprint-paper { background: linear-gradient(145deg, rgba(11,47,82,.68), rgba(24,79,116,.5)); }
main > .section:not(.blueprint-field)::after, .privacy-band::after { content: ""; position: absolute; z-index: 0; width: 125%; height: 132%; left: -12%; top: -16%; opacity: .25; pointer-events: none; background: url("/assets/blueprint-plan-a.svg") center / 1120px auto repeat; transform: rotate(var(--plan-angle)); }
main > .section:nth-of-type(even):not(.blueprint-field)::after { background-image: url("/assets/blueprint-plan-b.svg"); background-size: 900px auto; }
main > .section:not(.blueprint-field) > *, .privacy-band > * { position: relative; z-index: 1; }
.statement-section, .mission-section, .inputs, .modules, .pricing-preview, .intake-section, .privacy-band { background-color: transparent; }

.statement-section .narrow,
.mission-copy,
.mission-outcome,
.inputs-copy,
.section-heading,
.two-column,
.quote-layout,
.story-layout,
.deep-process,
.blueprint-paper > .shell.narrow,
.privacy-band-inner,
.intake-aside {
  padding: clamp(30px, 4.5vw, 58px);
  background-image: repeating-linear-gradient(7deg, rgba(37,83,116,.025) 0 1px, transparent 1px 4px), linear-gradient(145deg, var(--vellum-strong), var(--vellum));
  border: 1px solid rgba(255,255,255,.68);
  outline: 1px solid rgba(37,83,116,.18);
  outline-offset: -7px;
  box-shadow: var(--paper-shadow);
  backdrop-filter: blur(9px);
}
.statement-section .narrow, .blueprint-paper > .shell.narrow { transform: rotate(-.35deg); }
.mission-copy, .inputs-copy, .story-layout { transform: rotate(.28deg); }
.mission-outcome, .quote-layout { transform: rotate(-.22deg); }
.section-heading { align-items: center; }
.mission-outcome { margin-top: clamp(34px, 5vw, 64px); }
.intake-aside { top: 112px; }
.input-stack {
  padding: clamp(18px, 2.6vw, 32px);
  color: var(--ink);
  background-image: repeating-linear-gradient(7deg, rgba(37,83,116,.025) 0 1px, transparent 1px 4px), linear-gradient(145deg, rgba(250,252,252,.88), rgba(231,240,244,.8));
  border: 1px solid rgba(255,255,255,.68);
  outline: 1px solid rgba(37,83,116,.18);
  outline-offset: -7px;
  box-shadow: var(--paper-shadow);
  backdrop-filter: blur(10px);
}
.input-stack li { padding-inline: 8px 52px; border-color: rgba(7,26,53,.16); }

.contrast-grid, .mission-ledger, .process-track, .pricing-preview-grid, .pricing-grid, .blueprint-principles, .privacy-principles, .three-column, .capability-grid, .coach-context-grid { gap: 10px; background: transparent; border: 0; }
.contrast-card, .mission-ledger article, .process-step, .pricing-preview-grid span, .pricing-card, .principle, .capability-card {
  background-image: repeating-linear-gradient(8deg, rgba(37,83,116,.02) 0 1px, transparent 1px 4px), linear-gradient(150deg, rgba(251,253,253,.86), rgba(227,237,243,.72));
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: 0 14px 32px rgba(4,20,38,.13), inset 0 0 0 1px rgba(29,75,109,.08);
  backdrop-filter: blur(8px);
}
.contrast-card:nth-child(odd), .pricing-card:nth-child(odd), .principle:nth-child(odd), .capability-card:nth-child(odd) { transform: rotate(-.18deg); }
.contrast-card:nth-child(even), .pricing-card:nth-child(even), .principle:nth-child(even), .capability-card:nth-child(even) { transform: rotate(.18deg); }
.old-way { background: linear-gradient(150deg, rgba(240,243,243,.88), rgba(215,226,233,.75)); }
.blueprint-way, .mission-ledger .mission-business, .pricing-preview-grid .preview-event {
  color: var(--white);
  background-color: var(--blue-700);
  background-image: linear-gradient(135deg, rgba(4,16,32,.18), transparent), url("/assets/blueprint-plan-b.svg");
  background-position: center;
  background-size: cover;
}
.pricing-card { background: linear-gradient(150deg, rgba(251,253,253,.96), rgba(227,237,243,.91)); backdrop-filter: blur(12px); }
.pricing-card-emphasis { background: linear-gradient(145deg, rgba(225,240,248,.97), rgba(198,223,237,.94)); box-shadow: inset 0 4px 0 var(--blue-600), 0 18px 38px rgba(4,20,38,.16); }
.process-step { min-height: 330px; }
.step-number { border-color: rgba(232,241,246,.9); box-shadow: 0 0 0 1px rgba(7,26,53,.12); }

.module-map { background-color: rgba(236,244,248,.66); background-image: linear-gradient(rgba(11,59,114,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(11,59,114,.08) 1px, transparent 1px), url("/assets/blueprint-plan-a.svg"); background-size: 48px 48px, 48px 48px, cover; border: 1px solid rgba(255,255,255,.72); box-shadow: var(--paper-shadow); }
.module-card { background: rgba(246,250,251,.82); box-shadow: 0 10px 25px rgba(7,26,53,.11); }
.privacy-band { padding-block: 74px; }
.privacy-band-inner { grid-template-columns: auto 1fr auto; }
.site-footer { background-color: rgba(4,16,32,.97); background-image: linear-gradient(rgba(97,184,235,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(97,184,235,.035) 1px, transparent 1px), url("/assets/blueprint-plan-b.svg"); background-size: 48px 48px, 48px 48px, 760px auto; background-position: center, center, 92% 34%; background-repeat: repeat, repeat, no-repeat; border-top: 1px solid rgba(158,216,245,.22); }

.story-mark { background-color: rgba(7,26,53,.92); box-shadow: 0 18px 40px rgba(3,16,33,.2), inset 0 0 0 12px rgba(97,184,235,.06); }
.standalone-quote { text-shadow: 0 1px rgba(255,255,255,.7); }
.intake-form { position: relative; background: linear-gradient(145deg, rgba(251,253,253,.96), rgba(226,237,243,.92)); border: 1px solid rgba(255,255,255,.75); outline: 1px solid rgba(37,83,116,.18); outline-offset: -8px; box-shadow: var(--paper-shadow); backdrop-filter: blur(10px); }
.intake-form::before { content: "SPEC / INTAKE / 01"; position: absolute; right: 24px; top: 14px; color: rgba(19,85,143,.45); font-size: .55rem; font-weight: 850; letter-spacing: .14em; }
.safety-note, .field input, .field textarea, .field select, .check-option span { background: rgba(250,252,252,.8); }
.confirmation-mark { box-shadow: 0 0 0 12px rgba(158,216,245,.1); }

@media (max-width: 1080px) {
  .desk-sheet-primary { width: 135vw; height: 98vw; left: -45vw; }
  .desk-sheet-secondary { width: 96vw; right: -36vw; }
  .hero::after, .page-hero::after { width: 92vw; right: -30%; }
  .statement-section .narrow, .mission-copy, .mission-outcome, .inputs-copy, .section-heading, .two-column, .quote-layout, .story-layout, .deep-process, .blueprint-paper > .shell.narrow, .privacy-band-inner, .intake-aside { padding: clamp(28px, 4vw, 46px); }
}

@media (max-width: 900px) {
  .desk-sheet-primary { width: 155vw; height: 120vw; left: -58vw; top: 8vh; opacity: .61; transform: rotate(24deg); }
  .desk-sheet-secondary { width: 118vw; height: 100vw; right: -62vw; top: 48vh; opacity: .43; transform: rotate(-9deg); }
  .desk-sheet-tertiary { width: 118vw; height: 74vw; left: -18vw; bottom: -15vh; transform: rotate(8deg); }
  .desk-scale { width: 68vw; }
  .site-header { background: linear-gradient(180deg, rgba(3,14,27,.68), transparent); }
  .site-header.is-scrolled { background: rgba(4,16,32,.94); }
  .hero::after, .page-hero::after { width: 120vw; right: -58%; top: 30%; opacity: .2; transform: rotate(18deg); }
  .page-hero::after { top: -8%; }
  main > .section:not(.blueprint-field)::after, .privacy-band::after { width: 155%; left: -28%; opacity: .09; background-size: 820px auto; transform: rotate(4deg); }
  .privacy-band-inner { grid-template-columns: auto 1fr; }
  .intake-aside { top: auto; }
}

@media (max-width: 640px) {
  body { background-image: radial-gradient(circle at 20% 8%, rgba(81,126,156,.18), transparent 32%), linear-gradient(145deg, var(--desk-edge), var(--desk-navy)); }
  .desk-sheet-primary { width: 185vw; height: 155vw; left: -82vw; top: 12vh; opacity: .56; transform: rotate(13deg); box-shadow: 0 20px 44px rgba(0,0,0,.26); }
  .desk-sheet-secondary { display: none; }
  .desk-sheet-tertiary { width: 145vw; height: 96vw; left: -24vw; bottom: -8vh; opacity: .32; transform: rotate(-6deg); box-shadow: 0 18px 38px rgba(0,0,0,.22); }
  .desk-scale { right: -10vw; width: 92vw; opacity: .28; }
  .blueprint-field { background-size: cover, 940px auto, 24px 24px, 24px 24px; }
  .hero::after, .page-hero::after { width: 155vw; right: -100%; top: 46%; opacity: .16; transform: rotate(10deg); box-shadow: none; }
  .page-hero::after { top: 18%; }
  main > .section:not(.blueprint-field), .privacy-band { background: linear-gradient(145deg, rgba(7,27,54,.78), rgba(19,62,97,.63)); }
  main > .section:not(.blueprint-field)::after, .privacy-band::after { width: 190%; height: 118%; left: -44%; top: -8%; opacity: .11; background-size: 680px auto; transform: rotate(2deg); }
  .statement-section .narrow, .mission-copy, .mission-outcome, .inputs-copy, .section-heading, .two-column, .quote-layout, .story-layout, .deep-process, .blueprint-paper > .shell.narrow, .privacy-band-inner, .intake-aside { padding: 24px 20px; outline-offset: -5px; box-shadow: 0 14px 30px rgba(2,12,25,.13); transform: none; }
  .mission-outcome { gap: 18px; }
  .contrast-grid, .mission-ledger, .process-track, .pricing-preview-grid, .pricing-grid, .blueprint-principles, .privacy-principles, .three-column, .capability-grid, .coach-context-grid { gap: 8px; }
  .contrast-card:nth-child(n), .pricing-card:nth-child(n), .principle:nth-child(n), .capability-card:nth-child(n) { transform: none; }
  .process-step { min-height: 250px; }
  .privacy-band-inner { grid-template-columns: 1fr; }
  .intake-form { outline-offset: -5px; box-shadow: 0 15px 34px rgba(2,12,25,.16); }
  .input-stack { padding: 14px 16px; outline-offset: -5px; }
}

@media (max-width: 370px) {
  :root { --shell: calc(100vw - 22px); }
  .statement-section .narrow, .mission-copy, .mission-outcome, .inputs-copy, .section-heading, .two-column, .quote-layout, .story-layout, .deep-process, .blueprint-paper > .shell.narrow, .privacy-band-inner, .intake-aside { padding-inline: 16px; }
  .intake-form { padding-inline: 15px; }
}

/* Shared translucent customer-facing card system */
.surface-card,
.mission-ledger article:not(.mission-business),
.contrast-card:not(.blueprint-way),
.process-step,
.module-card,
.pricing-preview-grid span,
.pricing-card,
.communications-preview-copy,
.communication-example,
.principle,
.capability-card,
.safety-note,
.intake-form,
.auth-card,
.app-progress,
.app-panel,
.field-portal-card,
.invoice-sheet,
.customer-message-card {
  color: var(--surface-card-text);
  background: var(--surface-card-fallback);
  border-color: var(--surface-card-outline);
}

@supports ((backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px))) {
  .surface-card,
  .mission-ledger article:not(.mission-business),
  .contrast-card:not(.blueprint-way),
  .process-step,
  .module-card,
  .pricing-preview-grid span,
  .pricing-card,
  .communications-preview-copy,
  .communication-example,
  .principle,
  .capability-card,
  .safety-note,
  .intake-form,
  .auth-card,
  .app-progress,
  .app-panel,
  .field-portal-card,
  .invoice-sheet,
  .customer-message-card {
    background: var(--surface-card);
    border-color: var(--surface-card-border);
    -webkit-backdrop-filter: blur(var(--surface-card-blur)) saturate(112%);
    backdrop-filter: blur(var(--surface-card-blur)) saturate(112%);
  }
}

.pricing-card-emphasis { background: var(--surface-card-strong); }

/* Authority Matrix and channel gateway */
.authority-section { border-block: 1px solid var(--line); }
.authority-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(260px, .65fr); gap: clamp(36px, 7vw, 90px); align-items: end; margin-bottom: 52px; }
.authority-heading h2 { margin-bottom: 0; color: var(--white); }
.authority-heading > p { margin-bottom: 8px; color: rgba(239, 248, 252, .82); font-size: 1.03rem; }
.authority-demo { display: grid; grid-template-columns: minmax(250px, .5fr) minmax(0, 1.5fr); gap: 18px; align-items: start; }
.authority-levels { padding: 30px; border: 1px solid var(--surface-card-outline); box-shadow: 0 16px 38px rgba(3,16,33,.08); }
.authority-levels h3 { margin-bottom: 22px; font-family: var(--serif); font-size: 1.45rem; }
.authority-levels ol { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.authority-levels li { display: grid; grid-template-columns: 34px 1fr; gap: 10px; padding: 11px 0; border-top: 1px solid var(--line); font-size: .79rem; font-weight: 720; }
.authority-levels li span { color: var(--blue-600); font-size: .62rem; font-weight: 850; letter-spacing: .08em; }
.authority-domains { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.authority-domain { min-width: 0; min-height: 230px; display: grid; grid-template-rows: 1fr auto; gap: 20px; padding: 25px; border: 1px solid var(--surface-card-outline); box-shadow: 0 12px 30px rgba(3,16,33,.07); }
.authority-domain h3 { margin-bottom: 7px; font-family: var(--serif); font-size: 1.42rem; font-weight: 500; }
.authority-domain p { margin-bottom: 8px; color: var(--muted); font-size: .84rem; }
.authority-domain small { display: block; color: #3f5264; font-size: .69rem; line-height: 1.45; }
.authority-domain label { display: grid; gap: 6px; color: var(--blue-700); font-size: .65rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.authority-domain select { width: 100%; min-height: 44px; padding: 9px 34px 9px 10px; color: var(--ink); background: rgba(255,255,255,.82); border: 1px solid rgba(11,59,114,.26); font-size: .76rem; font-weight: 720; text-transform: none; }
.authority-demo-actions { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 8px; }
.authority-demo-actions p { max-width: 690px; margin: 0; color: rgba(239, 248, 252, .78); font-size: .73rem; }
.delegation-demo { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(290px, .88fr); gap: clamp(32px, 6vw, 74px); margin-top: 70px; padding: clamp(30px, 5vw, 62px); border: 1px solid var(--surface-card-outline); box-shadow: var(--shadow); }
.delegation-copy h2 { font-size: clamp(2.1rem, 3.8vw, 3.8rem); }
.delegation-copy > p:not(.eyebrow) { color: var(--muted); }
.delegation-copy blockquote { margin: 28px 0; padding: 23px 26px; color: var(--navy-900); background: rgba(220,239,248,.66); border-left: 3px solid var(--blue-600); font-family: var(--serif); font-size: clamp(1.18rem, 2vw, 1.55rem); line-height: 1.45; }
.delegation-status { color: var(--muted); font-size: .74rem; }
.delegation-contract { margin: 0; align-self: center; }
.delegation-contract > div { display: grid; grid-template-columns: minmax(120px, .65fr) minmax(0, 1.35fr); gap: 18px; padding: 14px 0; border-top: 1px solid var(--line); }
.delegation-contract dt { color: var(--blue-700); font-size: .66rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.delegation-contract dd { margin: 0; color: var(--ink); font-size: .82rem; font-weight: 680; }
.channel-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.channel-card { min-width: 0; min-height: 280px; display: flex; flex-direction: column; padding: 25px 22px; border: 1px solid var(--surface-card-outline); }
.channel-card h3 { margin: 26px 0 12px; font-family: var(--serif); font-size: 1.32rem; font-weight: 500; }
.channel-card > p:not(.channel-status) { color: var(--muted); font-size: .76rem; }
.channel-status { margin: 0; color: var(--blue-700); font-size: .62rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.channel-card .text-button { margin-top: auto; align-self: flex-start; text-align: left; }
.aibe-voice-disclosure { margin: 8px 14px 0; color: #496575; font-size: .61rem; line-height: 1.35; }
.aibe-panel { background: var(--surface-card-fallback); }
@supports ((backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px))) {
  .aibe-panel { background: rgba(249,252,253,.8); -webkit-backdrop-filter: blur(10px) saturate(115%); backdrop-filter: blur(10px) saturate(115%); }
}

@media (max-width: 1020px) {
  .channel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .authority-heading, .authority-demo, .delegation-demo { grid-template-columns: 1fr; }
  .authority-domains { grid-template-columns: 1fr; }
  .authority-demo-actions { display: grid; }
  .delegation-contract > div { grid-template-columns: 1fr; gap: 4px; }
  .channel-grid { grid-template-columns: 1fr; }
  .channel-card { min-height: 220px; }
}

/* AiBE: public conversational envoy */
.aibe-root {
  position: relative;
  z-index: 120;
  color: var(--ink);
  font-family: var(--font-sans);
}
.aibe-launcher {
  position: fixed;
  z-index: 123;
  right: clamp(16px, 2vw, 30px);
  bottom: max(18px, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 112px;
  min-height: 54px;
  padding: 9px 16px 9px 10px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(5, 25, 48, .98), rgba(12, 71, 127, .98));
  border: 1px solid rgba(158, 216, 245, .62);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(2, 12, 25, .34), inset 0 1px rgba(255, 255, 255, .16);
  cursor: pointer;
  isolation: isolate;
}
.aibe-launcher::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -6px;
  border: 1px solid rgba(97, 184, 235, .42);
  border-radius: inherit;
  opacity: 0;
  animation: aibe-heartbeat 1.8s ease-out 3 .7s;
}
.aibe-launcher:hover { transform: translateY(-2px); box-shadow: 0 20px 46px rgba(2, 12, 25, .4), inset 0 1px rgba(255, 255, 255, .2); }
.aibe-launcher:focus-visible,
.aibe-icon-button:focus-visible,
.aibe-context-button:focus-visible,
.aibe-suggestions button:focus-visible,
.aibe-composer button:focus-visible,
.aibe-navigation-actions button:focus-visible,
.aibe-speech-actions button:focus-visible {
  outline: 3px solid var(--ice-300);
  outline-offset: 3px;
}
.aibe-launcher-name { font-size: .92rem; font-weight: 850; letter-spacing: .07em; }
.aibe-launcher-tooltip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: max-content;
  max-width: min(290px, calc(100vw - 32px));
  padding: 8px 12px;
  color: var(--navy-950);
  background: rgba(247, 251, 252, .98);
  border: 1px solid rgba(72, 119, 151, .24);
  border-radius: 7px;
  box-shadow: 0 10px 28px rgba(2, 12, 25, .2);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: opacity .18s ease, transform .18s ease;
}
.aibe-launcher:hover .aibe-launcher-tooltip,
.aibe-launcher:focus-visible .aibe-launcher-tooltip { opacity: 1; transform: translateY(0); }
.aibe-is-open .aibe-launcher { opacity: 0; pointer-events: none; transform: translateY(12px); }

.aibe-orbit {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 38% 34%, #c5efff 0 6%, #61b8eb 14%, #0c477f 54%, #061321 75%);
  border: 1px solid rgba(219, 243, 252, .72);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(97, 184, 235, .1), 0 0 22px rgba(97, 184, 235, .28);
}
.aibe-orbit::before,
.aibe-orbit::after {
  content: "";
  position: absolute;
  width: 125%;
  height: 42%;
  border: 1px solid rgba(223, 247, 255, .58);
  border-radius: 50%;
  transform: rotate(28deg);
}
.aibe-orbit::after { transform: rotate(-28deg); }
.aibe-orbit span { width: 5px; height: 5px; background: #effbff; border-radius: 50%; box-shadow: 0 0 9px #d4f4ff; }
.aibe-orbit-small { width: 32px; height: 32px; }

.aibe-panel {
  position: fixed;
  z-index: 124;
  right: clamp(16px, 2vw, 30px);
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-rows: auto auto minmax(140px, 1fr) auto auto auto auto;
  width: min(410px, calc(100vw - 32px));
  max-height: min(700px, calc(100dvh - 54px));
  overflow: hidden;
  background: linear-gradient(150deg, rgba(249, 252, 253, .99), rgba(226, 238, 244, .99));
  border: 1px solid rgba(211, 237, 249, .82);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(1, 9, 20, .48), inset 0 0 0 1px rgba(31, 89, 128, .1);
  transform-origin: right bottom;
  animation: aibe-panel-in .22s ease both;
}
.aibe-panel[hidden] { display: none; }
.aibe-panel[data-aibe-point-positioned="true"] {
  position: fixed !important;
  right: auto !important;
  bottom: auto !important;
  transform: none;
}
.aibe-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 10px 12px 10px 14px;
  color: var(--white);
  background-color: var(--navy-950);
  background-image: linear-gradient(125deg, rgba(5, 24, 48, .94), rgba(12, 71, 127, .9)), url("/assets/blueprint-plan-b.svg");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(158, 216, 245, .24);
}
.aibe-identity { display: flex; align-items: center; gap: 11px; min-width: 0; }
.aibe-identity > span:last-child { display: grid; min-width: 0; }
.aibe-identity strong { color: var(--white); font-size: 1rem; letter-spacing: .05em; }
.aibe-identity small { overflow: hidden; color: var(--ice-300); font-size: .69rem; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.aibe-window-actions { display: flex; align-items: center; gap: 3px; }
.aibe-icon-button {
  min-width: 36px;
  min-height: 36px;
  padding: 0 7px;
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  border: 1px solid transparent;
  border-radius: 7px;
  font: inherit;
  font-size: .68rem;
  cursor: pointer;
}
.aibe-icon-button:hover { background: rgba(255, 255, 255, .13); border-color: rgba(255, 255, 255, .12); }
.aibe-context-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 6px 14px;
  overflow: hidden;
  color: #174f76;
  background: rgba(216, 234, 243, .76);
  border-bottom: 1px solid rgba(31, 89, 128, .12);
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.aibe-transcript {
  min-height: 150px;
  padding: 16px 14px 8px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(12, 71, 127, .3) transparent;
}
.aibe-message { display: grid; gap: 4px; max-width: 90%; margin-bottom: 14px; }
.aibe-message-label { color: #3a6d8d; font-size: .62rem; font-weight: 850; letter-spacing: .08em; }
.aibe-message p { margin: 0; padding: 10px 12px; color: var(--ink); background: rgba(255, 255, 255, .86); border: 1px solid rgba(31, 89, 128, .14); border-radius: 4px 13px 13px; box-shadow: 0 5px 14px rgba(6, 31, 53, .07); font-size: .84rem; line-height: 1.52; }
.aibe-message-user { justify-self: end; }
.aibe-message-user .aibe-message-label { text-align: right; text-transform: uppercase; }
.aibe-message-user p { color: var(--white); background: linear-gradient(135deg, #0c477f, #125e94); border-color: rgba(10, 61, 101, .42); border-radius: 13px 4px 13px 13px; }
.aibe-suggestions { display: flex; gap: 7px; padding: 4px 14px 10px; overflow-x: auto; scrollbar-width: none; }
.aibe-suggestions[hidden] { display: none; }
.aibe-suggestions::-webkit-scrollbar { display: none; }
.aibe-suggestions button {
  flex: 0 0 auto;
  max-width: 245px;
  padding: 7px 10px;
  color: #144f78;
  background: rgba(245, 250, 252, .88);
  border: 1px solid rgba(20, 79, 120, .2);
  border-radius: 999px;
  font: inherit;
  font-size: .69rem;
  font-weight: 700;
  cursor: pointer;
}
.aibe-suggestions button:hover { color: var(--navy-950); background: var(--white); border-color: rgba(20, 79, 120, .42); }
.aibe-voice-status { min-height: 0; padding: 0 14px; color: #526c7b; font-size: .69rem; line-height: 1.35; }
.aibe-voice-status:not(:empty) { padding-block: 5px; }
.aibe-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: end;
  gap: 7px;
  margin: 0 12px;
  padding: 7px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(17, 77, 117, .22);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(5, 29, 51, .08);
}
.aibe-composer:focus-within { border-color: #2686bd; box-shadow: 0 0 0 3px rgba(97, 184, 235, .2); }
.aibe-composer textarea { width: 100%; min-height: 40px; max-height: 116px; resize: none; padding: 9px 6px; color: var(--ink); background: transparent; border: 0; outline: 0; font: inherit; font-size: .82rem; line-height: 1.4; }
.aibe-composer textarea::placeholder { color: #647986; }
.aibe-voice-button,
.aibe-send-button {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(12, 71, 127, .22);
  border-radius: 8px;
  font: inherit;
  font-size: .7rem;
  font-weight: 800;
  cursor: pointer;
}
.aibe-voice-button { color: #0c477f; background: #e5f2f8; }
.aibe-send-button { color: var(--white); background: #0c477f; }
.aibe-is-listening .aibe-voice-button { color: var(--white); background: #a53e45; border-color: #8f3037; }
.aibe-composer.is-busy { opacity: .66; }
.aibe-speech-actions { display: flex; gap: 7px; padding: 8px 12px 0; }
.aibe-speech-actions[hidden] { display: none; }
.aibe-device-voice-fallback { margin: 7px 12px 0; padding: 7px 9px; color: #174f76; background: #fff8e8; border: 1px solid rgba(153, 99, 21, .28); border-radius: 7px; font: inherit; font-size: .66rem; font-weight: 760; cursor: pointer; }
.aibe-device-voice-fallback[hidden] { display: none; }
.aibe-speech-actions button,
.aibe-navigation-actions button {
  padding: 6px 9px;
  color: #174f76;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(23, 79, 118, .22);
  border-radius: 7px;
  font: inherit;
  font-size: .68rem;
  font-weight: 760;
  cursor: pointer;
}
.aibe-navigation-actions { display: flex; gap: 7px; margin-top: 7px; }
.aibe-navigation-actions button:first-child { color: var(--white); background: #0c477f; }
.aibe-disclosure { margin: 9px 14px 11px; color: #647985; font-size: .61rem; line-height: 1.35; }

.aibe-context-invitation {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: flex-end;
  width: var(--shell);
  max-height: 0;
  margin: 0 auto;
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: max-height .2s ease, margin .2s ease, opacity .2s ease, transform .2s ease;
}
.aibe-invitation-visible > .aibe-context-invitation,
.aibe-context-invitation:focus-within {
  max-height: 44px;
  margin-top: 14px;
  margin-bottom: 14px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.aibe-context-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 11px 6px 7px;
  color: #124d75;
  background: rgba(247, 251, 252, .94);
  border: 1px solid rgba(18, 77, 117, .28);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(3, 20, 36, .14);
  backdrop-filter: blur(8px);
  font: inherit;
  font-size: .67rem;
  font-weight: 780;
  cursor: pointer;
}
.aibe-context-button:hover { color: var(--navy-950); background: var(--white); border-color: rgba(18, 77, 117, .52); }
.aibe-context-button-mark { display: grid; min-width: 31px; height: 22px; place-items: center; color: var(--white); background: linear-gradient(135deg, #0c477f, #1b78aa); border-radius: 999px; font-size: .52rem; letter-spacing: .04em; }
.aibe-context-component { position: relative; }
.aibe-context-component > .aibe-context-invitation { width: auto; margin-inline: 0; justify-content: flex-start; }
.aibe-context-component.aibe-invitation-visible > .aibe-context-invitation,
.aibe-context-component > .aibe-context-invitation:focus-within { margin-block: 12px 0; }

@keyframes aibe-heartbeat {
  0% { opacity: 0; transform: scale(.94); }
  24% { opacity: .74; }
  58%, 100% { opacity: 0; transform: scale(1.13); }
}
@keyframes aibe-panel-in {
  from { opacity: 0; transform: translateY(10px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (hover: none), (pointer: coarse) {
  .aibe-context-invitation {
    max-height: 44px;
    margin-top: 12px;
    margin-bottom: 12px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

@media (max-width: 640px) {
  .aibe-launcher { right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); min-width: 102px; min-height: 50px; padding-right: 13px; }
  .aibe-orbit { width: 32px; height: 32px; }
  .aibe-panel {
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    width: calc(100vw - 16px);
    max-height: min(720px, calc(100dvh - 16px));
    border-radius: 16px;
  }
  .aibe-panel-header { min-height: 58px; }
  .aibe-transcript { min-height: 132px; padding-inline: 12px; }
  .aibe-message { max-width: 94%; }
  .aibe-composer { grid-template-columns: minmax(0, 1fr) auto; }
  .aibe-voice-button { grid-column: 1; grid-row: 2; justify-self: start; min-width: 92px; }
  .aibe-send-button { grid-column: 2; grid-row: 1 / span 2; min-height: 44px; align-self: end; }
  .aibe-composer textarea { grid-column: 1 / -1; }
  .aibe-context-invitation { justify-content: flex-start; }
  .aibe-context-button { min-height: 38px; }
}

@media (max-width: 360px) {
  .aibe-window-actions { gap: 1px; }
  .aibe-icon-button { min-width: 32px; padding-inline: 5px; }
  .aibe-panel { right: 4px; bottom: max(4px, env(safe-area-inset-bottom)); width: calc(100vw - 8px); max-height: calc(100dvh - 8px); }
}

@media (prefers-reduced-motion: reduce) {
  .aibe-launcher::before { animation: none; }
  .aibe-panel { animation: none; }
  .aibe-launcher:hover,
  .aibe-context-invitation { transform: none; }
}

/* Authenticated Build My Blueprint journey */
[hidden] { display: none !important; }
.nav-sign-in { opacity: .88; }
.field small { color: var(--steel-500); font-size: .69rem; font-weight: 500; }
.form-alt { margin: 22px 0 0; color: var(--steel-500); font-size: .78rem; text-align: center; }
.form-alt a, .form-privacy a { color: var(--blue-700); font-weight: 800; }
.auth-section { min-height: 560px; }
.auth-card { padding: clamp(28px, 5vw, 58px); background: var(--white); box-shadow: var(--shadow); }
.auth-card > form > p:not(.form-section-label, .form-alt) { margin-bottom: 28px; }
.auth-card .submit-button { width: 100%; }
.account-login-card { max-width: 720px; margin: 0 auto; }
.login-security-note { margin: 18px 0 0; color: var(--steel-500); font-size: .76rem; }
.account-chooser h2 { margin-bottom: 12px; }
.account-choice-list { display: grid; gap: 12px; margin: 28px 0; }
.account-choice { display: grid; gap: 4px; padding: 18px 20px; color: var(--navy-900); background: #eef7fb; border: 1px solid var(--steel-300); text-decoration: none; transition: border-color .2s, transform .2s; }
.account-choice:hover, .account-choice:focus-visible { border-color: var(--blue-600); transform: translateY(-1px); }
.account-choice strong { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; }
.account-choice span { color: var(--steel-500); font-size: .75rem; font-weight: 750; }
.account-portal { min-height: 620px; }
.account-portal-workspace { min-height: 620px; padding-bottom: 90px; }
.account-portal-card { margin-top: 48px; padding: clamp(30px, 5vw, 56px); color: var(--navy-900); background: rgba(255,255,255,.92); border: 1px solid var(--line); box-shadow: var(--shadow); }
.account-portal-card h1 { margin-bottom: 18px; }
.account-portal-card .button-row { margin-top: 32px; }
.auth-link-button { display: block; margin: 20px auto 0; }
.text-button { padding: 7px 0; color: var(--blue-700); background: transparent; border: 0; font: inherit; font-size: .76rem; font-weight: 800; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }
.text-button:hover { color: var(--navy-900); }

.route-app .site-header { position: relative; color: var(--white); background: var(--navy-950); }
.route-app .site-header.is-scrolled { position: fixed; color: var(--navy-900); background: rgba(247,248,246,.96); }
.blueprint-app-shell { min-height: 78vh; background: rgba(241,245,247,.93); }
.app-loading, .app-auth-required { min-height: 720px; display: grid; place-items: center; padding: 100px 0; }
.app-loading h1 { color: var(--white); }
.app-auth-required h2 { color: var(--white); font-size: clamp(2.8rem, 6vw, 5.5rem); }
.app-auth-required p:not(.eyebrow) { color: var(--steel-150); }
.app-spinner { width: 44px; height: 44px; display: inline-block; margin-bottom: 24px; border: 2px solid rgba(255,255,255,.25); border-top-color: var(--ice-300); border-radius: 50%; animation: appSpin .8s linear infinite; }
.app-spinner.dark { border-color: rgba(7,26,53,.16); border-top-color: var(--blue-600); }
@keyframes appSpin { to { transform: rotate(360deg); } }
.app-workspace { min-height: 760px; padding-bottom: 100px; }
.app-bar { color: var(--navy-900); background: rgba(255,255,255,.92); border-bottom: 1px solid var(--line); }
.app-bar-inner { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.app-bar .eyebrow { margin: 0 0 4px; }
.app-bar strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; }
.app-grid { display: grid; grid-template-columns: minmax(210px, .32fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 70px); padding-top: 54px; }
.app-progress { align-self: start; position: sticky; top: 118px; padding: 28px; color: var(--navy-900); background: rgba(255,255,255,.76); border: 1px solid var(--line); }
.app-progress ol { display: grid; gap: 4px; margin: 0; padding: 0; list-style: none; }
.app-progress li { position: relative; min-height: 58px; display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 12px; padding: 9px 8px; color: var(--steel-500); border-left: 2px solid var(--line); }
.app-progress li span { font-size: .66rem; font-weight: 850; letter-spacing: .12em; }
.app-progress li strong { font-size: .76rem; }
.app-progress li.is-current { color: var(--navy-900); background: #eaf4f9; border-color: var(--blue-600); }
.app-progress li.is-complete { color: var(--blue-700); border-color: var(--ice-500); }
.app-main { min-width: 0; }
.app-panel { padding: clamp(30px, 5vw, 62px); color: var(--navy-900); background: var(--white); border: 1px solid rgba(158,172,184,.55); box-shadow: 0 22px 58px rgba(4,16,32,.09); }
.app-panel > h2 { max-width: 780px; }
.app-panel > p:not(.eyebrow) { max-width: 780px; color: var(--muted); font-size: 1.03rem; }
.upload-form { display: grid; gap: 24px; margin-top: 36px; }
.upload-drop { position: relative; min-height: 220px; display: grid; place-items: center; align-content: center; gap: 7px; padding: 30px; color: var(--navy-900); background: #f3f8fa; border: 1px dashed var(--blue-600); cursor: pointer; text-align: center; }
.upload-drop:hover, .upload-drop:focus-within { background: #eaf4f9; border-style: solid; }
.upload-drop input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.upload-drop strong { font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }
.upload-drop small, .selected-file { color: var(--steel-500); font-size: .72rem; }
.upload-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--white); background: var(--navy-900); border-radius: 50%; font-size: 1.4rem; }
.selected-file { margin: -12px 0 0; text-align: center; }
.retention-note { margin-top: 34px; padding: 20px 24px; color: var(--navy-900); background: #f3f6f7; border-left: 3px solid var(--blue-600); }
.retention-note p { margin: 5px 0 0; color: var(--muted); font-size: .8rem; }
.analysis-state { min-height: 420px; display: grid; place-items: center; align-content: center; }
.analysis-state h2 { max-width: 720px; }
.analysis-state p:not(.eyebrow) { max-width: 650px; color: var(--muted); }
.fact-list { display: grid; gap: 14px; margin: 32px 0; }
.fact-card { padding: 22px 24px; background: #f5f8f9; border-left: 3px solid var(--blue-600); }
.fact-card h3 { margin-bottom: 7px; font-family: var(--sans); font-size: .78rem; letter-spacing: .035em; }
.fact-card p { margin: 0 0 8px; color: var(--navy-900); }
.fact-card small { display: block; color: var(--steel-500); font-size: .66rem; font-weight: 750; letter-spacing: .045em; text-transform: capitalize; }
.fact-card label { display: grid; gap: 8px; margin-top: 18px; color: var(--navy-900); font-size: .72rem; font-weight: 750; }
.fact-card textarea { width: 100%; min-height: 96px; padding: 12px 14px; color: var(--ink); background: var(--white); border: 1px solid #cbd6df; resize: vertical; }
.dashboard-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 34px 0; }
.dashboard-metrics article { min-height: 125px; display: grid; align-content: center; gap: 4px; padding: 22px; color: var(--white); background: var(--navy-900); }
.dashboard-metrics strong { font-family: var(--serif); font-size: 2.6rem; font-weight: 500; }
.dashboard-metrics span { color: var(--ice-300); font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.dashboard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.dashboard-grid > section { min-width: 0; padding: 22px; border: 1px solid var(--line); }
.dashboard-grid h3 { font-family: var(--sans); font-size: .75rem; letter-spacing: .11em; text-transform: uppercase; }
.record-list { display: grid; gap: 8px; }
.record-list article { display: grid; gap: 2px; padding: 11px 0; border-top: 1px solid var(--line); }
.record-list strong { overflow: hidden; font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.record-list small, .record-list p { overflow: hidden; margin: 0; color: var(--steel-500); font-size: .68rem; text-overflow: ellipsis; white-space: nowrap; }
.app-ready-actions { margin-top: 30px; }
.operations-workspace { margin-top: 48px; padding-top: 42px; border-top: 1px solid var(--line); }
.operations-heading { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(250px, .7fr); gap: 30px; align-items: end; margin-bottom: 28px; }
.operations-heading h2 { margin-bottom: 0; }
.operations-heading > p { color: var(--muted); }
.operations-form { display: grid; gap: 18px; }
.operations-form fieldset { margin: 0; padding: 24px; background: #f5f8f9; border: 1px solid var(--line); }
.operations-form legend { padding: 0 9px; color: var(--blue-700); font-size: .72rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.operations-form input[type="number"] { appearance: textfield; }
.deployment-result { margin-top: 24px; padding: 26px; color: var(--white); background: var(--navy-900); }
.deployment-result h3 { color: var(--white); }
.deployment-result p:not(.eyebrow) { color: var(--steel-150); }
.operations-ledger { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.operations-ledger > section { min-width: 0; padding: 22px; border: 1px solid var(--line); }
.operations-ledger h3 { font-family: var(--sans); font-size: .75rem; letter-spacing: .11em; text-transform: uppercase; }

.field-portal-shell { min-height: 78vh; background: rgba(238,244,247,.95); }
.field-portal, .payment-portal { min-height: 760px; padding-bottom: 100px; }
.field-portal-bar { color: var(--navy-900); background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); }
.field-portal-bar .shell { min-height: 100px; display: grid; align-content: center; }
.field-portal-bar .eyebrow { margin: 0 0 3px; }
.field-portal-bar strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; }
.field-portal-card { margin-top: 42px; padding: clamp(28px, 5vw, 58px); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.field-portal-card > h1 { margin-bottom: 10px; }
.job-address { margin: 18px 0; padding: 16px 18px; color: var(--navy-900); background: #eaf4f9; border-left: 3px solid var(--blue-600); font-weight: 750; }
.field-steps { display: grid; gap: 10px; margin: 38px 0 0; padding: 0; list-style: none; }
.field-steps li { display: grid; grid-template-columns: 40px minmax(0, 1fr) auto; gap: 16px; align-items: center; min-height: 92px; padding: 17px 18px; background: #f5f8f9; border: 1px solid var(--line); border-left: 4px solid var(--line); }
.field-steps li > span { color: var(--steel-500); font-size: .7rem; font-weight: 850; }
.field-steps li strong, .field-steps li small { display: block; }
.field-steps li small { margin-top: 4px; color: var(--steel-500); }
.field-steps li.is-current { border-left-color: var(--blue-600); background: #eaf4f9; }
.field-steps li.is-complete { border-left-color: #32806b; }
.field-steps li.is-complete > span { color: #32806b; }
.field-steps button:disabled, .file-button.is-disabled { opacity: .46; cursor: not-allowed; }
.file-button { position: relative; overflow: hidden; }
.file-button input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.work-timer-step output { display: block; margin-top: 8px; color: var(--blue-700); font-family: var(--serif); font-size: 1.85rem; font-variant-numeric: tabular-nums; }
.field-complete { margin-top: 28px; padding: 30px; color: var(--white); background: var(--navy-900); }
.field-complete h2 { color: var(--white); }
.field-complete p:last-child { color: var(--steel-150); }

.payment-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr); gap: clamp(24px, 5vw, 56px); align-items: start; padding-top: 48px; }
.invoice-sheet, .customer-message-card { padding: clamp(28px, 5vw, 54px); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.invoice-heading { display: flex; align-items: start; justify-content: space-between; gap: 22px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.invoice-heading h1 { margin-bottom: 0; }
.invoice-heading > span { color: var(--blue-700); font-size: .72rem; font-weight: 850; letter-spacing: .08em; }
.invoice-breakdown { display: grid; gap: 0; margin: 32px 0; }
.invoice-breakdown > div { display: flex; justify-content: space-between; gap: 24px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.invoice-breakdown dt { color: var(--muted); }
.invoice-breakdown dd { margin: 0; color: var(--navy-900); font-weight: 800; font-variant-numeric: tabular-nums; }
.invoice-breakdown .invoice-total { padding-top: 20px; border-bottom: 0; }
.invoice-breakdown .invoice-total dt, .invoice-breakdown .invoice-total dd { color: var(--navy-900); font-family: var(--serif); font-size: 1.8rem; }
.sandbox-notice { padding: 16px 18px; color: var(--navy-900); background: #eef7f3; border-left: 3px solid #32806b; }
.payment-button { width: 100%; margin-top: 18px; text-align: center; }
.payment-button[aria-disabled="true"] { opacity: .58; pointer-events: none; }
.customer-message-card { position: sticky; top: 120px; }
.customer-message-card textarea { width: 100%; resize: vertical; }

@media (max-width: 900px) {
  .app-grid { grid-template-columns: 1fr; }
  .app-progress { position: static; }
  .app-progress ol { grid-template-columns: repeat(4, 1fr); }
  .app-progress li { min-height: 68px; grid-template-columns: 1fr; gap: 2px; text-align: center; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .operations-heading, .operations-ledger, .payment-layout { grid-template-columns: 1fr; }
  .customer-message-card { position: static; }
}

@media (max-width: 620px) {
  .app-bar-inner { min-height: 88px; }
  .app-grid { padding-top: 22px; }
  .app-progress { padding: 14px; }
  .app-progress li strong { font-size: .63rem; }
  .app-panel { padding: 26px 18px; }
  .dashboard-metrics { grid-template-columns: 1fr; }
  .dashboard-metrics article { min-height: 90px; }
  .operations-form fieldset { padding: 18px 14px; }
  .field-portal-card { margin-top: 20px; padding: 24px 16px; }
  .field-steps li { grid-template-columns: 30px 1fr; }
  .field-steps li > .button, .field-steps li > .file-button { grid-column: 1 / -1; width: 100%; text-align: center; }
  .payment-layout { padding-top: 22px; }
  .invoice-sheet, .customer-message-card { padding: 24px 18px; }
  .invoice-heading { display: grid; }
}

/* Final cascade guard: later component rules cannot make card surfaces opaque. */
.communications-gallery-heading,
.aibe-panel,
.auth-card,
.app-progress,
.app-panel,
.field-portal-card,
.invoice-sheet,
.customer-message-card {
  color: var(--surface-card-text);
  background: var(--surface-card-fallback);
  border-color: var(--surface-card-outline);
}

@supports ((backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px))) {
  .communications-gallery-heading,
  .aibe-panel,
  .auth-card,
  .app-progress,
  .app-panel,
  .field-portal-card,
  .invoice-sheet,
  .customer-message-card {
    background: var(--surface-card);
    -webkit-backdrop-filter: blur(var(--surface-card-blur)) saturate(112%);
    backdrop-filter: blur(var(--surface-card-blur)) saturate(112%);
  }
  .aibe-panel { background: rgba(249,252,253,.8); }
}
