/* ==========================================================================
   Hexagon Secure Digital — design system
   Palette derived from the logo: orange #F58C1F, green #80BC42, navy #24235C.
   ========================================================================== */

@font-face {
	font-family: "Plus Jakarta Sans";
	src: url("../fonts/plus-jakarta-sans-latin-wght-normal.woff2") format("woff2-variations");
	font-weight: 200 800;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Inter";
	src: url("../fonts/inter-latin-wght-normal.woff2") format("woff2-variations");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

:root {
	--navy: #24235c;
	--navy-900: #17163a;
	--navy-800: #1d1c4b;
	--navy-700: #2e2c74;
	--navy-100: #e9e9f4;
	--navy-50: #f3f3fa;
	--orange: #f58c1f;
	--orange-600: #e07a0e;
	--orange-text: #a65400;
	--orange-100: #fdebd8;
	--orange-50: #fff6ec;
	--green: #80bc42;
	--green-600: #6aa52f;
	--green-text: #3b7414;
	--green-100: #e7f3da;
	--green-50: #f4faee;
	--ink: #17163a;
	--body: #3d3f5f;
	--muted: #5f6280;
	--line: #e3e5ee;
	--line-strong: #cfd2e0;
	--mist: #f5f6fa;
	--white: #ffffff;

	--font-head: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
	--font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	--radius: 14px;
	--radius-sm: 10px;
	--radius-lg: 22px;
	--shadow-sm: 0 1px 2px rgba(23, 22, 58, .06), 0 1px 3px rgba(23, 22, 58, .05);
	--shadow: 0 10px 30px -12px rgba(23, 22, 58, .18), 0 2px 6px rgba(23, 22, 58, .05);
	--shadow-lg: 0 30px 60px -24px rgba(23, 22, 58, .28);
	--hex: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	--hex-flat: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
	--container: 1240px;
	--gutter: clamp(16px, 4vw, 40px);
	--header-h: 76px;

	--hexgrid: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cpath d='M28 1 55 16.5v31L28 63 1 47.5v-31z M28 63v34 M1 16.5 -26 1 M55 16.5 82 1' fill='none' stroke='%2324235c' stroke-opacity='.07' stroke-width='1'/%3E%3C/svg%3E");
	--hexgrid-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cpath d='M28 1 55 16.5v31L28 63 1 47.5v-31z M28 63v34 M1 16.5 -26 1 M55 16.5 82 1' fill='none' stroke='%23ffffff' stroke-opacity='.07' stroke-width='1'/%3E%3C/svg%3E");
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--body);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
svg { max-width: 100%; }
svg svg { max-width: none; overflow: visible; }
a { color: var(--navy-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange-text); }
h1, h2, h3, h4, .h1 {
	font-family: var(--font-head);
	color: var(--ink);
	line-height: 1.14;
	letter-spacing: -0.02em;
	margin: 0 0 .5em;
	font-weight: 750;
	text-wrap: balance;
}
h1, .h1 { font-size: clamp(2.25rem, 4.4vw, 3.6rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.1vw, 2.6rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--orange-100); color: var(--ink); }

.screen-reader-text {
	border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
	height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; word-wrap: normal !important;
}
.skip-link {
	position: absolute; left: 16px; top: -60px; z-index: 1000;
	background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px; font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 12px; color: #fff; }

.container { width: 100%; max-width: calc(var(--container) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: calc(820px + 2 * var(--gutter)); }
.center { text-align: center; }
.site-main { display: block; }
.site-main:focus { outline: none; }

/* ---------- Buttons & links ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .55em;
	min-height: 50px; padding: .8em 1.4em; border-radius: 999px;
	font-family: var(--font-head); font-weight: 700; font-size: 1rem; line-height: 1.2;
	text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
	transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn .hsd-icon { transition: transform .2s; }
.btn:hover .hsd-icon { transform: translateX(3px); }
.btn--sm { min-height: 42px; padding: .55em 1.1em; font-size: .93rem; }
.btn--primary { background: var(--navy); color: #fff; box-shadow: 0 8px 20px -10px rgba(36, 35, 92, .7); }
.btn--primary:hover { background: var(--navy-700); color: #fff; }
.btn--orange { background: var(--orange); color: var(--navy-900); }
.btn--orange:hover { background: #ffa243; color: var(--navy-900); }
.btn--outline { border-color: var(--line-strong); color: var(--ink); background: var(--white); }
.btn--outline:hover { border-color: var(--navy); color: var(--navy); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--orange-50); color: var(--navy); }
.btn--ghost-light { border-color: rgba(255, 255, 255, .35); color: #fff; }
.btn--ghost-light:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, .06); }

.link-arrow {
	display: inline-flex; align-items: center; gap: .4em; font-family: var(--font-head);
	font-weight: 700; color: var(--navy); text-decoration: none; font-size: .98rem;
}
.link-arrow .hsd-icon { transition: transform .2s; }
.link-arrow:hover { color: var(--orange-text); }
.link-arrow:hover .hsd-icon { transform: translateX(4px); }

.eyebrow {
	display: inline-flex; align-items: center; gap: .55em;
	font-family: var(--font-head); font-size: .8rem; font-weight: 750; letter-spacing: .12em;
	text-transform: uppercase; color: var(--orange-text); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 14px; height: 16px; background: var(--orange); clip-path: var(--hex); flex: none; }
.eyebrow--pill { background: var(--white); border: 1px solid var(--line); padding: .45em 1em; border-radius: 999px; color: var(--navy); box-shadow: var(--shadow-sm); }
.eyebrow--pill::before { display: none; }
.eyebrow--light, .section--navy .eyebrow { color: #ffc27f; }
.dot { display: inline-block; width: 9px; height: 10px; clip-path: var(--hex); background: var(--navy); flex: none; }
.dot--orange { background: var(--orange); }
.dot--green { background: var(--green); }
.dot--navy { background: #8e8cd8; }

/* ---------- Hex badges ---------- */
.hex-badge {
	display: inline-grid; place-items: center; flex: none;
	width: 52px; height: 58px; clip-path: var(--hex);
	background: var(--navy-50); color: var(--navy);
}
.hex-badge--orange { background: var(--orange-100); color: #8a4400; }
.hex-badge--green { background: var(--green-100); color: #2f6210; }
.hex-badge--navy { background: var(--navy); color: #fff; }
.hex-badge--lg { width: 68px; height: 76px; }
.hex-badge--sm { width: 30px; height: 34px; }

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	isolation: isolate;
	border-bottom: 1px solid transparent;
	transition: border-color .2s, box-shadow .2s;
}
.site-header::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(255, 255, 255, .92); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px); }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 20px -16px rgba(23, 22, 58, .35); }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 0; } }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }
.site-brand img, .site-brand .custom-logo { width: auto; height: 40px; max-width: 280px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 18px; }
.site-nav .menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.site-nav .menu > li { position: relative; display: flex; align-items: center; }
.site-nav .menu a {
	display: block; padding: 10px 11px; font-family: var(--font-head); font-weight: 650; font-size: .95rem;
	color: var(--ink); text-decoration: none; border-radius: 8px; white-space: nowrap;
}
.site-nav .menu > li > a:hover, .site-nav .menu > .current-menu-item > a, .site-nav .menu > .current-menu-ancestor > a, .site-nav .menu > .current_page_parent > a { color: var(--orange-text); }
.submenu-toggle {
	display: inline-grid; place-items: center; width: 26px; height: 26px; margin-left: -8px;
	border: 0; background: transparent; color: var(--muted); cursor: pointer; border-radius: 6px; padding: 0;
}
.submenu-toggle .hsd-icon { transition: transform .2s; }
.submenu-toggle[aria-expanded="true"] .hsd-icon { transform: rotate(180deg); }
.site-nav .sub-menu {
	list-style: none; position: absolute; top: calc(100% + 6px); left: -8px; min-width: 270px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
	padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s, transform .18s, visibility .18s;
}
.site-nav .sub-menu::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.site-nav .sub-menu a { padding: 9px 12px; font-weight: 600; font-size: .93rem; color: var(--body); }
.site-nav .sub-menu a:hover { background: var(--mist); color: var(--navy); }
.site-nav .menu > li:hover > .sub-menu,
.site-nav .menu > li:focus-within > .sub-menu,
.site-nav .menu > li.is-open > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.nav-toggle { display: none; }

