@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-variable.woff2") format("woff2-variations");
}

:root {
  --navy: #0b2545;
  --navy-deep: #071c34;
  --blue: #124a9c;
  --blue-hover: #0d3d82;
  --green: #0c7258;
  --green-hover: #095d49;
  --orange: #f36c21;
  --orange-text: #b8440e;
  --ink: #182230;
  --muted: #526170;
  --line: #dce4ec;
  --line-strong: #c5d0da;
  --surface: #f4f7fa;
  --white: #fff;
  --danger: #a4160a;
  --max: 1240px;
  --text: 740px;
  --font: "Manrope", sans-serif;
  --header-height: 82px;
  --focus: 0 0 0 3px rgba(18, 74, 156, .25);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(18, 74, 156, .14);
}
body.menu-open { overflow: hidden; }
main { min-height: 55vh; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { color: inherit; font: inherit; }
button, a { touch-action: manipulation; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .19em; }
a:hover { color: var(--blue); }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 {
  margin: 0;
  color: var(--navy);
  font-weight: 750;
  line-height: 1.12;
  text-wrap: balance;
}
h1 { max-width: 930px; font-size: clamp(2.45rem, 5.1vw, 4.4rem); letter-spacing: -.052em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); letter-spacing: -.038em; }
h3 { font-size: clamp(1.16rem, 1.8vw, 1.45rem); letter-spacing: -.02em; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; }
section[id], div[id], h2[id], h3[id] { scroll-margin-top: calc(var(--header-height) + 24px); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.icon-sprite { position: absolute; overflow: hidden; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.peo-icon { width: 1.15em; height: 1.15em; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.peo-container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 16px; padding: 10px 14px; color: var(--white); background: var(--navy); transform: translateY(-160%); }
.skip-link:focus { color: var(--white); transform: translateY(0); }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 720;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, opacity 160ms ease;
}
.button--primary { color: var(--white); background: var(--green); border-color: var(--green); }
.button--primary:hover { color: var(--white); background: var(--green-hover); border-color: var(--green-hover); }
.button--secondary { color: var(--navy); background: var(--white); border-color: #9eafbd; }
.button--secondary:hover { color: var(--blue); background: #f8fafc; border-color: var(--blue); }
.button--quiet { color: var(--navy); background: transparent; border-color: transparent; }
.button--quiet:hover { color: var(--blue); background: var(--surface); }
.button--light { color: var(--navy); background: var(--white); border-color: var(--white); }
.button--light:hover { color: var(--navy); background: #edf3f7; border-color: #edf3f7; }
.button:disabled { cursor: wait; opacity: .7; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: .9rem; font-weight: 720; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.text-link .peo-icon { width: 17px; height: 17px; }

.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid rgba(197, 208, 218, .85); background: rgba(255, 255, 255, .98); }
.site-header__inner { display: flex; min-height: var(--header-height); align-items: center; gap: 24px; }
.site-brand { width: 142px; flex: 0 0 142px; text-decoration: none; }
.site-brand img { width: 142px; height: auto; }
.desktop-nav { display: flex; min-width: 0; flex: 1; align-items: center; justify-content: center; gap: 2px; }
.desktop-nav > a, .desktop-nav > .nav-dropdown > button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 5px;
  padding: 9px 9px;
  border: 0;
  border-bottom: 2px solid transparent;
  color: #33475a;
  background: transparent;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 680;
  text-decoration: none;
  transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease;
}
.desktop-nav > a:hover, .desktop-nav > .nav-dropdown > button:hover { color: var(--blue); background: var(--surface); }
.desktop-nav > a[aria-current="page"], .desktop-nav > .nav-dropdown > button.is-current { color: var(--blue); border-bottom-color: var(--blue); }
.desktop-nav .peo-icon, .access-dropdown .peo-icon { width: 14px; height: 14px; }
.nav-dropdown { position: relative; }
.nav-dropdown > button[aria-expanded="true"] .peo-icon { rotate: 180deg; }
.nav-panel {
  position: absolute;
  z-index: 30;
  top: calc(100% + 10px);
  left: 0;
  width: 250px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(11, 37, 69, .12);
}
.nav-panel--wide { display: grid; width: 540px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
.nav-panel--wide > div + div { border-left: 1px solid var(--line); padding-left: 6px; }
.nav-panel--right { right: 0; left: auto; }
.nav-panel a { display: block; padding: 9px 10px; border-radius: 5px; color: #34485a; font-size: .8rem; text-decoration: none; }
.nav-panel a:hover, .nav-panel a:focus-visible { color: var(--blue); background: var(--surface); }
.nav-panel__title { padding: 8px 10px 5px; color: var(--muted); font-size: .7rem; font-weight: 800; }
.site-header__actions { display: flex; flex: 0 0 auto; align-items: center; gap: 4px; }
.site-header__actions > .button { white-space: nowrap; }
.site-header__actions .access-dropdown > .button { min-height: 42px; padding-inline: 10px; }
.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; padding: 0; border: 1px solid var(--line-strong); border-radius: 7px; color: var(--navy); background: var(--white); cursor: pointer; }
.menu-toggle .peo-icon { width: 22px; height: 22px; }
.mobile-menu { position: fixed; z-index: 90; inset: var(--header-height) 0 0; overflow-y: auto; overscroll-behavior: contain; padding: 18px 0 calc(30px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: var(--white); }
.mobile-menu nav { display: grid; }
.mobile-menu a { min-height: 44px; padding: 9px 8px; border-bottom: 1px solid #edf1f4; color: #34485a; font-size: .9rem; text-decoration: none; }
.mobile-menu a[aria-current="page"] { color: var(--blue); font-weight: 750; }
.mobile-menu__group { margin-top: 16px; padding: 7px 8px; color: var(--muted); font-size: .72rem; font-weight: 800; }
.mobile-menu__cta { margin-top: 22px; }
.mobile-menu__cta .button { width: 100%; color: var(--white); }

.home-hero { padding: clamp(62px, 8vw, 112px) 0 clamp(72px, 9vw, 126px); overflow: hidden; border-bottom: 1px solid var(--line); }
.home-hero__grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(410px, .82fr); align-items: center; gap: clamp(48px, 7vw, 96px); }
.home-hero__lead { max-width: 760px; margin-top: 26px; color: #344657; font-size: clamp(1.08rem, 1.5vw, 1.24rem); line-height: 1.65; }
.home-hero__support { max-width: 710px; margin-top: 14px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.signal-list { display: flex; flex-wrap: wrap; gap: 9px 24px; margin-top: 30px; color: #45586a; font-size: .8rem; list-style: none; }
.signal-list li { display: flex; align-items: center; gap: 7px; }
.signal-list .peo-icon { color: var(--green); }
.ecosystem { position: relative; min-height: 465px; }
.ecosystem__label { position: absolute; z-index: 2; top: 0; right: 8px; padding: 6px 9px; border-left: 3px solid var(--orange); color: #5a6875; background: var(--surface); font-size: .7rem; font-weight: 720; }
.ecosystem__main { position: absolute; top: 36px; right: -56px; width: min(590px, 112%); overflow: hidden; border: 1px solid #b9c7d2; border-radius: 9px; background: var(--white); box-shadow: 0 8px 24px rgba(11, 37, 69, .1); }
.mock-toolbar { display: flex; min-height: 42px; align-items: center; gap: 6px; padding: 0 14px; border-bottom: 1px solid var(--line); background: #eef3f7; }
.mock-toolbar > span { width: 7px; height: 7px; border-radius: 50%; background: #a8b5c0; }
.mock-toolbar b { margin-left: auto; color: #506272; font-size: .67rem; }
.mock-body { display: grid; min-height: 330px; grid-template-columns: 88px minmax(0, 1fr); }
.mock-body > aside { padding: 24px 15px; border-right: 1px solid var(--line); background: var(--navy); }
.mock-body > aside i { display: block; width: 100%; height: 7px; margin-bottom: 20px; border-radius: 2px; background: rgba(255,255,255,.25); }
.mock-body > aside i:first-child { background: var(--orange); }
.mock-body > div { min-width: 0; padding: 29px 27px; }
.mock-body > div > p { margin-bottom: 21px; color: var(--navy); font-size: .83rem; font-weight: 780; }
.mock-row { display: grid; min-width: 0; grid-template-columns: 30px minmax(0, 1fr) auto; align-items: center; gap: 10px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.mock-row > .peo-icon { color: var(--blue); }
.mock-row span { display: grid; min-width: 0; }
.mock-row b { overflow: hidden; color: #344657; font-size: .72rem; text-overflow: ellipsis; white-space: nowrap; }
.mock-row small { color: #5f6f7d; font-size: .63rem; }
.mock-row em { padding: 4px 6px; border: 1px solid var(--line-strong); border-radius: 4px; color: #5d6e7c; font-size: .58rem; font-style: normal; }
.ecosystem__note { position: absolute; right: 7%; bottom: 6px; width: 305px; padding: 16px 18px; border-left: 4px solid var(--green); background: var(--navy); box-shadow: 0 5px 16px rgba(11, 37, 69, .18); }
.ecosystem__note strong, .ecosystem__note span { display: block; }
.ecosystem__note strong { color: var(--white); font-size: .86rem; }
.ecosystem__note span { margin-top: 4px; color: #bdcbd7; font-size: .7rem; }

.section { padding: clamp(72px, 8vw, 108px) 0; }
.section--muted { background: var(--surface); }
.section--navy { color: #c7d4df; background: var(--navy-deep); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading p { margin-top: 18px; color: var(--muted); font-size: 1.02rem; }
.section-heading--split { display: grid; max-width: none; grid-template-columns: minmax(0, 1fr) minmax(320px, .65fr); align-items: end; gap: 72px; }
.section-heading--split > p { margin: 0; }
.section-heading--light p { color: #b9c8d5; }

.offer-lines { border-top: 1px solid var(--line-strong); }
.offer-lines article { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 28px; padding: 36px 0; border-bottom: 1px solid var(--line-strong); }
.offer-lines__number { color: var(--orange-text); font-size: .76rem; font-weight: 800; }
.offer-lines article > div { display: grid; grid-template-columns: minmax(210px, .75fr) minmax(260px, 1fr) minmax(230px, .8fr); align-items: start; gap: 28px; }
.offer-lines article p { color: var(--muted); }
.offer-lines ul { display: flex; flex-wrap: wrap; gap: 4px 18px; color: #415364; font-size: .82rem; list-style: none; }
.offer-lines li::before { margin-right: 7px; color: var(--green); content: "—"; }
.offer-lines .text-link { align-self: end; grid-column: 3; }

.platform-list { border-top: 1px solid rgba(255,255,255,.22); }
.platform-list article { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 40px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.platform-list article > div { display: grid; grid-template-columns: 160px 240px minmax(0, 1fr); align-items: center; gap: 28px; }
.platform-list article > div > span { color: #79d2b8; font-size: .7rem; font-weight: 760; }
.platform-list p { color: #b9c8d5; font-size: .9rem; }
.platform-list .text-link { color: var(--white); }

.presence-band { border-bottom: 1px solid var(--line); background: #fff9f5; }
.presence-band__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(430px, 1fr); gap: clamp(56px, 9vw, 128px); }
.presence-band__grid > div > p { max-width: 620px; margin: 22px 0 26px; color: var(--muted); }
.presence-band dl { margin: 0; border-top: 1px solid #e2cbbd; }
.presence-band dl > div { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 24px; padding: 17px 0; border-bottom: 1px solid #e2cbbd; }
.presence-band dt { color: var(--navy); font-weight: 760; }
.presence-band dd { margin: 0; color: #5d6771; }

.process { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1fr); gap: clamp(56px, 9vw, 126px); }
.process .section-heading { margin: 0; }
.process ol { border-top: 1px solid var(--line-strong); list-style: none; }
.process li { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 18px; padding: 27px 0; border-bottom: 1px solid var(--line-strong); }
.process li > span { color: var(--orange-text); font-size: .75rem; font-weight: 800; }
.process li p { margin: 9px 0 12px; color: var(--muted); }
.process li strong { color: var(--green); font-size: .78rem; }

.benefits { display: grid; grid-template-columns: .55fr 1fr; gap: 80px; }
.benefits .section-heading { margin: 0; }
.benefits__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.benefits__grid article { min-height: 160px; padding: 23px; border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.benefits__grid h3 { font-size: 1.05rem; }
.benefits__grid p { margin-top: 10px; color: var(--muted); font-size: .85rem; }

.authority__grid { display: grid; grid-template-columns: .75fr 1fr; gap: 90px; }
.authority__grid > div p { margin-top: 22px; color: #b9c8d5; }
.authority__grid ul { border-top: 1px solid rgba(255,255,255,.2); list-style: none; }
.authority__grid li { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 24px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.authority__grid strong { color: var(--white); }
.authority__grid span { color: #b9c8d5; }

.faq-layout { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1fr); align-items: start; gap: clamp(56px, 9vw, 120px); }
.faq-layout .section-heading { position: sticky; top: calc(var(--header-height) + 28px); margin: 0; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-item summary { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 0; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-size: .98rem; line-height: 1.45; }
.faq-symbol { position: relative; width: 20px; height: 20px; flex: 0 0 20px; }
.faq-symbol::before, .faq-symbol::after { position: absolute; top: 9px; left: 3px; width: 14px; height: 2px; background: var(--blue); content: ""; }
.faq-symbol::after { rotate: 90deg; transition: rotate 160ms ease; }
.faq-item[open] .faq-symbol::after { rotate: 0deg; }
.faq-answer { max-width: 700px; padding: 0 38px 22px 0; color: var(--muted); }

.contact-section { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 350px minmax(0, 1fr); gap: clamp(48px, 8vw, 110px); align-items: start; }
.contact-intro > p { margin-top: 18px; color: var(--muted); }
.contact-intro ol { margin-top: 28px; border-top: 1px solid var(--line); list-style: none; }
.contact-intro ol li { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 8px; padding: 12px 0; border-bottom: 1px solid var(--line); color: #455767; font-size: .85rem; }
.contact-intro ol span { color: var(--orange-text); font-weight: 800; }
.contact-intro ol h3 { font-size: .87rem; line-height: 1.4; }
.contact-intro ol p { margin-top: 2px; color: var(--muted); font-size: .76rem; }
.contact-alternative { font-size: .86rem; }
.form-shell { padding: clamp(25px, 4vw, 44px); border: 1px solid var(--line-strong); background: var(--white); box-shadow: 0 6px 18px rgba(11, 37, 69, .07); }
.preview-notice { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 28px; padding: 12px 14px; border-left: 4px solid var(--orange); color: #64442f; background: #fff7f1; font-size: .78rem; }
.preview-notice span { color: #785944; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
.field { min-width: 0; margin-bottom: 18px; }
.field--wide { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 6px; color: var(--navy); font-size: .82rem; font-weight: 720; }
.field label span { color: #687887; font-size: .72rem; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #9fadb9;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
}
.field select { appearance: auto; }
.field textarea { min-height: 132px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #65727d; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { border-color: var(--blue); outline: 0; box-shadow: var(--focus); }
.field [aria-invalid="true"], .checkbox-field input[aria-invalid="true"] { border-color: var(--danger); }
.field-help { display: block; margin-top: 5px; color: #657583; font-size: .7rem; }
.field-error { display: block; min-height: 1.2em; margin-top: 4px; color: var(--danger); font-size: .72rem; }
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; color: #3e5060; font-size: .8rem; }
.checkbox-field label { cursor: pointer; }
.checkbox-field input { width: 20px; height: 20px; flex: 0 0 auto; margin: 2px 0 0; accent-color: var(--green); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-submit { margin-top: 18px; }
.form-required { margin-top: 10px; color: #5f6d78; font-size: .7rem; }
.form-status { margin-bottom: 20px; padding: 13px 15px; border-left: 4px solid var(--green); color: #145d4b; background: #e7f5f1; font-size: .84rem; }
.form-status[data-state="error"] { border-color: var(--danger); color: #842018; background: #fff0ee; }
.noscript-note { margin-top: 15px; color: var(--danger); font-size: .8rem; }

.breadcrumbs { padding-top: 17px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 7px; color: #63727f; font-size: .72rem; list-style: none; }
.breadcrumbs li + li::before { margin-right: 7px; color: #9aa8b3; content: "/"; }
.breadcrumbs a { text-decoration: none; }
.page-hero { padding: clamp(58px, 7vw, 92px) 0 clamp(66px, 8vw, 106px); border-bottom: 1px solid var(--line); background: var(--surface); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; align-items: end; gap: clamp(48px, 8vw, 100px); }
.page-hero h1 { font-size: clamp(2.35rem, 4.5vw, 4rem); }
.page-hero__grid > div > p { max-width: 780px; margin-top: 24px; color: var(--muted); font-size: 1.08rem; }
.hero-note { padding: 22px; border-top: 4px solid var(--orange); background: var(--white); }
.hero-note strong { color: var(--navy); font-size: .9rem; }
.hero-note p { margin-top: 9px; color: var(--muted); font-size: .82rem; }
.status-tag { display: inline-block; padding: 5px 7px; border: 1px solid #e4a77d; border-radius: 4px; color: #81461d; background: #fff7f1; font-size: .68rem; font-weight: 760; }

.service-groups { border-top: 1px solid var(--line-strong); }
.service-groups > article { display: grid; grid-template-columns: minmax(280px, .65fr) minmax(0, 1fr); gap: 70px; padding: 42px 0; border-bottom: 1px solid var(--line-strong); }
.service-groups > article > div > span { display: block; margin-bottom: 25px; color: var(--orange-text); font-size: .75rem; font-weight: 800; }
.service-groups > article > div > p { margin-top: 18px; color: var(--muted); }
.service-groups ul { border-top: 1px solid var(--line); list-style: none; }
.service-groups li a { display: grid; grid-template-columns: minmax(190px, .65fr) minmax(0, 1fr); gap: 22px; padding: 16px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.service-groups li strong { color: var(--navy); }
.service-groups li span { color: var(--muted); font-size: .86rem; }

.detail-layout, .two-column, .problem-layout { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1fr); gap: clamp(54px, 9vw, 120px); }
.detail-layout > div > p, .two-column > div > p, .problem-layout > div > p { margin-top: 20px; color: var(--muted); }
.check-list, .plain-list, .problem-list { border-top: 1px solid var(--line-strong); list-style: none; }
.check-list li { display: flex; min-height: 58px; align-items: center; gap: 12px; border-bottom: 1px solid var(--line-strong); color: #405363; }
.check-list .peo-icon { color: var(--green); }
.plain-list li, .problem-list li { padding: 15px 0; border-bottom: 1px solid var(--line-strong); color: #405363; }
.plain-list li::before, .problem-list li::before { margin-right: 10px; color: var(--green); content: "—"; }
.legal-callout { padding: 17px 19px; border-left: 3px solid var(--orange); background: #fff7f1; color: #624832 !important; font-size: .84rem; }
.boundary { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .65fr); gap: 80px; }
.boundary p { margin-top: 17px; color: var(--muted); }
.boundary > div:last-child { padding: 24px; border-top: 3px solid var(--orange); background: var(--white); }
.boundary > div:last-child h3 { font-size: 1.05rem; }
.deliverables { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1fr); gap: clamp(56px, 9vw, 120px); }
.deliverables > div p { margin-top: 20px; color: #b9c8d5; }
.deliverables ol { border-top: 1px solid rgba(255,255,255,.2); list-style: none; }
.deliverables li { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 18px; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.deliverables li > span { color: #79d2b8; font-size: .75rem; font-weight: 800; }
.deliverables li p { margin-top: 7px; color: #b9c8d5; }

.problem-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-left: 1px solid var(--line-strong); }
.problem-list li { padding: 16px 18px; border-right: 1px solid var(--line-strong); }
.capability-list { border-top: 1px solid var(--line-strong); }
.capability-list article { display: grid; grid-template-columns: 50px 240px minmax(0, 1fr); align-items: baseline; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line-strong); }
.capability-list article > span { color: var(--orange-text); font-size: .72rem; font-weight: 800; }
.capability-list article p { color: var(--muted); }
.method { display: grid; grid-template-columns: minmax(0, .65fr) minmax(0, 1fr); gap: 90px; }
.method > div p { margin-top: 20px; color: #b9c8d5; }
.method ol { border-top: 1px solid rgba(255,255,255,.2); list-style: none; }
.method li { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 24px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.method strong { color: var(--white); }
.method span { color: #b9c8d5; }

.story { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .65fr); gap: 90px; }
.story > div p { margin-top: 20px; color: var(--muted); }
.story-statement { margin: 0; padding: 28px; border-left: 4px solid var(--orange); color: var(--navy); background: var(--surface); font-size: 1.2rem; font-weight: 720; line-height: 1.5; }
.principles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.principles article { min-height: 190px; padding: 25px; border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.principles article > span { color: var(--orange-text); font-size: .72rem; font-weight: 800; }
.principles h3 { margin-top: 27px; }
.principles p { margin-top: 10px; color: var(--muted); }

.resource-index { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.resource-index article { min-height: 230px; padding: 27px; border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.resource-index h2 { font-size: 1.35rem; }
.resource-index h2 a { text-decoration: none; }
.resource-index p { margin: 15px 0 21px; color: var(--muted); }

.answer-section { padding-block: 52px; border-bottom: 1px solid var(--line); background: #fff9f5; }
.answer-section .peo-container { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1fr); align-items: baseline; gap: 80px; }
.answer-section h2 { font-size: clamp(1.55rem, 2.6vw, 2.15rem); }
.answer-section p { color: var(--muted); }
.related-section { border-top: 1px solid var(--line); }
.related-layout { display: grid; grid-template-columns: minmax(0, .6fr) minmax(0, 1fr); gap: 80px; }
.related-layout > div:first-child p { margin-top: 16px; color: var(--muted); }
.related-links { border-top: 1px solid var(--line-strong); }
.related-links a { display: grid; grid-template-columns: minmax(170px, .65fr) minmax(0, 1fr) 20px; align-items: center; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line-strong); text-decoration: none; }
.related-links strong { color: var(--navy); }
.related-links span { color: var(--muted); font-size: .84rem; }
.related-links .peo-icon { color: var(--blue); }

.legal-page { padding-top: 58px; }
.legal-content { max-width: 850px; }
.legal-content h2 { margin: 2.1em 0 .65em; font-size: 1.65rem; }
.legal-content h2:first-of-type { margin-top: 1.2em; }
.legal-content p { color: #3f4f5e; }
.legal-content code { padding: 2px 5px; border: 1px solid var(--line); border-radius: 4px; color: var(--navy); background: var(--surface); font-size: .9em; overflow-wrap: anywhere; }
.legal-version { padding: 17px 19px; border-left: 4px solid var(--orange); background: #fff7f1; }

.final-cta { padding: 58px 0; color: var(--white); background: var(--blue); }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.final-cta h2 { max-width: 780px; color: var(--white); font-size: clamp(1.75rem, 3vw, 2.55rem); }
.final-cta p { max-width: 760px; margin-top: 13px; color: #dbe7f4; }
.final-cta .button { flex: 0 0 auto; }

.site-footer { padding: 60px 0 0; color: #b8c6d1; background: var(--navy-deep); }
.site-footer__grid { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 46px; }
.site-footer__brand img { width: 145px; filter: brightness(0) invert(1); }
.site-footer__brand p { max-width: 310px; margin: 17px 0 12px; color: #aebdca; font-size: .82rem; }
.site-footer__brand > a { color: var(--white); font-size: .8rem; }
.site-footer h2 { margin-bottom: 17px; color: var(--white); font-size: .8rem; letter-spacing: .02em; }
.site-footer ul { list-style: none; }
.site-footer li { margin: 9px 0; font-size: .78rem; }
.site-footer a { color: #d4dfe7; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 50px; padding: 20px 0 calc(22px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(255,255,255,.14); }
.site-footer__bottom p { color: #91a3b3; font-size: .72rem; }
.footer-link { padding: 4px 0; border: 0; color: #d4dfe7; background: transparent; cursor: pointer; font-size: .72rem; text-decoration: underline; text-underline-offset: 3px; }
.footer-link:hover { color: var(--white); }

.consent-banner { position: fixed; z-index: 200; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom)); left: 18px; display: grid; width: min(calc(100% - 36px), 920px); grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 30px; margin-inline: auto; padding: 20px; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--white); box-shadow: 0 8px 26px rgba(7, 28, 52, .18); }
.consent-banner h2 { font-size: 1rem; }
.consent-banner p { margin-top: 5px; color: var(--muted); font-size: .76rem; }
.consent-banner a { color: var(--blue); font-size: .72rem; }
.consent-banner__actions { display: flex; gap: 8px; }
.consent-banner__actions .button { min-height: 42px; font-size: .78rem; }

@media (max-width: 1180px) {
  :root { --header-height: 76px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-header__inner { justify-content: space-between; }
  .home-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(380px, .78fr); gap: 44px; }
  .ecosystem__main { right: -130px; }
  .site-footer__grid { gap: 30px; }
}

@media (max-width: 960px) {
  .home-hero__grid, .page-hero__grid, .section-heading--split, .presence-band__grid, .process, .benefits, .authority__grid, .faq-layout, .contact-layout, .detail-layout, .two-column, .problem-layout, .boundary, .deliverables, .method, .story, .answer-section .peo-container, .related-layout { grid-template-columns: 1fr; }
  .home-hero__grid, .page-hero__grid, .presence-band__grid, .process, .benefits, .authority__grid, .faq-layout, .contact-layout, .detail-layout, .two-column, .problem-layout, .boundary, .deliverables, .method, .story { gap: 46px; }
  .ecosystem { min-height: 430px; }
  .ecosystem__main { right: auto; left: 0; width: 94%; }
  .ecosystem__note { right: 0; }
  .section-heading--split { align-items: start; gap: 18px; }
  .offer-lines article > div { grid-template-columns: minmax(190px, .75fr) minmax(0, 1fr); }
  .offer-lines article ul { grid-column: 1 / -1; }
  .offer-lines .text-link { grid-column: 2; }
  .platform-list article > div { grid-template-columns: 140px 220px minmax(0, 1fr); gap: 18px; }
  .faq-layout .section-heading { position: static; }
  .service-groups > article { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .peo-container { width: min(calc(100% - 32px), var(--max)); }
  .site-brand, .site-brand img { width: 128px; }
  .site-header__actions > .button, .access-dropdown { display: none; }
  .home-hero { padding-top: 48px; }
  .home-hero h1, .page-hero h1 { font-size: clamp(2.35rem, 10.5vw, 3.25rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .signal-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 14px; }
  .ecosystem { min-height: 370px; }
  .ecosystem__label { right: 0; }
  .ecosystem__main { top: 34px; width: 108%; }
  .mock-body { min-height: 280px; grid-template-columns: 66px minmax(0, 1fr); }
  .mock-body > aside { padding: 22px 11px; }
  .mock-body > div { padding: 23px 18px; }
  .mock-row { grid-template-columns: 25px minmax(0, 1fr); }
  .mock-row em { display: none; }
  .ecosystem__note { width: 275px; }
  .section { padding-block: 64px; }
  .section-heading { margin-bottom: 34px; }
  .offer-lines article { grid-template-columns: 42px minmax(0, 1fr); gap: 12px; padding: 28px 0; }
  .offer-lines article > div { grid-template-columns: 1fr; gap: 13px; }
  .offer-lines article ul, .offer-lines .text-link { grid-column: 1; }
  .platform-list article { grid-template-columns: 1fr; gap: 16px; }
  .platform-list article > div { grid-template-columns: 1fr; gap: 7px; }
  .presence-band dl > div { grid-template-columns: 1fr; gap: 4px; }
  .benefits__grid, .principles, .resource-index, .problem-list { grid-template-columns: 1fr; }
  .benefits__grid article { min-height: 130px; }
  .authority__grid li { grid-template-columns: 1fr; gap: 5px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--wide { grid-column: 1; }
  .preview-notice { align-items: flex-start; flex-direction: column; gap: 2px; }
  .service-groups li a { grid-template-columns: 1fr; gap: 4px; }
  .capability-list article { grid-template-columns: 36px minmax(0, 1fr); gap: 12px; }
  .capability-list article p { grid-column: 2; }
  .method li { grid-template-columns: 1fr; gap: 4px; }
  .related-links a { grid-template-columns: minmax(0, 1fr) 20px; gap: 5px 12px; }
  .related-links span { grid-column: 1; }
  .related-links .peo-icon { grid-column: 2; grid-row: 1 / span 2; }
  .final-cta__inner { align-items: stretch; flex-direction: column; gap: 28px; }
  .final-cta .button { width: 100%; }
  .consent-banner { grid-template-columns: 1fr; gap: 16px; }
  .consent-banner__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .peo-container { width: min(calc(100% - 24px), var(--max)); }
  .site-header__inner { gap: 10px; }
  .home-hero h1, .page-hero h1 { font-size: 2.28rem; }
  .home-hero__lead { font-size: 1rem; }
  .signal-list { grid-template-columns: 1fr; }
  .ecosystem { min-height: 345px; }
  .ecosystem__main { width: 118%; }
  .mock-body { grid-template-columns: 50px minmax(0, 1fr); }
  .mock-body > aside { padding-inline: 8px; }
  .mock-body > div { padding-inline: 14px; }
  .ecosystem__note { right: -3px; width: 244px; }
  .offer-lines article { grid-template-columns: 1fr; }
  .offer-lines__number { margin-bottom: -4px; }
  .process li, .deliverables li { grid-template-columns: 36px minmax(0, 1fr); gap: 9px; }
  .form-shell { margin-inline: -4px; padding: 22px 17px; }
  .page-hero { padding-block: 48px 58px; }
  .hero-note { padding: 18px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .consent-banner { right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); left: 10px; width: calc(100% - 20px); padding: 16px; }
  .consent-banner__actions { grid-template-columns: 1fr; }
}

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

@media print {
  .site-header, .site-footer, .consent-banner, .final-cta, .button, .contact-section { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .peo-container { width: 100%; }
  a { color: #000 !important; text-decoration: underline !important; }
}
