:root {
  --paper: #f5efe6;
  --paper-light: #fffaf2;
  --white: #fffdf8;
  --ink: #102a26;
  --green: #062f2a;
  --green-mid: #28554a;
  --muted: #53635d;
  --border: #d9d5ca;
  --accent: #bb8a50;
  --radius: 8px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 36px;
  --space-5: 56px;
  --space-6: 88px;
  --container: 1240px;
  --header-height: 100px;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif; line-height: 1.55; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
svg { overflow: visible; }
em { font-family: Iowan Old Style, Baskerville, Georgia, serif; font-weight: 400; font-style: italic; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: 0; line-height: 1.08; }
h1 { font-size: clamp(2.5rem, 5.2vw, 4.75rem); font-weight: 640; }
h2 { font-size: clamp(2.25rem, 4vw, 3.7rem); font-weight: 630; }
h3 { font-size: 1.45rem; }
p { margin-bottom: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
[hidden] { display: none !important; }
.container { width: min(var(--container), calc(100% - 64px)); margin-inline: auto; }
.section-pad { padding-block: clamp(80px, 10vw, 144px); }
.eyebrow { margin-bottom: 24px; color: var(--green-mid); font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.eyebrow--light { color: #c9ded4; }
.microcopy { font-size: .86rem; color: var(--muted); }
.section-heading { max-width: 800px; margin-bottom: 56px; }
.section-heading p:last-child { color: var(--muted); font-size: 1.05rem; }
.section-dark { background: var(--green); color: var(--white); }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 12px 18px; background: var(--white); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 50; min-height: var(--header-height); background: rgba(253,252,248,.97); }
.header-inner { width: min(1400px, calc(100% - 80px)); min-height: var(--header-height); display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 9px; text-decoration: none; }
.brand > img { width: 54px; height: 54px; object-fit: contain; }
.brand-wordmark { position: relative; display: block; width: 160px; height: 54px; overflow: hidden; }
.brand-wordmark img { position: absolute; top: -62px; left: 0; width: 160px; height: 160px; max-width: none; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.2vw, 34px); flex: 1; }
.site-nav a, .site-footer a { text-decoration: none; }
.site-nav a { display: inline-flex; align-items: center; min-height: 44px; font-size: .91rem; color: var(--ink); white-space: nowrap; }
.site-nav a:hover, .site-footer a:hover { color: var(--green-mid); }
.menu-toggle { display: none; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 54px; padding: 14px 22px; border: 1px solid var(--green); border-radius: 6px; background: var(--green); color: var(--white); font-weight: 730; font-size: .98rem; text-decoration: none; text-align: center; transition: background .2s ease, transform .2s ease; }
.button:hover { background: var(--green-mid); transform: translateY(-1px); }
.button span { display: inline-block; transition: transform .2s ease; }
.button:hover span { transform: translateX(3px); }
.button--small { min-height: 52px; padding: 12px 23px; font-size: .87rem; white-space: nowrap; }
.button--light { background: var(--white); color: var(--green); border-color: var(--white); }
.button--light:hover { background: var(--paper); }
.text-link { display: inline-flex; align-items: center; min-height: 44px; gap: 11px; font-weight: 730; text-decoration-thickness: 1px; text-underline-offset: 6px; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, 2px); }



.process { background: var(--paper-light); }
.process-steps { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 0; margin: 58px 0 0; padding: 0; list-style: none; }
.process-steps li { position: relative; padding: 33px 22px 0 0; border-top: 1px solid #b7cbbd; }
.process-steps li::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
.process-steps li > span { display: block; margin-bottom: 44px; color: var(--green-mid); font-size: .77rem; font-weight: 800; }
.process-steps h3 { font-size: 1.28rem; }
.process-steps p { max-width: 185px; color: var(--muted); font-size: .9rem; }


.diagnostic { padding-block: clamp(88px, 10vw, 142px); }

.faq { background: var(--paper-light); }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 10%; }
.faq-grid h2 { max-width: 410px; }
.faq-grid .text-link { margin-top: 25px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item h3 { margin: 0; font-size: 1rem; }
.faq-item button { width: 100%; min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; border: 0; background: none; color: var(--ink); text-align: left; font-weight: 680; }
.faq-item button span { font-size: 1.4rem; line-height: 1; font-weight: 400; color: var(--green-mid); }
.faq-item button[aria-expanded="true"] span { transform: rotate(45deg); }
.faq-item > div { padding: 0 36px 22px 0; }
.faq-item p { color: var(--muted); font-size: .95rem; line-height: 1.65; }

.site-footer { border-top: 1px solid var(--border); background: var(--paper); }
.footer-inner { min-height: 110px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.footer-inner p { color: var(--muted); font-size: .9rem; }
.footer-inner > a:last-child { display: inline-flex; align-items: center; min-height: 44px; font-size: .9rem; font-weight: 700; }
.mobile-cta { display: none; }

html.js [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .42s ease, transform .42s ease; }
html.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Editorial hero: illustrative transactions, a quiet convergence, and a legible outcome. */
.hero-v2 { position: relative; isolation: isolate; overflow: hidden; background: #fdfcf8; }
.hero-v2__layout { position: relative; width: min(1400px, calc(100% - 80px)); min-height: 740px; display: flex; align-items: center; }
.hero-v2__copy { position: relative; z-index: 2; width: 550px; max-width: 43%; padding-block: 45px; translate: 0 12px; }
.hero-v2 .eyebrow { margin-bottom: 23px; font-size: .79rem; font-weight: 600; letter-spacing: .31em; }
.hero-v2 h1 { max-width: 570px; margin-bottom: 25px; font-family: Iowan Old Style, Baskerville, Georgia, serif; font-size: clamp(4.3rem, 5.25vw, 5.15rem); font-weight: 400; line-height: .98; }
.hero-v2 h1 span { color: #1e493e; }
.hero-v2__lede { max-width: 520px; margin-bottom: 27px; color: #273a37; font-size: 1.22rem; line-height: 1.57; }
.hero-v2 .button { min-height: 60px; padding-inline: 27px; font-size: 1.04rem; font-weight: 500; }
.hero-v2__note { margin-top: 25px; font-size: .82rem; }
.hero-flow { position: absolute; top: 50%; right: 0; z-index: 1; width: 850px; height: 620px; transform: translateY(calc(-50% + 7px)); }
.hero-flow__lines { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: #9bb4a3; stroke-width: 1; pointer-events: none; }
.hero-flow__points { fill: #9bb4a3; stroke: none; }
.hero-flow__overline { position: absolute; top: -5px; right: 23px; color: #78857e; font-size: .68rem; line-height: 1.55; letter-spacing: .38em; }
.hero-flow__overline span { display: block; width: 78px; height: 1px; margin-top: 16px; background: #b7c8bb; }
.flow-entry { position: absolute; z-index: 2; display: flex; align-items: center; gap: 14px; width: 252px; height: 68px; padding: 10px 16px; border: 1px solid rgba(220,224,216,.55); border-radius: 8px; background: rgba(255,255,253,.97); box-shadow: 0 18px 38px rgba(20,47,38,.07); color: #172723; font-size: .85rem; line-height: 1.18; animation: flow-arrive .7s ease-out both; }
.flow-entry__icon { display: grid; flex: 0 0 36px; width: 36px; height: 36px; place-items: center; border-radius: 50%; background: #e4eee5; color: #1e493e; font-size: 1.3rem; line-height: 1; }
.flow-entry__icon--in { background: #dceadd; }
.flow-entry__icon--paper { background: #ebeeea; font-size: 1.1rem; }
.flow-entry__body { display: grid; gap: 4px; min-width: 0; }
.flow-entry__body > span { white-space: nowrap; }
.flow-entry strong { color: #132521; font-size: 1.04rem; font-weight: 530; white-space: nowrap; }
.flow-entry small { margin-left: auto; color: #718078; font-size: .72rem; white-space: nowrap; }
.flow-entry--one { top: 0; left: 64px; }
.flow-entry--two { top: 100px; left: 124px; }
.flow-entry--three { top: 196px; left: 28px; }
.flow-entry--four { top: 304px; left: 64px; width: 260px; }
.flow-entry--five { top: 408px; left: 104px; width: 248px; }
.flow-entry--six { top: 515px; left: 164px; width: 264px; }
.flow-entry--two { animation-delay: .08s; }
.flow-entry--three { animation-delay: .16s; }
.flow-entry--four { animation-delay: .24s; }
.flow-entry--five { animation-delay: .32s; }
.flow-entry--six { animation-delay: .4s; }
.hero-flow__node { position: absolute; top: 238px; left: 471px; z-index: 3; display: grid; width: 50px; height: 50px; place-items: center; border-radius: 50%; background: var(--green); box-shadow: 0 9px 24px rgba(6,47,42,.18); }
.hero-flow__node img { width: 26px; height: 26px; object-fit: contain; filter: brightness(0) invert(1); }
.hero-flow__summary { position: absolute; top: 68px; left: 557px; z-index: 2; width: 293px; min-height: 424px; padding: 27px 25px 22px; border: 1px solid #e4e7e1; border-radius: 8px; background: rgba(255,255,253,.97); box-shadow: 0 25px 55px rgba(20,47,38,.085); animation: flow-clarify .8s .35s ease-out both; }
.flow-summary__label { margin-bottom: 31px; color: #263a34; font-size: .69rem; font-weight: 800; line-height: 1.55; letter-spacing: .3em; }
.flow-summary__values { margin: 0; }
.flow-summary__values div { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; padding: 7px 0; border-bottom: 1px solid #ebeee9; font-size: .87rem; }
.flow-summary__values dt, .flow-summary__values dd { margin: 0; white-space: nowrap; }
.flow-summary__values dd { font-size: .99rem; font-weight: 500; }
.flow-summary__values .is-positive { color: #285c46; }
.flow-summary__values .is-negative { color: #ad5545; }
.flow-summary__position { display: grid; gap: 2px; margin-top: 15px; padding-top: 15px; border-top: 1px solid #aebfb1; font-size: .87rem; }
.flow-summary__position strong { color: #285c46; font-size: 1.69rem; font-weight: 500; line-height: 1.2; }
.flow-summary__status { display: flex; align-items: center; gap: 10px; margin-top: 17px; padding: 11px; border-radius: 7px; background: #f3f6f1; font-size: .82rem; line-height: 1.2; }
.flow-summary__status > span:first-child { display: grid; flex: 0 0 22px; width: 22px; height: 22px; place-items: center; border-radius: 50%; background: #2e644a; color: white; font-size: .8rem; }
.flow-summary__status small { display: block; margin-top: 4px; color: #78857e; font-size: .68rem; }
.hero-flow__signature { position: absolute; right: 3px; bottom: 0; width: 178px; color: #1e493e; font-family: "Apple Chancery", "Snell Roundhand", "Bradley Hand", cursive; font-size: 1.82rem; line-height: 1.1; font-style: italic; text-align: center; transform: rotate(-9deg); }
.hero-v2__bridge { min-height: 185px; display: flex; align-items: center; background: #10372f; color: #fdfcf8; }
.hero-v2__bridge-inner { width: min(1400px, calc(100% - 80px)); display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.hero-v2__bridge-inner > div { display: flex; align-items: center; gap: 45px; }
.hero-v2__bridge-inner p { max-width: 165px; font-size: .67rem; font-weight: 700; line-height: 1.5; letter-spacing: .28em; }
.hero-v2__bridge-inner strong { padding-left: 45px; border-left: 1px solid rgba(255,255,255,.28); font-family: Iowan Old Style, Baskerville, Georgia, serif; font-size: 2rem; font-weight: 400; line-height: 1.06; }
.hero-v2__bridge-inner > span { padding-left: 45px; border-left: 1px solid rgba(255,255,255,.28); color: #e0e9e0; font-size: .97rem; line-height: 1.5; }
@keyframes flow-arrive { from { opacity: 0; translate: -10px 5px; } to { opacity: 1; translate: 0 0; } }
@keyframes flow-clarify { from { opacity: .55; translate: 10px 0; } to { opacity: 1; translate: 0 0; } }

.story { position: relative; background: #edf1e9; }
.story-stage { position: relative; min-height: 660px; overflow: hidden; }
.story-shell { position: relative; min-height: 660px; }
.story-progress { position: absolute; top: 37px; left: 0; right: 0; z-index: 3; display: flex; align-items: center; gap: 13px; color: var(--green-mid); font-size: .7rem; font-weight: 800; }
.story-progress i { display: block; width: 25%; height: 100%; background: var(--green); }
.story-cta { position: absolute; z-index: 4; bottom: 58px; left: 0; }
.story-mobile-cta { display: none; }
.story-readable { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
html.js .story { height: 360vh; }
html.js .story-stage { position: sticky; top: var(--header-height); height: calc(100svh - var(--header-height)); min-height: 520px; }
html.js .story-shell { height: 100%; min-height: 0; }

.story { background: #fbfaf6; }
.story-stage { min-height: 0; }
.story-shell { width: min(1450px, calc(100% - 80px)); height: 100%; min-height: 0; }
.story-copy-stack { position: absolute; top: 45%; left: 0; z-index: 4; width: min(480px, 36%); height: 520px; transform: translateY(-50%); }
.story-copy { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; pointer-events: none; transform: translateY(16px); }
.story-copy.is-current { opacity: 1; transform: translateY(0); }
.story-copy .eyebrow { margin-bottom: 30px; font-size: .67rem; letter-spacing: .2em; }
.story-copy h2 { margin-bottom: 26px; font-family: Iowan Old Style, Baskerville, Georgia, serif; font-size: clamp(3.1rem, 3.8vw, 3.9rem); font-weight: 400; line-height: 1.02; }
.story-copy h2 span { display: block; color: #64756f; font-size: .78em; line-height: 1.06; }
.story-copy > p:not(.eyebrow) { max-width: 390px; margin-top: 18px; color: #293c37; font-size: 1.02rem; line-height: 1.55; }
.story-visual { position: absolute; top: 50%; right: 0; width: min(768px, 58%); aspect-ratio: 3 / 2; transform: translateY(-50%); }
.story-visual__frame { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; }
.story-visual__frame:first-child { opacity: 1; }
.story-progress { top: auto; right: auto; bottom: 46px; left: 0; z-index: 6; gap: 5px; color: var(--muted); }
.story-progress i { width: 35px; height: 3px; background: #cdd8d0; }
.story-progress i.is-filled { background: var(--green); }
.story-progress span { margin-left: 11px; font-size: .65rem; letter-spacing: .12em; }
.story-cta { right: auto; bottom: 145px; left: 0; z-index: 6; font-size: .86rem; }
html.js .story { height: 420vh; }
html.js .story-stage { min-height: 610px; }

.services-v2 { position: relative; overflow: hidden; background: #fdfcf8; }
.services-v2::before { content: ""; position: absolute; top: 8%; right: -11%; width: 480px; aspect-ratio: 1; border: 1px solid #dce6df; border-radius: 50%; pointer-events: none; }
.services-v2 > .container { position: relative; width: min(1450px, calc(100% - 80px)); }
.services-v2__layout { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.12fr); gap: clamp(28px, 3.4vw, 56px); align-items: start; }
.services-v2__editorial { padding-top: 12px; }
.services-v2__intro { margin: 0 0 26px; }
.services-v2__intro .eyebrow { margin: 0 0 12px; font-size: .73rem; font-weight: 700; letter-spacing: .23em; }
.services-v2__intro h2 { max-width: 600px; margin: 0 0 16px; font-size: clamp(2.25rem, 3.65vw, 3.55rem); line-height: 1.07; }
.services-v2__intro h2 span { display: block; }
.services-v2__intro > p:last-child { max-width: 560px; color: #455b58; font-size: .99rem; line-height: 1.6; }
.service-topics { display: grid; }
.service-topic { width: 100%; min-height: 92px; display: grid; grid-template-columns: 32px 38px minmax(0,1fr) 20px; align-items: center; gap: 14px; padding: 13px 18px; border: 0; border-bottom: 1px solid #e1e5df; border-radius: 0; background: transparent; color: var(--ink); text-align: left; transition: background .2s ease, border-color .2s ease; }
.service-topic:hover, .service-topic.is-active { border-color: transparent; border-radius: 6px; background: #edf3ee; }
.service-topic__number { color: #1b5847; font-size: .69rem; font-weight: 800; }
.service-topic svg, .service-example__header svg { width: 27px; height: 27px; color: var(--green); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-topic__copy { display: grid; gap: 3px; min-width: 0; }
.service-topic__copy strong { font-size: clamp(1.03rem, 1.35vw, 1.25rem); font-weight: 760; line-height: 1.25; }
.service-topic__copy small { color: #526763; font-size: .77rem; line-height: 1.4; }
.service-topic__arrow { color: var(--green); font-size: 1.65rem; line-height: 1; }
.services-v2__signature { margin-top: 25px; color: #647a75; font-size: .63rem; font-weight: 750; letter-spacing: .19em; }
.services-v2__signature span { margin-inline: 12px; }
.service-panel { min-width: 0; min-height: 760px; padding: 16px clamp(20px, 2.2vw, 32px) 27px; border: 1px solid #ebeeea; border-radius: 8px; background: rgba(255,255,255,.92); box-shadow: 0 22px 58px rgba(11,48,40,.075); }
.service-panel__top { margin-bottom: 14px; color: #71827c; font-size: .59rem; font-weight: 800; letter-spacing: .14em; text-align: right; }
.service-example { min-width: 0; }
.service-example__header { display: grid; grid-template-columns: 28px 40px minmax(0,1fr) auto; align-items: start; gap: 15px; min-height: 108px; }
.service-example__index { padding-top: 9px; color: #155240; font-size: .76rem; font-weight: 800; }
.service-example__header svg { width: 34px; height: 34px; margin-top: 2px; }
.service-example__header h3 { margin: 0 0 5px; font-size: clamp(1.3rem, 2vw, 1.85rem); line-height: 1.2; }
.service-example__header p { max-width: 450px; color: #526763; font-size: .83rem; line-height: 1.45; }
.service-status { padding: 9px 12px; border-radius: 5px; background: #eaf5ee; color: #135c45; font-size: .68rem; font-weight: 700; white-space: nowrap; }
.service-status::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #159069; vertical-align: 1px; }
.service-metrics { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin: 13px 0 15px; }
.service-metrics--four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.service-metrics > div { min-height: 94px; display: flex; flex-direction: column; justify-content: center; gap: 4px; padding: 13px 14px; border: 1px solid #edf0ed; border-radius: 6px; background: #fff; }
.service-metrics strong { font-size: clamp(1.08rem, 1.4vw, 1.45rem); line-height: 1.15; white-space: nowrap; }
.service-metrics span { color: #5e716e; font-size: .7rem; line-height: 1.35; }
.service-data-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, .85fr); gap: 12px; }
.service-data-block { min-width: 0; min-height: 360px; padding: 16px; border: 1px solid #edf0ed; border-radius: 6px; background: #fff; }
.service-data-block--wide { min-width: 0; }
.service-data-block h4 { margin: 0 0 13px; font-size: .78rem; }
.service-table-wrap { overflow-x: auto; }
.service-data-block table { width: 100%; border-collapse: collapse; white-space: nowrap; font-size: .7rem; }
.service-data-block th { padding: 11px 8px; background: #f5f7f4; color: #536b64; font-weight: 600; text-align: left; }
.service-data-block td { padding: 11px 8px; border-bottom: 1px solid #edf0ed; }
.service-data-block th:first-child, .service-data-block td:first-child { padding-left: 9px; }
.service-pill { display: inline-block; padding: 5px 7px; border-radius: 4px; background: #e7f4ec; color: #105b43; font-size: .64rem; font-weight: 700; }
.service-pill--neutral { background: #edf2f3; color: #2f5861; }
.service-pill--alert { background: #fff0e8; color: #a3442c; }
.service-donut { width: min(145px, 85%); aspect-ratio: 1; display: grid; place-items: center; margin: 20px auto; border-radius: 50%; background: conic-gradient(#123e32 0 35%, #5f8c78 35% 63%, #8baa98 63% 81%, #b5c6b9 81% 93%, #d9e0dc 93% 100%); }
.service-donut--match { background: conic-gradient(#28664f 0 96%, #d9e1db 96% 100%); }
.service-donut--collect { background: conic-gradient(#1e6d52 0 56%, #fa817a 56% 84%, #9bbbad 84% 95%, #d6dfd9 95% 100%); }
.service-donut--report { background: conic-gradient(#1c5d49 0 38%, #63927e 38% 60%, #92ad9e 60% 78%, #bdcfc2 78% 90%, #e0e7e0 90% 100%); }
.service-donut > span { width: 65%; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: #fff; text-align: center; }
.service-donut strong { font-size: .88rem; white-space: nowrap; }
.service-donut small { color: #63746f; font-size: .57rem; }
.service-legend { display: grid; gap: 5px; margin: 0; padding: 0; list-style: none; }
.service-legend li { display: flex; align-items: center; justify-content: space-between; gap: 4px; font-size: .65rem; }
.service-legend li::before { content: ""; flex: 0 0 6px; width: 6px; height: 6px; margin-right: 3px; border-radius: 50%; background: #2e6954; }
.service-legend li:nth-child(2)::before { background: #63927e; }
.service-legend li:nth-child(3)::before { background: #92ad9e; }
.service-legend li:nth-child(4)::before { background: #bdcfc2; }
.service-legend li:nth-child(5)::before { background: #d3dfd5; }
.service-example[data-service-panel="2"] .service-legend li:nth-child(2)::before { background: #d9e1db; }
.service-example[data-service-panel="4"] .service-legend li:nth-child(2)::before { background: #fa817a; }
.service-legend b { margin-left: auto; }
.service-chart-key { display: flex; justify-content: flex-end; gap: 15px; margin: -24px 0 12px; color: #58726a; font-size: .64rem; }
.service-chart-key span::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: #b7cbc0; }
.service-chart-key span:last-child::before { background: #1d7051; }
.service-chart-key--cash span:last-child::before { background: #e08c7e; }
.service-bar-chart { height: 240px; display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); align-items: end; gap: 5px; padding: 20px 0 0; border-bottom: 1px solid #dce5de; background: repeating-linear-gradient(to top, transparent 0, transparent 56px, #eff3ef 57px); }
.service-bar-chart > div { height: 100%; display: flex; align-items: flex-end; justify-content: center; position: relative; gap: 2px; padding-bottom: 26px; }
.service-bar-chart i, .service-bar-chart b { width: 36%; display: block; height: var(--a); border-radius: 2px 2px 0 0; background: #b7cbc0; }
.service-bar-chart b { height: var(--b); background: #1d7051; }
.service-bar-chart small { position: absolute; bottom: 3px; left: 50%; color: #687c76; font-size: .59rem; transform: translateX(-50%); }
.service-bar-chart--cash, .service-bar-chart--report { grid-template-columns: repeat(6, minmax(0,1fr)); }
.service-bar-chart--cash b { background: #e08c7e; }
.service-rows { margin: 0; padding: 0; list-style: none; }
.service-rows li { display: grid; grid-template-columns: minmax(0,1fr) auto auto; gap: 7px; padding: 12px 0; border-bottom: 1px solid #edf0ed; font-size: .68rem; }
.service-rows span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.service-rows b { white-space: nowrap; }
.service-rows small { color: #6d7e76; font-size: .64rem; white-space: nowrap; }
.service-forecast { display: flex; justify-content: space-between; gap: 6px; margin-top: 19px; color: #536963; font-size: .7rem; }
.service-forecast strong { color: var(--green); }
.service-insight { margin-top: 15px; padding: 15px 20px; border-radius: 5px; background: #eff5f0; color: #375b50; font-size: .75rem; }
.service-insight::before { content: "✦"; margin-right: 9px; color: #316b55; }
.service-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; }
.service-icons { position: absolute; width: 0; height: 0; overflow: hidden; }
.process { border-top: 1px solid var(--border); }
.process-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.diagnostic-v2 { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); align-items: center; gap: 8%; }
.diagnostic-v2 h2 { max-width: 760px; }
.diagnostic-v2 > div:first-child > p:not(.eyebrow,.microcopy) { max-width: 580px; margin-bottom: 28px; color: #dce9df; font-size: 1.12rem; }
.diagnostic-v2 .microcopy { margin-top: 14px; color: #c8d9cd; }
.diagnostic-v2__mark { display: grid; justify-items: center; gap: 16px; opacity: .8; }
.diagnostic-v2__mark img { width: min(58%, 260px); height: auto; filter: brightness(0) invert(1); }
.diagnostic-v2__mark span { color: #d0e0d2; font-size: .72rem; font-weight: 800; }
.final-v2 { overflow: hidden; background: var(--paper); text-align: center; }
.final-v2__inner { display: grid; justify-items: center; gap: 10px; }
.final-v2__logo { width: min(280px, 64vw); aspect-ratio: 10 / 7; overflow: hidden; margin-bottom: 10px; }
.final-v2__logo img { display: block; width: 100%; height: auto; }
.final-v2 h2 { margin: 0 0 16px; }
.final-v2 .text-link { color: var(--green); }

@media (max-width: 1100px) {
  .hero-v2__layout { min-height: 650px; }
  .hero-v2__copy { max-width: 43%; }
  .hero-v2 h1 { font-size: clamp(3.15rem, 5vw, 3.6rem); }
  .hero-v2__lede { font-size: 1.05rem; }
  .hero-flow { transform: translateY(-50%) scale(.62); transform-origin: right center; }
}

@media (max-width: 960px) {
  .hero-v2__layout { min-height: 0; }
  .hero-v2__layout { display: block; padding-block: 52px 42px; }
  .hero-v2__copy { width: 100%; max-width: 760px; padding: 0; translate: none; }
  .hero-v2 h1 { max-width: 660px; }
  .hero-flow { position: relative; top: auto; right: auto; margin: 44px 0 -100px calc(100% - 850px); transform: scale(.8); transform-origin: top right; }
}

@media (max-width: 700px) {
  .hero-v2__layout { width: min(var(--container), calc(100% - 36px)); padding-block: 29px 30px; }
  .hero-v2 .eyebrow { margin-bottom: 13px; font-size: .6rem; letter-spacing: .23em; }
  .hero-v2 h1 { max-width: 560px; margin-bottom: 15px; font-size: clamp(2.4rem, 9.6vw, 3.6rem); line-height: 1.01; }
  .hero-v2__lede { max-width: 550px; margin-bottom: 17px; font-size: .94rem; line-height: 1.48; }
  .hero-v2 .button { min-height: 50px; padding: 10px 15px; font-size: .87rem; }
  .hero-v2__note { margin-top: 10px; font-size: .7rem; }
  .hero-flow { width: 100%; height: 270px; margin: 25px 0 0; transform: none; }
  .hero-flow__lines, .hero-flow__overline, .hero-flow__signature { display: none; }
  .flow-entry { width: min(47%, 170px); height: 55px; gap: 7px; padding: 6px 8px; font-size: .62rem; }
  .flow-entry__icon { flex-basis: 25px; width: 25px; height: 25px; font-size: .95rem; }
  .flow-entry strong { font-size: .73rem; }
  .flow-entry small { display: none; }
  .flow-entry--one { top: 5px; left: 0; }
  .flow-entry--two { top: 90px; left: 0; }
  .flow-entry--three { top: 175px; left: 0; }
  .flow-entry--four, .flow-entry--five, .flow-entry--six { display: none; }
  .hero-flow__node { top: 110px; left: calc(50% - 14px); width: 14px; height: 14px; }
  .hero-flow__node img { width: 9px; height: 9px; }
  .hero-flow__summary { top: 0; right: 0; left: auto; width: min(49%, 184px); min-height: 233px; padding: 12px 11px; }
  .flow-summary__label { margin-bottom: 9px; font-size: .55rem; letter-spacing: .17em; }
  .flow-summary__values div { gap: 2px; padding: 5px 0; font-size: .66rem; }
  .flow-summary__values dd { font-size: .68rem; }
  .flow-summary__position { gap: 0; margin-top: 8px; padding-top: 7px; font-size: .66rem; }
  .flow-summary__position strong { font-size: 1.1rem; }
  .flow-summary__status { gap: 5px; margin-top: 8px; padding: 5px; font-size: .59rem; }
  .flow-summary__status > span:first-child { flex-basis: 16px; width: 16px; height: 16px; font-size: .57rem; }
  .flow-summary__status small { margin-top: 2px; font-size: .53rem; }
  .hero-v2__bridge { min-height: 130px; }
  .hero-v2__bridge-inner { width: calc(100% - 36px); gap: 16px; }
  .hero-v2__bridge-inner > div { display: block; }
  .hero-v2__bridge-inner p { margin-bottom: 9px; font-size: .57rem; }
  .hero-v2__bridge-inner strong { padding: 0; border: 0; font-size: 1.45rem; }
  .hero-v2__bridge-inner > span { max-width: 150px; padding-left: 14px; font-size: .69rem; }
}

@media (max-width: 800px) {
  .services-v2__layout, .diagnostic-v2 { grid-template-columns: 1fr; gap: 35px; }
  .diagnostic-v2__mark { display: none; }
  .final-v2__logo { width: min(220px, 64vw); }
}

@media (max-width: 340px) {
  .hero-v2 h1 { font-size: 2.25rem; }
  .hero-flow__summary { width: 50%; }
  .flow-entry { width: 45%; }
  .flow-summary__values div { font-size: .59rem; }
  .flow-summary__values dd { font-size: .61rem; }
}

@media (prefers-reduced-motion: reduce) {
  .flow-entry, .hero-flow__summary { animation: none; }
}

@media (max-width: 1100px) {
  .header-inner { gap: 18px; }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: .83rem; }
}

@media (max-width: 800px) {
  :root { --header-height: 66px; }
  .container { width: min(var(--container), calc(100% - 36px)); }
  .header-inner { width: min(var(--container), calc(100% - 36px)); justify-content: space-between; flex-wrap: wrap; }
  .brand > img { width: 42px; height: 42px; }
  .brand-wordmark { width: 125px; height: 42px; }
  .brand-wordmark img { top: -48px; width: 125px; height: 125px; }
  .site-nav { display: flex; flex: 0 0 100%; flex-wrap: wrap; justify-content: flex-start; gap: 0 18px; order: 3; padding-bottom: 10px; }
  .site-nav a { min-height: 44px; font-size: .87rem; }
  html.js .site-nav { position: absolute; top: var(--header-height); left: 0; right: 0; z-index: 20; display: grid; gap: 0; padding: 10px 18px 18px; background: var(--paper); border-bottom: 1px solid var(--border); }
  html.js .site-nav a { display: flex; min-height: 48px; border-bottom: 1px solid var(--border); font-size: 1rem; }
  html.js .site-nav:not(.is-open) { display: none; }
  html.js .menu-toggle { display: grid; justify-content: center; align-content: center; gap: 4px; width: 44px; height: 44px; margin-left: auto; padding: 0; border: 1px solid var(--border); border-radius: 5px; background: var(--paper-light); }
  .menu-toggle span { width: 17px; height: 1.5px; background: var(--green); }
  .header-cta { display: none; }
  .process-steps { grid-template-columns: 1fr; margin-left: 12px; }
  .process-steps li { min-height: 110px; padding: 0 0 27px 37px; border-top: 0; border-left: 1px solid #b7cbbd; }
  .process-steps li::before { top: 0; left: -5px; }
  .process-steps li > span { margin-bottom: 8px; }
  .process-steps h3 { margin-bottom: 8px; }
  .process-steps p { max-width: none; }
  .faq-grid { grid-template-columns: 1fr; gap: 38px; }
  .faq-grid h2 { max-width: 650px; }
  .mobile-cta { position: fixed; right: max(12px, env(safe-area-inset-right)); bottom: max(12px, env(safe-area-inset-bottom)); left: max(12px, env(safe-area-inset-left)); z-index: 40; display: inline-flex; box-shadow: 0 10px 28px rgba(6,47,42,.24); }
  body.has-mobile-cta .site-footer { padding-bottom: 80px; }
}

@media (max-width: 540px) {
  h2 { font-size: 2.3rem; }
  .section-pad { padding-block: 76px; }
  .eyebrow { margin-bottom: 14px; font-size: .67rem; }
  .section-heading { margin-bottom: 34px; }
  .diagnostic { padding-block: 80px; }
  .faq-item button { min-height: 62px; }
  .footer-inner { align-items: start; flex-direction: column; gap: 18px; padding-block: 25px; }
  .footer-inner p { order: 3; }
}

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

@media (max-width: 1100px), (prefers-reduced-motion: reduce) {
  html.js .story, html:not(.js) .story { height: auto; }
  .story-stage, html.js .story-stage, html:not(.js) .story-stage { display: none; }
  .story-readable, html:not(.js) .story-readable { position: static; display: block; width: 100%; height: auto; margin: 0; padding: 0; overflow: visible; clip: auto; white-space: normal; list-style: none; }
  .story-readable li { position: relative; min-height: 0; padding: 55px max(24px, calc((100% - 960px) / 2)) 42px; border-top: 1px solid #d9e3da; color: #293c37; font-size: 1rem; line-height: 1.55; counter-increment: none; }
  .story-readable li::before { content: none; }
  .story-readable li > span { display: block; color: #385d50; font-size: .67rem; font-weight: 760; letter-spacing: .2em; }
  .story-readable li > strong { display: block; max-width: 630px; margin: 18px 0 18px; color: var(--ink); font-family: Iowan Old Style, Baskerville, Georgia, serif; font-size: clamp(2.45rem, 6vw, 4rem); font-weight: 400; line-height: 1.04; }
  .story-readable li > strong em { display: block; color: #64756f; font-style: normal; }
  .story-readable li > p { max-width: 620px; }
  .story-readable__visual { width: min(100%, 650px); aspect-ratio: 3 / 2; margin-top: 28px; }
  .story-readable__visual img { display: block; width: 100%; height: 100%; object-fit: contain; }
  .story-readable__note { display: block; margin-top: 8px; color: var(--muted); font-size: .72rem; }
  .story-mobile-cta { display: inline-flex; margin: 5px 24px 65px; }
}

html:not(.js) .story { height: auto; }
html:not(.js) .story-stage { display: none; }
html:not(.js) .story-readable { position: static; display: block; width: 100%; height: auto; margin: 0; padding: 0; overflow: visible; clip: auto; white-space: normal; }

@media (max-width: 540px) {
  .story-readable li { padding: 38px 18px 30px; }
  .story-readable li > strong { font-size: 2.5rem; }
}

@media (max-width: 1150px) {
  .services-v2__layout { grid-template-columns: 1fr; }
  .services-v2__intro h2 { max-width: 720px; }
  .service-topics { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 15px; }
  .service-panel { min-height: 0; }
}

@media (max-width: 650px) {
  .services-v2::before { display: none; }
  .services-v2 > .container { width: calc(100% - 36px); }
  .services-v2__layout { gap: 28px; }
  .services-v2__intro h2 { font-size: clamp(2.25rem, 8vw, 3rem); }
  .service-topics { grid-template-columns: 1fr; }
  .service-topic { min-height: 66px; grid-template-columns: 25px 28px minmax(0,1fr) 18px; gap: 10px; padding: 10px 11px; }
  .service-topic svg { width: 23px; height: 23px; }
  .service-topic__copy small { display: none; }
  .services-v2__signature { line-height: 1.9; }
  .services-v2__signature span { margin-inline: 6px; }
  .service-panel { padding: 14px; }
  .service-example__header { grid-template-columns: 24px 28px minmax(0,1fr); gap: 8px; min-height: 0; }
  .service-example__header svg { width: 26px; height: 26px; }
  .service-example__header h3 { font-size: 1.25rem; }
  .service-example__header p { font-size: .74rem; }
  .service-status { grid-column: 3; justify-self: start; margin: 3px 0 8px; padding: 6px 9px; }
  .service-metrics, .service-metrics--four { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .service-metrics:not(.service-metrics--four) > div:last-child { grid-column: 1 / -1; }
  .service-metrics > div { min-height: 84px; padding: 11px; }
  .service-metrics strong { font-size: 1.13rem; }
  .service-data-grid { grid-template-columns: 1fr; }
  .service-data-block { min-height: 0; padding: 14px; }
  .service-table-wrap { overflow: visible; }
  .service-data-block table, .service-data-block tbody { display: block; width: 100%; min-width: 0; }
  .service-data-block thead { display: none; }
  .service-data-block tbody tr { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 6px 10px; padding: 13px 0; border-bottom: 1px solid #edf0ed; }
  .service-data-block td, .service-data-block td:first-child { display: block; min-width: 0; padding: 0; border: 0; white-space: normal; }
  .service-data-block td:nth-child(1) { font-weight: 700; }
  .service-data-block td:nth-child(2) { text-align: right; }
  .service-data-block td:nth-child(3) { color: #63746f; }
  .service-data-block td:nth-child(4) { text-align: right; }
  .service-example[data-service-panel="2"] td:nth-child(1) { grid-column: 1; grid-row: 2; color: #63746f; font-weight: 400; }
  .service-example[data-service-panel="2"] td:nth-child(2) { grid-column: 1; grid-row: 1; font-weight: 700; text-align: left; }
  .service-example[data-service-panel="2"] td:nth-child(3) { grid-column: 2; grid-row: 1; color: var(--ink); text-align: right; }
  .service-example[data-service-panel="2"] td:nth-child(4) { grid-column: 2; grid-row: 2; }
  .service-chart-key { margin-top: 0; }
  .service-bar-chart { height: 190px; }
  .service-donut { width: 135px; }
}

@media (min-width: 1151px) and (min-height: 1001px) and (max-height: 1260px) {
  .services-v2.section-pad { display: flex; align-items: center; min-height: calc(100svh - var(--header-height) - 18px); padding-block: 24px; }
  .services-v2__layout { align-items: center; }
  .services-v2__intro { margin-bottom: 15px; }
  .service-topic { min-height: 72px; padding-block: 9px; }
  .services-v2__signature { margin-top: 15px; }
  .service-panel { min-height: 0; }
}

@media (min-width: 1151px) and (max-height: 1000px) {
  .services-v2.section-pad { display: flex; align-items: center; min-height: calc(100svh - var(--header-height) - 18px); padding-block: 20px; }
  .services-v2__layout { align-items: center; }
  .services-v2__editorial { padding-top: 0; }
  .services-v2__intro { margin-bottom: 12px; }
  .services-v2__intro .eyebrow { margin-bottom: 7px; font-size: .67rem; }
  .services-v2__intro h2 { max-width: 540px; margin-bottom: 8px; font-size: 2.35rem; }
  .services-v2__intro > p:last-child { max-width: 510px; font-size: .82rem; line-height: 1.45; }
  .service-topic { min-height: 55px; grid-template-columns: 25px 30px minmax(0,1fr) 18px; gap: 9px; padding: 6px 11px; }
  .service-topic svg { width: 23px; height: 23px; }
  .service-topic__copy strong { font-size: 1rem; }
  .service-topic__copy small { display: none; }
  .service-topic.is-active .service-topic__copy small { display: block; font-size: .64rem; line-height: 1.3; }
  .services-v2__signature { margin-top: 9px; font-size: .56rem; }
  .service-panel { min-height: 0; padding: 12px 18px 16px; }
  .service-panel__top { margin-bottom: 6px; font-size: .55rem; }
  .service-example__header { min-height: 62px; grid-template-columns: 22px 30px minmax(0,1fr) auto; gap: 9px; }
  .service-example__index { padding-top: 5px; }
  .service-example__header svg { width: 27px; height: 27px; margin-top: 0; }
  .service-example__header h3 { margin-bottom: 3px; font-size: 1.4rem; }
  .service-example__header p { font-size: .74rem; line-height: 1.3; }
  .service-status { padding: 6px 9px; font-size: .62rem; }
  .service-metrics { gap: 8px; margin: 6px 0 8px; }
  .service-metrics > div { min-height: 67px; padding: 8px 10px; }
  .service-metrics strong { font-size: 1.08rem; }
  .service-metrics span { font-size: .62rem; }
  .service-data-grid { gap: 8px; }
  .service-data-block { min-height: 280px; padding: 10px; }
  .service-data-block h4 { margin-bottom: 8px; font-size: .73rem; }
  .service-data-block th, .service-data-block td { padding-block: 6px; }
  .service-donut { width: 110px; margin: 9px auto; }
  .service-donut strong { font-size: .72rem; }
  .service-donut small { font-size: .51rem; }
  .service-legend { gap: 1px; }
  .service-legend li { font-size: .64rem; }
  .service-chart-key { margin-bottom: 5px; }
  .service-bar-chart { height: 180px; padding-top: 10px; }
  .service-bar-chart small { font-size: .65rem; }
  .service-rows li { padding-block: 8px; }
  .service-forecast { margin-top: 10px; }
  .service-insight { margin-top: 8px; padding: 8px 11px; font-size: .68rem; }
}