@media (max-width: 1180px) {
	.nav-toggle {
		display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
		border: 1px solid var(--line); background: #fff; color: var(--navy); cursor: pointer;
	}
	.nav-toggle__close { display: none; }
	.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
	.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: inline; }
	.site-nav {
		position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
		flex-direction: column; align-items: stretch; gap: 16px;
		background: #fff; padding: 16px var(--gutter) 40px; overflow-y: auto;
		opacity: 0; transform: translateY(-8px); visibility: hidden; pointer-events: none; transition: opacity .2s ease, transform .2s ease, visibility .2s;
	}
	.admin-bar .site-nav { top: calc(var(--header-h) + 46px); }
	.site-nav.is-open { opacity: 1; transform: none; visibility: visible; pointer-events: auto; }
	.site-nav .menu { flex-direction: column; align-items: stretch; gap: 0; }
	.site-nav .menu > li { flex-wrap: wrap; border-bottom: 1px solid var(--line); }
	.site-nav .menu > li > a { flex: 1; padding: 15px 4px; font-size: 1.05rem; }
	.submenu-toggle { width: 44px; height: 44px; margin: 0; }
	.site-nav .sub-menu {
		position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0;
		padding: 0 0 12px 8px; min-width: 0; width: 100%; display: none; background: transparent;
	}
	.site-nav .menu > li.is-open > .sub-menu { display: block; }
	.site-nav__cta { align-self: flex-start; }
	body.nav-open { overflow: hidden; }
}
@media (max-width: 480px) {
	.site-brand img, .site-brand .custom-logo { height: 32px; max-width: 220px; }
	:root { --header-h: 66px; }
}

