:root {
    --color-primary: #0f3d2e;
    --color-primary-dark: #08251c;
    --color-primary-soft: #1f6b4a;
    --color-accent: #b7d7c2;
    --color-accent-bright: #6fbf8a;
    --color-bg: #f7f8f5;
    --color-surface: #fff;
    --color-text: #17211c;
    --color-muted: #5f6f66;
    --ink: var(--color-text);
    --ink-soft: var(--color-muted);
    --forest: var(--color-primary);
    --forest-2: var(--color-primary-soft);
    --lime: var(--color-accent-bright);
    --lime-soft: #dfede3;
    --paper: var(--color-bg);
    --soft: #eef2ed;
    --line: #d4ddd6;
    --white: var(--color-surface);
    --radius: 18px;
    --shadow: 0 24px 80px rgba(8, 37, 28, .09);
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.04em; line-height: 1.05; }
h1 { font-size: clamp(3.25rem, 8vw, 7.25rem); font-weight: 650; }
h2 { font-size: clamp(2.3rem, 5vw, 4.6rem); font-weight: 620; }
h3 { font-size: 1.45rem; }
p { color: var(--ink-soft); }
::selection { color: var(--forest); background: var(--lime); }
:focus-visible { outline: 3px solid #2f8057; outline-offset: 4px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(80px, 10vw, 144px) 0; }
.section--soft { background: var(--soft); }
.section--flush-top { padding-top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; transform: translateY(-150%); padding: 10px 16px; color: var(--white); background: var(--forest); border-radius: 6px; }
.skip-link:focus { transform: none; }

.eyebrow { margin-bottom: 22px; color: #557066; font-size: .72rem; font-weight: 750; letter-spacing: .15em; line-height: 1.4; text-transform: uppercase; }
.eyebrow--light { color: #b8d1c7; }
.lede { color: var(--ink); font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.5; }
.small-note { font-size: .88rem; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 16px; padding: 0 23px; color: var(--white); background: var(--forest); border: 1px solid var(--forest); border-radius: 8px; font-weight: 650; line-height: 1; text-decoration: none; transition: background .2s, transform .2s, border-color .2s; }
.button:hover { background: var(--forest-2); border-color: var(--forest-2); transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 0 17px; font-size: .84rem; }
.button--outline { color: var(--forest); background: transparent; }
.button--outline:hover { color: var(--white); }
.button--light { color: var(--forest); background: var(--lime); border-color: var(--lime); white-space: nowrap; }
.button--light:hover { background: #8ed2a5; border-color: #8ed2a5; }
.button:disabled { cursor: not-allowed; opacity: .5; transform: none; }
.button-group { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.text-link, .card-link { display: inline-flex; align-items: center; gap: 14px; color: var(--ink); font-weight: 650; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.text-link--light { color: var(--white); }
.card-link { margin-top: auto; text-decoration: none; }
.card-link span, .text-link span { transition: transform .2s; }
.card-link:hover span, .text-link:hover span { transform: translateX(4px); }

.site-header { position: relative; z-index: 100; border-bottom: 1px solid #214c3b; background: #061b13; }
.site-header__inner { display: flex; min-height: 74px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--white); font-weight: 720; letter-spacing: -.03em; text-decoration: none; }
.brand__mark { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; color: var(--color-primary-dark); background: var(--lime); border: 1px solid #8ed2a5; border-radius: 9px; font-size: .67rem; font-weight: 800; letter-spacing: -.02em; }
.brand__word { font-size: 1.16rem; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav ul { display: flex; align-items: center; gap: 22px; padding: 0; margin: 0; list-style: none; }
.site-nav ul a { position: relative; color: #d5e3dc; font-size: .86rem; font-weight: 580; text-decoration: none; }
.site-nav ul a::after { position: absolute; right: 0; bottom: -10px; left: 0; height: 2px; background: var(--lime); content: ''; transform: scaleX(0); transition: transform .2s; }
.site-nav ul a:hover::after, .site-nav ul a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav > .button { color: var(--color-primary-dark); background: var(--lime); border-color: var(--lime); }
.site-nav > .button:hover { background: #8ed2a5; border-color: #8ed2a5; }
.site-nav > .button--current { box-shadow: 0 0 0 2px #061b13, 0 0 0 4px var(--lime); }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 6px; padding: 0; background: transparent; border: 0; }
.nav-toggle i { display: block; width: 22px; height: 2px; background: #e1ece6; transition: transform .2s; }

.hero { position: relative; overflow: hidden; padding: clamp(82px, 10vw, 145px) 0 0; }
.hero::before { position: absolute; width: 680px; height: 680px; right: -220px; top: -260px; border: 1px solid var(--line); border-radius: 50%; content: ''; opacity: .55; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); align-items: center; gap: 60px; }
.hero__content { position: relative; z-index: 2; }
.hero h1 { margin-bottom: 28px; }
.hero h1 span { color: var(--color-muted); font-weight: 480; }
.hero__lede { max-width: 670px; margin-bottom: 18px; color: var(--ink); font-size: clamp(1.35rem, 2.3vw, 1.8rem); line-height: 1.42; }
.hero__support { max-width: 630px; margin-bottom: 38px; font-size: 1.02rem; }
.hero-system { position: relative; width: min(100%, 480px); aspect-ratio: 1; margin-left: auto; }
.system-orbit { position: absolute; border: 1px solid #ccd6ce; border-radius: 50%; }
.system-orbit::before, .system-orbit::after { position: absolute; width: 7px; height: 7px; background: #99aa9d; border: 4px solid var(--paper); border-radius: 50%; content: ''; }
.system-orbit--outer { inset: 2%; }
.system-orbit--outer::before { top: 19%; right: 12%; }
.system-orbit--outer::after { bottom: 8%; left: 25%; }
.system-orbit--inner { inset: 20%; border-style: dashed; }
.system-orbit--inner::before { top: -6px; left: 48%; background: var(--lime); }
.system-core { position: absolute; top: 50%; left: 50%; display: flex; width: 124px; height: 124px; align-items: center; justify-content: center; flex-direction: column; color: var(--white); background: var(--forest); border: 11px solid #e4e9e3; border-radius: 50%; box-shadow: var(--shadow); transform: translate(-50%, -50%); }
.system-core span { font-size: 1.55rem; font-weight: 800; letter-spacing: -.05em; }
.system-core small { color: #c3d4ce; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.system-node { position: absolute; display: flex; align-items: center; gap: 9px; padding: 9px 12px; color: #395047; background: var(--white); border: 1px solid var(--line); border-radius: 99px; box-shadow: 0 10px 28px rgba(15, 38, 30, .08); font-size: .72rem; font-weight: 700; }
.system-node i { width: 8px; height: 8px; background: var(--lime); border: 2px solid var(--forest); border-radius: 50%; }
.system-node--build { top: 12%; left: 12%; }
.system-node--secure { top: 30%; right: 0; }
.system-node--grow { right: 16%; bottom: 13%; }
.system-status { position: absolute; bottom: 1%; left: 2%; display: flex; align-items: center; gap: 9px; color: #5d7068; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; }
.system-status i { width: 7px; height: 7px; background: #6fad35; border-radius: 50%; box-shadow: 0 0 0 5px #e5f3d8; }
.trust-line { display: flex; justify-content: space-between; gap: 20px; padding-top: 95px; padding-bottom: 28px; margin-top: 70px; border-top: 1px solid var(--line); color: #68776f; font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.section-heading { max-width: 820px; margin-bottom: 58px; }
.section-heading h2 { margin-bottom: 25px; }
.section-heading > p:last-child { max-width: 620px; font-size: 1.08rem; }
.section-heading--split { display: grid; max-width: none; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 80px; }
.section-heading--split > p, .section-heading--split > div:last-child { padding-bottom: 7px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; display: flex; min-height: 440px; flex-direction: column; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s; }
.service-card:hover { background: var(--white); }
.service-card__number { color: #74847d; font-size: .72rem; }
.service-card__mark { position: relative; width: 104px; height: 104px; margin: 58px 0 46px; border: 1px solid #cbd6ce; border-radius: 50%; }
.service-card__mark::before { position: absolute; inset: 24px; background: var(--forest); border-radius: 50%; content: ''; }
.service-card__mark i { position: absolute; width: 7px; height: 7px; background: var(--lime); border: 2px solid var(--forest); border-radius: 50%; }
.service-card__mark i:nth-child(1) { top: 3px; left: 47px; }.service-card__mark i:nth-child(2) { top: 65px; right: 7px; }.service-card__mark i:nth-child(3) { bottom: 8px; left: 13px; }
.service-card h3 { margin-bottom: 15px; font-size: 2rem; }
.service-card p { margin-bottom: 32px; }

.care-feature { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(60px, 10vw, 130px); }
.care-console { padding: 24px; background: #e7ebe5; border: 1px solid #d3dbd3; border-radius: 22px; box-shadow: var(--shadow); }
.care-console__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 19px; color: #5f7069; border-bottom: 1px solid #ccd5cd; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.care-console__top i { width: 8px; height: 8px; background: #70a940; border-radius: 50%; }
.health-ring { display: flex; width: 210px; height: 210px; align-items: center; justify-content: center; flex-direction: column; margin: 38px auto; background: radial-gradient(circle, #e7ebe5 58%, transparent 59%), conic-gradient(var(--forest) 0 87%, #cad3ca 87%); border-radius: 50%; }
.health-ring strong { color: var(--ink); font-size: 1.35rem; line-height: 1.05; text-align: center; }
.health-ring span { margin-top: 8px; color: #6d7d75; font-size: .63rem; text-transform: uppercase; }
.health-row { display: flex; justify-content: space-between; padding: 13px 0; border-top: 1px solid #ccd5cd; color: #65766e; font-size: .76rem; }
.health-row span { display: flex; align-items: center; gap: 8px; }.health-row span i { width: 6px; height: 6px; background: #6faa39; border-radius: 50%; }.health-row b { color: var(--ink); font-weight: 650; }
.care-feature__content h2 { margin-bottom: 28px; }
.check-list { display: grid; gap: 13px; padding: 0; margin: 30px 0 38px; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: #3d4f48; }
.check-list li::before { position: absolute; top: .5em; left: 0; width: 14px; height: 14px; background: var(--lime-soft); border: 1px solid #9cc96b; border-radius: 50%; content: ''; }
.check-list li::after { position: absolute; top: .77em; left: 4px; width: 6px; height: 3px; border-bottom: 1.5px solid var(--forest); border-left: 1.5px solid var(--forest); content: ''; transform: rotate(-45deg); }
.check-list--columns { grid-template-columns: 1fr 1fr; }

.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.type-grid article { display: flex; min-height: 360px; flex-direction: column; padding: 32px; background: var(--soft); border-radius: var(--radius); }
.type-grid__tag { align-self: flex-start; padding: 6px 10px; margin-bottom: 75px; color: #52665d; background: var(--white); border: 1px solid var(--line); border-radius: 99px; font-size: .65rem; font-weight: 700; text-transform: uppercase; }
.type-grid h3 { font-size: 1.85rem; }.type-grid p { margin-bottom: 25px; }.type-grid a { margin-top: auto; font-size: .88rem; font-weight: 700; text-underline-offset: 5px; }
.security-band { color: var(--white); background: var(--forest); }
.security-band h2, .security-band p { color: var(--white); }
.security-band p { color: #bfd0c9; }
.security-band__grid { display: grid; grid-template-columns: 1fr .82fr; align-items: center; gap: 120px; }
.security-band__grid h2 { margin-bottom: 30px; }.security-band__grid > div:first-child > p:not(.eyebrow) { max-width: 600px; margin-bottom: 33px; }
.security-stack { position: relative; padding: 20px 0; }.security-stack::before { position: absolute; top: 0; bottom: 0; left: 34px; width: 1px; background: #527067; content: ''; }
.security-stack div { position: relative; display: flex; align-items: center; gap: 23px; padding: 20px 24px; margin: 10px 0; color: #d9e6e1; background: #21443b; border: 1px solid #31564b; border-radius: 8px; font-size: .85rem; }
.security-stack div span { position: relative; z-index: 2; width: 22px; color: var(--lime); font-size: .62rem; }.security-stack div i { width: 6px; height: 6px; margin-left: auto; background: var(--lime); border-radius: 50%; }
.project-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.project-preview__visual { position: relative; display: flex; height: 320px; align-items: center; justify-content: center; margin-bottom: 26px; overflow: hidden; background: var(--soft); border-radius: var(--radius); }
.project-preview__visual > span { position: absolute; top: 24px; left: 24px; color: #718179; font-size: .7rem; }
.project-preview__visual div { width: 55%; padding: 25px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); }
.project-preview__visual i { display: block; height: 6px; margin: 15px 0; background: #dbe2dc; border-radius: 8px; }.project-preview__visual i:first-child { width: 60%; height: 12px; background: var(--forest); }.project-preview__visual i:last-child { width: 75%; }
.project-preview h3 { margin-bottom: 13px; font-size: 1.8rem; }.project-preview .eyebrow { margin-bottom: 11px; }

.section--cta { padding-top: 0; }
.cta-panel { display: flex; min-height: 350px; align-items: center; justify-content: space-between; gap: 60px; padding: clamp(38px, 7vw, 80px); color: var(--white); background: var(--forest); border-radius: 22px; }
.cta-panel h2 { max-width: 750px; margin-bottom: 18px; color: var(--white); }.cta-panel p:not(.eyebrow) { max-width: 650px; margin: 0; color: #bed0c9; }.cta-panel .eyebrow { color: var(--lime); }

.page-hero { padding-bottom: 95px; }
.page-hero__inner { max-width: 1180px; }
.page-hero h1 { max-width: 1080px; margin-bottom: 34px; font-size: clamp(3.3rem, 7vw, 6.8rem); }
.page-hero .lede { max-width: 760px; color: #566a61; }
.solution-list { border-top: 1px solid var(--line); }
.solution { display: grid; grid-template-columns: 280px 1fr; gap: 60px; padding: 100px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 30px; }
.solution__index > span { color: #708078; font-size: .72rem; }
.mini-architecture { position: relative; width: 175px; height: 175px; margin-top: 48px; border: 1px solid #cbd5cd; border-radius: 50%; }
.mini-architecture::before { position: absolute; inset: 47px; background: var(--forest); border-radius: 9px; content: ''; }
.mini-architecture i { position: absolute; width: 9px; height: 9px; background: var(--lime); border: 2px solid var(--forest); border-radius: 50%; }.mini-architecture i:nth-child(1) { top: 0; left: 82px; }.mini-architecture i:nth-child(2) { top: 80px; right: -4px; }.mini-architecture i:nth-child(3) { bottom: 4px; left: 34px; }.mini-architecture i:nth-child(4) { top: 49px; left: 5px; }
.mini-architecture--modules::before { inset: 53px 40px; border-radius: 3px; box-shadow: 0 -19px 0 #89a195, 0 19px 0 #365d52; }
.mini-architecture--focus::before { inset: 60px; border-radius: 50%; box-shadow: 0 0 0 19px #d7dfd8; }
.solution__body { max-width: 760px; }.solution__body h2 { margin-bottom: 27px; font-size: clamp(2.5rem, 5vw, 4.3rem); }.solution__body > p { max-width: 690px; }.solution__fit { padding: 21px 24px; margin-top: 32px; background: var(--soft); border-left: 3px solid var(--forest); }
.choice-panel { max-width: 920px; }.choice-panel h2 { margin-bottom: 35px; }.choice-panel > p:last-child { max-width: 720px; font-size: 1.08rem; }

.care-manifesto { display: grid; grid-template-columns: 1.2fr .8fr; gap: 100px; padding-top: 90px; border-top: 1px solid var(--line); }
.display-quote { color: var(--ink); font-size: clamp(2rem, 4vw, 3.7rem); font-weight: 520; letter-spacing: -.04em; line-height: 1.22; }
.care-manifesto > div { padding-top: 10px; }.care-manifesto > div p { font-size: 1.05rem; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #cfd8d0; border-left: 1px solid #cfd8d0; }
.feature-grid article { min-height: 270px; padding: 28px; border-right: 1px solid #cfd8d0; border-bottom: 1px solid #cfd8d0; }.feature-grid article > span { display: block; margin-bottom: 54px; color: #73837b; font-size: .66rem; }.feature-grid h3 { margin-bottom: 14px; font-size: 1.25rem; }.feature-grid p { font-size: .9rem; }
.care-rhythm { display: grid; grid-template-columns: .75fr 1.25fr; gap: 110px; }.care-rhythm > div h2 { margin-bottom: 28px; }.care-rhythm > div p { margin-bottom: 30px; }
.rhythm-list { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }.rhythm-list li { display: grid; grid-template-columns: 90px 120px 1fr; align-items: baseline; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }.rhythm-list span { color: #6e7f77; font-size: .68rem; font-weight: 700; text-transform: uppercase; }.rhythm-list strong { font-size: 1.2rem; }.rhythm-list p { margin: 0; font-size: .9rem; }
.care-promise { display: grid; grid-template-columns: 1fr .75fr; gap: 110px; align-items: center; }.care-promise p:last-child { margin-bottom: 0; }

.security-principle { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 110px; padding-top: 80px; border-top: 1px solid var(--line); }
.security-diagram { position: relative; display: flex; width: 390px; max-width: 100%; aspect-ratio: 1; align-items: center; justify-content: center; border: 1px solid #cad5cd; border-radius: 50%; }
.security-diagram::before { position: absolute; inset: 17%; border: 1px dashed #b7c5bb; border-radius: 50%; content: ''; }.security-diagram__core { position: relative; z-index: 2; display: flex; width: 120px; height: 120px; align-items: center; justify-content: center; color: var(--white); background: var(--forest); border-radius: 50%; font-weight: 700; line-height: 1.1; text-align: center; }
.security-diagram__layer span { position: absolute; padding: 7px 11px; background: var(--paper); border: 1px solid var(--line); border-radius: 99px; color: #596b63; font-size: .65rem; font-weight: 700; text-transform: uppercase; }.security-diagram__layer span:nth-child(1) { top: 4%; left: 40%; }.security-diagram__layer span:nth-child(2) { top: 46%; right: -5%; }.security-diagram__layer span:nth-child(3) { bottom: 3%; left: 38%; }.security-diagram__layer span:nth-child(4) { top: 46%; left: -5%; }
.security-principle h2 { margin-bottom: 28px; }.security-principle > div:last-child { max-width: 690px; }
.standard-list { border-top: 1px solid #cdd6ce; }.standard-list article { display: grid; grid-template-columns: 110px 1fr; padding: 34px 0; border-bottom: 1px solid #cdd6ce; }.standard-list article > span { color: #73847b; font-size: .68rem; }.standard-list article > div { display: grid; grid-template-columns: .65fr 1.35fr; gap: 45px; }.standard-list h3 { margin: 0; }.standard-list p { max-width: 620px; margin: 0; }
.two-paths > .section-heading { max-width: 900px; }.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }.path-grid article { padding: clamp(28px, 5vw, 48px); background: var(--soft); border-radius: var(--radius); }.path-grid article > span { display: block; margin-bottom: 60px; color: #61736a; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }.path-grid h3 { font-size: 2rem; }.plain-list { padding: 25px 0 0; margin: 30px 0 0; border-top: 1px solid var(--line); list-style: none; }.plain-list li { padding: 8px 0; color: #52645c; }

.notice { display: grid; grid-template-columns: 180px 1fr; padding: 24px; margin-bottom: 80px; background: var(--lime-soft); border: 1px solid #d1e9b7; border-radius: 10px; }.notice span { color: #456136; font-size: .7rem; font-weight: 750; text-transform: uppercase; }.notice p { max-width: 740px; margin: 0; color: #40533b; }
.project-list { display: grid; gap: 110px; }.project-card { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 75px; }.project-card:nth-child(even) .project-card__visual { order: 2; }.project-card__visual { position: relative; display: flex; min-height: 440px; align-items: center; justify-content: center; background: var(--soft); border-radius: var(--radius); }.project-card__visual > span { position: absolute; top: 28px; left: 28px; color: #718178; font-size: .7rem; }.project-card__lines { width: 60%; padding: 35px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }.project-card__lines i { display: block; width: 100%; height: 7px; margin: 15px 0; background: #d8dfd9; border-radius: 5px; }.project-card__lines i:first-child { width: 65%; height: 15px; background: var(--forest); }.project-card__lines i:last-child { width: 80%; }.project-card__body h2 { margin-bottom: 38px; font-size: clamp(2.2rem, 4vw, 3.6rem); }.project-card__details { margin: 0; }.project-card__details div { display: grid; grid-template-columns: 120px 1fr; gap: 12px; padding: 15px 0; border-top: 1px solid var(--line); }.project-card__details dt { color: #6f8077; font-size: .68rem; font-weight: 700; text-transform: uppercase; }.project-card__details dd { margin: 0; color: #465950; }
.outcomes { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; }.outcome-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #cfd8d0; border-left: 1px solid #cfd8d0; }.outcome-grid article { min-height: 220px; padding: 24px; border-right: 1px solid #cfd8d0; border-bottom: 1px solid #cfd8d0; }.outcome-grid span { color: #72827a; font-size: .65rem; }.outcome-grid h3 { margin-top: 45px; margin-bottom: 12px; }.outcome-grid p { margin: 0; font-size: .88rem; }

.story-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; padding-top: 90px; border-top: 1px solid var(--line); }.story-grid h2 { max-width: 420px; }.story-copy { max-width: 720px; }.story-copy p { font-size: 1.07rem; }.story-copy .lede { font-size: 1.4rem; }
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #ccd6ce; border-left: 1px solid #ccd6ce; }.principle-grid article { min-height: 280px; padding: 27px; border-right: 1px solid #ccd6ce; border-bottom: 1px solid #ccd6ce; }.principle-grid span { color: #73837b; font-size: .65rem; }.principle-grid h3 { margin-top: 65px; }.principle-grid p { font-size: .9rem; }
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 105px; }.partner-visual { position: relative; display: grid; grid-template-columns: 1fr 80px 1fr; align-items: center; padding: 75px 40px; background: var(--soft); border-radius: var(--radius); }.partner-visual__a, .partner-visual__b { display: flex; aspect-ratio: 1; align-items: center; justify-content: center; border-radius: 50%; text-align: center; font-weight: 700; line-height: 1.2; }.partner-visual__a { color: var(--ink); background: var(--white); border: 1px solid var(--line); }.partner-visual__b { color: var(--white); background: var(--forest); }.partner-visual__line { height: 1px; background: #9ead9f; }.partner-visual__line i { display: block; width: 8px; height: 8px; margin: -4px auto; background: var(--lime); border: 2px solid var(--forest); border-radius: 50%; }.partner-visual > span { position: absolute; bottom: 25px; left: 0; width: 100%; color: #6c7e74; font-size: .65rem; font-weight: 700; text-align: center; text-transform: uppercase; letter-spacing: .1em; }

.contact-hero { padding-top: clamp(80px, 10vw, 140px); }.contact-grid { display: grid; grid-template-columns: 1fr .82fr; align-items: start; gap: clamp(60px, 9vw, 120px); }.contact-intro h1 { font-size: clamp(3.2rem, 6vw, 5.8rem); }.contact-intro > .lede { max-width: 600px; margin-bottom: 34px; }.contact-direct { margin-top: 55px; border-top: 1px solid var(--line); }.contact-direct > div { display: grid; grid-template-columns: 100px 1fr; padding: 18px 0; border-bottom: 1px solid var(--line); }.contact-direct span { color: #708178; font-size: .68rem; font-weight: 700; text-transform: uppercase; }.contact-direct a, .contact-direct p { margin: 0; color: var(--ink); font-weight: 620; }
.contact-guide { padding: clamp(30px, 5vw, 52px); background: var(--soft); border-radius: var(--radius); }.contact-guide h2 { margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3.15rem); }.contact-guide > p:not(.eyebrow) { margin-bottom: 34px; }.contact-guide ul { padding: 0; margin: 0; border-top: 1px solid var(--line); list-style: none; }.contact-guide li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }.contact-guide li > span { color: #718179; font-size: .66rem; font-weight: 700; }.contact-guide strong { display: block; margin-bottom: 4px; color: var(--ink); }.contact-guide li p { margin: 0; font-size: .9rem; }
.next-steps { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }.next-steps ol { padding: 0; margin: 0; border-top: 1px solid var(--line); list-style: none; }.next-steps li { display: grid; grid-template-columns: 60px 1fr; padding: 24px 0; border-bottom: 1px solid var(--line); }.next-steps li > span { color: #73837b; font-size: .67rem; }.next-steps h3 { margin-bottom: 8px; }.next-steps p { margin: 0; }
.error-page { min-height: 70vh; }.error-page .container { max-width: 900px; }.error-page h1 { margin-bottom: 25px; font-size: clamp(3rem, 7vw, 6rem); }.error-page .lede { margin-bottom: 35px; }

/* Small labels meet WCAG AA contrast on the light page surfaces. */
.service-card__number,
.health-ring span,
.project-preview__visual > span,
.solution__index > span,
.feature-grid article > span,
.rhythm-list span,
.standard-list article > span,
.path-grid article > span,
.project-card__visual > span,
.outcome-grid span,
.principle-grid span,
.partner-visual > span,
.contact-direct span,
.contact-guide li > span,
.next-steps li > span { color: #5d7068; }

.site-footer { padding: 75px 0 25px; color: var(--white); background: #061b13; }
.site-footer__main { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; padding-bottom: 70px; }.brand--footer { margin-bottom: 22px; }.brand--footer .brand__mark { width: 38px; height: 38px; border-radius: 10px; }.brand--footer .brand__word { font-size: 1.35rem; }.site-footer__main > div:first-child p { max-width: 360px; color: #a9bbb2; }.site-footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }.site-footer__nav h2 { margin-bottom: 22px; color: #8ba499; font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }.site-footer__nav a { display: block; margin: 10px 0; color: #d7e4dd; font-size: .9rem; text-decoration: none; }.site-footer__nav a:hover { color: var(--lime); }.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 23px; border-top: 1px solid #26483a; }.site-footer__bottom p { margin: 0; color: #92a89e; font-size: .72rem; }

@media (max-width: 980px) {
    .nav-toggle { display: flex; }
    .nav-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(4px) rotate(45deg); }.nav-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-4px) rotate(-45deg); }
    .site-nav { position: fixed; top: 74px; right: 0; bottom: 0; left: 0; display: none; align-items: stretch; flex-direction: column; padding: 35px 20px; background: var(--color-primary-dark); }.site-nav[data-open] { display: flex; }.site-nav ul { align-items: stretch; flex-direction: column; gap: 0; }.site-nav ul li { border-bottom: 1px solid #28503f; }.site-nav ul a { display: block; padding: 17px 0; color: #e0ebe5; font-size: 1.4rem; }.site-nav ul a[aria-current="page"] { color: var(--lime); }.site-nav ul a::after { display: none; }.site-nav .button { margin-top: auto; }
    .hero__grid { grid-template-columns: 1fr; }.hero__content { max-width: 790px; }.hero-system { width: min(80vw, 500px); margin: 20px auto 0; }
    .section-heading--split { grid-template-columns: 1fr; gap: 10px; }.service-card { min-height: 400px; padding: 25px; }.service-card__mark { margin: 45px 0 35px; }
    .care-feature, .security-band__grid, .security-principle, .partner-grid { grid-template-columns: 1fr; }.care-console { width: min(100%, 480px); margin: auto; }.security-stack { max-width: 650px; }.security-diagram { margin: auto; }
    .feature-grid, .principle-grid { grid-template-columns: 1fr 1fr; }.care-rhythm, .care-promise, .outcomes, .story-grid, .contact-grid, .next-steps { grid-template-columns: 1fr; gap: 55px; }
    .solution { grid-template-columns: 190px 1fr; gap: 30px; }.mini-architecture { width: 150px; height: 150px; }.mini-architecture i:nth-child(1) { left: 69px; }
    .standard-list article > div { grid-template-columns: 1fr; gap: 10px; }.project-card { gap: 40px; }.project-card__visual { min-height: 360px; }.partner-visual { max-width: 620px; }.site-footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .site-header__inner { min-height: 70px; }.brand__mark { width: 32px; height: 32px; }.brand__word { font-size: 1.08rem; }.site-nav { top: 70px; }
    .container { width: min(calc(100% - 30px), var(--container)); }.section { padding: 82px 0; }.section--flush-top { padding-top: 10px; }.section--cta { padding-top: 0; }
    .hero { padding-top: 72px; }.hero h1 { font-size: clamp(3.2rem, 17vw, 5rem); }.hero__support { font-size: .95rem; }.hero-system { width: min(96vw, 430px); }.system-core { width: 100px; height: 100px; }.system-node--build { left: 0; }.system-node--secure { right: -2%; }.system-node--grow { right: 7%; }.trust-line { padding-top: 40px; margin-top: 65px; flex-direction: column; gap: 10px; }
    .button-group { align-items: flex-start; flex-direction: column; }.service-grid, .type-grid, .project-preview-grid, .path-grid { grid-template-columns: 1fr; }.service-card { min-height: 370px; }.section-heading { margin-bottom: 42px; }.section-heading h2 { font-size: 2.65rem; }.care-feature { gap: 55px; }.health-ring { width: 180px; height: 180px; }.check-list--columns { grid-template-columns: 1fr; }.type-grid__tag { margin-bottom: 48px; }.security-band__grid { gap: 55px; }.project-preview__visual { height: 250px; }
    .cta-panel { min-height: 430px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 35px; padding: 34px 28px; }.cta-panel h2 { font-size: 2.55rem; }.cta-panel .button { width: 100%; }
    .page-hero { padding-top: 75px; padding-bottom: 70px; }.page-hero h1 { font-size: clamp(3.1rem, 15vw, 4.8rem); }.solution { grid-template-columns: 1fr; padding: 75px 0; }.solution__index { display: flex; align-items: center; justify-content: space-between; }.mini-architecture { width: 90px; height: 90px; margin: 0 8px 0 0; }.mini-architecture::before { inset: 26px; }.mini-architecture i { width: 7px; height: 7px; }.mini-architecture i:nth-child(1) { left: 41px; }.mini-architecture i:nth-child(2) { top: 41px; }.mini-architecture i:nth-child(3) { left: 17px; }.mini-architecture i:nth-child(4) { top: 25px; }.mini-architecture--modules::before { inset: 29px 22px; box-shadow: 0 -11px 0 #89a195, 0 11px 0 #365d52; }.mini-architecture--focus::before { inset: 32px; box-shadow: 0 0 0 11px #d7dfd8; }.solution__body h2 { font-size: 2.5rem; }
    .care-manifesto { grid-template-columns: 1fr; gap: 30px; padding-top: 65px; }.feature-grid, .principle-grid { grid-template-columns: 1fr; }.feature-grid article, .principle-grid article { min-height: 230px; }.rhythm-list li { grid-template-columns: 70px 1fr; }.rhythm-list li p { grid-column: 2; }.security-diagram { width: min(90vw, 350px); }.standard-list article { grid-template-columns: 45px 1fr; }.path-grid article > span { margin-bottom: 40px; }
    .notice { grid-template-columns: 1fr; gap: 12px; margin-bottom: 65px; }.project-list { gap: 80px; }.project-card { grid-template-columns: 1fr; }.project-card:nth-child(even) .project-card__visual { order: initial; }.project-card__visual { min-height: 280px; }.project-card__details div { grid-template-columns: 100px 1fr; }.outcome-grid { grid-template-columns: 1fr; }.story-grid { padding-top: 65px; }.partner-visual { grid-template-columns: 1fr 45px 1fr; padding: 65px 22px; }.partner-grid { gap: 60px; }
    .contact-intro h1 { font-size: clamp(3rem, 14vw, 4.5rem); }.contact-direct > div { grid-template-columns: 75px 1fr; }.contact-guide { padding: 28px 22px; }
    .site-footer__main { grid-template-columns: 1fr; gap: 50px; }.site-footer__bottom { flex-direction: column; gap: 8px; }.site-footer__nav { gap: 25px; }
}

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