:root {
  --ink: #071311;
  --ink-raised: #0d201c;
  --ink-soft: #17302a;
  --paper: #f4f3ed;
  --paper-deep: #e9e8e1;
  --white: #ffffff;
  --accent: #73f2cb;
  --accent-dark: #15755e;
  --orange: #ffad5b;
  --text: #0d1715;
  --muted: #5d6764;
  --line: rgba(7, 19, 17, 0.16);
  --line-light: rgba(255, 255, 255, 0.15);
  --shell: min(1240px, calc(100vw - 64px));
  --sans: 'Inter', Arial, sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; background: var(--ink); overscroll-behavior-y: none; }
body { margin: 0; overflow-x: clip; color: var(--text); background: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
main { background: var(--paper); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: wait; opacity: .62; }
svg { display: block; }
::selection { color: var(--ink); background: var(--accent); }
:where(a, button, input, textarea, select, summary):focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
:where(h1, h2, h3) { text-wrap: balance; }
:where(p, li) { text-wrap: pretty; }
section[id] { scroll-margin-top: 86px; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 200; left: 16px; top: -70px; padding: 11px 16px; background: var(--accent); color: var(--ink); transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { position: absolute; z-index: 100; inset: 0 0 auto; color: var(--white); border-bottom: 1px solid transparent; }
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 600; line-height: 1; letter-spacing: -.025em; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.mark-field { fill: var(--accent); }
.mark-code { fill: none; stroke: var(--ink); stroke-width: 2.5; stroke-linecap: square; stroke-linejoin: round; }
.brand-name span { display: block; color: var(--accent); }
.site-nav { display: flex; align-items: center; gap: 31px; font-size: 13px; font-weight: 500; }
.site-nav > a:not(.nav-contact) { position: relative; }
.site-nav > a:not(.nav-contact)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: currentColor; transition: right .2s; }
.site-nav > a:not(.nav-contact):hover::after { right: 0; }
.site-nav > a.active:not(.nav-contact)::after { right: 0; }
.nav-contact { min-width: 126px; min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 13px; padding: 0 16px; border: 1px solid rgba(255,255,255,.35); line-height: 1; }
.nav-contact span { color: var(--accent); }
.nav-contact:hover { color: var(--ink); background: var(--white); }
.nav-contact.active { background: rgba(255,255,255,.08); }
.menu-toggle { display: none; color: inherit; border: 0; background: transparent; padding: 8px; }

.hero { min-height: 900px; min-height: clamp(760px, 92svh, 900px); position: relative; overflow: hidden; padding-top: clamp(145px, 18svh, 190px); color: var(--white); background: var(--ink); }
.hero-grid-lines { position: absolute; inset: 0; opacity: .6; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.028) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, black 20%, transparent 85%); }
.hero::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 101% -9%, rgba(115,242,203,.17), rgba(115,242,203,.055) 20%, transparent 42%); }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 95px; align-items: center; }
.kicker { margin: 0 0 24px; font-family: var(--mono); font-size: 11px; line-height: 1.4; text-transform: uppercase; letter-spacing: .12em; }
.kicker.light { color: #a8b9b4; }
.kicker.dark { color: var(--accent-dark); }
.kicker.light span { display: inline-flex; align-items: center; gap: 11px; }
.kicker.light span::before { content: ''; width: 26px; height: 1px; background: var(--accent); }
.hero h1 { margin: 0; font-size: clamp(65px, 6.6vw, 98px); line-height: .94; letter-spacing: -.065em; font-weight: 500; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-summary { max-width: 635px; margin: 36px 0 0; color: #b2c0bc; font-size: 19px; line-height: 1.65; letter-spacing: -.01em; }
.hero-actions { display: flex; align-items: center; gap: 31px; margin-top: 38px; }
.button { height: 55px; display: inline-flex; align-items: center; justify-content: space-between; gap: 40px; padding: 0 20px; border: 0; border-radius: 0; appearance: none; font-size: 14px; font-weight: 600; line-height: 1; transition: background .18s ease-out, transform .18s ease-out; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-accent { color: var(--ink); background: var(--accent); }
.button-accent:hover { background: #96f9da; }
.quiet-link { min-height: 38px; display: inline-flex; align-items: center; gap: 9px; padding: 7px 0 6px; border-bottom: 1px solid rgba(255,255,255,.32); color: #e4e9e7; font-size: 14px; }
.quiet-link span { color: var(--accent); }

.delivery-map { position: relative; border: 1px solid rgba(255,255,255,.17); background: rgba(13,32,28,.78); box-shadow: 0 45px 100px rgba(0,0,0,.25); }
.delivery-map::before { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.05); pointer-events: none; }
.map-header, .map-footer { min-height: 55px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; color: #829790; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.map-header { border-bottom: 1px solid var(--line-light); }
.map-footer { border-top: 1px solid var(--line-light); }
.map-status { display: flex; align-items: center; gap: 8px; color: #b9c6c2; }
.map-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(115,242,203,.08); }
.map-grid { display: grid; grid-template-columns: 1fr 1fr; }
.map-grid article { min-height: 176px; position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 21px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.map-grid article:nth-child(2n) { border-right: 0; }
.map-grid article:nth-child(n+3) { border-bottom: 0; }
.map-grid svg { width: 37px; height: 37px; fill: none; stroke: var(--accent); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.map-number { position: absolute; top: 18px; right: 18px; color: #829891; font-family: var(--mono); font-size: 10px; }
.map-grid h2 { margin: 22px 0 0; font-size: 17px; font-weight: 500; letter-spacing: -.02em; }
.map-grid p { margin: 1px 0 0; color: #7f948e; font-size: 11px; }
.capability-bar { position: absolute; z-index: 2; inset: auto 0 0; border-top: 1px solid rgba(255,255,255,.13); background: #0a1a17; }
.capability-inner { min-height: 92px; display: flex; align-items: center; gap: 48px; }
.capability-label { color: #829891; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; white-space: nowrap; }
.capability-inner ul { width: 100%; display: flex; justify-content: space-between; gap: 22px; padding: 0; margin: 0; list-style: none; color: #d6dfdc; font-size: 12px; }
.capability-inner li { display: flex; align-items: center; gap: 13px; }
.capability-inner li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

.section { padding: 130px 0; }
.introduction { padding: 150px 0; }
.intro-grid { display: grid; grid-template-columns: .5fr 1.5fr; gap: 60px; }
.section-index { display: flex; align-items: flex-start; gap: 18px; color: var(--muted); font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .11em; }
.section-index span { color: var(--accent-dark); }
.section-index p { margin: 0; }
.lead-statement { max-width: 960px; margin: 0; font-size: clamp(43px, 5.4vw, 76px); line-height: 1.08; letter-spacing: -.055em; font-weight: 400; }
.intro-body { max-width: 740px; margin: 50px 0 0 auto; padding-left: 90px; border-left: 1px solid var(--line); color: var(--muted); font-size: 18px; line-height: 1.8; }

.services { padding-top: 40px; }
.section-title-row { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 80px; margin-bottom: 75px; }
.section-title-row h2, .expertise-intro h2, .standards-heading h2, .engagement-header h2, .company-heading h2, .questions-heading h2, .contact-heading h2 { margin: 0; font-size: clamp(45px, 5vw, 72px); line-height: 1.04; letter-spacing: -.055em; font-weight: 400; }
.section-title-row > p { margin: 0 0 8px; color: var(--muted); font-size: 17px; }
.services-list { border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: 70px .75fr .9fr 1fr; gap: 34px; align-items: start; padding: 46px 0; border-bottom: 1px solid var(--line); }
.service-number { color: var(--accent-dark); font-family: var(--mono); font-size: 11px; }
.service-heading { display: flex; gap: 22px; align-items: flex-start; }
.service-heading svg { width: 39px; height: 39px; flex: none; fill: none; stroke: var(--accent-dark); stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.service-heading h3 { margin: -4px 0 0; font-size: 25px; line-height: 1.17; letter-spacing: -.035em; font-weight: 500; }
.service-heading h3 a { transition: color .2s; }
.service-heading h3 a:hover { color: var(--accent-dark); }
.service-item > p { margin: -4px 0 0; color: var(--muted); }
.service-item ul { padding: 0; margin: -4px 0 0; list-style: none; font-size: 13px; }
.service-item li { position: relative; padding: 6px 0 6px 17px; border-bottom: 1px solid rgba(7,19,17,.09); }
.service-item li::before { content: ''; position: absolute; left: 0; color: var(--accent-dark); }

.expertise { color: var(--white); background: var(--ink); }
.expertise-intro { max-width: 800px; margin-bottom: 78px; }
.expertise-intro > p:last-child { max-width: 620px; margin: 30px 0 0; color: #9bada7; font-size: 18px; }
.challenge-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.challenge-card { min-height: 375px; display: flex; flex-direction: column; padding: 37px 40px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); transition: background .25s; }
.challenge-card:hover { background: var(--ink-raised); }
.challenge-card > span { color: var(--accent); font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .11em; }
.challenge-card h3 { max-width: 500px; margin: 52px 0 19px; font-size: 29px; line-height: 1.24; letter-spacing: -.035em; font-weight: 400; }
.challenge-card p { max-width: 510px; margin: 0; color: #91a49e; }
.challenge-meta { margin-top: auto; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); color: #b6c3bf; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.page-section.alt .challenge-grid { border-color: var(--line); }
.page-section.alt .challenge-card { color: var(--text); border-color: var(--line); }
.page-section.alt .challenge-card:hover { background: var(--paper); }
.page-section.alt .challenge-card > span { color: var(--accent-dark); }
.page-section.alt .challenge-card p { color: var(--muted); }
.page-section.alt .challenge-meta { color: var(--muted); border-color: var(--line); }

.standards { color: var(--white); background: var(--ink-raised); }
.standards-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; }
.section-index.inverse { color: #789089; margin-bottom: 140px; }
.section-index.inverse span { color: var(--accent); }
.standards-heading > p:last-child { max-width: 470px; margin: 28px 0 0; color: #93a69f; font-size: 16px; }
.standards-list { border-top: 1px solid var(--line-light); }
.standards-list article { display: grid; grid-template-columns: 50px 1fr; gap: 25px; padding: 31px 4px; border-bottom: 1px solid var(--line-light); }
.standards-list article > span { color: var(--accent); font-family: var(--mono); font-size: 10px; }
.standards-list h3 { margin: -5px 0 5px; font-size: 21px; font-weight: 500; letter-spacing: -.025em; }
.standards-list p { margin: 0; color: #91a49e; font-size: 14px; }

.approach { background: var(--paper); }
.approach-title { margin-bottom: 55px; }
.approach-list { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.approach-list li { display: grid; grid-template-columns: 75px .72fr 1fr 190px; gap: 30px; align-items: start; padding: 40px 8px; border-bottom: 1px solid var(--line); }
.approach-number { color: var(--accent-dark); font-family: var(--mono); font-size: 11px; }
.approach-list h3 { margin: -5px 0 0; font-size: 24px; line-height: 1.25; letter-spacing: -.035em; font-weight: 500; }
.approach-list p { margin: -4px 0 0; color: var(--muted); }
.approach-output { color: var(--accent-dark); font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }

.engagement { padding-top: 20px; }
.engagement-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 60px; }
.engagement-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.engagement-grid article { min-height: 390px; display: flex; flex-direction: column; padding: 32px 27px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.engagement-grid article > span { color: var(--accent-dark); font-family: var(--mono); font-size: 11px; }
.engagement-grid h3 { margin: 65px 0 17px; font-size: 24px; letter-spacing: -.035em; font-weight: 500; }
.engagement-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.engagement-grid strong { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 10px; line-height: 1.6; text-transform: uppercase; letter-spacing: .08em; font-weight: 400; }

.company { color: var(--white); background: var(--ink); }
.company-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: 100px; }
.company-heading { align-self: start; }
.company-lead { max-width: 780px; margin: 0; font-size: clamp(31px,3.3vw,48px); line-height: 1.22; letter-spacing: -.045em; }
.company-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; margin-top: 55px; color: #94a6a0; }
.company-columns p { margin: 0; }
.company-principles { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 75px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.company-principles article { min-height: 255px; padding: 25px 22px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.company-principles span { color: var(--accent); font-family: var(--mono); font-size: 11px; }
.company-principles h3 { margin: 65px 0 10px; font-size: 19px; font-weight: 500; }
.company-principles p { margin: 0; color: #80958e; font-size: 13px; }

.questions { background: var(--paper-deep); }
.questions-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.question-list { border-top: 1px solid var(--line); }
.question-list details { border-bottom: 1px solid var(--line); }
.question-list summary { min-height: 83px; display: flex; align-items: center; justify-content: space-between; gap: 30px; list-style: none; cursor: pointer; font-size: 18px; font-weight: 500; }
.question-list summary::-webkit-details-marker { display: none; }
.question-list summary span { color: var(--accent-dark); font-size: 23px; font-weight: 400; transition: transform .2s; }
.question-list details[open] summary span { transform: rotate(45deg); }
.question-list details p { max-width: 680px; margin: -4px 55px 28px 0; color: var(--muted); }

.contact { color: var(--white); background: var(--ink-raised); }
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 105px; align-items: start; }
.contact-heading > p:not(.kicker) { max-width: 540px; margin: 28px 0 0; color: #99aaa5; font-size: 17px; }
.contact-assurance { margin-top: 60px; padding-top: 25px; border-top: 1px solid var(--line-light); }
.contact-assurance > span { color: var(--accent); font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.contact-assurance ol { padding: 0; margin: 19px 0 0; counter-reset: contact-step; list-style: none; color: #a3b3ae; font-size: 13px; }
.contact-assurance li { counter-increment: contact-step; margin: 8px 0; }
.contact-assurance li::before { content: '0' counter(contact-step); display: inline-block; width: 30px; color: #829891; font-family: var(--mono); font-size: 10px; }
.contact-form { padding: 39px 42px 43px; border: 1px solid var(--line-light); background: #122a25; }
.form-heading { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 38px; padding-bottom: 21px; border-bottom: 1px solid var(--line-light); }
.form-heading span:first-child { font-size: 18px; font-weight: 500; }
.form-heading span:last-child { color: #899d97; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.form-row.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form label { display: block; margin-bottom: 23px; color: #becbc7; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.contact-form label > span { color: #849b95; text-transform: none; letter-spacing: 0; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; display: block; margin-top: 8px; padding: 12px 1px; color: var(--white); background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.24); border-radius: 0; outline: none; font-family: var(--sans); font-size: 14px; text-transform: none; transition: border-color .2s; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--accent); }
.contact-form input:focus-visible, .contact-form textarea:focus-visible, .contact-form select:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.contact-form textarea { min-height: 135px; resize: vertical; }
.contact-form select { color: #b8c5c1; }
.contact-form option { color: var(--ink); }
.form-trap { position: absolute !important; left: -9999px !important; }
.cf-turnstile { width: 100%; min-height: 0; margin-top: 5px; }
.form-submit-row { display: flex; align-items: center; gap: 24px; margin-top: 29px; }
.form-submit-row p { margin: 0; color: #91a49e; font-size: 12px; line-height: 1.55; }
.form-status { margin: 20px 0 0; padding: 11px 14px; color: var(--accent); background: rgba(115,242,203,.08); font-size: 13px; }
.form-status.is-error { color: var(--orange); background: rgba(255,173,91,.08); }

.site-footer { color: var(--white); background: #040c0a; }
.footer-top { min-height: 320px; display: grid; grid-template-columns: .9fr .8fr .7fr; gap: 80px; align-items: start; padding-top: 70px; padding-bottom: 65px; }
.footer-brand { margin-bottom: 22px; }
.footer-brand-block > p { max-width: 290px; margin: 0; color: #6f827c; font-size: 13px; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.footer-nav div { display: flex; flex-direction: column; gap: 10px; }
.footer-nav span { margin-bottom: 8px; color: #788c85; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.footer-nav a { color: #a4b2ae; font-size: 12px; }
.footer-nav a:hover { color: var(--accent); }
.footer-cta { min-height: 110px; display: flex; align-items: center; justify-content: space-between; padding: 20px; border: 1px solid var(--line-light); transition: background .2s, color .2s; }
.footer-cta:hover { color: var(--ink); background: var(--accent); }
.footer-cta span { max-width: 120px; font-size: 17px; line-height: 1.25; }
.footer-cta b { color: var(--accent); font-size: 19px; font-weight: 400; }
.footer-cta:hover b { color: var(--ink); }
.footer-bottom { min-height: 80px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 35px; align-items: center; border-top: 1px solid rgba(255,255,255,.1); color: #788c85; font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #91a19c; }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; align-items: center; gap: 22px; }
.footer-legal a[aria-current="page"] { color: var(--white); }

/* Interior pages */
.page-hero { position: relative; overflow: hidden; height: 680px; min-height: 680px; padding: 160px 0 50px; color: var(--white); background: var(--ink); }
.page-hero::before { content: ''; position: absolute; inset: 0; opacity: .58; background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, black 20%, transparent 90%); }
.page-hero::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 101% -12%, rgba(115,242,203,.15), rgba(115,242,203,.045) 21%, transparent 43%); }
.page-hero-grid { min-height: 470px; position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr .65fr; gap: 90px; align-items: end; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin: 0 0 38px; color: #81958f; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .11em; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { width: 18px; height: 1px; display: block; background: #516a63; }
.page-hero h1 { max-width: 870px; margin: 0; font-size: clamp(61px, 6.7vw, 96px); line-height: .96; letter-spacing: -.065em; font-weight: 400; }
.page-hero h1 em { color: var(--accent); font-style: normal; }
.page-hero-summary { max-width: 720px; margin: 35px 0 0; color: #a9b8b3; font-size: 19px; line-height: 1.7; }
.page-hero-aside { padding: 24px 0 0 28px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.page-hero-aside > span { color: var(--accent); font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .11em; }
.page-hero-aside ul { padding: 0; margin: 24px 0 0; list-style: none; }
.page-hero-aside li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.09); color: #c1ccc8; font-size: 13px; }
.page-hero-aside li::before { content: ''; display: inline-block; width: 25px; color: var(--accent); }
.page-section { padding: 125px 0; background: var(--paper); }
.page-section.alt { background: var(--paper-deep); }
.page-section.dark { color: var(--white); background: var(--ink-raised); }
.page-lead-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 70px; }
.page-lead { max-width: 940px; margin: 0; font-size: clamp(38px, 4.5vw, 65px); line-height: 1.1; letter-spacing: -.052em; font-weight: 400; }
.page-lead-support { max-width: 720px; margin: 45px 0 0 auto; padding-left: 75px; border-left: 1px solid var(--line); color: var(--muted); font-size: 17px; line-height: 1.8; }
.page-section.dark .page-lead-support { color: #96a8a2; border-color: var(--line-light); }

.directory-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.directory-card { min-height: 410px; position: relative; display: flex; flex-direction: column; padding: 37px 39px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .22s, background .22s; }
.directory-card:hover { color: var(--white); background: var(--ink-raised); }
.directory-card > span { color: var(--accent-dark); font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.directory-card:hover > span { color: var(--accent); }
.directory-card h2 { max-width: 500px; margin: 75px 0 17px; font-size: 33px; line-height: 1.16; letter-spacing: -.04em; font-weight: 500; }
.directory-card p { max-width: 520px; margin: 0; color: var(--muted); }
.directory-card:hover p { color: #96a8a2; }
.directory-card .card-link { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.directory-card:hover .card-link { border-color: var(--line-light); }
.directory-card .card-link b { color: var(--accent-dark); font-size: 18px; font-weight: 400; }
.directory-card:hover .card-link b { color: var(--accent); }

.band-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: end; margin-bottom: 65px; }
.band-heading h2 { margin: 0; font-size: clamp(42px, 4.7vw, 68px); line-height: 1.06; letter-spacing: -.052em; font-weight: 400; }
.band-heading > p { max-width: 590px; margin: 0 0 8px; color: var(--muted); }
.page-section.dark .band-heading > p { color: #94a59f; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-grid article { min-height: 310px; padding: 30px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.page-section.dark .feature-grid { border-color: var(--line-light); }
.page-section.dark .feature-grid article { border-color: var(--line-light); }
.feature-grid article > span { color: var(--accent-dark); font-family: var(--mono); font-size: 10px; }
.page-section.dark .feature-grid article > span { color: var(--accent); }
.feature-grid h3 { margin: 70px 0 13px; font-size: 23px; line-height: 1.25; letter-spacing: -.035em; font-weight: 500; }
.feature-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.page-section.dark .feature-grid p { color: #8fa19b; }

.evidence-list { border-top: 1px solid var(--line); }
.evidence-list article { display: grid; grid-template-columns: 70px .65fr 1.35fr; gap: 35px; padding: 39px 5px; border-bottom: 1px solid var(--line); }
.evidence-list article > span { color: var(--accent-dark); font-family: var(--mono); font-size: 10px; }
.evidence-list h3 { margin: -5px 0 0; font-size: 23px; letter-spacing: -.035em; font-weight: 500; }
.evidence-list p { margin: -4px 0 0; color: var(--muted); }

.detail-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.detail-intro h2 { margin: 0; font-size: clamp(42px, 4.5vw, 66px); line-height: 1.08; letter-spacing: -.055em; font-weight: 400; }
.detail-copy > p { margin: 0 0 25px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.detail-copy strong { color: var(--text); font-weight: 500; }
.scope-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; padding: 0; margin: 38px 0 0; list-style: none; border-top: 1px solid var(--line); }
.scope-list li { position: relative; padding: 14px 0 14px 21px; border-bottom: 1px solid var(--line); font-size: 13px; }
.scope-list li::before { content: ''; position: absolute; left: 0; color: var(--accent-dark); }
.phase-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.phase-grid article { min-height: 330px; padding: 31px 29px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.phase-grid span { color: var(--accent); font-family: var(--mono); font-size: 10px; }
.phase-grid h3 { margin: 80px 0 14px; font-size: 24px; font-weight: 500; letter-spacing: -.035em; }
.phase-grid p { margin: 0; color: #91a39d; font-size: 14px; }

.map-grid,
.challenge-grid,
.engagement-grid,
.company-principles,
.directory-grid,
.feature-grid,
.phase-grid,
.legal-purpose-grid { grid-auto-rows: 1fr; }

.cta-band { color: var(--white); background: var(--ink); }
.cta-inner { min-height: 340px; display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: center; }
.cta-inner h2 { max-width: 830px; margin: 0; font-size: clamp(43px, 4.9vw, 70px); line-height: 1.05; letter-spacing: -.055em; font-weight: 400; }
.cta-action { justify-self: end; }
.cta-action p { max-width: 360px; margin: 0 0 25px; color: #93a59f; }

.contact-page { padding: 125px 0; color: var(--white); background: var(--ink-raised); }

.mini-nav { position: relative; border-bottom: 1px solid var(--line); background: var(--paper); }
.mini-nav::before, .mini-nav::after { content: ''; position: absolute; z-index: 1; top: 0; bottom: 1px; width: 58px; pointer-events: none; opacity: 0; transition: opacity .15s ease; }
.mini-nav::before { left: 0; background: linear-gradient(90deg, var(--paper) 48%, transparent); }
.mini-nav::after { right: 0; background: linear-gradient(270deg, var(--paper) 48%, transparent); }
.mini-nav.can-scroll-left::before, .mini-nav.can-scroll-right::after { opacity: 1; }
.mini-nav-inner { min-height: 64px; display: flex; align-items: center; gap: 32px; overflow-x: auto; scrollbar-width: none; }
.mini-nav-inner::-webkit-scrollbar { display: none; }
.mini-nav span { color: var(--muted); font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }
.mini-nav a { align-self: stretch; display: inline-flex; align-items: center; white-space: nowrap; font-size: 12px; }
.mini-nav a:hover, .mini-nav a.active { color: var(--accent-dark); }

/* Privacy and legal */
.legal-hero { min-height: 680px; }
.legal-document { display: grid; grid-template-columns: 250px minmax(0, 790px); justify-content: space-between; gap: 90px; padding-top: 110px; padding-bottom: 145px; }
.legal-toc { display: flex; flex-direction: column; align-self: start; border-top: 1px solid var(--line); }
.legal-toc > span { padding: 20px 0 17px; color: var(--accent-dark); font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .11em; }
.legal-toc a { padding: 10px 0; border-top: 1px solid rgba(7,19,17,.08); color: var(--muted); font-size: 12px; transition: color .2s, padding-left .2s; }
.legal-toc a:hover { padding-left: 5px; color: var(--text); }
.legal-content { min-width: 0; }
.legal-intro { padding-bottom: 65px; }
.legal-intro h2 { max-width: 680px; margin: 0; font-size: clamp(43px, 5vw, 68px); line-height: 1.06; letter-spacing: -.055em; font-weight: 400; }
.legal-intro > p:last-child { max-width: 680px; margin: 30px 0 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.legal-content > section { position: relative; padding: 60px 0 63px 64px; border-top: 1px solid var(--line); scroll-margin-top: 105px; }
.legal-index { position: absolute; top: 67px; left: 0; color: var(--accent-dark); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; }
.legal-content h2 { margin: 0 0 27px; font-size: 32px; line-height: 1.2; letter-spacing: -.04em; font-weight: 500; }
.legal-content h3 { margin: 31px 0 9px; font-size: 17px; line-height: 1.35; letter-spacing: -.02em; font-weight: 600; }
.legal-content p { margin: 0 0 19px; color: var(--muted); line-height: 1.8; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul { padding: 0; margin: 5px 0 22px; list-style: none; }
.legal-content li { position: relative; padding: 10px 0 10px 24px; border-bottom: 1px solid rgba(7,19,17,.08); color: var(--muted); }
.legal-content li::before { content: ''; position: absolute; left: 0; color: var(--accent-dark); }
.legal-content strong { color: var(--text); font-weight: 600; }
.legal-content a { color: var(--accent-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.legal-details { margin: 30px 0 0; border-top: 1px solid var(--line); }
.legal-details > div { display: grid; grid-template-columns: 180px 1fr; gap: 25px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.legal-details dt { color: var(--accent-dark); font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.legal-details dd { margin: 0; color: var(--muted); }
.legal-purpose-grid { display: grid; grid-template-columns: 1fr 1fr; margin: 35px 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.legal-purpose-grid > div { min-height: 270px; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.legal-purpose-grid h3 { margin-top: 0; font-size: 18px; }
.legal-purpose-grid p { font-size: 14px; }
.legal-purpose-grid b { display: block; color: var(--accent-dark); font-family: var(--mono); font-size: 10px; line-height: 1.6; letter-spacing: .03em; font-weight: 500; }
.legal-callout { margin: 34px 0 !important; padding: 24px 26px; border-left: 3px solid var(--accent-dark); color: var(--text) !important; background: var(--paper-deep); }
.form-submit-row a { color: #c1d0cb; text-decoration: underline; text-underline-offset: 3px; }
.form-submit-row a:hover { color: var(--accent); }

/* Consistent action icon: avoids platform-dependent Unicode arrow rendering. */
.nav-contact span[aria-hidden="true"],
.button span[aria-hidden="true"],
.quiet-link span[aria-hidden="true"],
.footer-cta b[aria-hidden="true"],
.card-link b[aria-hidden="true"] {
  width: 14px;
  height: 14px;
  display: inline-block;
  flex: 0 0 14px;
  font-size: 0;
  line-height: 0;
  vertical-align: middle;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 8h11M9 4l4 4-4 4' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 8h11M9 4l4 4-4 4' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-bottom > a:last-child { display: inline-flex; align-items: center; gap: 7px; }
.up-icon {
  width: 12px;
  height: 12px;
  display: inline-block;
  flex: 0 0 12px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 14V3M4 7l4-4 4 4' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 14V3M4 7l4-4 4 4' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
}

.service-item li::before,
.page-hero-aside li::before,
.scope-list li::before,
.legal-content li::before {
  content: '';
  width: 12px;
  height: 12px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 3v6h9M9 6l3 3-3 3' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 3v6h9M9 6l3 3-3 3' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
}
.service-item li::before { top: 11px; }
.scope-list li::before { top: 19px; }
.legal-content li::before { top: 17px; }
.page-hero-aside li::before { margin-right: 12px; vertical-align: -2px; }

.reveal { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .hero-layout { gap: 50px; }
  .hero h1 { font-size: clamp(62px,7.5vw,83px); }
  .service-item { grid-template-columns: 55px .9fr 1fr; }
  .service-item ul { grid-column: 2 / 4; display: grid; grid-template-columns: 1fr 1fr; }
  .standards-layout, .contact-layout { gap: 65px; }
  .engagement-grid { grid-template-columns: 1fr 1fr; }
  .company-layout { grid-template-columns: 1fr; }
  .company-heading { position: static; }
  .company-heading h2 br { display: none; }
  .page-hero-grid, .detail-intro { gap: 55px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 40px, 1240px); }
  .header-inner { min-height: 74px; }
  .menu-toggle { position: relative; z-index: 2; display: block; }
  .site-header.menu-open { color: var(--white); background: transparent; border-color: transparent; backdrop-filter: none; }
  .site-header.menu-open .brand-name span { color: var(--accent); }
  .menu-toggle span:not(.sr-only) { width: 25px; height: 1px; display: block; margin: 7px 0; background: currentColor; transition: transform .2s; }
  .menu-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; z-index: 1; top: 0; right: 0; left: 0; width: 100vw; height: 100dvh; display: flex; flex-direction: column; justify-content: center; gap: 24px; visibility: hidden; opacity: 0; color: var(--white); background: var(--ink); font-size: 24px; transition: opacity .2s, visibility .2s; }
  .site-nav.open { visibility: visible; opacity: 1; }
  .site-nav .nav-contact { margin-top: 15px; font-size: 15px; }
  .hero { min-height: auto; padding: 130px 0 0; }
  .hero-layout { grid-template-columns: 1fr; }
  .delivery-map { width: min(600px,100%); margin: 35px auto 130px; }
  .capability-inner { padding: 25px 0; align-items: flex-start; }
  .capability-inner ul { display: grid; grid-template-columns: 1fr 1fr; }
  .section, .introduction { padding: 95px 0; }
  .intro-grid, .section-title-row, .standards-layout, .questions-layout, .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .intro-body { margin-left: 0; padding-left: 30px; }
  .service-item { grid-template-columns: 50px 1fr; }
  .service-item > p, .service-item ul { grid-column: 2; }
  .challenge-card { min-height: 345px; }
  .section-index.inverse { margin-bottom: 45px; }
  .approach-list li { grid-template-columns: 50px 1fr; }
  .approach-list p, .approach-output { grid-column: 2; }
  .company-principles { grid-template-columns: 1fr; }
  .company-principles article { min-height: 210px; }
  .contact-heading { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-cta { grid-column: 2; }
  .page-hero { height: auto; min-height: 924px; padding: 138px 0 78px; }
  .page-hero-grid { min-height: 708px; align-content: space-between; }
  .page-hero-grid, .page-lead-grid, .detail-intro, .band-heading, .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .page-hero-aside { max-width: 540px; }
  .directory-grid { grid-template-columns: 1fr; }
  .page-lead-support { margin-left: 0; }
  .evidence-list article { grid-template-columns: 50px 1fr; }
  .evidence-list p { grid-column: 2; }
  .cta-action { justify-self: start; }
  .legal-document { grid-template-columns: 1fr; gap: 65px; }
  .legal-toc { position: static; display: grid; grid-template-columns: 1fr 1fr; }
  .legal-toc > span { grid-column: 1 / -1; }
  .legal-toc a { padding-right: 18px; }
}

@media (max-width: 580px) {
  :root { --shell: min(100% - 32px, 1240px); }
  .brand-mark { width: 35px; height: 35px; }
  .brand { font-size: 12px; }
  .hero { padding-top: 118px; }
  .hero h1 { font-size: clamp(53px,15.2vw,70px); }
  .hero-summary { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .delivery-map { margin-bottom: 170px; }
  .map-grid { grid-template-columns: 1fr; }
  .map-grid article { min-height: 138px; border-right: 0; border-bottom: 1px solid var(--line-light) !important; }
  .map-grid article:last-child { border-bottom: 0 !important; }
  .capability-inner { display: block; }
  .capability-inner ul { margin-top: 18px; gap: 12px; }
  .capability-inner li { font-size: 11px; }
  .lead-statement { font-size: 42px; }
  .intro-body { padding-left: 20px; font-size: 16px; }
  .section-title-row { margin-bottom: 50px; }
  .section-title-row h2, .expertise-intro h2, .standards-heading h2, .engagement-header h2, .company-heading h2, .questions-heading h2, .contact-heading h2 { font-size: 42px; }
  .service-item { gap: 24px 15px; padding: 38px 0; }
  .service-heading { gap: 15px; }
  .service-heading h3 { font-size: 22px; }
  .service-heading svg { width: 34px; height: 34px; }
  .service-item ul { display: block; }
  .challenge-grid { grid-template-columns: 1fr; }
  .challenge-card { min-height: 392px; padding: 30px 27px; }
  .challenge-card h3 { font-size: 26px; }
  .engagement-grid { grid-template-columns: 1fr; }
  .engagement-grid article { min-height: 330px; }
  .company-columns, .company-principles { grid-template-columns: 1fr; }
  .company-principles article { min-height: 225px; }
  .form-row.two-up { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px 20px 31px; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .form-submit-row { align-items: flex-start; flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 45px; }
  .footer-cta { grid-column: auto; }
  .footer-bottom { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
  .footer-legal { margin: 7px 0; }
  .page-hero { padding: 125px 0 65px; }
  .page-hero-grid { min-height: 734px; gap: 32px; }
  .page-hero h1 { font-size: 48px; }
  .page-hero-summary { margin-top: 30px; font-size: 16px; }
  .page-section { padding: 90px 0; }
  .directory-card { min-height: 365px; padding: 30px 26px; }
  .directory-card h2 { margin-top: 55px; font-size: 28px; }
  .feature-grid, .phase-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 270px; }
  .phase-grid article { min-height: 330px; }
  .scope-list { grid-template-columns: 1fr; }
  .page-lead-support { padding-left: 22px; }
  .cta-inner { min-height: 420px; padding: 70px 0; }
  .contact-page { padding: 90px 0; }
  .legal-document { gap: 50px; padding-top: 75px; padding-bottom: 95px; }
  .legal-toc { grid-template-columns: 1fr; }
  .legal-toc > span { grid-column: auto; }
  .legal-intro { padding-bottom: 48px; }
  .legal-intro h2 { font-size: 42px; }
  .legal-intro > p:last-child { font-size: 16px; }
  .legal-content > section { padding: 47px 0 50px 35px; }
  .legal-index { top: 53px; }
  .legal-content h2 { font-size: 27px; }
  .legal-details > div { grid-template-columns: 1fr; gap: 6px; }
  .legal-purpose-grid { grid-template-columns: 1fr; }
  .legal-purpose-grid > div { min-height: 255px; }
  .legal-callout { padding: 20px; }
}

@media (max-width: 360px) {
  .page-hero h1 { font-size: 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; }
}