/* ---------- Sections ---------- */
.section { position: relative; padding-block: clamp(64px, 8vw, 112px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--mist { background: var(--mist); }
.section--hexgrid { background-image: var(--hexgrid); background-size: 56px 97px; }
.section--mist.section--hexgrid { background-color: var(--mist); }
.section--navy { background: var(--navy-900); color: #cfd0e6; overflow: hidden; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .section-head__text { color: #cfd0e6; }
.section__hexlines { position: absolute; inset: 0; background-image: var(--hexgrid-light); background-size: 56px 97px; pointer-events: none;
	mask-image: radial-gradient(ellipse at 80% 20%, #000 10%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at 80% 20%, #000 10%, transparent 70%); }
.section--navy > .container { position: relative; }

.section-head { max-width: 760px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head__text { font-size: 1.12rem; color: var(--muted); margin: 0; }
.split { display: grid; gap: 32px; }
.split--head { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); align-items: end; margin-bottom: clamp(32px, 4vw, 52px); }
.split--head .section-head { margin-bottom: 0; }
.split__aside { display: flex; justify-content: flex-end; }
@media (max-width: 860px) { .split--head { grid-template-columns: 1fr; } .split__aside { justify-content: flex-start; } }

.pill-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.pill-list li, .pill-list a {
	display: inline-flex; align-items: center; padding: .42em .95em; border-radius: 999px; font-size: .9rem; font-weight: 600;
	background: var(--white); border: 1px solid var(--line); color: var(--ink); text-decoration: none;
}
.pill-list a:hover { border-color: var(--navy); }
.pill-list--light li { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .16); color: #e8e8f6; }
.pill-list--sm li { font-size: .84rem; padding: .32em .8em; }

.check-list { list-style: none; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list .hsd-icon { color: var(--green-text); flex: none; margin-top: 3px; }
.check-list--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 20px; }
.check-list--sm { font-size: .93rem; gap: 6px; }
@media (max-width: 560px) { .check-list--2 { grid-template-columns: 1fr; } }

.badge { display: inline-flex; align-items: center; gap: .4em; padding: .22em .7em; border-radius: 999px; font-size: .74rem; font-weight: 700; letter-spacing: .02em; white-space: nowrap; }
.badge::before { content: ""; width: 7px; height: 8px; clip-path: var(--hex); background: currentColor; }
.badge--partner { background: var(--green-100); color: #2f6210; }
.badge--expertise { background: var(--orange-100); color: #8a4400; }
.badge--ecosystem { background: var(--navy-100); color: var(--navy); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 6vw, 72px); overflow: hidden;
	background: radial-gradient(1200px 600px at 85% 10%, var(--orange-50), transparent 60%), radial-gradient(900px 500px at 100% 90%, var(--green-50), transparent 60%), #fff; }
.hero__pattern, .page-hero__pattern { position: absolute; inset: 0; background-image: var(--hexgrid); background-size: 56px 97px; pointer-events: none;
	mask-image: linear-gradient(100deg, transparent 30%, #000 75%); -webkit-mask-image: linear-gradient(100deg, transparent 30%, #000 75%); }
.hero__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(24px, 4vw, 64px); align-items: center; }
.hero__title { font-size: clamp(2.35rem, 5vw, 4.05rem); margin-bottom: .45em; }
.hero__text { font-size: clamp(1.08rem, 1.4vw, 1.22rem); color: var(--muted); max-width: 600px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 26px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.hero__chips a { display: inline-block; padding: .35em .85em; border-radius: 8px; background: var(--navy-50); color: var(--navy); font-weight: 700; font-size: .86rem; text-decoration: none; font-family: var(--font-head); }
.hero__chips a:hover { background: var(--navy); color: #fff; }
.hero__visual { position: relative; }
.hero__caption { text-align: center; font-size: .82rem; color: var(--muted); margin: 8px 0 0; font-weight: 600; letter-spacing: .01em; }
.hero-visual > svg { width: 100%; max-width: 560px; margin-inline: auto; display: block; overflow: visible; }
.hero-ring { fill: none; stroke-width: 15; stroke-linecap: butt; stroke-linejoin: miter; }
.hero-ring--o { stroke: var(--orange); }
.hero-ring--g { stroke: var(--green); }
.hero-link { stroke: var(--navy); stroke-opacity: .16; stroke-width: 1.5; stroke-dasharray: 4 6; }
.hero-node polygon { fill: #fff; stroke: var(--line-strong); stroke-width: 1.5; filter: drop-shadow(0 6px 10px rgba(23, 22, 58, .12)); }
.hero-node .hsd-icon { color: var(--navy); }
.hero-node--o .hsd-icon { color: #b85d00; }
.hero-node--g .hsd-icon { color: #3b7414; }
.hero-node-label { font-family: var(--font-head); font-size: 15px; font-weight: 700; fill: var(--ink); }
.hero-visual svg > .hsd-icon { color: #fff; }
.hero-core-text { font-family: var(--font-head); font-size: 13px; font-weight: 800; letter-spacing: .2em; fill: #ffc27f; }
@media (prefers-reduced-motion: no-preference) {
	.hero-ring { stroke-dasharray: 1400; stroke-dashoffset: 1400; animation: hsd-draw 1.4s cubic-bezier(.3, .7, .2, 1) forwards; animation-delay: var(--d, 0s); }
	.hero-node { animation: hsd-pop .6s cubic-bezier(.3, 1.4, .5, 1) both; animation-delay: calc(.6s + var(--i) * .09s); transform-box: fill-box; transform-origin: center; }
	.hero-link { animation: hsd-dash 12s linear infinite; }
}
@keyframes hsd-draw { to { stroke-dashoffset: 0; } }
@keyframes hsd-pop { from { opacity: 0; transform: scale(.6); } to { opacity: 1; transform: none; } }
@keyframes hsd-dash { to { stroke-dashoffset: -200; } }
@media (max-width: 960px) {
	.hero__inner { grid-template-columns: 1fr; }
	.hero__visual { max-width: 520px; margin-inline: auto; width: 100%; }
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.stats__item { display: flex; flex-direction: column-reverse; padding: 22px 24px; border-left: 1px solid var(--line); }
.stats__item:first-child { border-left: 0; }
.stats dt { font-size: .88rem; color: var(--muted); line-height: 1.35; }
.stats dd { margin: 0 0 4px; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.7rem, 2.6vw, 2.25rem); color: var(--navy); letter-spacing: -0.02em; line-height: 1.1; }
.stats__item:nth-child(odd) dd { color: var(--navy); }
.stats--hero { margin-top: clamp(36px, 5vw, 60px); position: relative; }
.stats--stack { grid-template-columns: 1fr 1fr; }
.stats--stack .stats__item { border-left: 0; border-top: 1px solid var(--line); }
.stats--stack .stats__item:nth-child(-n+2) { border-top: 0; }
.stats--stack .stats__item:nth-child(even) { border-left: 1px solid var(--line); }
.stats--stack .stats__item:last-child:nth-child(odd) { grid-column: 1 / -1; }
@media (max-width: 900px) {
	.stats:not(.stats--stack) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.stats:not(.stats--stack) .stats__item { border-left: 0; border-top: 1px solid var(--line); }
	.stats:not(.stats--stack) .stats__item:nth-child(-n+2) { border-top: 0; }
	.stats:not(.stats--stack) .stats__item:nth-child(even) { border-left: 1px solid var(--line); }
	.stats:not(.stats--stack) .stats__item:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

/* ---------- Six Sides of Vigilance ---------- */
.six-sides { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(24px, 5vw, 72px); align-items: center; }
.six-sides--compact { display: block; }
.six-sides__visual > svg { width: 100%; max-width: 560px; margin-inline: auto; display: block; overflow: visible; }
.six-sides__seg { cursor: pointer; outline: none; }
.six-sides__seg polygon { stroke: #fff; stroke-width: 8; stroke-linejoin: round; transition: fill .2s, transform .25s; transform-origin: 300px 300px; }
.six-sides__seg.tone-orange polygon { fill: var(--orange-100); }
.six-sides__seg.tone-green polygon { fill: var(--green-100); }
.six-sides__seg .hsd-icon { color: var(--navy); transition: color .2s; }
.six-sides__num { font-family: var(--font-head); font-size: 13px; font-weight: 800; fill: var(--muted); letter-spacing: .1em; }
.six-sides__label { font-family: var(--font-head); font-size: 15px; font-weight: 800; fill: var(--ink); letter-spacing: 0; }
.six-sides__seg:hover.tone-orange polygon, .six-sides__seg:focus-visible.tone-orange polygon { fill: #fbd3aa; }
.six-sides__seg:hover.tone-green polygon, .six-sides__seg:focus-visible.tone-green polygon { fill: #cfe7b5; }
.six-sides__seg.is-active.tone-orange polygon { fill: var(--orange); }
.six-sides__seg.is-active.tone-green polygon { fill: var(--green); }
.six-sides__seg.is-active .six-sides__num, .six-sides__seg.is-active .six-sides__label { fill: var(--navy-900); }
.six-sides__seg:focus-visible polygon { stroke: var(--navy); stroke-width: 4; }
.six-sides__core { fill: var(--navy); }
.six-sides__visual svg > .hsd-icon { color: #ffc27f; }
.six-sides__core-title { font-family: var(--font-head); font-weight: 800; font-size: 26px; fill: #fff; letter-spacing: .08em; }
.six-sides__core-sub { font-family: var(--font-head); font-weight: 700; font-size: 14px; fill: #cfd0e6; letter-spacing: .22em; }
.six-sides__core-tag { font-family: var(--font-body); font-size: 12px; fill: #a9ec72; font-style: italic; }
.six-sides__panels { position: relative; }
.six-sides__panel { display: none; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 40px); box-shadow: var(--shadow); border-top: 5px solid var(--orange); }
.six-sides__panel.tone-green { border-top-color: var(--green); }
.six-sides__panel.is-active { display: block; animation: hsd-fade .3s ease; }
.no-js .six-sides__panel { display: block; margin-bottom: 16px; }
.six-sides__panel h3 { font-size: clamp(1.6rem, 2.4vw, 2rem); }
.six-sides__panel-num { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 750; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.six-sides__panel .check-list { margin: 20px 0 24px; }
@keyframes hsd-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (max-width: 900px) { .six-sides { grid-template-columns: 1fr; } .six-sides__visual > svg { max-width: 460px; } }
@media (max-width: 420px) { .six-sides__label { font-size: 17px; } }

.approach-strip, .lifecycle-band { margin-top: clamp(40px, 5vw, 64px); padding: 24px clamp(16px, 3vw, 32px); border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); }
.approach-strip__label, .lifecycle-band__label { font-family: var(--font-head); font-weight: 750; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; text-align: center; }

/* ---------- Hex flow ---------- */
.hex-flow { list-style: none; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); gap: 12px; counter-reset: flow; position: relative; }
.hex-flow__step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.hex-flow__step:not(:last-child)::after {
	content: ""; position: absolute; top: 38px; left: calc(50% + 42px); right: calc(-50% + 42px - 12px);
	height: 2px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 11px);
}
.hex-flow__hex { display: grid; place-items: center; width: 68px; height: 76px; clip-path: var(--hex); background: var(--orange-100); color: #8a4400; flex: none; transition: transform .2s; }
.hex-flow__step.tone-green .hex-flow__hex { background: var(--green-100); color: #2f6210; }
.hex-flow__step.tone-navy .hex-flow__hex { background: var(--navy); color: #fff; }
.hex-flow__step:hover .hex-flow__hex { transform: translateY(-3px); }
.hex-flow__n { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; }
.hex-flow__body strong { display: block; font-family: var(--font-head); color: var(--ink); font-size: 1.02rem; line-height: 1.25; }
.hex-flow__body span { display: block; font-size: .9rem; color: var(--muted); margin-top: 4px; line-height: 1.45; }
.hex-flow--compact .hex-flow__hex { width: 54px; height: 60px; }
.hex-flow--compact .hex-flow__step:not(:last-child)::after { top: 30px; left: calc(50% + 34px); right: calc(-50% + 34px - 12px); }
.hex-flow--compact .hex-flow__body strong { font-size: .95rem; }
.hex-flow--dark .hex-flow__hex { background: rgba(245, 140, 31, .16); color: #ffc27f; }
.hex-flow--dark .hex-flow__step.tone-green .hex-flow__hex { background: rgba(128, 188, 66, .18); color: #a9ec72; }
.hex-flow--dark .hex-flow__body strong { color: #fff; }
.hex-flow--dark .hex-flow__body span { color: #b8b9d6; }
.hex-flow--dark .hex-flow__step:not(:last-child)::after { background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .25) 0 6px, transparent 6px 11px); }
/* chain: 8 nodes in two rows on mid screens */
.hex-flow--chain { grid-auto-flow: row; grid-template-columns: repeat(8, minmax(0, 1fr)); }
.hex-flow--chain .hex-flow__step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 10px 18px; }
.hex-flow--chain .hex-flow__step:not(:last-child)::after { top: 60px; left: calc(100% - 4px); right: auto; width: 20px; }
/* ring: lifecycle around a centre */
.hex-flow--ring { grid-auto-flow: row; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.hex-flow--ring .hex-flow__hex { background: rgba(255, 255, 255, .08); color: #fff; width: 76px; height: 86px; }
.hex-flow--ring .hex-flow__step:nth-child(odd) .hex-flow__hex { background: var(--orange); color: var(--navy-900); }
.hex-flow--ring .hex-flow__step:nth-child(even) .hex-flow__hex { background: var(--green); color: var(--navy-900); }
.hex-flow--ring .hex-flow__body strong { color: #fff; font-size: 1.08rem; }
.hex-flow--ring .hex-flow__body span { color: #c3c4de; }
.hex-flow--ring .hex-flow__step:not(:last-child)::after { top: 42px; left: calc(50% + 46px); right: calc(-50% + 46px - 12px); background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .3) 0 6px, transparent 6px 11px); }
/* vertical */
.hex-flow--vertical, .hex-flow--vertical-sm { grid-auto-flow: row; grid-auto-columns: auto; gap: 0; }
.hex-flow--vertical .hex-flow__step, .hex-flow--vertical-sm .hex-flow__step { flex-direction: row; text-align: left; gap: 18px; padding-bottom: 18px; }
.hex-flow--vertical .hex-flow__step:not(:last-child)::after, .hex-flow--vertical-sm .hex-flow__step:not(:last-child)::after {
	top: 78px; bottom: 0; left: 33px; right: auto; width: 2px; height: auto;
	background: repeating-linear-gradient(180deg, var(--line-strong) 0 5px, transparent 5px 10px);
}
.hex-flow--vertical .hex-flow__body { padding-top: 12px; }
.hex-flow--vertical-sm .hex-flow__hex { width: 40px; height: 45px; }
.hex-flow--vertical-sm .hex-flow__step { padding-bottom: 12px; align-items: center; }
.hex-flow--vertical-sm .hex-flow__step:not(:last-child)::after { top: 48px; left: 19px; bottom: -2px; }
.hex-flow--vertical-sm .hex-flow__n { font-size: .85rem; }
.contact-card--navy .hex-flow__body strong { color: #fff; font-weight: 600; font-size: .98rem; }
.contact-card--navy .hex-flow__step:not(:last-child)::after { background: repeating-linear-gradient(180deg, rgba(255,255,255,.3) 0 5px, transparent 5px 10px); }

@media (max-width: 1100px) {
	.hex-flow--chain { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.hex-flow--chain .hex-flow__step:nth-child(4n)::after { display: none; }
	.hex-flow--ring { grid-template-columns: repeat(4, minmax(0, 1fr)); row-gap: 32px; }
	.hex-flow--ring .hex-flow__step:nth-child(4n)::after { display: none; }
}
@media (max-width: 760px) {
	.hex-flow:not(.hex-flow--vertical):not(.hex-flow--vertical-sm):not(.hex-flow--compact):not(.hex-flow--chain) { grid-auto-flow: row; grid-template-columns: 1fr; gap: 0; }
	.hex-flow:not(.hex-flow--vertical):not(.hex-flow--vertical-sm):not(.hex-flow--compact):not(.hex-flow--chain) .hex-flow__step { flex-direction: row; text-align: left; gap: 18px; padding-bottom: 18px; }
	.hex-flow:not(.hex-flow--vertical):not(.hex-flow--vertical-sm):not(.hex-flow--compact):not(.hex-flow--chain) .hex-flow__step:not(:last-child)::after {
		top: 80px; bottom: 0; left: 33px; right: auto; width: 2px; height: auto;
		background: repeating-linear-gradient(180deg, var(--line-strong) 0 5px, transparent 5px 10px);
	}
	.hex-flow--ring .hex-flow__step:not(:last-child)::after { left: 37px !important; top: 90px !important; }
	.hex-flow--ring .hex-flow__step:nth-child(4n)::after { display: block; }
	.hex-flow__body { padding-top: 10px; }
	.hex-flow--compact { grid-auto-flow: row; grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 20px; }
	.hex-flow--compact .hex-flow__step::after { display: none; }
	.hex-flow--chain { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hex-flow--chain .hex-flow__step::after { display: none; }
}

/* ---------- IAM + PAM duo ---------- */
.duo { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.duo__card { position: relative; border-radius: var(--radius-lg); padding: clamp(26px, 3.4vw, 44px); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; }
.duo__card::after { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 250px; clip-path: var(--hex); background: var(--orange-50); z-index: 0; }
.duo__card > * { position: relative; z-index: 1; }
.duo__card--pam { background: var(--navy-900); color: #cfd0e6; border-color: var(--navy-900); }
.duo__card--pam::after { background: rgba(128, 188, 66, .1); }
.duo__card--pam h3 { color: #fff; }
.duo__card--pam .check-list .hsd-icon { color: #a9ec72; }
.duo__card--pam .duo__kicker { color: #a9ec72; }
.duo__card--pam .duo__platforms { color: #fff; border-color: rgba(255, 255, 255, .14); }
.duo__top { display: flex; gap: 18px; align-items: center; margin-bottom: 18px; }
.duo__top h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin: 0; }
.duo__kicker { margin: 0 0 4px; font-family: var(--font-head); font-weight: 750; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-text); }
.duo__card .check-list { margin: 8px 0 22px; font-size: .97rem; }
.duo__platforms { font-size: .9rem; font-weight: 600; color: var(--ink); border-top: 1px dashed var(--line-strong); padding-top: 16px; margin-top: auto; margin-bottom: 22px; }
.duo__card .btn { align-self: flex-start; }
@media (max-width: 900px) { .duo { grid-template-columns: 1fr; } }

/* ---------- Logo grids ---------- */
.logo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 14px; }
.logo-tile {
	display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	text-decoration: none; color: var(--body); transition: border-color .2s, box-shadow .2s, transform .2s; position: relative;
}
a.logo-tile:hover { border-color: var(--line-strong); box-shadow: var(--shadow); transform: translateY(-2px); color: var(--body); }
.logo-tile__logo { display: grid; place-items: center; height: 96px; padding: 18px 22px; }
.logo-tile__logo img { max-height: 48px; max-width: 100%; width: auto; object-fit: contain; }
.logo-tile__wordmark { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--navy); letter-spacing: -0.01em; text-align: center; }
.logo-tile__meta { display: flex; flex-direction: column; gap: 8px; padding: 0 20px 20px; border-top: 1px solid var(--line); padding-top: 16px; }
.logo-tile__meta strong { font-family: var(--font-head); color: var(--ink); font-size: 1.02rem; }
.logo-tile__meta .badge { align-self: flex-start; }
.logo-tile__desc { font-size: .9rem; color: var(--muted); line-height: 1.5; }
.logo-tile.is-hidden { display: none; }
.logo-grid--details { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.logo-grid--details .logo-tile__logo { height: 110px; border-bottom: 0; }
.logo-grid--on-dark { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.logo-grid--on-dark .logo-tile { border-color: transparent; }
.logo-grid--small .logo-tile__logo { height: 80px; }
.logo-grid--small .logo-tile__logo img { max-height: 38px; }
.platforms__sub { margin: 40px 0 14px; font-family: var(--font-head); font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: #b8b9d6; }
.logo-grid--wall { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); margin-bottom: 36px; }
.logo-grid--wall .logo-tile__logo { height: 84px; }
.logo-grid--wall .logo-tile__logo img { max-height: 40px; filter: grayscale(1); opacity: .78; transition: filter .25s, opacity .25s; }
.logo-grid--wall a.logo-tile:hover img, .logo-grid--wall a.logo-tile:focus-visible img { filter: none; opacity: 1; }
.logo-grid--customers { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); margin-bottom: 32px; }
.logo-grid--customers .logo-tile__logo { height: 104px; }
.logo-grid--customers .logo-tile__logo img { max-height: 56px; }
.logo-grid--pair { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); margin-bottom: 20px; }
.logo-grid--pair .logo-tile__logo { height: 76px; }
.logo-grid--customers-page .logo-tile__logo img { max-height: 64px; }
@media (max-width: 1000px) { .logo-grid--on-dark { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 520px) {
	.logo-grid, .logo-grid--wall, .logo-grid--customers { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
	.logo-grid--on-dark { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.logo-grid--details, .logo-grid--pair { grid-template-columns: 1fr; }
	.logo-tile__logo { padding: 14px; }
}

/* ---------- AI ---------- */
.section--ai { background: radial-gradient(800px 400px at 0% 0%, var(--orange-50), transparent 60%), radial-gradient(800px 400px at 100% 100%, var(--green-50), transparent 60%), #fff; }
.ai-directions { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.ai-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; box-shadow: var(--shadow-sm); overflow: hidden; }
.ai-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--orange); }
.ai-card--for-ai::before { background: var(--green); }
.ai-card--agent::before { background: linear-gradient(90deg, var(--orange), var(--green)); }
.ai-card--nhi::before { background: var(--navy); }
.ai-card__tag { display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); background: var(--mist); padding: .3em .7em; border-radius: 6px; margin-bottom: 18px; }
.ai-card h3 { font-size: 1.35rem; margin-bottom: .25em; }
.ai-card__lead { font-family: var(--font-head); font-weight: 700; color: var(--orange-text); margin-bottom: .7em; }
.ai-card--for-ai .ai-card__lead { color: var(--green-text); }
.ai-card--nhi .ai-card__lead { color: var(--navy-700); }
.ai-card p:last-child { margin: 0; font-size: .95rem; }
.ai-pipeline { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(24px, 5vw, 64px); align-items: center; margin-top: clamp(40px, 5vw, 64px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 48px); box-shadow: var(--shadow); }
.ai-pipeline__copy h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
.ai-pipeline--flat { display: block; box-shadow: none; }
@media (max-width: 1080px) { .ai-directions { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 860px) { .ai-pipeline { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .ai-directions { grid-template-columns: 1fr; } }

/* ---------- Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.service-grid--featured { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 16px; }
.service-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-tile {
	position: relative; display: flex; flex-direction: column; gap: 10px; padding: 26px 24px 24px;
	border-radius: var(--radius); background: #fff; border: 1px solid var(--line); text-decoration: none; color: var(--body);
	transition: border-color .2s, box-shadow .2s, transform .2s; overflow: hidden;
}
.service-tile:hover { border-color: var(--line-strong); box-shadow: var(--shadow); transform: translateY(-3px); color: var(--body); }
.service-tile::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--orange); transition: width .3s; }
.service-tile.tone-green::after { background: var(--green); }
.service-tile.tone-navy::after { background: var(--navy); }
.service-tile:hover::after { width: 100%; }
.service-tile__title { font-family: var(--font-head); font-weight: 750; color: var(--ink); font-size: 1.08rem; line-height: 1.25; margin-top: 6px; }
.service-tile__text { font-size: .93rem; color: var(--muted); line-height: 1.55; flex: 1; }
.service-tile__kicker { font-family: var(--font-head); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .76rem; color: var(--orange-text); margin-top: 6px; }
.service-tile.tone-green .service-tile__kicker { color: var(--green-text); }
.service-tile--large { padding: 30px 26px; background: linear-gradient(180deg, #fff, var(--mist)); }
.service-tile--large .service-tile__title { font-size: 1.28rem; margin-top: 0; }
@media (max-width: 1080px) { .service-grid--featured { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 860px) { .service-grid--three { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .service-grid--featured { grid-template-columns: 1fr; } }

/* ---------- GRC + AI governance ---------- */
.gov-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.gov-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3.4vw, 44px); box-shadow: var(--shadow-sm); }
.gov-card .section-head { margin-bottom: 24px; }
.gov-card .section-head h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.gov-card .pill-list { margin-bottom: 18px; }
.frameworks { font-size: .9rem; color: var(--muted); border-left: 3px solid var(--orange); padding-left: 14px; }
.eco-label { font-family: var(--font-head); font-weight: 750; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 24px 0 12px; }
.mini-hex-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.mini-hex { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: var(--radius-sm); background: var(--mist); font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: .95rem; }
.mini-hex .hex-badge { width: 42px; height: 47px; }
@media (max-width: 900px) { .gov-grid { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .mini-hex-grid { grid-template-columns: 1fr; } }

.proof-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 36px; list-style: none; margin: 0 0 32px; color: var(--muted); font-size: .98rem; text-align: center; }
.proof-strip strong { font-family: var(--font-head); color: var(--navy); font-size: 1.2rem; margin-right: 4px; }

/* ---------- Industries ---------- */
.industry-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; list-style: none; }
.industry { display: flex; flex-direction: column; gap: 8px; padding: 22px 20px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
.industry__icon { display: grid; place-items: center; width: 42px; height: 47px; clip-path: var(--hex); background: var(--navy-50); color: var(--navy); margin-bottom: 4px; }
.industry:nth-child(odd) .industry__icon { background: var(--orange-100); color: #8a4400; }
.industry:nth-child(3n) .industry__icon { background: var(--green-100); color: #2f6210; }
.industry strong { font-family: var(--font-head); color: var(--ink); line-height: 1.25; }
.industry span { font-size: .9rem; color: var(--muted); line-height: 1.5; }
.industry__ref { margin-top: auto; font-size: .82rem; font-weight: 700; color: var(--green-text); text-decoration: none; }
@media (max-width: 1080px) { .industry-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 680px) { .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 400px) { .industry-grid { grid-template-columns: 1fr; } }

/* ---------- Founder ---------- */
.founder-teaser { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.hex-photo { display: block; width: 100%; max-width: 420px; aspect-ratio: 0.866; object-fit: cover; object-position: 50% 12%; clip-path: var(--hex); margin-inline: auto; background: var(--navy-50); }
.hex-photo--xl { max-width: 480px; }
.hex-photo--mono { display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 5rem; color: var(--navy); }
.founder-teaser__photo { position: relative; }
.founder-teaser__photo::before, .leader-hero__photo::before { content: ""; position: absolute; inset: -4% 4% 4% -4%; clip-path: var(--hex); background: linear-gradient(135deg, var(--orange) 0 50%, var(--green) 50% 100%); opacity: .9; max-width: 420px; margin-inline: auto; transform: translate(-14px, 14px); }
.leader-hero__photo::before { max-width: 480px; }
.founder-teaser__photo img, .founder-teaser__photo .hex-photo, .leader-hero__photo .hex-photo { position: relative; }
.founder-teaser__role { font-family: var(--font-head); font-weight: 700; color: var(--orange-text); }
.founder-teaser__quote { margin: 20px 0; padding: 0 0 0 20px; border-left: 3px solid var(--green); font-size: 1.12rem; color: var(--ink); }
.facts { display: flex; flex-wrap: wrap; gap: 14px 36px; margin: 0 0 28px; }
.facts div { display: flex; flex-direction: column-reverse; justify-content: flex-end; }
.facts dt { font-size: .86rem; color: var(--muted); max-width: 200px; line-height: 1.4; }
.facts dd { margin: 0; font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--navy); line-height: 1.1; }
@media (max-width: 860px) { .founder-teaser { grid-template-columns: 1fr; } .founder-teaser__photo { max-width: 320px; margin-inline: auto; width: 100%; } }

/* ---------- Training teaser ---------- */
.training-teaser { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.course-chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.course-chips li { display: inline-flex; align-items: center; gap: 10px; padding: 6px 16px 6px 6px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: .95rem; }
@media (max-width: 860px) { .training-teaser { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { padding: clamp(24px, 3vw, 40px) 0 clamp(56px, 7vw, 96px); }
.cta-band__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 32px; align-items: center; padding: clamp(32px, 5vw, 64px) clamp(24px, 5vw, 64px); border-radius: var(--radius-lg); background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); color: #cfd0e6; overflow: hidden; max-width: calc(var(--container)); }
.cta-band__inner.container { width: calc(100% - 2 * var(--gutter)); }
.cta-band h2 { color: #fff; }
.cta-band__copy p:last-child { margin: 0; }
.cta-band__copy, .cta-band__actions { position: relative; z-index: 1; }
.cta-band__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.cta-band__deco { position: absolute; right: -60px; top: -80px; width: 380px; opacity: .5; }
@media (max-width: 860px) { .cta-band__inner { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .cta-band__actions .btn { width: 100%; font-size: .9rem; } }

.hex-deco__c { fill: none; stroke-width: 2; }
.hex-deco__c--o { stroke: var(--orange); fill: rgba(245, 140, 31, .12); }
.hex-deco__c--g { stroke: var(--green); fill: rgba(128, 188, 66, .12); }
.hex-deco__c--n { stroke: rgba(255, 255, 255, .18); }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: var(--mist); border-top: 1px solid var(--line); padding-top: clamp(48px, 6vw, 80px); font-size: .95rem; overflow: hidden; }
.site-footer__pattern { position: absolute; inset: 0; background-image: var(--hexgrid); background-size: 56px 97px; mask-image: linear-gradient(90deg, transparent, #000); -webkit-mask-image: linear-gradient(90deg, transparent, #000); pointer-events: none; }
.site-footer__grid { position: relative; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; }
.site-footer__logo img { height: 38px; width: auto; margin-bottom: 18px; }
.site-footer__brand p { color: var(--muted); max-width: 380px; }
.site-footer__promise { font-family: var(--font-head); font-weight: 700; color: var(--navy) !important; }
.site-footer__title { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; }
.site-footer__links, .site-footer__contact, .site-footer__legal { list-style: none; display: grid; gap: 10px; }
.site-footer__links a, .site-footer__contact a, .site-footer__legal a { color: var(--body); text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.site-footer__links a:hover, .site-footer__contact a:hover, .site-footer__legal a:hover { color: var(--orange-text); }
.site-footer__contact li { display: flex; align-items: center; gap: 10px; color: var(--navy); word-break: break-word; }
.site-footer__bottom { position: relative; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; padding-top: 28px; padding-bottom: 28px; margin-top: 48px; border-top: 1px solid var(--line); font-size: .87rem; color: var(--muted); }
.site-footer__bottom p { margin: 0; }
.site-footer__legal { display: flex; gap: 20px; }
.site-footer__sig { font-family: var(--font-head); font-weight: 700; color: var(--navy); }
@media (max-width: 960px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; gap: 32px; } .site-footer__bottom { flex-direction: column; } }

/* ---------- Inner page hero ---------- */
.page-hero { position: relative; padding: clamp(40px, 6vw, 88px) 0 clamp(40px, 5vw, 72px); background: radial-gradient(900px 400px at 90% 0%, var(--orange-50), transparent 60%), radial-gradient(700px 400px at 100% 100%, var(--green-50), transparent 60%), #fff; border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero__inner { position: relative; }
.page-hero--visual .page-hero__inner, .page-hero--service .page-hero__inner { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(24px, 4vw, 64px); align-items: center; }
.page-hero__copy { max-width: 820px; }
.page-hero__text { font-size: clamp(1.06rem, 1.4vw, 1.2rem); color: var(--muted); max-width: 720px; }
.page-hero__visual { max-width: 460px; width: 100%; justify-self: end; }
.page-hero .hero__actions { margin-bottom: 0; }
.page-hero--service.tone-green { background: radial-gradient(900px 400px at 90% 0%, var(--green-50), transparent 60%), radial-gradient(700px 400px at 100% 100%, var(--orange-50), transparent 60%), #fff; }
.page-hero--service.tone-green .eyebrow { color: var(--green-text); }
.page-hero--service.tone-green .eyebrow::before { background: var(--green); }
.page-hero--service.tone-navy .eyebrow { color: var(--navy-700); }
.page-hero--service.tone-navy .eyebrow::before { background: var(--navy); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; font-size: .86rem; color: var(--muted); margin-bottom: 22px; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 6px; color: var(--line-strong); }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--navy); text-decoration: underline; }
.hero-badge-stack { position: relative; display: grid; place-items: center; aspect-ratio: 1; max-width: 400px; margin-inline: auto; }
.hero-badge-stack__deco { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-badge-stack .hex-deco__c--n { stroke: var(--line-strong); }
.hero-badge-stack__main { position: relative; display: grid; place-items: center; width: 190px; height: 214px; clip-path: var(--hex); background: var(--navy); color: #fff; }
.hero-badge-stack.tone-orange .hero-badge-stack__main .hsd-icon { color: #ffc27f; }
.hero-badge-stack.tone-green .hero-badge-stack__main .hsd-icon { color: #a9ec72; }
.hero-badge-stack__label { position: absolute; bottom: 8%; font-family: var(--font-head); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; color: var(--navy); background: #fff; padding: .4em 1em; border-radius: 999px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
@media (max-width: 900px) {
	.page-hero--visual .page-hero__inner, .page-hero--service .page-hero__inner { grid-template-columns: 1fr; }
	.page-hero__visual { justify-self: center; max-width: 380px; }
}

/* ---------- Service page blocks ---------- */
.problem-why { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.pw-card { border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 40px); border: 1px solid var(--line); background: #fff; }
.pw-card h2 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
.pw-card p:last-child { margin: 0; font-size: 1.05rem; }
.pw-card--why { background: var(--navy-900); color: #cfd0e6; border-color: var(--navy-900); }
.pw-card--why h2 { color: #fff; }
.pw-card--why .eyebrow { color: #ffc27f; }
.pw-card--why.tone-green .eyebrow { color: #a9ec72; }
.pw-card--why.tone-green .eyebrow::before { background: var(--green); }
@media (max-width: 800px) { .problem-why { grid-template-columns: 1fr; } }

.caps { list-style: none; display: grid; gap: 14px; }
.caps--grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.caps--list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 32px; }
.caps--honeycomb { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.caps__item { position: relative; display: flex; flex-direction: column; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 22px 22px 60px; }
.caps__mark { position: absolute; left: 20px; top: 24px; width: 24px; height: 27px; clip-path: var(--hex); background: var(--orange); }
.caps__item:nth-child(3n+2) .caps__mark { background: var(--green); }
.caps__item:nth-child(3n) .caps__mark { background: var(--navy); }
.caps__item strong { font-family: var(--font-head); color: var(--ink); font-size: 1.02rem; line-height: 1.3; }
.caps__item span { font-size: .93rem; color: var(--muted); line-height: 1.55; }
.caps--list .caps__item { background: transparent; border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0; padding: 18px 0 18px 42px; }
.caps--list .caps__mark { left: 0; top: 21px; width: 22px; height: 25px; }
.caps--honeycomb .caps__item { padding: 26px 24px; text-align: left; }
.caps--honeycomb .caps__mark { position: static; width: 34px; height: 38px; margin-bottom: 6px; }
@media (max-width: 960px) { .caps--honeycomb { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .caps--list, .caps--honeycomb { grid-template-columns: 1fr; } }

.outcomes { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; }
.outcomes:has(> :only-child) { grid-template-columns: 1fr; }
.outcome-list { list-style: none; display: grid; gap: 14px; }
.outcome-list li { display: flex; align-items: center; gap: 14px; font-family: var(--font-head); font-weight: 650; color: var(--ink); font-size: 1.05rem; }
@media (max-width: 860px) { .outcomes { grid-template-columns: 1fr; } }

.area-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.area-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.area-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.area-card .hex-badge { margin-bottom: 14px; }
.area-card h3 { font-size: 1.08rem; }
.area-card ul { list-style: none; display: grid; gap: 6px; font-size: .92rem; color: var(--muted); }
.area-card li { padding-left: 16px; position: relative; }
.area-card li::before { content: ""; position: absolute; left: 0; top: .6em; width: 7px; height: 8px; clip-path: var(--hex); background: var(--orange); }
.area-card p { font-size: .94rem; color: var(--muted); margin: 0; }
@media (max-width: 1080px) { .area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 860px) { .area-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .area-grid, .area-grid--three { grid-template-columns: 1fr; } }

.amt { display: flex; list-style: none; justify-content: flex-end; gap: 0; }
.amt li { padding: 10px 26px 10px 30px; font-family: var(--font-head); font-weight: 800; color: #fff; background: var(--orange); clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%, 14px 50%); margin-left: -6px; }
.amt li:first-child { clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%); margin-left: 0; }
.amt .tone-orange { background: var(--orange); color: var(--navy-900); }
.amt .tone-navy { background: var(--navy); }
.amt .tone-green { background: var(--green); color: var(--navy-900); }
@media (max-width: 860px) { .amt { justify-content: flex-start; } }

.flow-foot { margin: 32px 0 24px; font-size: .92rem; color: #b8b9d6; text-align: center; }
.flow-foot--dark { color: var(--muted); }

.pam-cycle { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.pam-cycle__core { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2; display: grid; place-items: center; width: 118px; height: 134px; clip-path: var(--hex); background: var(--navy); box-shadow: var(--shadow-lg); }
.pam-cycle__core span { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 1.5rem; letter-spacing: .08em; }
.pam-cycle__phase { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.pam-cycle__phase--2, .pam-cycle__phase--4 { padding-left: 76px; }
.pam-cycle__phase--1, .pam-cycle__phase--3 { padding-right: 76px; }
.pam-cycle__phase header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.pam-cycle__phase h3 { margin: 0; font-size: 1.2rem; }
.pam-cycle__n { color: var(--orange-text); margin-right: 4px; }
.pam-cycle__phase ul { list-style: none; display: grid; gap: 8px; font-size: .94rem; color: var(--muted); }
.pam-cycle__phase li { padding-left: 16px; position: relative; }
.pam-cycle__phase li::before { content: ""; position: absolute; left: 0; top: .6em; width: 7px; height: 8px; clip-path: var(--hex); background: var(--green); }
@media (max-width: 800px) {
	.pam-cycle { grid-template-columns: 1fr; }
	.pam-cycle__core { display: none; }
	.pam-cycle__phase--1, .pam-cycle__phase--2, .pam-cycle__phase--3, .pam-cycle__phase--4 { padding: 24px; }
}
.platform-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.platform-card { background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius); padding: 14px; display: flex; flex-direction: column; gap: 14px; }
.platform-card p { margin: 0 6px 6px; font-size: .92rem; color: #c3c4de; }
@media (max-width: 960px) { .platform-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .platform-cards { grid-template-columns: 1fr; } }

.value-grid { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.value-grid li { display: flex; gap: 16px; align-items: flex-start; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--font-head); font-weight: 650; color: var(--ink); background: #fff; line-height: 1.35; }
.value-grid li:nth-child(3n) { border-right: 0; }
.value-grid li:nth-last-child(-n+3) { border-bottom: 0; }
.value-grid__n { flex: none; display: grid; place-items: center; width: 40px; height: 45px; clip-path: var(--hex); background: var(--orange-100); color: #8a4400; font-weight: 800; font-size: .9rem; }
.value-grid li:nth-child(n+4):nth-child(-n+6) .value-grid__n { background: var(--navy-100); color: var(--navy); }
.value-grid li:nth-child(n+7) .value-grid__n { background: var(--green-100); color: #2f6210; }
@media (max-width: 860px) {
	.value-grid { grid-template-columns: 1fr; }
	.value-grid li { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
	.value-grid li:last-child { border-bottom: 0 !important; }
}
.four-col { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.three-col { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.mini-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; border-top: 4px solid var(--orange); }
.mini-card:nth-child(even) { border-top-color: var(--green); }
.mini-card h3 { font-size: 1.05rem; }
.mini-card p { margin: 0; font-size: .93rem; color: var(--muted); }
.step-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; overflow: hidden; }
.step-card__n { display: grid; place-items: center; width: 56px; height: 63px; clip-path: var(--hex); font-family: var(--font-head); font-weight: 800; margin-bottom: 18px; background: var(--orange); color: var(--navy-900); }
.step-card.tone-navy .step-card__n { background: var(--navy); color: #fff; }
.step-card.tone-green .step-card__n { background: var(--green); color: var(--navy-900); }
.step-card p { margin: 0; color: var(--muted); }
@media (max-width: 960px) { .four-col { grid-template-columns: repeat(2, minmax(0, 1fr)); } .three-col { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .four-col { grid-template-columns: 1fr; } }

.two-dir { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 24px; align-items: center; }
.two-dir__side { border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 40px); border: 1px solid var(--line); background: #fff; }
.two-dir__side.tone-orange { border-top: 5px solid var(--orange); }
.two-dir__side.tone-green { border-top: 5px solid var(--green); text-align: right; }
.two-dir__side h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
.two-dir__side p:last-child { margin: 0; }
.two-dir__core { display: grid; place-items: center; width: 110px; height: 124px; clip-path: var(--hex); background: linear-gradient(90deg, var(--orange) 50%, var(--green) 50%); color: var(--navy-900); }
@media (max-width: 760px) { .two-dir { grid-template-columns: 1fr; justify-items: center; } .two-dir__side { width: 100%; } .two-dir__side.tone-green { text-align: left; } }

.iam-for-ai { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.question-hexes { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; counter-reset: q; }
.question-hexes li { counter-increment: q; display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: .98rem; line-height: 1.3; }
.question-hexes li::before { content: counter(q, decimal-leading-zero); flex: none; display: grid; place-items: center; width: 38px; height: 43px; clip-path: var(--hex); background: var(--orange-100); color: #8a4400; font-size: .82rem; }
.question-hexes li.tone-green::before { background: var(--green-100); color: #2f6210; }
@media (max-width: 900px) { .iam-for-ai { grid-template-columns: 1fr; } }
@media (max-width: 460px) { .question-hexes { grid-template-columns: 1fr; } }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.matrix { width: 100%; border-collapse: collapse; min-width: 760px; font-size: .95rem; }
.matrix th, .matrix td { text-align: left; vertical-align: top; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.matrix thead th { background: var(--navy-900); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .86rem; letter-spacing: .06em; text-transform: uppercase; }
.matrix tbody tr:last-child > * { border-bottom: 0; }
.matrix tbody th { font-weight: 400; width: 34%; }
.matrix tbody th strong { display: block; font-family: var(--font-head); color: var(--ink); margin-bottom: 4px; }
.matrix tbody th span { color: var(--muted); font-size: .9rem; }
.matrix tbody td:last-child { color: var(--green-text); font-weight: 600; }
.matrix tbody tr:nth-child(even) { background: var(--mist); }

.honey-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; }
.honey-list li { display: flex; align-items: center; gap: 12px; padding: 16px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: .95rem; }
.honey-list li .hsd-icon { flex: none; color: #8a4400; }
.honey-list li.tone-green .hsd-icon { color: #2f6210; }
.honey-list--text li { justify-content: center; text-align: center; border-top: 4px solid var(--orange); }
.honey-list--text li.tone-green { border-top-color: var(--green); }
.honey-list--text li.tone-navy { border-top-color: var(--navy); }

.side-groups { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px; }
.side-group { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; border-top: 5px solid var(--orange); }
.side-group.tone-green { border-top-color: var(--green); }
.side-group.tone-navy { border-top-color: var(--navy); }
.side-group__head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.side-group__head h3 { margin: 0; font-size: 1.3rem; }
.side-group__num { margin: 0; font-family: var(--font-head); font-weight: 800; font-size: .78rem; color: var(--muted); letter-spacing: .1em; }
.side-group__text { font-size: .94rem; color: var(--muted); }
.side-group__list { list-style: none; display: grid; }
.side-group__list a { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 12px 0; border-top: 1px solid var(--line); text-decoration: none; font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.side-group__list a:hover { color: var(--orange-text); }
@media (max-width: 400px) { .side-groups { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
.about-intro { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.about-intro .section-head { margin-bottom: 20px; }
@media (max-width: 900px) { .about-intro { grid-template-columns: 1fr; } }
.mv-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.mv-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 40px); }
.mv-card .hex-badge { margin-bottom: 16px; }
.mv-card h2 { font-size: 1.5rem; }
.mv-card p { margin: 0; font-size: 1.08rem; color: var(--ink); }
@media (max-width: 760px) { .mv-grid { grid-template-columns: 1fr; } }
.why-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.why-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.why-card .hex-badge { margin-bottom: 16px; }
.why-card p { margin: 0; color: var(--muted); font-size: .96rem; }
@media (max-width: 960px) { .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Leadership ---------- */
.leader-hero { position: relative; padding: clamp(40px, 6vw, 88px) 0; background: radial-gradient(900px 400px at 90% 0%, var(--orange-50), transparent 60%), radial-gradient(700px 400px at 100% 100%, var(--green-50), transparent 60%), #fff; border-bottom: 1px solid var(--line); overflow: hidden; }
.leader-hero__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.leader-hero__role { font-family: var(--font-head); font-weight: 700; color: var(--orange-text); font-size: 1.08rem; }
.leader-hero__headline { font-size: clamp(1.1rem, 1.5vw, 1.28rem); color: var(--ink); max-width: 640px; }
.leader-hero__photo { position: relative; }
.facts--hero { margin-top: 28px; }
@media (max-width: 900px) { .leader-hero__inner { grid-template-columns: 1fr; } .leader-hero__photo { order: -1; max-width: 340px; margin-inline: auto; width: 100%; } }
.leader-body { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.leader-body__aside { display: grid; gap: 16px; position: sticky; top: calc(var(--header-h) + 20px); }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.aside-card__title { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.aside-card .check-list { font-size: .94rem; gap: 8px; }
.aside-card--honey { padding: 20px 16px; }
@media (max-width: 960px) { .leader-body { grid-template-columns: 1fr; } .leader-body__aside { position: static; } }
.timeline { list-style: none; margin-top: 36px; position: relative; }
.timeline::before { content: ""; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--orange), var(--green)); opacity: .5; }
.timeline__item { position: relative; padding: 0 0 26px 44px; }
.timeline__hex { position: absolute; left: 0; top: 4px; width: 24px; height: 27px; clip-path: var(--hex); background: var(--line-strong); }
.timeline__item.is-current .timeline__hex { background: var(--orange); }
.timeline__item:nth-child(n+2):nth-child(-n+4) .timeline__hex { background: var(--green); }
.timeline__period { margin: 0 0 2px; font-family: var(--font-head); font-weight: 750; font-size: .82rem; letter-spacing: .06em; color: var(--orange-text); }
.timeline__role { font-size: 1.08rem; margin: 0 0 4px; }
.timeline__role span { font-weight: 600; color: var(--muted); }
.timeline__desc { margin: 0; font-size: .95rem; color: var(--muted); }
.honeycomb > svg { width: 100%; display: block; }
.honeycomb__cell polygon { fill: var(--orange-100); stroke: #fff; stroke-width: 4; }
.honeycomb__cell.tone-green polygon { fill: var(--green-100); }
.honeycomb__cell text { font-family: var(--font-head); font-weight: 750; font-size: 17px; fill: var(--ink); }
.honeycomb__centre { fill: var(--navy); }
.honeycomb__mono { font-family: var(--font-head); font-weight: 800; font-size: 48px; fill: #fff; letter-spacing: .04em; }
.philosophy { max-width: 900px; text-align: center; }
.philosophy .eyebrow { justify-content: center; }
.philosophy blockquote { margin: 0; }
.philosophy blockquote p { font-family: var(--font-head); font-weight: 650; color: #fff; font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.4; letter-spacing: -0.01em; }
.philosophy footer { color: #ffc27f; font-weight: 600; }

/* ---------- Technology & customers pages ---------- */
.rel-legend { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-bottom: 28px; }
.rel-legend p { margin: 0; padding: 14px 16px; border-radius: var(--radius); background: var(--mist); font-size: .9rem; color: var(--muted); display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
@media (max-width: 760px) { .rel-legend { grid-template-columns: 1fr; } }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.filter-btn { font: inherit; font-family: var(--font-head); font-weight: 700; font-size: .92rem; padding: .55em 1.1em; border-radius: 999px; border: 1px solid var(--line-strong); background: #fff; color: var(--ink); cursor: pointer; min-height: 42px; }
.filter-btn:hover { border-color: var(--navy); }
.filter-btn.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.cat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.cat-card h3 { margin-bottom: 4px; }
.cat-card p { font-size: .9rem; color: var(--muted); }
.cat-card ul { list-style: none; display: grid; gap: 6px; }
.cat-card a { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; font-weight: 600; }
.stats--band { box-shadow: none; }

/* ---------- Training ---------- */
.training-proof { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 32px; align-items: center; padding: clamp(24px, 3vw, 36px); border-radius: var(--radius-lg); background: var(--navy-900); color: #cfd0e6; }
.training-proof p { margin: 0; font-size: 1.05rem; }
.training-proof__stat { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 150px; height: 170px; clip-path: var(--hex); background: var(--orange); color: var(--navy-900); text-align: center; padding: 0 18px; }
.training-proof__stat strong { font-family: var(--font-head); font-size: 2.4rem; line-height: 1; }
.training-proof__stat span { font-size: .78rem; font-weight: 700; line-height: 1.25; margin-top: 4px; }
@media (max-width: 640px) { .training-proof { grid-template-columns: 1fr; justify-items: center; text-align: center; } }
.course-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.course-card { display: flex; flex-direction: column; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; }
.course-card header { display: flex; align-items: center; gap: 14px; }
.course-card h3 { margin: 0; font-size: 1.2rem; }
.course-card > p { margin: 0; color: var(--muted); font-size: .95rem; }
.course-meta { display: grid; gap: 6px; margin: 4px 0 0; padding-top: 14px; border-top: 1px dashed var(--line-strong); font-size: .88rem; }
.course-meta div { display: flex; gap: 8px; }
.course-meta dt { font-weight: 700; color: var(--ink); min-width: 70px; }
.course-meta dd { margin: 0; color: var(--muted); }
.course-card .link-arrow { margin-top: auto; }
.disclaimer { font-size: .88rem; color: var(--muted); border-left: 3px solid var(--line-strong); padding-left: 14px; margin: 0; }
@media (max-width: 380px) { .course-grid { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-layout__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3.5vw, 44px); box-shadow: var(--shadow); }
.contact-layout__form h2 { font-size: 1.6rem; }
.contact-layout__aside { display: grid; gap: 16px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; }
.contact-card h2 { font-size: 1.15rem; }
.contact-card--navy { background: var(--navy-900); border-color: var(--navy-900); }
.contact-card--navy h2 { color: #fff; }
.contact-list { list-style: none; display: grid; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 14px; }
.contact-list .hex-badge { width: 44px; height: 50px; }
.contact-list__label { display: block; font-size: .8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.contact-list a { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; text-decoration: none; color: var(--navy); word-break: break-word; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
.field { margin: 0 0 18px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 600; color: var(--ink); font-size: .94rem; margin-bottom: 6px; }
.field label span { color: var(--orange-text); }
.field input, .field select, .field textarea {
	width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: #fff;
	border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); padding: 12px 14px; min-height: 50px;
	transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(36, 35, 92, .12); }
.field.has-error input, .field.has-error textarea { border-color: #c0392b; }
.field__error { display: block; color: #b42318; font-size: .85rem; margin-top: 4px; }
.form-note { font-size: .86rem; color: var(--muted); }
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.notice { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: var(--radius-sm); margin-bottom: 22px; }
.notice--success { background: var(--green-50); border: 1px solid var(--green-100); color: #24500a; }
.notice--error { background: #fef3f2; border: 1px solid #fecdca; color: #912018; }
.notice div { font-size: .96rem; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Posts & content ---------- */
.entry-content > * { max-width: 100%; }
.entry-content .lead { font-size: 1.2rem; color: var(--ink); font-weight: 500; }
.entry-content h2 { margin-top: 1.6em; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.entry-content h3 { margin-top: 1.4em; }
.entry-content ul, .entry-content ol { padding-left: 1.3em; margin-bottom: 1em; }
.entry-content li { margin-bottom: .4em; }
.entry-content img { border-radius: var(--radius); }
.entry-content blockquote { border-left: 3px solid var(--orange); padding-left: 20px; margin: 1.5em 0; color: var(--ink); font-size: 1.1rem; }
.entry-content .alignwide { max-width: 1100px; }
.entry-content .aligncenter { margin-inline: auto; }
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.post-card__img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { font-size: .84rem; color: var(--muted); margin-bottom: 6px; }
.post-card__title { font-size: 1.2rem; }
.post-card__title a { color: var(--ink); text-decoration: none; }
.post-card__title a:hover { color: var(--orange-text); }
.post-card .link-arrow { margin-top: auto; }
.post-thumb { margin: 0 0 32px; }
.post-thumb img { border-radius: var(--radius-lg); width: 100%; }
.post-meta { margin: 32px 0; font-size: .9rem; color: var(--muted); }
.post-navigation .nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.post-navigation a { display: block; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; font-weight: 600; }
.post-nav__label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.pagination .nav-links, .page-links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
.pagination .page-numbers { display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px; border-radius: 10px; border: 1px solid var(--line); text-decoration: none; }
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }
.search-bar { margin-bottom: 32px; }
.search-form { display: flex; gap: 8px; }
.search-form label { flex: 1; }
.search-field { width: 100%; font: inherit; padding: 12px 14px; border: 1.5px solid var(--line-strong); border-radius: 10px; min-height: 48px; }
.search-submit { font: inherit; font-weight: 700; padding: 0 20px; border-radius: 10px; border: 0; background: var(--navy); color: #fff; cursor: pointer; }
.comments { margin: 48px 0; }
.comment-list { list-style: none; }
.comment-respond input, .comment-respond textarea { width: 100%; font: inherit; padding: 10px 12px; border: 1.5px solid var(--line-strong); border-radius: 10px; }
.widget { margin-bottom: 32px; }

/* ---------- 404 ---------- */
.error-404 { position: relative; padding: clamp(64px, 10vw, 140px) 0; overflow: hidden; }
.error-404__inner { position: relative; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.error-404__hex { display: grid; place-items: center; width: clamp(160px, 22vw, 260px); aspect-ratio: .866; clip-path: var(--hex); background: linear-gradient(90deg, var(--orange) 50%, var(--green) 50%); }
.error-404__hex span { display: grid; place-items: center; width: 78%; aspect-ratio: .866; clip-path: var(--hex); background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.4rem); }
@media (max-width: 700px) { .error-404__inner { grid-template-columns: 1fr; } }

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

/* ---------- Print ---------- */
@media print {
	.site-header, .site-footer, .cta-band, .nav-toggle, .hero__visual { display: none !important; }
	body { color: #000; }
	.section { padding: 24px 0; }
}
@media (max-width: 520px) { .hero-node-label { font-size: 19px; } .six-sides__num { font-size: 15px; } }
