:root {
  --ink: #17211e;
  --muted: #5d6965;
  --line: #dce3df;
  --soft: #f3f6f4;
  --paper: #ffffff;
  --forest: #0b3d36;
  --forest-2: #14584d;
  --green: #2aa65a;
  --orange: #ef7d00;
  --blue: #0f4c81;
  --focus: #ffd29f;
  --shadow: 0 18px 42px rgba(16, 37, 31, .12);
  --wrap: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, "Segoe UI", "Microsoft YaHei", Arial, sans-serif; line-height: 1.65; letter-spacing: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button, select { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.16; }
h1 { font-size: 54px; }
h2 { font-size: 38px; }
h3 { font-size: 20px; }
p { color: var(--muted); }
.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding: 92px 0; }
.soft { background: var(--soft); }
.centered { text-align: center; }
.narrow { max-width: 760px; }
.eyebrow { margin-bottom: 16px; color: var(--forest-2); font-size: 12px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; }
.eyebrow.light { color: #b9f4d0; }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading h2, .section-copy h2 { margin-bottom: 20px; }
.section-heading p:last-child, .section-copy p:last-child { margin-bottom: 0; }
.split-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; align-items: center; }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 5px; padding: 11px 20px; font-weight: 750; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-1px); }
.button.small { min-height: 42px; padding: 9px 16px; font-size: 14px; }
.button.primary { background: var(--forest); color: #fff; }
.button.primary:hover { background: var(--forest-2); }
.button.accent { background: var(--orange); color: #fff; }
.button.accent:hover { background: #d86f00; }
.button.secondary { border-color: var(--forest); color: var(--forest); background: transparent; }
.button.secondary:hover { background: var(--forest); color: #fff; }
.button.ghost { border-color: rgba(255, 255, 255, .7); color: #fff; background: rgba(0, 0, 0, .12); }
.button.ghost:hover { background: #fff; color: var(--forest); }
.button.light { background: #fff; color: var(--forest); }
.inline-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 18px; color: var(--forest); font-weight: 750; }
.inline-link:hover { color: var(--orange); }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-row span { border: 1px solid var(--line); border-radius: 4px; padding: 5px 9px; color: #42524d; background: #fff; font-size: 12px; }
.note { border-left: 3px solid var(--green); padding-left: 15px; font-size: 14px; }

.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 4px 18px rgba(15, 45, 37, .06); }
.nav-shell { min-height: 82px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand img { width: 112px; height: 56px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.primary-nav > a, .nav-service > a, .nav-tools > a { position: relative; padding: 29px 0 27px; color: #34423e; font-size: 14px; font-weight: 700; white-space: nowrap; }
.primary-nav > a::after, .nav-service > a::after, .nav-tools > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 17px; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.primary-nav a:hover::after, .primary-nav a.active::after { transform: scaleX(1); }
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown::after { position: absolute; top: 100%; right: -10px; left: -10px; z-index: 19; height: 14px; content: ""; }
.service-menu { position: absolute; top: calc(100% + 8px); left: -258px; z-index: 20; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; width: min(800px, calc(100vw - 48px)); max-height: calc(100vh - 118px); overflow-y: auto; padding: 1px; background: var(--line); box-shadow: 0 18px 42px rgba(7, 35, 30, .2); opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .18s ease, transform .18s ease; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu, .nav-dropdown.submenu-open .dropdown-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.service-menu-overview { grid-column: 1 / -1; padding: 13px 19px; background: var(--forest); color: #fff; font-size: 13px; font-weight: 850; }
.service-menu-overview:hover { background: #126657; }
.service-menu-group { min-height: 210px; padding: 19px; background: #fff; }
.service-menu-title { display: block; border-bottom: 1px solid var(--line); margin-bottom: 11px; padding-bottom: 12px; }
.service-menu-title:hover strong, .service-menu-group > div a:hover { color: var(--orange); }
.service-menu-title strong, .service-menu-title span { display: block; }
.service-menu-title strong { margin-bottom: 6px; color: var(--forest); }
.service-menu-title span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.service-menu-group > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 8px; }
.service-menu-group > div a { display: flex; min-height: 35px; align-items: center; border-radius: 3px; padding: 7px 9px; color: #455550; font-size: 13px; font-weight: 750; line-height: 1.35; }
.service-menu-group > div a:hover { background: var(--soft); }
.service-menu-all { color: var(--forest) !important; }
.tool-menu { position: absolute; top: 66px; left: -90px; width: 360px; border: 1px solid var(--line); padding: 7px; background: #fff; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .18s ease, transform .18s ease; }
.tool-menu a { display: block; border-bottom: 1px solid var(--line); padding: 13px 14px; }
.tool-menu a:last-child { border-bottom: 0; }
.tool-menu a:hover { background: var(--soft); }
.tool-menu strong, .tool-menu span { display: block; }
.tool-menu strong { color: var(--forest); font-size: 13px; }
.tool-menu span { margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.4; }
.nav-submenu-button { display: grid; width: 28px; height: 28px; margin-left: 3px; place-items: center; border: 0; border-radius: 4px; background: transparent; color: var(--forest); font-size: 17px; cursor: pointer; transition: background .18s ease, transform .18s ease; }
.nav-submenu-button:hover, .nav-submenu-button:focus-visible { background: var(--soft); }
.nav-dropdown.submenu-open .nav-submenu-button { transform: rotate(180deg); }
.nav-actions { display: flex; align-items: center; gap: 13px; }
.language-picker { position: relative; }
.language-picker summary { display: flex; min-width: 88px; min-height: 38px; align-items: center; justify-content: center; gap: 7px; border: 1px solid var(--line); border-radius: 5px; padding: 7px 12px; color: var(--forest); background: #fff; font-size: 12px; font-weight: 800; cursor: pointer; list-style: none; }
.language-picker summary::-webkit-details-marker { display: none; }
.language-picker summary::after { content: "▾"; color: var(--orange); font-size: 11px; }
.language-picker[open] summary::after { content: "▴"; }
.language-picker > div { position: absolute; top: calc(100% + 7px); right: 0; z-index: 5; display: grid; min-width: 138px; border: 1px solid var(--line); border-radius: 5px; padding: 5px; background: #fff; box-shadow: var(--shadow); }
.language-picker > div a { display: flex; min-height: 38px; align-items: center; border-radius: 3px; padding: 7px 10px; color: var(--muted); font-size: 12px; font-weight: 800; }
.language-picker > div a:hover { background: var(--soft); color: var(--forest); }
.language-picker > div a[aria-current="page"] { background: var(--forest); color: #fff; }
.text-action { display: inline-flex; min-height: 38px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 5px; padding: 7px 11px; background: #fff; color: var(--forest); font-size: 12px; font-weight: 800; white-space: nowrap; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.text-action:hover { border-color: var(--forest); background: var(--soft); color: var(--forest); }
.portal-benefit { position: relative; display: inline-flex; align-items: stretch; }
.portal-benefit-link, .text-action.portal-benefit-link { position: relative; display: grid; min-height: 38px; align-content: center; justify-items: center; padding: 7px 10px; text-align: center; }
.portal-benefit-link strong { color: var(--forest); font-size: 12px; font-weight: 850; line-height: 1.25; }
.portal-benefit-tip { position: absolute; z-index: 30; top: calc(100% + 8px); left: 50%; display: grid; width: max-content; max-width: 240px; padding: 9px 12px; border: 1px solid #bdd1c9; border-radius: 7px; background: #fff; box-shadow: 0 10px 26px rgba(15, 66, 55, .16); color: var(--forest); font-size: 11px; font-weight: 750; line-height: 1.45; text-align: left; white-space: nowrap; opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, -4px); transition: opacity .16s ease, transform .16s ease, visibility .16s ease; }
.portal-benefit-tip::before { content: ""; position: absolute; top: -5px; left: 50%; width: 9px; height: 9px; border-top: 1px solid #bdd1c9; border-left: 1px solid #bdd1c9; background: #fff; transform: translateX(-50%) rotate(45deg); }
.portal-benefit-link:hover .portal-benefit-tip, .portal-benefit-link:focus-visible .portal-benefit-tip { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mobile-nav-tools { display: none; }
.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 5px; background: #fff; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: var(--forest); }
.home-hero { position: relative; height: clamp(590px, calc(100svh - 160px), 850px); overflow: hidden; background: #0b211d; color: #fff; }
.hero-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .45s ease; }
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide > img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide[data-hero-slide="0"] > img { object-position: center 25%; }
.hero-slide[data-hero-slide="1"] > img,
.hero-slide[data-hero-slide="2"] > img { object-position: center 48%; }
.hero-shade, .page-intro-shade, .portal-shade { position: absolute; inset: 0; background: rgba(3, 20, 17, .58); }
.home-hero .hero-shade { background: rgba(3, 20, 17, .5); }
.hero-copy { position: absolute; inset: 0; display: flex; max-width: 700px; flex-direction: column; justify-content: center; align-items: flex-start; padding-bottom: 62px; }
.hero-copy h1, .hero-copy h2 { max-width: 720px; margin-bottom: 16px; color: #fff; font-size: 52px; text-wrap: balance; word-break: normal; overflow-wrap: normal; }
.hero-copy > p:not(.eyebrow) { max-width: 620px; color: #edf5f2; font-size: 17px; }
.hero-brand-slogan { display: flex; gap: 10px; align-items: center; margin: 0 0 18px; color: #a9e6bd; font-size: 14px; font-weight: 850; }
.hero-brand-slogan span { border-right: 1px solid rgba(255, 255, 255, .45); padding-right: 10px; color: #fff; font-size: 11px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.hero-tabs { position: absolute; left: 50%; bottom: 0; display: grid; grid-template-columns: repeat(3, 1fr); transform: translateX(-50%); }
.hero-tabs button { position: relative; min-height: 68px; overflow: hidden; border: 0; border-right: 1px solid rgba(255, 255, 255, .28); padding: 10px 18px; background: rgba(5, 30, 26, .82); color: #dcebe5; text-align: left; font-weight: 700; }
.hero-tabs button:last-child { border-right: 0; }
.hero-tabs button span { display: block; margin-bottom: 2px; color: #9fd5b5; font-size: 11px; }
.hero-tabs button.active { background: var(--orange); color: #fff; }
.hero-tabs button.active span { color: #fff; }
.hero-tabs button::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: rgba(255, 255, 255, .88); content: ""; transform: scaleX(0); transform-origin: left center; }
.home-hero.is-autoplaying .hero-tabs button.active::after { animation: hero-reading-progress var(--hero-interval, 9000ms) linear forwards; }
.home-hero.is-autoplay-paused .hero-tabs button.active::after { animation-play-state: paused; }
@keyframes hero-reading-progress { to { transform: scaleX(1); } }
.concern-section { background: var(--soft); }
.concern-heading { max-width: 850px; }
.concern-heading > p:last-child { max-width: 720px; font-size: 17px; }
.concern-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.concern-card { overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.concern-image { display: block; height: 205px; overflow: hidden; }
.concern-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.concern-card:hover .concern-image img { transform: scale(1.025); }
.concern-card > div { padding: 22px; }
.concern-service { display: inline-block; margin-bottom: 13px; color: var(--orange); font-size: 11px; font-weight: 850; }
.concern-card h3 { min-height: 70px; margin-bottom: 12px; color: var(--forest); font-size: 21px; }
.concern-card p { min-height: 84px; margin-bottom: 0; font-size: 14px; }
.concern-card .inline-link { margin-top: 16px; }
.credibility-section { background: #10362f; color: #fff; }
.credibility-layout { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr); gap: 46px; align-items: center; }
.credibility-section h2 { color: #fff; }
.credibility-section p { color: #d1e0da; }
.credibility-section .button { margin-top: 14px; }
.credibility-story { min-width: 0; }
.credibility-proof-board { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 34px; }
.credibility-proof-main, .credibility-proof-stack figure { position: relative; min-width: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, .18); border-radius: 8px; background: #08261f; box-shadow: 0 20px 50px rgba(0, 0, 0, .18); }
.credibility-proof-main { min-height: 345px; }
.credibility-proof-main img, .credibility-proof-stack img { width: 100%; height: 100%; object-fit: cover; }
.credibility-proof-main img { position: absolute; inset: 0; }
.credibility-proof-main::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3, 22, 18, .04), rgba(3, 22, 18, .72)); content: ""; }
.credibility-proof-main figcaption { position: absolute; right: 24px; bottom: 24px; left: 24px; z-index: 1; }
.credibility-proof-main figcaption span { display: block; margin-bottom: 10px; color: #9fe3b5; font-size: 11px; font-weight: 850; text-transform: uppercase; }
.credibility-proof-main figcaption strong { display: block; max-width: 520px; color: #fff; font-size: 22px; line-height: 1.35; }
.credibility-proof-stack { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.credibility-proof-stack figure { display: grid; min-height: 244px; grid-template-rows: minmax(0, 1fr) auto; }
.credibility-proof-stack img { min-height: 0; object-position: top center; }
.credibility-proof-stack figcaption { display: grid; gap: 5px; padding: 14px 16px 16px; background: rgba(6, 34, 28, .96); }
.credibility-proof-stack figcaption strong { color: #fff; font-size: 15px; }
.credibility-proof-stack figcaption span { color: #c5d9d1; font-size: 12px; line-height: 1.55; }
.credibility-stat-panel { display: grid; gap: 14px; min-width: 0; }
.credibility-stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .18); gap: 1px; }
.credibility-stat-card { display: grid; min-height: 176px; align-content: start; gap: 8px; padding: 28px 24px; background: #0d453b; }
.credibility-stat-card > span { color: #9fe3b5; font-size: 11px; font-weight: 850; }
.credibility-stat-card strong { color: #fff; font-size: 44px; line-height: 1; }
.credibility-stat-card p { margin: 0; color: #fff; font-size: 18px; font-weight: 760; }
.credibility-stat-card small { color: #bdd6ce; font-size: 12px; line-height: 1.55; }
.credibility-team-card { display: grid; grid-template-columns: 98px 1fr; gap: 18px; align-items: center; padding: 18px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 8px; background: rgba(255, 255, 255, .08); }
.credibility-team-card img { width: 98px; height: 118px; object-fit: cover; object-position: center top; border-radius: 6px; }
.credibility-team-card strong { display: block; margin-bottom: 8px; color: #fff; font-size: 17px; line-height: 1.4; }
.credibility-team-card p { margin: 0; color: #c8dbd4; font-size: 13px; line-height: 1.7; }
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.international-trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.international-trust-grid { display: grid; min-height: 112px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.international-trust-grid article { display: grid; min-width: 0; grid-template-columns: 28px 1fr; gap: 12px; align-content: center; padding: 20px 22px; border-right: 1px solid var(--line); }
.international-trust-grid article:first-child { padding-left: 0; }
.international-trust-grid article:last-child { border-right: 0; padding-right: 0; }
.international-trust-grid article > span { color: var(--orange); font-size: 11px; font-weight: 850; }
.international-trust-grid strong { display: block; margin-bottom: 6px; color: var(--forest); font-size: 14px; line-height: 1.35; }
.international-trust-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 112px; align-items: center; }
.stat-row > div { display: grid; min-height: 62px; align-content: center; border-right: 1px solid var(--line); padding-left: 32px; }
.stat-row > div:first-child { padding-left: 0; }
.stat-row > div:last-child { border-right: 0; }
.stat-row strong { color: var(--forest); font-size: 30px; line-height: 1; }
.stat-row span { margin-top: 8px; color: var(--muted); font-size: 13px; }

.decision-band { background: #fff; }
.advisor-priority { border-bottom: 1px solid var(--line); padding-top: 48px; }
.advisor-priority .split-layout { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
.advisor-priority .tool-panel { box-shadow: 0 14px 34px rgba(16, 37, 31, .1); }
.principle-line { display: flex; gap: 14px; align-items: flex-start; margin-top: 20px; }
.principle-line span { display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); color: var(--forest); font-size: 11px; font-weight: 800; }
.principle-line p { margin: 5px 0 0; }
.tool-panel { border: 1px solid var(--line); border-radius: 7px; padding: 30px; background: #fff; box-shadow: var(--shadow); }
.tool-panel > h3 { margin-bottom: 22px; }
.advisor-form { display: grid; gap: 18px; }
.advisor-form.compact { grid-template-columns: 1fr; }
.advisor-form label, .form-grid label, .portal-form label { display: grid; gap: 7px; color: #33423d; font-size: 13px; font-weight: 700; }
.advisor-form input, .advisor-form select, .form-grid input, .form-grid select, .form-grid textarea, .portal-form input, .portal-form select { width: 100%; min-height: 48px; border: 1px solid #cbd5d1; border-radius: 4px; padding: 10px 12px; background: #fff; color: var(--ink); }
.form-grid textarea { min-height: 130px; resize: vertical; }
.advisor-question { display: grid; gap: 9px; }
.advisor-question > span { color: var(--forest); font-size: 15px; font-weight: 800; }
.advisor-question textarea { width: 100%; min-height: 150px; resize: vertical; border: 1px solid #aebdb7; border-radius: 5px; padding: 15px 16px; background: #fff; color: var(--ink); line-height: 1.65; }
.advisor-question textarea::placeholder { color: #7b8783; }
.advisor-question textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(42, 166, 90, .1); }
.advisor-examples { display: grid; gap: 9px; }
.advisor-examples > span { color: var(--muted); font-size: 12px; font-weight: 750; }
.advisor-examples > div { display: flex; flex-wrap: wrap; gap: 7px; }
.advisor-examples button { min-height: 34px; border: 1px solid #d3ded9; border-radius: 18px; padding: 6px 11px; background: #f7faf8; color: #41504b; font-size: 12px; line-height: 1.35; text-align: left; }
.advisor-examples button:hover { border-color: var(--green); background: #edf7f1; color: var(--forest); }
.advisor-examples button:focus-visible { outline: 3px solid rgba(12, 119, 79, .2); outline-offset: 2px; border-color: var(--green); }
.advisor-submit-row { display: flex; gap: 20px; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 16px; }
.advisor-submit-row small { max-width: 470px; color: #71807a; font-size: 11px; line-height: 1.45; }
.advisor-submit-row .button { flex: 0 0 auto; }
.advisor-result { margin-top: 22px; padding: 24px; background: #f3f7f5; }
.advisor-analysis { border-top: 4px solid var(--green); }
.advisor-result h4 { margin: 0 0 9px; color: var(--forest); font-size: 23px; }
.advisor-result h5 { margin: 0 0 13px; color: var(--forest); font-size: 15px; }
.advisor-result h6 { margin: 0 0 8px; color: var(--forest); font-size: 17px; }
.advisor-result p { margin: 0 0 8px; }
.advisor-result-kicker { margin-bottom: 8px !important; color: var(--orange) !important; font-size: 11px; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase; }
.advisor-result-summary { border-bottom: 1px solid #d5e0dc; padding-bottom: 18px; }
.advisor-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.advisor-facts span { display: inline-flex; gap: 7px; border: 1px solid #cedbd6; border-radius: 4px; padding: 6px 9px; background: #fff; color: #495953; font-size: 12px; }
.advisor-facts strong { color: var(--forest); }
.advisor-result-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; border-bottom: 1px solid #d5e0dc; padding: 21px 0; }
.advisor-result-grid ul, .advisor-result-grid ol, .advisor-result > ul { display: grid; gap: 8px; margin: 0; padding-left: 20px; color: #43534e; font-size: 13px; }
.advisor-services { padding: 21px 0 17px; }
.advisor-services > div { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 10px; }
.advisor-service-card { border-left: 3px solid var(--green); padding: 14px 15px; background: #fff; }
.advisor-service-card > span { display: block; margin-bottom: 9px; color: var(--orange); font-size: 10px; font-weight: 900; }
.advisor-service-card p { font-size: 12px; line-height: 1.5; }
.advisor-service-card a { color: var(--forest); font-size: 12px; font-weight: 850; }
.advisor-service-card a:hover { color: var(--orange); }
.advisor-documents { border-top: 1px solid #d5e0dc; padding-top: 18px; }
.advisor-documents > div { display: flex; flex-wrap: wrap; gap: 7px; }
.advisor-documents span { border: 1px solid #cedbd6; border-radius: 4px; padding: 6px 9px; background: #fff; color: #4a5a55; font-size: 11px; }
.advisor-result-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.advisor-boundary { margin: 16px 0 0 !important; color: #6d7975 !important; font-size: 11px; line-height: 1.5; }

.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: 7px; background: #fff; }
.service-image { display: block; height: 190px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-card:hover .service-image img { transform: scale(1.025); }
.service-card > div { padding: 22px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p:not(.eyebrow) { min-height: 76px; font-size: 14px; }
.process-row { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); }
.process-row article { min-height: 180px; border-right: 1px solid var(--line); padding: 26px 22px 16px; }
.process-row article:last-child { border-right: 0; }
.process-row span { display: inline-block; margin-bottom: 28px; color: var(--orange); font-size: 12px; font-weight: 900; }
.process-row h3 { margin-bottom: 10px; font-size: 17px; }
.process-row p { font-size: 13px; }
.journey-heading { max-width: 820px; }
.journey-heading > p:last-child { font-size: 17px; }
.journey-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.journey-grid article { overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.journey-image { height: 150px; overflow: hidden; background: var(--soft); }
.journey-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.journey-grid article > div:last-child { padding: 20px; }
.journey-grid article span { display: block; margin-bottom: 15px; color: var(--orange); font-size: 11px; font-weight: 900; }
.journey-grid article h3 { min-height: 44px; margin-bottom: 9px; font-size: 17px; }
.journey-grid article p { margin-bottom: 0; font-size: 13px; }
.ai-band, .ai-service { background: var(--forest); color: #fff; }
.ai-band h2, .ai-band h3, .ai-service h2, .ai-service strong { color: #fff; }
.ai-band p, .ai-service p { color: #cfe0da; }
.ai-point-list { border-top: 1px solid rgba(255, 255, 255, .22); }
.ai-point-list article { display: flex; gap: 20px; border-bottom: 1px solid rgba(255, 255, 255, .22); padding: 20px 0; }
.ai-point-list article > span { color: #8ee2ad; font-size: 12px; font-weight: 800; }
.ai-point-list h3 { margin-bottom: 7px; }
.ai-point-list p { margin-bottom: 0; font-size: 14px; }
.evidence-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.evidence-grid figure { position: relative; height: 310px; margin: 0; overflow: hidden; background: #dfe6e2; }
.evidence-grid figure:nth-child(2), .evidence-grid figure:nth-child(4) { margin-top: 34px; }
.evidence-grid img { width: 100%; height: 100%; object-fit: cover; }
.evidence-grid figcaption { position: absolute; left: 10px; bottom: 10px; max-width: calc(100% - 20px); padding: 7px 10px; background: rgba(5, 25, 21, .86); color: #fff; font-size: 12px; }
.report-band { background: #eef3f0; }
.report-visual { position: relative; height: 540px; overflow: hidden; border: 1px solid var(--line); background: #dfe7e3; box-shadow: var(--shadow); }
.report-visual > span { position: absolute; top: 18px; left: 18px; z-index: 3; border-radius: 4px; padding: 8px 11px; background: var(--forest); color: #fff; font-size: 11px; font-weight: 800; }
.report-page { position: absolute; width: 62%; height: auto; border: 1px solid #cad5d0; background: #fff; box-shadow: 0 16px 36px rgba(14, 40, 34, .2); }
.report-page-summary { left: 7%; bottom: -8%; transform: rotate(-2deg); }
.report-page-evidence { top: 7%; right: 6%; transform: rotate(2deg); }
.check-list { display: grid; gap: 9px; margin: 22px 0 28px; padding: 0; list-style: none; }
.check-list li::before { content: "✓"; margin-right: 10px; color: var(--green); font-weight: 900; }
.closing-cta { padding: 64px 0; background: #0f2c27; color: #fff; }
.closing-cta .wrap { display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.closing-cta h2 { max-width: 760px; margin: 0; color: #fff; }
.closing-cta .wrap > div { display: flex; gap: 10px; flex: 0 0 auto; }

.page-intro, .service-hero { position: relative; display: flex; min-height: 480px; align-items: flex-end; overflow: hidden; background: var(--forest); color: #fff; }
.page-intro > img, .service-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-intro .wrap, .service-hero .wrap { position: relative; z-index: 1; padding-bottom: 64px; }
.page-intro h1, .service-hero h1 { max-width: min(100%, 1080px); margin-bottom: 18px; color: #fff; text-wrap: balance; word-break: normal; overflow-wrap: normal; }
.page-intro p:not(.eyebrow), .service-hero p:not(.eyebrow) { max-width: 760px; color: #e2eee9; font-size: 18px; }
.page-intro.compact-intro { min-height: 360px; align-items: center; background: var(--forest); }
.compact-intro .wrap { padding-block: 64px; }
.request-intro { min-height: 410px; align-items: center; }
.request-intro > img { object-position: center 45%; }
.request-intro .page-intro-shade, .tools-intro .page-intro-shade { background: rgba(3, 20, 17, .56); }
.tools-intro > img { object-position: center 44%; }
.intro-facts { display: flex; flex-wrap: wrap; gap: 10px; }
.intro-facts span { border: 1px solid rgba(255, 255, 255, .35); border-radius: 4px; padding: 7px 11px; color: #fff; font-size: 12px; }
.about-intro h1 { max-width: min(100%, 1180px); }
.about-intro blockquote { margin: 30px 0 0; border-left: 3px solid var(--orange); padding-left: 18px; color: #fff; font-size: 22px; font-weight: 800; }
.service-hero { min-height: 520px; }
.service-hero .button { margin-top: 18px; }
.section-index { position: sticky; z-index: 20; top: 116px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .96); }
.section-index .wrap { display: flex; gap: 28px; overflow-x: auto; }
.section-index a { flex: 0 0 auto; padding: 15px 0; color: var(--muted); font-size: 13px; font-weight: 700; }
.section-index a:hover { color: var(--forest); }
.section[id] { scroll-margin-top: 176px; }
.service-bands { display: grid; gap: 80px; }
.service-band { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.service-band.reverse { grid-template-columns: .92fr 1.08fr; }
.service-band.reverse img { order: 2; }
.service-band > img { width: 100%; height: 430px; object-fit: cover; }
.service-band .tag-row { margin: 24px 0; }
.detail-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.detail-list div { min-height: 104px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 19px; }
.detail-list span { display: block; margin-bottom: 10px; color: var(--orange); font-size: 11px; font-weight: 800; }
.detail-list.linked a { min-height: 142px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 19px; background: #fff; transition: background .2s ease, color .2s ease; }
.detail-list.linked a:hover { background: var(--forest); color: #fff; }
.detail-list.linked a span, .detail-list.linked a strong, .detail-list.linked a small { display: block; }
.detail-list.linked a span { margin-bottom: 9px; color: var(--orange); font-size: 11px; font-weight: 850; }
.detail-list.linked a strong { margin-bottom: 8px; }
.detail-list.linked a small { color: var(--muted); font-size: 12px; line-height: 1.45; }
.detail-list.linked a em { display: block; margin-top: 14px; color: var(--green); font-size: 11px; font-style: normal; font-weight: 850; line-height: 1.45; }
.detail-list.linked a:hover small { color: #d3e2dc; }
.detail-list.linked a:hover em { color: #a7e8ba; }
.detail-hero .eyebrow a:hover { color: #fff; }
.detail-overview { align-items: stretch; }
.decision-summary { display: grid; align-content: center; border-left: 4px solid var(--orange); padding: 34px; background: var(--soft); }
.decision-summary > strong { margin-bottom: 14px; color: var(--forest); font-size: 25px; }
.checkpoint-heading { display: grid; max-width: 760px; grid-template-columns: minmax(0, 1fr) minmax(260px, .7fr); column-gap: 54px; align-items: end; }
.checkpoint-heading .eyebrow { grid-column: 1 / -1; }
.checkpoint-heading h2 { margin-bottom: 0; }
.checkpoint-heading > p:last-child { margin: 0; color: var(--muted); }
.checkpoint-map { display: grid; position: relative; grid-template-columns: minmax(0, 1fr) minmax(250px, .82fr) minmax(0, 1fr); grid-template-rows: repeat(2, minmax(156px, auto)); gap: 26px 76px; align-items: stretch; }
.checkpoint-hub { display: grid; position: relative; z-index: 2; grid-column: 2; grid-row: 1 / 3; align-content: center; justify-items: center; min-height: 338px; overflow: hidden; border: 1px solid #174f45; padding: 34px 28px; background: var(--forest); color: #fff; text-align: center; }
.checkpoint-hub::after { position: absolute; inset: auto -54px -70px auto; width: 180px; height: 180px; border: 1px solid rgba(255,255,255,.13); content: ''; transform: rotate(22deg); }
.checkpoint-hub-mark { display: grid; width: 62px; height: 62px; grid-template-columns: repeat(2, 1fr); gap: 5px; margin-bottom: 28px; transform: rotate(45deg); }
.checkpoint-hub-mark i { display: block; border: 1px solid rgba(255,255,255,.62); background: rgba(255,255,255,.08); }
.checkpoint-hub-mark i:first-child { background: var(--orange); border-color: var(--orange); }
.checkpoint-hub small { margin-bottom: 11px; color: #9fe4bd; font-size: 10px; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
.checkpoint-hub strong { max-width: 220px; color: #fff; font-size: 22px; line-height: 1.35; }
.checkpoint-hub p { max-width: 235px; margin: 15px 0 0; color: #c7ddd6; font-size: 12px; line-height: 1.65; }
.checkpoint-node { display: grid; position: relative; z-index: 2; align-content: center; min-width: 0; min-height: 156px; border: 1px solid var(--line); border-top: 3px solid var(--green); padding: 24px 26px; background: #fff; box-shadow: 0 12px 30px rgba(10, 54, 46, .05); }
.checkpoint-node-1 { grid-column: 1; grid-row: 1; }
.checkpoint-node-2 { grid-column: 3; grid-row: 1; }
.checkpoint-node-3 { grid-column: 1; grid-row: 2; }
.checkpoint-node-4 { grid-column: 3; grid-row: 2; }
.checkpoint-node::after { position: absolute; top: 50%; width: 76px; height: 1px; background: #9ab8ae; content: ''; }
.checkpoint-node::before { position: absolute; top: calc(50% - 4px); width: 9px; height: 9px; border: 2px solid #fff; background: var(--orange); content: ''; box-shadow: 0 0 0 1px #9ab8ae; }
.checkpoint-node-1::after, .checkpoint-node-3::after { right: -77px; }
.checkpoint-node-1::before, .checkpoint-node-3::before { right: -82px; }
.checkpoint-node-2::after, .checkpoint-node-4::after { left: -77px; }
.checkpoint-node-2::before, .checkpoint-node-4::before { left: -82px; }
.checkpoint-node span { margin-bottom: 20px; color: var(--orange); font-size: 11px; font-weight: 900; }
.checkpoint-node h3 { margin: 0; font-size: 17px; line-height: 1.55; }
.reference-list { display: grid; gap: 10px; }
.reference-list div { display: grid; min-height: 66px; grid-template-columns: 12px 1fr; gap: 14px; align-items: center; border-bottom: 1px solid var(--line); padding: 8px 0; }
.reference-list span { width: 8px; height: 8px; background: var(--green); }
.standards-knowledge-section { background: #eef4f1; }
.standards-knowledge-heading { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: end; margin-bottom: 34px; }
.standards-knowledge-heading h2 { margin-bottom: 0; }
.standards-knowledge-heading > p { max-width: 760px; margin: 0; }
.standards-knowledge-list { border-top: 1px solid #b9cbc4; }
.standard-term { border-bottom: 1px solid #b9cbc4; background: #fff; }
.standard-term > summary { display: grid; min-height: 92px; grid-template-columns: 180px minmax(0, 1fr) auto; gap: 24px; align-items: center; cursor: pointer; padding: 18px 24px; list-style: none; }
.standard-term > summary::-webkit-details-marker { display: none; }
.standard-term > summary::after { content: '+'; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--line); color: var(--forest); font-size: 22px; font-weight: 500; }
.standard-term[open] > summary::after { content: '−'; background: var(--forest); color: #fff; }
.standard-term > summary:hover { background: #f8faf9; }
.standard-term > summary strong { color: var(--forest); font-size: 19px; }
.standard-term > summary small { justify-self: end; color: var(--muted); font-size: 11px; }
.standard-code { color: var(--orange); font-size: 13px; font-weight: 900; }
.standard-term-body { border-top: 1px solid var(--line); padding: 34px 24px 28px; }
.standard-term-body h3 { margin-bottom: 12px; color: var(--forest); font-size: 15px; }
.standard-term-body p { margin: 0; }
.standard-definition-grid, .standard-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; }
.standard-definition-grid { margin-bottom: 34px; }
.standard-definition-grid section { border-top: 3px solid var(--orange); padding-top: 18px; }
.standard-detail-grid { border-top: 1px solid var(--line); padding-top: 30px; }
.knowledge-points { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.knowledge-points li { position: relative; padding-left: 20px; }
.knowledge-points li::before { content: ''; position: absolute; top: .66em; left: 0; width: 7px; height: 7px; background: var(--green); }
.knowledge-steps { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.knowledge-steps li { display: grid; min-height: 46px; grid-template-columns: 38px 1fr; align-items: stretch; background: var(--soft); }
.knowledge-steps li span { display: grid; place-items: center; background: var(--forest); color: #fff; font-size: 10px; font-weight: 850; }
.knowledge-steps li p { align-self: center; padding: 9px 12px; font-size: 13px; }
.knowledge-pitfalls { margin-top: 30px; border-left: 4px solid var(--orange); padding: 18px 22px; background: #fff7ed; }
.knowledge-pitfalls ul { display: grid; gap: 7px; margin: 0; padding-left: 18px; }
.standard-term-body footer { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-top: 24px; border-top: 1px solid var(--line); padding-top: 18px; }
.standard-term-body footer a { color: var(--forest); font-weight: 850; }
.standard-term-body footer a:hover { color: var(--orange); }
.standard-term-body footer span { color: var(--muted); font-size: 11px; }
.detail-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }
.deliver-list span { border-radius: 0; background: var(--forest); color: #fff; }
.faq-list { max-width: 900px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; padding: 20px 4px; color: var(--forest); font-weight: 800; }
.faq-list p { max-width: 760px; padding: 0 4px 20px; margin: 0; }
.risk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.risk-grid article { min-height: 150px; border-top: 3px solid var(--orange); padding: 22px; background: #fff; }
.risk-grid span { color: var(--forest); font-size: 11px; font-weight: 800; }
.risk-grid p { margin: 26px 0 0; color: var(--ink); font-weight: 750; }
.document-list { display: grid; gap: 10px; }
.document-list div { display: flex; gap: 15px; align-items: center; min-height: 58px; border: 1px solid var(--line); padding: 12px 16px; background: #fff; }
.document-list span { display: grid; width: 28px; height: 28px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: #dff5e5; color: var(--forest); font-weight: 900; }
.boundary-panel { border: 1px solid rgba(255, 255, 255, .28); border-radius: 7px; padding: 28px; }
.boundary-panel strong { display: block; margin-bottom: 12px; font-size: 20px; }

.tool-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 72px; align-items: start; }
.precheck-layout { align-items: start; }
.precheck-layout .section-copy > h3 { margin: 30px 0 15px; color: var(--forest); font-size: 20px; }
.precheck-purpose { display: grid; gap: 1px; margin: 0 0 24px; padding: 0; background: var(--line); list-style: none; }
.precheck-purpose li { display: grid; grid-template-columns: 42px 1fr; align-items: stretch; min-height: 58px; background: #fff; }
.precheck-purpose li span { display: grid; place-items: center; background: var(--forest); color: #fff; font-size: 11px; font-weight: 850; }
.precheck-purpose li strong { align-self: center; padding: 12px 15px; color: var(--forest); font-size: 13px; line-height: 1.55; }
.precheck-upload-head { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 18px; }
.precheck-upload-head > span { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; background: var(--forest); color: #fff; font-size: 11px; font-weight: 850; }
.precheck-upload-head strong { color: var(--forest); font-size: 17px; }
.precheck-upload-head p { margin: 5px 0 0; font-size: 13px; line-height: 1.65; }
.precheck-output { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.precheck-output > strong { color: var(--forest); }
.precheck-output ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 18px; margin: 12px 0 0; padding: 0; list-style: none; }
.precheck-output li { position: relative; padding-left: 15px; color: var(--muted); font-size: 12px; }
.precheck-output li::before { position: absolute; top: 7px; left: 0; width: 6px; height: 6px; background: var(--orange); content: ""; }
.precheck-boundary { margin: 18px 0 0; padding: 12px 14px; border-left: 3px solid var(--orange); background: #fff8ef; color: #6a5741; font-size: 12px; line-height: 1.65; }
.precheck-docs { margin-top: 70px; }
.precheck-docs .section-heading { margin-bottom: 24px; }
.precheck-docs .section-heading h3 { font-size: 30px; }
.precheck-doc-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.precheck-doc-grid details { border: 1px solid var(--line); border-radius: 5px; background: #fff; }
.precheck-doc-grid summary { padding: 18px 20px; color: var(--forest); font-weight: 850; cursor: pointer; list-style: none; }
.precheck-doc-grid summary::-webkit-details-marker { display: none; }
.precheck-doc-grid summary::after { float: right; color: var(--orange); content: "+"; }
.precheck-doc-grid details[open] summary::after { content: "-"; }
.precheck-doc-grid .document-checklist { margin: 0; padding: 18px 20px 20px; border-top: 1px solid var(--line); }
.file-drop { display: grid; min-height: 180px; place-items: center; align-content: center; border: 1px dashed #9eaca7; border-radius: 6px; background: #fafcfb; text-align: center; }
.file-drop input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.file-drop strong { color: var(--forest); }
.file-drop span { margin-top: 5px; color: var(--muted); font-size: 12px; }
.file-drop:hover { border-color: var(--forest); background: #f2f7f4; }
.file-results { display: grid; gap: 8px; margin-top: 18px; color: var(--muted); font-size: 13px; }
.file-result { display: grid; grid-template-columns: 1fr auto; gap: 12px; border-bottom: 1px solid var(--line); padding: 9px 0; }
.file-result strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-result .ok { color: #1d7c43; }
.file-result .warn { color: #a55500; }
.form-grid { display: grid; gap: 16px; }
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid .wide { grid-column: 1 / -1; }
.aql-tool .button { margin-top: 18px; }
.aql-result { display: block; margin-top: 22px; }
.result-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.result-card { min-height: 80px; border: 1px solid var(--line); padding: 12px; background: var(--soft); }
.r-label { color: var(--muted); font-size: 11px; }
.r-value { color: var(--forest); font-size: 22px; font-weight: 850; }
.verdict-box { margin-top: 10px; border-left: 4px solid var(--green); padding: 16px; background: #eff8f2; }
.verdict-box h3, .verdict-box p { margin-bottom: 5px; }
.verdict-box .highlight { color: var(--forest); }

.request-section { background: var(--soft); }
.request-shell { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 28px; align-items: start; }
.request-progress { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: #fff; }
.request-progress button { display: flex; min-height: 64px; gap: 10px; align-items: center; border: 0; border-right: 1px solid var(--line); padding: 10px 14px; background: #fff; color: var(--muted); text-align: left; font-size: 13px; font-weight: 700; }
.request-progress button:last-child { border-right: 0; }
.request-progress button span { display: grid; width: 26px; height: 26px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 11px; }
.request-progress button.active { color: var(--forest); box-shadow: inset 0 -3px var(--orange); }
.request-progress button.active span { border-color: var(--forest); background: var(--forest); color: #fff; }
.request-form { border: 1px solid var(--line); border-radius: 7px; padding: 34px; background: #fff; }
.request-form fieldset { margin: 0; border: 0; padding: 0; }
.request-form legend { margin-bottom: 28px; color: var(--forest); font-size: 26px; font-weight: 850; }
.request-form .service-fields, .request-form .service-documents { border: 1px solid var(--line); border-radius: 6px; padding: 24px; background: #fff; }
.request-form .service-fields > legend, .request-form .service-documents > legend { width: auto; margin: 0 0 18px; padding: 0 9px; color: var(--forest); font-size: 17px; font-weight: 850; }
.party-group h3 { margin: 0; color: var(--forest); font-size: 18px; }
.party-details { margin: 20px 0; border: 1px solid var(--line); border-radius: 8px; background: #f7faf8; }
.party-details summary { cursor: pointer; padding: 16px 18px; color: var(--forest); font-weight: 850; }
.party-details[open] summary { border-bottom: 1px solid var(--line); }
.party-details .form-grid { padding: 18px; }
.service-request-group { margin-top: 20px; border-top: 1px solid var(--line); padding-top: 22px; }
.service-selection-note { display: flex; min-height: 54px; flex-wrap: wrap; gap: 7px 14px; align-items: center; border-left: 4px solid var(--orange); padding: 11px 15px; background: #fff8ef; }
.service-selection-note span { color: var(--muted); font-size: 12px; font-weight: 750; }
.service-selection-note strong { color: var(--forest); }
.service-documents { margin-top: 22px !important; background: var(--soft) !important; }
.service-documents > p { margin-bottom: 16px; font-size: 13px; }
.document-checklist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px 18px; margin: 0 0 20px; padding: 0; list-style: none; }
.document-checklist li { position: relative; padding-left: 18px; color: #465650; font-size: 13px; }
.document-checklist li::before { content: ""; position: absolute; top: 8px; left: 0; width: 7px; height: 7px; border: 2px solid var(--green); }
.service-documents .file-drop { width: 100%; background: #fff; }
.file-drop.inline { min-height: 120px; }
.consent { display: grid !important; grid-template-columns: auto 1fr; align-items: start; }
.consent input { width: 18px !important; min-height: 18px !important; margin-top: 3px; }
.request-actions { display: flex; justify-content: space-between; gap: 10px; margin-top: 30px; }
.request-actions button:last-child { margin-left: auto; }
.request-result { position: fixed; z-index: 1500; top: 50%; left: 50%; width: min(620px, calc(100vw - 32px)); max-height: calc(100vh - 40px); overflow: auto; transform: translate(-50%, -50%); border: 1px solid #8ebda2; border-top: 6px solid var(--green); border-radius: 12px; padding: 28px; background: #fff; box-shadow: 0 24px 80px rgb(10 48 38 / 34%); }
.request-result::after { position: fixed; z-index: -1; inset: -100vh -100vw; background: rgb(3 28 23 / 55%); content: ""; }
.request-result.is-error { border-color: #d97970; border-top-color: #b42318; }
.request-result h3 { margin: 6px 36px 14px 0; color: var(--forest); font-size: 21px; line-height: 1.45; }
.request-result.is-error h3, .request-result.is-error .request-result-status { color: #9b1c12; }
.request-result-status { margin: 0; color: var(--forest); font-size: 14px; font-weight: 900; }
.request-result-close { position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink); font-size: 24px; line-height: 1; }
.request-result dl { display: grid; gap: 8px; margin: 18px 0; }
.request-result dl div { display: grid; grid-template-columns: 130px 1fr; gap: 12px; border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.request-result dt { color: var(--muted); font-size: 13px; }
.request-result dd { margin: 0; overflow-wrap: anywhere; color: var(--forest); font-weight: 850; }
.request-result-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.aql-defaults { display: flex; min-height: 58px; flex-wrap: wrap; gap: 12px 20px; align-items: center; border-left: 4px solid var(--green); padding: 13px 16px; background: #eff8f2; color: var(--forest); }
.aql-defaults strong { flex: 1 1 420px; font-size: 13px; }
.aql-defaults a { color: var(--forest); font-size: 13px; font-weight: 850; }
.schedule-note { margin: 0; border-left: 3px solid var(--orange); padding: 11px 14px; background: #fff7ed; color: #6e4a20; font-size: 13px; }
.service-notes { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; }
.service-notes > strong { display: block; margin-bottom: 10px; color: var(--forest); }
.service-notes ul { display: grid; gap: 7px; margin: 0; padding-left: 20px; }
.service-notes li { color: var(--muted); font-size: 13px; }
.request-aside { position: sticky; top: 22px; border-top: 4px solid var(--forest); padding: 26px; background: #fff; }
.request-aside > strong { color: var(--forest); font-size: 24px; }
.request-aside > div { display: flex; gap: 12px; border-top: 1px solid var(--line); padding: 17px 0 0; margin-top: 17px; }
.request-aside > div span { color: var(--orange); font-size: 11px; font-weight: 900; }
.request-aside p { margin: 0; font-size: 13px; }

.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.story-grid article { min-height: 220px; border-right: 1px solid var(--line); padding: 28px; }
.story-grid article:last-child { border-right: 0; }
.story-grid span { color: var(--orange); font-size: 12px; font-weight: 900; }
.story-grid h3 { margin-top: 42px; }
.credential-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.credential-layout figure { margin: 0; border: 1px solid var(--line); padding: 14px; background: #fff; }
.credential-layout figure img { width: 100%; max-height: 520px; object-fit: contain; }
.credential-layout figcaption { padding: 12px 8px 2px; color: var(--muted); font-size: 12px; }
.credential-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.credential-facts span { border: 1px solid var(--line); border-radius: 4px; padding: 8px 10px; background: #fff; font-size: 12px; font-weight: 700; }
.role-chain { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); }
.role-chain article { min-height: 200px; border-right: 1px solid var(--line); padding: 24px 18px; }
.role-chain article:last-child { border-right: 0; }
.role-chain span { color: var(--orange); font-size: 11px; font-weight: 900; }
.role-chain h3 { margin-top: 34px; font-size: 16px; }
.role-chain p { font-size: 13px; }
.about-index a { max-width: 230px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.about-profile { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 72px; align-items: start; }
.about-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.about-facts article { min-height: 190px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px; }
.about-facts article > span { display: block; margin-bottom: 20px; color: var(--orange); font-size: 11px; font-weight: 900; }
.about-facts strong { display: block; color: var(--forest); font-size: 30px; line-height: 1.05; overflow-wrap: anywhere; }
.about-facts p { margin: 15px 0 0; font-size: 12px; line-height: 1.55; }
.about-scene-band { padding: 0 0 92px; background: #fff; }
.about-scene-grid { display: grid; height: 590px; grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 12px; }
.about-scene { position: relative; min-width: 0; min-height: 0; overflow: hidden; margin: 0; background: #e8eeeb; }
.about-scene-1 { grid-row: 1 / 3; }
.about-scene img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.about-scene:hover img { transform: scale(1.018); }
.about-scene figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 18px 24px 20px; background: rgba(5, 26, 22, .86); color: #fff; }
.about-scene figcaption span { display: block; margin-bottom: 5px; color: #a8e7c0; font-size: 10px; font-weight: 900; }
.about-scene figcaption strong { display: block; font-size: 20px; }
.about-scene figcaption p { max-width: 470px; margin: 7px 0 0; color: #e4efeb; font-size: 13px; line-height: 1.55; }
.authority-grid, .governance-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.authority-grid article, .governance-grid article { min-height: 260px; border-right: 0; padding: 26px 23px; background: #fff; }
.authority-grid article:nth-child(2), .governance-grid article:nth-child(2) { background: #edf5f2; }
.authority-grid article:nth-child(3), .governance-grid article:nth-child(3) { background: #f8f4ea; }
.authority-grid article:nth-child(4), .governance-grid article:nth-child(4) { background: #eef3f8; }
.authority-grid article:last-child, .governance-grid article:last-child { border-right: 0; }
.authority-grid span, .governance-grid span { color: var(--orange); font-size: 11px; font-weight: 900; }
.authority-grid h3, .governance-grid h3 { margin-top: 38px; font-size: 18px; }
.authority-grid p, .governance-grid p { margin-bottom: 0; font-size: 13px; }
.capability-band { background: #123d35; color: #fff; }
.capability-band h2 { color: #fff; }
.capability-band p { color: #d1e2dc; }
.industry-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(255, 255, 255, .24); border-left: 1px solid rgba(255, 255, 255, .24); }
.industry-list div { display: grid; min-height: 86px; grid-template-columns: 34px 1fr; gap: 10px; align-items: center; border-right: 1px solid rgba(255, 255, 255, .24); border-bottom: 1px solid rgba(255, 255, 255, .24); padding: 15px; }
.industry-list span { color: #9fe0b8; font-size: 10px; font-weight: 900; }
.industry-list strong { color: #fff; font-size: 13px; }
.capability-note { margin: 24px 0 0; border-left: 3px solid #9fe0b8; padding: 2px 0 2px 16px; color: #eef7f3 !important; font-size: 13px; }
.coverage-section { background: #fff; }
.coverage-layout { display: grid; grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr); gap: 64px; align-items: stretch; }
.coverage-visual { position: relative; min-height: 590px; overflow: hidden; margin: 0; background: #dfe9e5; }
.coverage-visual::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 30, 25, .04) 45%, rgba(5, 30, 25, .82)); content: ''; }
.coverage-visual img { width: 100%; height: 100%; object-fit: cover; }
.coverage-visual figcaption { position: absolute; z-index: 1; right: 30px; bottom: 30px; left: 30px; color: #fff; }
.coverage-visual figcaption strong { display: block; font-size: 64px; line-height: .95; }
.coverage-visual figcaption span { display: block; margin-top: 10px; font-size: 15px; font-weight: 700; }
.coverage-content > p { max-width: 720px; }
.region-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 30px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.region-list article { min-height: 112px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px; }
.region-list strong { display: block; color: var(--forest); font-size: 15px; }
.region-list p { margin: 10px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.coverage-note { margin-top: 20px; border-left: 3px solid var(--orange); padding-left: 14px; color: var(--muted); font-size: 12px; }
.client-evidence-section { border-top: 1px solid var(--line); }
.client-logo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 34px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: #fff; }
.client-logo-grid figure { display: grid; min-width: 0; min-height: 132px; grid-template-rows: 82px auto; align-items: center; margin: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 18px 12px; }
.client-logo-grid img { width: 100%; height: 70px; object-fit: contain; filter: saturate(.9); }
.client-logo-grid figcaption { overflow: hidden; color: var(--muted); font-size: 10px; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.feedback-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 62px; align-items: start; margin-top: 74px; padding-top: 62px; border-top: 1px solid var(--line); }
.rating-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.rating-grid article { min-height: 105px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px; background: #fff; }
.rating-grid strong { display: block; color: var(--forest); font-size: 28px; line-height: 1; }
.rating-grid span { display: block; margin-top: 12px; color: var(--muted); font-size: 11px; }
.testimonial-list { display: grid; gap: 16px; }
.testimonial-list blockquote { min-height: 175px; margin: 0; border-left: 4px solid var(--orange); padding: 27px 30px; background: #fff; }
.testimonial-list blockquote p { margin: 0; color: var(--ink); font-family: Georgia, 'Times New Roman', serif; font-size: 24px; line-height: 1.45; }
.testimonial-list cite { display: block; margin-top: 24px; color: var(--muted); font-size: 12px; font-style: normal; }
.source-note { margin-top: 34px; color: var(--muted); font-size: 11px; line-height: 1.7; }
.official-section { padding-block: 62px; }
.official-layout { display: flex; align-items: center; justify-content: space-between; gap: 42px; }
.official-layout h2 { margin-bottom: 8px; }
.official-layout p { margin-bottom: 0; }
.official-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }

.contact-intro > img { object-position: center 38%; }
.contact-intro .page-intro-shade { background: rgba(3, 20, 17, .52); }
.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.contact-details dl { margin: 36px 0; }
.contact-details dl div { border-top: 1px solid var(--line); padding: 17px 0; }
.contact-details dt { color: var(--muted); font-size: 12px; font-weight: 700; }
.contact-details dd { margin: 6px 0 0; color: var(--forest); font-weight: 800; }
.contact-channels { display: grid; gap: 8px; margin-top: 28px; border-top: 1px solid var(--line); padding-top: 20px; }
.contact-channels strong { margin-bottom: 3px; color: var(--forest); font-size: 13px; }
.contact-channels a { width: max-content; color: var(--forest); font-size: 13px; font-weight: 750; }
.contact-channels a:hover { color: var(--orange); }
.contact-form .button { margin-top: 20px; }
.form-message { margin-top: 18px; border-left: 4px solid var(--green); padding: 14px; background: #eff8f2; color: var(--forest); }
.form-message.is-success { border-left-color: var(--green); background: #eff8f2; color: var(--forest); }
.form-message.is-error { border-left-color: #b42318; background: #fff1ef; color: #9b1c12; }

.portal-page { display: grid; min-height: calc(100svh - 117px); grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr); }
.portal-visual { position: relative; min-height: 700px; overflow: hidden; color: #fff; }
.portal-visual > img { width: 100%; height: 100%; object-fit: cover; }
.portal-visual > div:last-child { position: absolute; z-index: 2; left: max(40px, calc((100vw - 1180px) / 2)); bottom: 70px; max-width: 610px; padding-right: 40px; }
.portal-visual h1 { color: #fff; font-size: 48px; }
.portal-visual p:not(.eyebrow) { color: #dfece7; font-size: 18px; }
.portal-tool { align-self: center; max-width: 620px; padding: 54px 60px; }
.portal-tabs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.portal-tabs button { min-height: 48px; border: 0; background: transparent; color: var(--muted); font-weight: 800; }
.portal-tabs button.active { box-shadow: inset 0 -3px var(--orange); color: var(--forest); }
.portal-form { display: grid; gap: 16px; margin-top: 22px; }
.portal-form-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.portal-form-actions > a { color: var(--forest); font-size: 13px; font-weight: 750; }
.portal-password-hint, .portal-client-summary { margin: -6px 0 0; font-size: 12px; }
.checkbox-line { display: grid !important; grid-template-columns: 20px minmax(0, 1fr); gap: 10px !important; align-items: start; font-weight: 600 !important; line-height: 1.5; }
.checkbox-line input { width: 18px !important; min-height: 18px !important; margin: 2px 0 0; }
.bot-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.portal-security-list { display: grid; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; counter-reset: security-step; }
.portal-security-list li { position: relative; padding-left: 28px; color: var(--muted); font-size: 12px; counter-increment: security-step; }
.portal-security-list li::before { position: absolute; top: 1px; left: 0; display: grid; width: 19px; height: 19px; place-items: center; border: 1px solid #9ccbb0; color: var(--forest); font-size: 10px; font-weight: 850; content: counter(security-step); }
.portal-note { margin: 20px 0 0; font-size: 12px; }
.portal-email-verification { margin-top: 18px; padding: 20px; border: 1px solid #9ccbb0; border-radius: 10px; background: #f4fbf7; }
.portal-email-verification h2 { margin: 0 0 8px; color: var(--forest); font-size: 21px; }
.portal-email-verification p { margin: 0 0 16px; color: var(--muted); line-height: 1.65; }
.portal-pilot-verification-link { display: inline-flex; margin-top: 10px; color: var(--forest); font-weight: 800; }
.secure-invite-page { min-height: calc(100svh - 82px); padding: 80px 0; background: var(--soft); }
.secure-invite-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: 90px; align-items: center; }
.secure-invite-copy { max-width: 560px; }
.secure-invite-copy h1 { font-size: 46px; }
.invite-status { margin: 28px 0 20px; border-left: 4px solid var(--orange); padding: 15px 18px; background: #fff; color: var(--forest); font-weight: 750; }
.invite-status.valid { border-left-color: var(--green); background: #eff8f2; }
.invite-status.invalid { border-left-color: #b33a3a; background: #fff1f1; color: #7b2525; }
.secure-invite-form { margin-top: 0; }
.secure-invite-form button:disabled { cursor: not-allowed; opacity: .5; transform: none; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; clip-path: inset(50%); }
.insights-intro .wrap { position: relative; }
.insights-intro .wrap > strong { position: absolute; right: 0; bottom: 0; color: rgba(255,255,255,.18); font-size: 112px; line-height: .75; }
.insight-section { background: #f8faf9; }
.insight-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.insight-toolbar > p { flex: 0 0 auto; margin: 0; color: var(--muted); font-size: 13px; font-weight: 750; }
.insight-search { position: relative; width: min(580px, 100%); }
.insight-search input { width: 100%; min-height: 52px; border: 1px solid var(--line); border-radius: 5px; padding: 12px 50px 12px 16px; background: #fff; color: var(--ink); font: inherit; }
.insight-search input:focus { border-color: var(--forest); outline: 3px solid rgba(11,61,54,.12); }
.insight-search > span:last-child { position: absolute; top: 50%; right: 17px; color: var(--forest); font-size: 24px; transform: translateY(-52%); }
.insight-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.insight-filters button { min-height: 42px; border: 1px solid var(--line); border-radius: 4px; padding: 8px 14px; background: #fff; color: var(--muted); font-weight: 750; }
.insight-filters button span { margin-left: 4px; color: #7d8985; font-size: 11px; }
.insight-filters button.active, .insight-filters button:hover { border-color: var(--forest); background: var(--forest); color: #fff; }
.insight-filters button.active span, .insight-filters button:hover span { color: #dce9e4; }
.insight-library { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.insight-list-card { display: flex; min-height: 490px; overflow: hidden; flex-direction: column; border: 1px solid var(--line); border-radius: 6px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.insight-list-card:hover { border-color: #b8c8c1; box-shadow: 0 16px 34px rgba(18, 55, 45, .1); transform: translateY(-2px); }
.insight-list-card[hidden] { display: none; }
.insight-card-image { display: block; height: 210px; overflow: hidden; background: #e8eeeb; }
.insight-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.insight-list-card:hover .insight-card-image img { transform: scale(1.025); }
.insight-card-content { display: flex; flex: 1; flex-direction: column; padding: 24px 26px 26px; }
.insight-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; color: var(--muted); font-size: 11px; }
.insight-card-meta span { color: var(--orange); font-weight: 850; text-transform: uppercase; }
.insight-list-card h2 { margin-bottom: 12px; font-size: 23px; line-height: 1.34; }
.insight-list-card h2 a { color: var(--forest); }
.insight-list-card h2 a:hover { color: var(--orange); }
.insight-card-content > p { display: -webkit-box; overflow: hidden; margin: 0 0 22px; color: #52605b; font-size: 14px; line-height: 1.7; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.insight-card-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-top: auto; }
.insight-card-footer > div { display: flex; flex-wrap: wrap; gap: 6px; }
.insight-card-footer > div span { border-radius: 3px; padding: 4px 7px; background: var(--soft); color: var(--muted); font-size: 10px; }
.insight-card-footer > a { flex: 0 0 auto; color: var(--forest); font-size: 12px; font-weight: 850; }
.insight-more-wrap { display: flex; justify-content: center; margin-top: 34px; }
.insight-more-wrap [hidden] { display: none; }
.article-hero { padding: 96px 0 80px; background: var(--forest); color: #fff; }
.article-hero h1 { max-width: 900px; margin-bottom: 20px; color: #fff; }
.article-hero > .wrap > p:not(.eyebrow) { max-width: 760px; color: #d7e7e1; font-size: 19px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.article-meta span, .article-meta time { border: 1px solid rgba(255,255,255,.3); border-radius: 4px; padding: 6px 9px; color: #fff; font-size: 11px; }
.article-layout { display: grid; grid-template-columns: 230px minmax(0, 780px); gap: 72px; justify-content: center; padding-block: 72px 96px; }
.article-toc { position: sticky; top: 24px; display: grid; align-self: start; border-top: 3px solid var(--orange); padding-top: 17px; }
.article-toc strong { margin-bottom: 12px; color: var(--forest); }
.article-toc a { border-bottom: 1px solid var(--line); padding: 10px 0; color: var(--muted); font-size: 12px; }
.article-toc a:hover { color: var(--forest); }
.article-body figure { height: 430px; margin: 0 0 56px; overflow: hidden; background: var(--soft); }
.article-body figure img { width: 100%; height: 100%; object-fit: cover; }
.article-body section { scroll-margin-top: 70px; margin-bottom: 54px; }
.article-body section h2 { font-size: 31px; }
.article-body section p:not(.eyebrow) { color: #42504c; font-size: 17px; line-height: 1.85; }
.article-note { border-left: 4px solid var(--green); padding: 20px 24px; background: var(--soft); }
.article-note strong { color: var(--forest); }
.article-note p { margin: 8px 0 0; }
.legacy-article-layout { max-width: 900px; padding-block: 72px 96px; }
.legacy-article-body { color: #384943; font-size: 17px; line-height: 1.9; }
.legacy-article-body h2, .legacy-article-body h3 { margin: 46px 0 16px; color: var(--forest); }
.legacy-article-body h2 { font-size: 31px; }
.legacy-article-body h3 { font-size: 24px; }
.legacy-article-body p, .legacy-article-body ul, .legacy-article-body ol, .legacy-article-body table, .legacy-article-body blockquote { margin: 0 0 22px; }
.legacy-article-body ul, .legacy-article-body ol { padding-left: 24px; }
.legacy-article-body li { margin-bottom: 8px; }
.legacy-article-body img { max-width: 100%; height: auto; margin: 20px 0; }
.legacy-article-body table { display: block; width: 100%; overflow-x: auto; border-collapse: collapse; }
.legacy-article-body th, .legacy-article-body td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.legacy-article-body th { background: var(--soft); color: var(--forest); }
.legacy-article-body blockquote { border-left: 4px solid var(--orange); padding: 14px 20px; background: var(--soft); }
.legacy-article-body .article-note { margin-top: 56px; }
.article-back { margin-top: 32px !important; font-size: 14px; font-weight: 800; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-grid > a { border: 1px solid var(--line); background: #fff; }
.related-grid img { width: 100%; height: 190px; object-fit: cover; }
.related-grid a > div { padding: 20px; }
.related-grid h3 { margin-bottom: 10px; }
.related-grid p { margin: 0; font-size: 13px; }

.site-footer { padding-top: 64px; background: #091b18; color: #d6e1dd; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 54px; }
.footer-grid h3 { margin-bottom: 18px; color: #fff; font-size: 14px; }
.footer-grid > div:not(.footer-brand) > a { display: block; margin-bottom: 10px; color: #b9c9c3; font-size: 13px; }
.footer-grid a:hover { color: #fff; }
.footer-grid p { color: #9fb1aa; font-size: 13px; }
.footer-brand img { width: 78px; height: 54px; object-fit: contain; background: #fff; }
.footer-brand > strong { display: block; margin: 14px 0 8px; color: #fff; font-size: 22px; }
.footer-slogan { color: #fff !important; font-weight: 750; }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.social-links a, .footer-channel-links a { display: inline-flex; min-height: 32px; align-items: center; border: 1px solid rgba(255, 255, 255, .2); border-radius: 4px; padding: 5px 10px; color: #dce9e4; font-size: 11px; font-weight: 750; }
.social-links a:hover, .footer-channel-links a:hover { border-color: #fff; color: #fff; }
.footer-channel-links { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, .15); margin-top: 48px; padding: 20px 0; color: #849891; font-size: 11px; }

.contact-widget { position: fixed; right: 24px; bottom: 24px; z-index: 1400; }
.contact-widget-trigger { display: grid; width: 62px; height: 62px; place-items: center; border: 0; border-radius: 50%; background: #10b95d; box-shadow: 0 16px 38px rgba(6, 65, 46, .28); cursor: pointer; transition: transform .18s ease, background .18s ease; }
.contact-widget-trigger:hover { background: #079b4b; transform: translateY(-2px); }
.contact-widget-trigger:focus-visible, .contact-widget-close:focus-visible, .contact-channel:focus-visible { outline: 3px solid rgba(240, 123, 0, .55); outline-offset: 3px; }
.contact-trigger-icon { position: relative; display: block; width: 29px; height: 22px; border-radius: 50%; background: #fff; }
.contact-trigger-icon::after { position: absolute; right: 3px; bottom: -4px; width: 9px; height: 9px; background: #fff; clip-path: polygon(0 0, 100% 0, 100% 100%); content: ''; transform: rotate(16deg); }
.contact-widget-panel { position: absolute; right: 0; bottom: 78px; width: min(390px, calc(100vw - 32px)); max-height: calc(100svh - 118px); overflow-y: auto; border: 1px solid #dfe8e5; border-radius: 8px; padding: 24px; background: #fff; box-shadow: 0 24px 72px rgba(5, 35, 29, .24); }
.contact-widget-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.contact-widget-heading h2 { margin: 0; color: var(--forest); font-size: 26px; }
.contact-widget-heading p { margin: 6px 0 0; color: var(--muted); font-size: 13px; }
.contact-widget-close { display: grid; flex: 0 0 36px; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--forest); cursor: pointer; font-size: 26px; line-height: 1; }
.contact-channel-list { display: grid; gap: 10px; }
.contact-channel { display: grid; width: 100%; min-height: 78px; grid-template-columns: 48px minmax(0, 1fr) auto; align-items: center; gap: 14px; border: 1px solid #dfe8e5; border-radius: 8px; padding: 12px 14px; background: #f7f9f8; color: var(--forest); text-align: left; cursor: pointer; transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.contact-channel:hover { border-color: #93c9b1; background: #fff; transform: translateY(-1px); }
.contact-channel-mark { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; color: #fff; font-size: 12px; font-weight: 900; letter-spacing: 0; }
.contact-channel-mark.whatsapp, .contact-channel-mark.wechat { background: #10b95d; }
.contact-channel-mark.email { background: #e94b45; font-size: 22px; }
.contact-channel-mark.phone { background: #0b4a85; font-size: 10px; }
.contact-channel strong { display: block; margin-bottom: 4px; color: #0b4a85; font-size: 18px; }
.contact-channel small { display: block; overflow-wrap: anywhere; color: #6e7774; font-size: 15px; }
.contact-channel-arrow { color: var(--green); font-size: 22px; font-weight: 800; }
.contact-channel-copy { max-width: 78px; color: var(--green); font-size: 10px; font-weight: 800; text-align: right; }
.contact-channel.copied { border-color: #10b95d; background: #eefaf3; }
.contact-copy-status { min-height: 20px; margin: 12px 0 -4px; color: var(--green); font-size: 12px; font-weight: 800; text-align: center; }

@media (max-width: 680px) {
  .contact-widget { right: 14px; bottom: 14px; }
  .contact-widget-trigger { width: 56px; height: 56px; }
  .contact-widget-panel { position: fixed; right: 12px; bottom: 82px; left: 12px; width: auto; max-height: calc(100svh - 98px); padding: 20px; }
  .contact-widget-heading h2 { font-size: 24px; }
  .contact-channel { min-height: 72px; grid-template-columns: 44px minmax(0, 1fr) auto; gap: 12px; padding: 10px 12px; }
  .contact-channel-mark { width: 42px; height: 42px; }
  .contact-channel strong { font-size: 17px; }
  .contact-channel small { font-size: 14px; }
  .contact-channel-copy { max-width: 66px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .home-hero.is-autoplaying .hero-tabs button.active::after { animation: none; transform: scaleX(1); }
}

[hidden] { display: none !important; }

@media (max-width: 1279px) {
  .nav-shell { gap: 16px; }
  .primary-nav { gap: 15px; }
  .nav-actions { gap: 8px; }
  .text-action { padding-inline: 9px; font-size: 11px; }
}

@media (max-width: 1180px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card p:not(.eyebrow) { min-height: auto; }
  .portal-tool { padding: 42px 36px; }
}

@media (max-width: 980px) {
  :root { --wrap: min(100% - 32px, 820px); }
  h1 { font-size: 45px; }
  h2 { font-size: 32px; }
  .section-index { top: 72px; }
  .nav-shell { min-height: 72px; gap: 10px; }
  .brand img { width: 92px; height: 44px; }
  .primary-nav { min-width: 0; gap: 8px; }
  .primary-nav > a, .nav-service > a, .nav-tools > a { padding: 25px 0 23px; font-size: 12px; }
  .service-menu { position: fixed; top: 72px; left: 16px; width: calc(100vw - 32px); }
  .nav-actions { gap: 5px; }
  .language-picker summary { min-width: 58px; padding-inline: 7px; }
  .nav-actions .button { min-height: 36px; padding: 7px 9px; font-size: 11px; }
  .home-hero { height: clamp(540px, 68svh, 650px); }
  .hero-copy { padding-bottom: 76px; }
  .hero-copy h1, .hero-copy h2 { font-size: 42px; }
  .concern-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .concern-card h3, .concern-card p { min-height: auto; }
  .advisor-priority .split-layout, .credibility-layout { grid-template-columns: 1fr; gap: 44px; }
  .credibility-proof-board { grid-template-columns: 1fr; }
  .credibility-proof-main { min-height: 380px; }
  .credibility-stat-panel { grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr); align-items: stretch; }
  .credibility-team-card { grid-template-columns: 1fr; align-content: start; }
  .credibility-team-card img { width: 100%; height: 210px; object-position: center 12%; }
  .journey-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .split-layout, .tool-layout, .contact-layout, .credential-layout { grid-template-columns: 1fr; gap: 42px; }
  .process-row { grid-template-columns: repeat(3, 1fr); }
  .process-row article:nth-child(3) { border-right: 0; }
  .process-row article:nth-child(n+4) { border-top: 1px solid var(--line); }
  .evidence-grid { grid-template-columns: repeat(2, 1fr); }
  .evidence-grid figure:nth-child(2), .evidence-grid figure:nth-child(4) { margin-top: 0; }
  .service-band, .service-band.reverse { grid-template-columns: 1fr; gap: 30px; }
  .service-band.reverse img { order: 0; }
  .risk-grid { grid-template-columns: repeat(2, 1fr); }
  .checkpoint-heading { grid-template-columns: 1fr; gap: 12px; align-items: start; }
  .checkpoint-map { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto auto auto; gap: 16px; }
  .checkpoint-hub { grid-column: 1 / 3; grid-row: 1; min-height: 250px; }
  .checkpoint-node { min-height: 142px; }
  .checkpoint-node-1 { grid-column: 1; grid-row: 2; }
  .checkpoint-node-2 { grid-column: 2; grid-row: 2; }
  .checkpoint-node-3 { grid-column: 1; grid-row: 3; }
  .checkpoint-node-4 { grid-column: 2; grid-row: 3; }
  .checkpoint-node::after, .checkpoint-node::before { display: none; }
  .detail-columns { grid-template-columns: 1fr; }
  .standards-knowledge-heading { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .role-chain { grid-template-columns: repeat(3, 1fr); }
  .role-chain article:nth-child(3) { border-right: 0; }
  .role-chain article:nth-child(n+4) { border-top: 1px solid var(--line); }
  .about-profile { grid-template-columns: 1fr; gap: 42px; }
  .about-scene-grid { height: 540px; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); }
  .authority-grid, .governance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .authority-grid article:nth-child(2), .governance-grid article:nth-child(2) { border-right: 0; }
  .authority-grid article:nth-child(n+3), .governance-grid article:nth-child(n+3) { border-top: 1px solid var(--line); }
  .coverage-layout, .feedback-layout { grid-template-columns: 1fr; gap: 42px; }
  .coverage-visual { min-height: 420px; }
  .client-logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .official-layout { align-items: flex-start; flex-direction: column; }
  .official-links { justify-content: flex-start; }
  .portal-page { grid-template-columns: 1fr; }
  .portal-visual { min-height: 480px; }
  .portal-tool { width: var(--wrap); max-width: none; margin-inline: auto; padding: 50px 0; }
  .insight-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-library { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 190px minmax(0, 1fr); gap: 42px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 25px; }
}

@media (max-width: 1179.98px) {
  .menu-button { display: block; margin-left: auto; }
  .primary-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; max-height: calc(100svh - 82px); overflow-y: auto; align-items: stretch; border-top: 1px solid var(--line); padding: 8px 16px 18px; background: #fff; box-shadow: var(--shadow); }
  .primary-nav.open { display: grid; }
  .nav-dropdown { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
  .nav-dropdown::after { display: none; }
  .primary-nav > a, .nav-service > a, .nav-tools > a { display: block; border-bottom: 1px solid var(--line); padding: 13px 2px; }
  .primary-nav > a::after, .nav-service > a::after, .nav-tools > a::after { display: none; }
  .service-menu { position: static; display: grid; width: 100%; grid-template-columns: repeat(2, 1fr); box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
  .service-menu-group { min-height: 0; padding: 0; }
  .service-menu-title { height: 100%; margin: 0; border: 0; padding: 15px 13px; }
  .service-menu-title strong { margin: 0; }
  .service-menu-title span, .service-menu-group > div { display: none; }
  .tool-menu { position: static; display: grid; width: 100%; grid-template-columns: repeat(2, 1fr); border: 0; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
  .tool-menu a { border-right: 1px solid var(--line); padding: 12px; }
  .tool-menu a span { display: none; }
  .nav-submenu-button { display: grid; width: 40px; height: 40px; margin-left: 0; align-self: center; place-items: center; border: 0; border-radius: 4px; background: var(--soft); color: var(--forest); font-size: 18px; }
  .nav-dropdown .dropdown-menu { display: none; grid-column: 1 / -1; }
  .nav-dropdown.submenu-open .dropdown-menu { display: grid; }
  .nav-dropdown.submenu-open .nav-submenu-button { transform: rotate(180deg); }
  .nav-actions .text-action, .nav-actions .button { display: none; }
  .mobile-nav-tools { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding-top: 14px; }
  .mobile-nav-tools .language-picker { display: none; }
  .mobile-nav-tools > a:not(.button), .mobile-nav-tools .portal-benefit > a { color: var(--forest); font-size: 13px; font-weight: 800; text-align: center; }
  .mobile-nav-tools .portal-benefit-link { width: 100%; min-height: 44px; border: 1px solid var(--line); border-radius: 5px; padding: 5px 9px; background: var(--soft); }
  .mobile-nav-tools .portal-benefit-tip { top: calc(100% + 6px); }
  .mobile-nav-tools .button { min-height: 40px; padding: 8px 13px; }
}

@media (max-width: 980px) {
  .primary-nav { max-height: calc(100svh - 72px); }
}

@media (max-width: 680px) {
  :root { --wrap: calc(100% - 26px); }
  body { font-size: 15px; }
  h1 { font-size: 36px; }
  h2 { font-size: 29px; }
  .section { padding: 68px 0; }
  .section[id] { scroll-margin-top: 138px; }
  .brand img { width: 88px; height: 42px; }
  .nav-actions { display: flex; }
  .service-menu { grid-template-columns: 1fr; }
  .service-menu-title span { display: none; }
  .service-menu-group > div { grid-template-columns: 1fr 1fr; }
  .tool-menu { grid-template-columns: 1fr; }
  .tool-menu span { display: none; }
  .home-hero { --mobile-hero-image-height: clamp(280px, 58vw, 390px); min-height: 0; height: calc(var(--mobile-hero-image-height) + 340px); background: #07241f; }
  .hero-slide > img { width: 100%; height: var(--mobile-hero-image-height); object-fit: cover; }
  .hero-slide[data-hero-slide="0"] > img { object-position: center 34%; }
  .hero-slide[data-hero-slide="1"] > img,
  .hero-slide[data-hero-slide="2"] > img { object-position: 68% center; }
  .home-hero .hero-shade { top: 0; bottom: auto; height: var(--mobile-hero-image-height); background: rgba(3, 20, 17, .32); }
  .hero-copy { top: var(--mobile-hero-image-height); bottom: 82px; justify-content: center; padding-bottom: 0; }
  .hero-copy h1, .hero-copy h2 { margin-bottom: 12px; font-size: 32px; }
  .hero-copy > p:not(.eyebrow) { margin-bottom: 8px; font-size: 14px; line-height: 1.52; }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 0 1 auto; }
  .hero-tabs { width: 100%; }
  .hero-tabs button { min-height: 82px; padding: 9px; font-size: 11px; text-align: center; }
  .hero-tabs button span { font-size: 9px; }
  .hero-brand-slogan { margin-bottom: 12px; font-size: 12px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); min-height: 180px; }
  .international-trust-grid { grid-template-columns: 1fr 1fr; }
  .international-trust-grid article { min-height: 104px; padding: 18px; border-bottom: 1px solid var(--line); }
  .international-trust-grid article:first-child { padding-left: 18px; }
  .international-trust-grid article:nth-child(2) { border-right: 0; }
  .international-trust-grid article:nth-last-child(-n + 2) { border-bottom: 0; }
  .international-trust-grid article:last-child { padding-right: 18px; }
  .stat-row > div { min-height: 78px; border-bottom: 1px solid var(--line); padding-left: 18px; }
  .stat-row > div:first-child { padding-left: 18px; }
  .stat-row > div:nth-child(2) { border-right: 0; }
  .stat-row strong { font-size: 25px; }
  .advisor-form, .advisor-form.compact, .form-grid.two { grid-template-columns: 1fr; }
  .advisor-question textarea { min-height: 170px; }
  .advisor-submit-row { align-items: stretch; flex-direction: column; }
  .advisor-submit-row .button { width: 100%; }
  .advisor-result { padding: 20px 17px; }
  .advisor-result-grid { grid-template-columns: 1fr; gap: 22px; }
  .advisor-services > div { grid-template-columns: 1fr; }
  .advisor-result-actions { display: grid; grid-template-columns: 1fr; }
  .tool-panel { padding: 22px; }
  .service-grid, .concern-grid, .risk-grid, .insight-grid, .insight-library { grid-template-columns: 1fr; }
  .concern-image { height: 220px; }
  .credibility-proof-board { grid-template-columns: 1fr; }
  .credibility-proof-main { min-height: 310px; }
  .credibility-proof-main figcaption { right: 18px; bottom: 18px; left: 18px; }
  .credibility-proof-main figcaption strong { font-size: 18px; }
  .credibility-proof-stack { grid-template-columns: 1fr; grid-template-rows: none; }
  .credibility-proof-stack figure { min-height: 210px; }
  .credibility-stat-panel { grid-template-columns: 1fr; }
  .credibility-stat-grid { grid-template-columns: 1fr 1fr; }
  .credibility-stat-card { min-height: 156px; padding: 22px 18px; }
  .credibility-stat-card strong { font-size: 34px; }
  .credibility-stat-card p { font-size: 15px; }
  .credibility-team-card { grid-template-columns: 84px 1fr; gap: 14px; padding: 14px; }
  .credibility-team-card img { width: 84px; height: 104px; object-position: center top; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-grid article { display: grid; grid-template-columns: 42% 1fr; min-height: 170px; }
  .journey-image { height: 100%; min-height: 170px; }
  .journey-grid article h3 { min-height: auto; }
  .checkpoint-heading { margin-bottom: 30px; }
  .checkpoint-map { grid-template-columns: 1fr; grid-template-rows: auto; gap: 12px; padding-left: 22px; }
  .checkpoint-map::before { position: absolute; top: 214px; bottom: 34px; left: 17px; width: 1px; background: #9ab8ae; content: ''; }
  .checkpoint-hub { grid-column: 1; grid-row: auto; min-height: 210px; margin-left: -22px; padding: 28px 20px; }
  .checkpoint-hub-mark { width: 48px; height: 48px; margin-bottom: 20px; }
  .checkpoint-hub strong { font-size: 20px; }
  .checkpoint-node, .checkpoint-node-1, .checkpoint-node-2, .checkpoint-node-3, .checkpoint-node-4 { grid-column: 1; grid-row: auto; min-height: 110px; border-top-width: 1px; padding: 20px 20px 20px 24px; }
  .checkpoint-node::before { display: block; top: 27px; left: -10px; }
  .checkpoint-node span { margin-bottom: 9px; }
  .checkpoint-node h3 { font-size: 16px; }
  .service-image { height: 220px; }
  .process-row { grid-template-columns: 1fr; }
  .process-row article { min-height: 130px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-row article:nth-child(n+2) { border-top: 0; }
  .evidence-grid { grid-template-columns: 1fr 1fr; gap: 7px; }
  .evidence-grid figure { height: 220px; }
  .report-visual { height: 430px; }
  .closing-cta .wrap { align-items: flex-start; flex-direction: column; }
  .closing-cta .wrap > div { width: 100%; flex-wrap: wrap; }
  .page-intro, .service-hero { min-height: 430px; }
  .page-intro .wrap, .service-hero .wrap { padding-bottom: 42px; }
  .page-intro.compact-intro { min-height: 310px; }
  .page-intro p:not(.eyebrow), .service-hero p:not(.eyebrow) { font-size: 15px; }
  .section-index .wrap { gap: 20px; }
  .section-index { top: 72px; }
  .service-band > img { height: 300px; }
  .detail-list { grid-template-columns: 1fr; }
  .detail-list div { min-height: 82px; }
  .standard-term > summary { min-height: 88px; grid-template-columns: minmax(0, 1fr) 36px; gap: 6px 14px; padding: 16px 15px; }
  .standard-term > summary .standard-code { grid-column: 1; grid-row: 1; }
  .standard-term > summary strong { grid-column: 1; grid-row: 2; font-size: 17px; }
  .standard-term > summary small { display: none; }
  .standard-term > summary::after { grid-column: 2; grid-row: 1 / 3; }
  .standard-term-body { padding: 26px 15px 22px; }
  .standard-definition-grid, .standard-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .standard-term-body footer { align-items: flex-start; flex-direction: column; }
  .result-grid { grid-template-columns: repeat(2, 1fr); }
  .request-shell { grid-template-columns: 1fr; }
  .request-progress { grid-template-columns: repeat(4, 1fr); }
  .request-progress button { justify-content: center; padding: 8px; font-size: 0; }
  .request-progress button span { font-size: 11px; }
  .request-form { padding: 22px; }
  .request-form legend { font-size: 22px; }
  .request-form .service-fields, .request-form .service-documents { padding: 17px; }
  .request-form .service-fields > legend, .request-form .service-documents > legend { font-size: 16px; }
  .document-checklist { grid-template-columns: 1fr; }
  .precheck-output ul, .precheck-doc-grid { grid-template-columns: 1fr; }
  .precheck-docs { margin-top: 48px; }
  .precheck-docs .section-heading h3 { font-size: 26px; }
  .request-aside { position: static; }
  .story-grid, .role-chain { grid-template-columns: 1fr; }
  .story-grid article, .role-chain article { min-height: 150px; border-right: 0; border-bottom: 1px solid var(--line); }
  .story-grid h3, .role-chain h3 { margin-top: 24px; }
  .about-facts, .industry-list { grid-template-columns: 1fr; }
  .about-scene-band { padding-bottom: 68px; }
  .about-scene-grid { height: auto; grid-template-columns: 1fr; grid-template-rows: 300px 220px 220px; }
  .about-scene-1 { grid-row: auto; }
  .coverage-visual { min-height: 320px; }
  .coverage-visual figcaption { right: 20px; bottom: 20px; left: 20px; }
  .coverage-visual figcaption strong { font-size: 48px; }
  .region-list { grid-template-columns: 1fr; }
  .region-list article { min-height: 96px; }
  .client-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .client-logo-grid figure { min-height: 116px; grid-template-rows: 68px auto; padding: 12px; }
  .client-logo-grid img { height: 58px; }
  .feedback-layout { margin-top: 56px; padding-top: 46px; }
  .testimonial-list blockquote { min-height: 150px; padding: 23px 22px; }
  .testimonial-list blockquote p { font-size: 20px; }
  .authority-grid, .governance-grid { grid-template-columns: 1fr; }
  .authority-grid article, .governance-grid article { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .authority-grid article:nth-child(n+3), .governance-grid article:nth-child(n+3) { border-top: 0; }
  .authority-grid h3, .governance-grid h3 { margin-top: 24px; }
  .portal-visual { min-height: 390px; }
  .portal-visual > div:last-child { left: 20px; bottom: 36px; padding-right: 20px; }
  .secure-invite-page { padding: 58px 0; background: var(--soft); }
  .secure-invite-layout { grid-template-columns: 1fr; gap: 34px; }
  .secure-invite-copy h1 { font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .insights-intro .wrap > strong { right: 12px; font-size: 72px; }
  .insight-toolbar { align-items: stretch; flex-direction: column; gap: 12px; }
  .insight-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 7px; }
  .insight-filters button { flex: 0 0 auto; }
  .insight-list-card { min-height: 0; }
  .insight-card-image { height: 220px; }
  .insight-card-content { padding: 22px; }
  .insight-list-card h2 { font-size: 21px; }
  .insight-card-footer { align-items: flex-start; flex-direction: column; }
  .article-hero { padding: 68px 0 56px; }
  .article-hero > .wrap > p:not(.eyebrow) { font-size: 16px; }
  .article-layout { grid-template-columns: 1fr; gap: 28px; padding-block: 50px 68px; }
  .article-toc { position: static; grid-template-columns: 1fr; }
  .article-body figure { height: 280px; margin-bottom: 40px; }
  .article-body section h2 { font-size: 27px; }
  .article-body section p:not(.eyebrow) { font-size: 16px; }
  .legacy-article-layout { padding-block: 48px 68px; }
  .legacy-article-body { font-size: 16px; }
  .legacy-article-body h2 { font-size: 27px; }
  .legacy-article-body h3 { font-size: 22px; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

.not-found-page { min-height: 100svh; display: grid; place-items: center; margin: 0; padding: 28px; background: #f4f7f5; }
.not-found-page main { width: min(720px, 100%); border-top: 5px solid var(--green); padding: 54px; background: #fff; box-shadow: 0 22px 70px rgba(5, 32, 27, .12); text-align: center; }
.not-found-brand { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 42px; color: var(--forest); font-weight: 800; }
.not-found-brand img { width: 82px; height: 54px; object-fit: contain; }
.not-found-page h1 { margin-bottom: 12px; color: var(--forest); }
.not-found-page nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 30px 0; }
.not-found-contact { color: var(--muted); font-size: 13px; }
@media (max-width: 680px) {
  .not-found-page { padding: 14px; }
  .not-found-page main { padding: 38px 22px; }
  .not-found-brand { margin-bottom: 30px; }
}

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