/* ==========================================================================
   Itego 2026 · Design System
   ========================================================================== */

:root {
	/* Brand */
	--navy-900: #06142B;
	--navy-800: #0A1E3C;
	--navy-700: #102A50;
	--navy-600: #1A3A68;
	--blue-500: #4A80C0;   /* Itego blue (logo) */
	--blue-400: #6C9DD6;
	--cyan-400: #00C8E0;   /* accent */
	--cyan-300: #4FE0F0;

	/* Neutrals */
	--ink:       #0A1E3C;
	--ink-soft:  #43556F;
	--ink-mute:  #6C7C93;
	--line:      #E2E8F0;
	--line-soft: #EDF2F8;
	--surface:   #FFFFFF;
	--surface-2: #F5F8FC;

	/* Type */
	--font: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

	/* Layout */
	--shell: 1240px;
	--gutter: 32px;
	--header-h: 84px;

	/* Motion */
	--ease: cubic-bezier(.22,.61,.36,1);
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-h);
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink-soft);
	background: var(--surface);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img, svg, iframe, canvas { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
	margin: 0 0 .6em;
	color: var(--ink);
	font-weight: 700;
	line-height: 1.14;
	letter-spacing: -0.022em;
}

h1 { font-size: clamp(2.6rem, 5.4vw, 4.25rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); line-height: 1.3; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }

ul, ol { margin: 0 0 1.2em; padding-left: 1.25em; }
li { margin-bottom: .45em; }
li::marker { color: var(--blue-500); }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.shell {
	width: 100%;
	max-width: var(--shell);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .7em;
	margin: 0 0 1.1rem;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--blue-500);
}
.eyebrow::before {
	content: "";
	width: 30px;
	height: 2px;
	background: var(--cyan-400);
}

.lede { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-soft); }

.section { padding: clamp(72px, 9vw, 128px) 0; }
.section--tint { background: var(--surface-2); }
.section--dark { background: var(--navy-800); color: rgba(255,255,255,.76); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .eyebrow { color: var(--cyan-300); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head p { font-size: 1.1rem; }

/* Buttons ------------------------------------------------------------------ */

.btn {
	display: inline-flex;
	align-items: center;
	gap: .65em;
	padding: 15px 30px;
	border: 1px solid transparent;
	border-radius: 2px;
	font-size: .95rem;
	font-weight: 600;
	letter-spacing: .01em;
	cursor: pointer;
	transition: background .25s var(--ease), color .25s var(--ease),
	            border-color .25s var(--ease), transform .25s var(--ease);
}
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { background: var(--cyan-400); color: var(--navy-900); }
.btn--primary:hover { background: var(--cyan-300); }

.btn--ghost { border-color: rgba(255,255,255,.34); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn--outline { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--blue-500); color: var(--blue-500); }

.arrow-link {
	display: inline-flex;
	align-items: center;
	gap: .6em;
	font-weight: 650;
	font-size: .95rem;
	color: var(--blue-500);
	border-bottom: 1px solid transparent;
	transition: color .2s var(--ease), border-color .2s var(--ease);
}
.arrow-link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.arrow-link:hover { color: var(--navy-800); border-color: var(--cyan-400); }
.arrow-link:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	height: var(--header-h);
	display: flex;
	align-items: center;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: background .4s var(--ease), border-color .4s var(--ease),
	            box-shadow .4s var(--ease), height .3s var(--ease);
}

.site-header .shell {
	display: flex;
	align-items: center;
	gap: 40px;
	width: 100%;
}

.brand { display: flex; align-items: center; margin-right: auto; }
.brand img { width: 108px; height: auto; }

/* Nav */
.nav { display: flex; align-items: center; gap: 6px; }
.nav > li { position: relative; margin: 0; list-style: none; }
.nav-list { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.nav-list > li { position: relative; margin: 0; }

.nav-link {
	display: inline-flex;
	align-items: center;
	gap: .4em;
	padding: 10px 16px;
	font-size: .95rem;
	font-weight: 550;
	color: rgba(255,255,255,.88);
	border-radius: 2px;
	transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link:hover { color: #fff; }
.nav-link .chev { width: 11px; height: 11px; opacity: .7; transition: transform .25s var(--ease); }
.nav-list > li:hover .nav-link .chev { transform: rotate(180deg); }

/* underline indicator */
.nav-link::after {
	content: "";
	position: absolute;
	left: 16px; right: 16px; bottom: 4px;
	height: 2px;
	background: var(--cyan-400);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s var(--ease);
}
.nav-list > li:hover .nav-link::after,
.nav-link.is-current::after { transform: scaleX(1); }

/* Dropdown */
.subnav {
	position: absolute;
	top: calc(100% + 6px);
	left: 8px;
	min-width: 270px;
	margin: 0;
	padding: 10px;
	list-style: none;
	background: #fff;
	border: 1px solid var(--line);
	border-top: 2px solid var(--cyan-400);
	box-shadow: 0 22px 48px rgba(6,20,43,.14);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav-list > li:hover .subnav,
.nav-list > li:focus-within .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav li { margin: 0; }
.subnav a {
	display: block;
	padding: 11px 14px;
	font-size: .92rem;
	font-weight: 550;
	color: var(--ink);
	border-radius: 2px;
	transition: background .18s var(--ease), color .18s var(--ease);
}
.subnav a:hover { background: var(--surface-2); color: var(--blue-500); }

.lang {
	margin-left: 8px;
	padding: 8px 14px;
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .06em;
	color: rgba(255,255,255,.7);
	border: 1px solid rgba(255,255,255,.24);
	border-radius: 2px;
	transition: all .2s var(--ease);
}
.lang strong { color: #fff; }
.lang:hover { border-color: rgba(255,255,255,.6); }

.header-cta { margin-left: 6px; padding: 12px 24px; }

/* Burger */
.burger {
	display: none;
	width: 44px; height: 44px;
	padding: 0;
	background: none;
	border: 0;
	cursor: pointer;
}
.burger span {
	display: block;
	width: 24px; height: 2px;
	margin: 5px auto;
	background: #fff;
	transition: transform .3s var(--ease), opacity .2s var(--ease), background .3s var(--ease);
}

/* --- Header: solid (over light content) --- */
body.nav-solid .site-header {
	background: rgba(255,255,255,.94);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	border-bottom-color: var(--line);
	box-shadow: 0 6px 26px rgba(6,20,43,.06);
	height: 72px;
}
body.nav-solid .nav-link { color: var(--ink); }
body.nav-solid .nav-link:hover { color: var(--blue-500); }
body.nav-solid .lang { color: var(--ink-mute); border-color: var(--line); }
body.nav-solid .lang strong { color: var(--ink); }
body.nav-solid .lang:hover { border-color: var(--blue-500); }
body.nav-solid .btn--ghost { border-color: rgba(10,30,60,.28); color: var(--ink); }
body.nav-solid .btn--ghost:hover { border-color: var(--blue-500); color: var(--blue-500); background: transparent; }
body.nav-solid .burger span { background: var(--ink); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: min(100svh, 900px);
	padding: calc(var(--header-h) + 40px) 0 76px;
	background:
		radial-gradient(1200px 640px at 78% 28%, rgba(74,128,192,.30), transparent 62%),
		radial-gradient(900px 620px at 12% 88%, rgba(0,200,224,.14), transparent 60%),
		linear-gradient(160deg, #0A1E3C 0%, #08182F 52%, #06142B 100%);
	color: rgba(255,255,255,.78);
	overflow: hidden;
}

#hero-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

/* soft vignette so the headline stays legible */
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(100deg, rgba(6,20,43,.86) 0%, rgba(6,20,43,.58) 38%, rgba(6,20,43,0) 72%);
}

.hero .shell { position: relative; z-index: 2; }

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: 48px;
	align-items: center;
}

.hero h1 { color: #fff; margin-bottom: .38em; }
.hero h1 .accent {
	background: linear-gradient(96deg, var(--cyan-300) 0%, #7FC4EE 55%, #9CCDF2 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.hero-copy .eyebrow { color: var(--cyan-300); }
.hero-copy p.lede { max-width: 34em; color: rgba(255,255,255,.74); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Stat rail */
.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	margin-top: 46px;
	padding-top: 26px;
	border-top: 1px solid rgba(255,255,255,.14);
	max-width: 620px;
}
.stat .num {
	display: block;
	font-size: clamp(1.9rem, 3vw, 2.5rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
	color: #fff;
}
.stat .num em {
	font-style: normal;
	color: var(--cyan-400);
}
.stat .cap {
	display: block;
	margin-top: 10px;
	font-size: .82rem;
	line-height: 1.4;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: rgba(255,255,255,.56);
}

.hero-visual { min-height: 420px; }

/* caption that narrates the two states of the hero animation */
.viz-caption {
	position: absolute;
	right: max(var(--gutter), calc((100% - var(--shell)) / 2 + var(--gutter)));
	bottom: 34px;
	z-index: 2;
	height: 1.4em;
}
.viz-caption span {
	position: absolute;
	right: 0;
	bottom: 0;
	display: inline-flex;
	align-items: center;
	gap: .7em;
	white-space: nowrap;
	font-size: .74rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: rgba(255,255,255,.5);
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.viz-caption span i {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--blue-400);
}
.viz-caption .s-order i { background: var(--cyan-400); box-shadow: 0 0 10px var(--cyan-400); }
.viz-caption.is-chaos .s-chaos,
.viz-caption.is-order .s-order { opacity: 1; transform: none; }
.viz-caption.is-order .s-order { color: rgba(255,255,255,.72); }

/* --------------------------------------------------------------------------
   Logo / trust strip
   -------------------------------------------------------------------------- */

.trust {
	padding: 26px 0;
	background: var(--navy-900);
	border-top: 1px solid rgba(255,255,255,.07);
}
.trust .shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
}
.trust p {
	margin: 0;
	font-size: .8rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255,255,255,.42);
}
.trust-badges { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.trust-badges img { height: 46px; width: auto; opacity: .9; }

/* --------------------------------------------------------------------------
   Split / feature blocks
   -------------------------------------------------------------------------- */

.split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
	gap: clamp(40px, 6vw, 84px);
	align-items: center;
}

.numbered { margin: 26px 0 0; padding: 0; list-style: none; counter-reset: n; }
.numbered li {
	position: relative;
	margin: 0;
	padding: 20px 0 20px 60px;
	border-top: 1px solid var(--line);
	counter-increment: n;
	color: var(--ink);
	font-weight: 550;
}
.numbered li:last-child { border-bottom: 1px solid var(--line); }
.numbered li::before {
	content: counter(n, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 20px;
	font-size: .85rem;
	font-weight: 700;
	letter-spacing: .06em;
	color: var(--cyan-400);
}

.media-frame {
	position: relative;
	border-radius: 3px;
	overflow: hidden;
	background: var(--navy-800);
	box-shadow: 0 30px 70px rgba(6,20,43,.16);
}
.media-frame::before { content: ""; display: block; padding-top: 56.25%; }
.media-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* --------------------------------------------------------------------------
   Value cards
   -------------------------------------------------------------------------- */

.value-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}
.value {
	padding: clamp(30px, 3.4vw, 44px);
	background: #fff;
	transition: background .3s var(--ease), transform .3s var(--ease);
}
.value:hover { background: var(--surface-2); }
.value .ico {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px; height: 54px;
	margin-bottom: 26px;
	background: rgba(74,128,192,.10);
	border-radius: 2px;
}
.value .ico img { width: 30px; height: 30px; object-fit: contain; }
.value h3 { margin-bottom: .55em; }
.value p { font-size: .97rem; margin: 0; }

/* --------------------------------------------------------------------------
   Solution cards
   -------------------------------------------------------------------------- */

.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 28px;
}
.card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 3px;
	overflow: hidden;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover {
	transform: translateY(-6px);
	border-color: transparent;
	box-shadow: 0 26px 56px rgba(6,20,43,.13);
}
.card-media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--surface-2);
}
.card-media img {
	width: 100%; height: 100%;
	object-fit: contain;
	padding: 22px;
	transition: transform .6s var(--ease);
}
.card-media.is-photo img { object-fit: cover; padding: 0; }
.card:hover .card-media img { transform: scale(1.045); }

.card-body { display: flex; flex-direction: column; flex: 1; padding: 32px 30px 30px; }
.card-body h3 { margin-bottom: .6em; }
.card-body p { font-size: .97rem; }
.card-body ul { font-size: .95rem; padding-left: 1.15em; }
.card-body .arrow-link { margin-top: auto; padding-top: 18px; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: clamp(40px, 6vw, 80px);
}
.office-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.12);
}
.office {
	padding: 30px 28px;
	background: var(--navy-800);
}
.office h4 {
	margin: 0 0 6px;
	font-size: .78rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--cyan-300);
}
.office .addr { margin: 0 0 14px; font-size: .95rem; color: rgba(255,255,255,.74); }
.office .addr strong { display: block; color: #fff; font-weight: 600; margin-bottom: 2px; }
.office a.map {
	font-size: .85rem;
	color: rgba(255,255,255,.5);
	border-bottom: 1px solid rgba(255,255,255,.2);
	transition: color .2s var(--ease), border-color .2s var(--ease);
}
.office a.map:hover { color: var(--cyan-300); border-color: var(--cyan-300); }

.contact-lines { margin: 30px 0 0; padding: 0; list-style: none; }
.contact-lines li {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin: 0;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255,255,255,.12);
	font-size: .97rem;
}
.contact-lines li:first-child { border-top: 1px solid rgba(255,255,255,.12); }
.contact-lines span { color: rgba(255,255,255,.5); }
.contact-lines a, .contact-lines b { color: #fff; font-weight: 600; }
.contact-lines a:hover { color: var(--cyan-300); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
	padding: 30px 0;
	background: var(--navy-900);
	border-top: 1px solid rgba(255,255,255,.08);
}
.site-footer .shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.site-footer p { margin: 0; font-size: .78rem; color: rgba(255,255,255,.36); max-width: 720px; }
.site-footer ul { display: flex; gap: 26px; margin: 0; padding: 0; list-style: none; }
.site-footer ul li { margin: 0; }
.site-footer ul a { font-size: .84rem; color: rgba(255,255,255,.6); }
.site-footer ul a:hover { color: var(--cyan-300); }

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
	.hero-grid { grid-template-columns: 1fr; }
	.hero-visual { display: none; }
	.hero::after { background: linear-gradient(180deg, rgba(6,20,43,.55), rgba(6,20,43,.8)); }
	.split, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
	:root { --gutter: 22px; --header-h: 68px; }
	.burger { display: block; }
	.nav {
		position: fixed;
		inset: var(--header-h) 0 0 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 24px var(--gutter) 40px;
		background: var(--navy-800);
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform .35s var(--ease);
	}
	body.nav-open .nav { transform: none; }
	body.nav-open { overflow: hidden; }
	.nav-list { flex-direction: column; align-items: stretch; gap: 0; }
	.nav-link {
		padding: 16px 0;
		font-size: 1.05rem;
		color: #fff !important;
		border-bottom: 1px solid rgba(255,255,255,.1);
	}
	.nav-link::after { display: none; }
	.subnav {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		min-width: 0;
		padding: 4px 0 12px;
		background: transparent;
		border: 0;
		box-shadow: none;
	}
	.subnav a { padding: 10px 0 10px 18px; color: rgba(255,255,255,.68); }
	.subnav a:hover { background: transparent; color: var(--cyan-300); }
	.lang { align-self: flex-start; margin: 20px 0 0; color: rgba(255,255,255,.7) !important; border-color: rgba(255,255,255,.24) !important; }
	.lang strong { color: #fff !important; }
	.header-cta { margin: 20px 0 0; justify-content: center; }
	body.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	body.nav-open .burger span:nth-child(2) { opacity: 0; }
	body.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
	body.nav-open .burger span { background: #fff; }
	.hero-stats { grid-template-columns: 1fr 1fr; gap: 22px; }
	.viz-caption { display: none; }
}

@media (max-width: 520px) {
	body { font-size: 16px; }
	.hero-stats { grid-template-columns: 1fr; }
	.brand img { width: 92px; }
}

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

/* Mobile nav open: keep the bar dark like the panel behind it */
@media (max-width: 900px) {
	body.nav-open .site-header,
	body.nav-open.nav-solid .site-header {
		background: var(--navy-800);
		border-bottom-color: rgba(255,255,255,.10);
		box-shadow: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
	body.nav-open.nav-solid .lang { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.24); }
	body.nav-open.nav-solid .lang strong { color: #fff; }
	body.nav-open.nav-solid .burger span { background: #fff; }
}

/* ==========================================================================
   v2 · icon treatment for the "Why Itego" value cards
   ========================================================================== */

.value .ico {
	position: relative;
	width: 58px;
	height: 58px;
	color: var(--blue-500);
	background: linear-gradient(140deg, rgba(74,128,192,.17), rgba(0,200,224,.12));
	border-radius: 2px;
	transition: color .3s var(--ease), background .3s var(--ease);
}
.value .ico::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0;
	width: 18px;
	height: 2px;
	background: var(--cyan-400);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .35s var(--ease);
}
.value:hover .ico { color: var(--navy-700); background: linear-gradient(140deg, rgba(74,128,192,.20), rgba(0,200,224,.14)); }
.value:hover .ico::after { transform: scaleX(1); }
.value .ico svg { width: 30px; height: 30px; }

/* ==========================================================================
   v3 · brand card visuals (replaces the generic stock photography)
   ========================================================================== */

.card-media.is-visual {
	background: var(--navy-800);
}
.card-media.is-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	padding: 0;
	transition: transform .7s var(--ease);
}
.card:hover .card-media.is-visual img { transform: scale(1.05); }

/* thin cyan rule that draws across the visual on hover */
.card-media.is-visual::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 3px;
	background: var(--cyan-400);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .45s var(--ease);
	z-index: 2;
}
.card:hover .card-media.is-visual::after { transform: scaleX(1); }

/* certification chip sitting on the visual */
.card-badge {
	position: absolute;
	left: 18px;
	bottom: 18px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: .6em;
	padding: 8px 14px;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(6,20,43,.72);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border: 1px solid rgba(0,200,224,.45);
	border-radius: 2px;
}
.card-badge i {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--cyan-400);
	box-shadow: 0 0 8px var(--cyan-400);
}

/* the hero canvas only covers the area the graphic actually uses,
   so the browser has ~40% fewer pixels to clear and composite each frame */
@media (min-width: 1081px) {
	/* canvas is a replaced element: width:auto would fall back to the
	   bitmap size, so the width is given explicitly */
	#hero-canvas { left: 34%; right: 0; width: 66%; }
}

/* ==========================================================================
   v4 · trust bar carries the 25+ years claim; hero stat rail removed
   ========================================================================== */

.trustbar {
	padding: 26px 0;
	background: var(--surface-2);
	border-bottom: 1px solid var(--line);
}
.trustbar .shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px 40px;
	flex-wrap: wrap;
}

.trust-claim {
	display: flex;
	align-items: center;
	gap: .55em;
	margin: 0;
	font-size: .95rem;
	color: var(--ink-soft);
}
.trust-claim strong {
	font-size: 1.9rem;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: var(--blue-500);
	/* optical correction: digits have no descenders, so the glyph block
	   reads slightly high when centred against lowercase text */
	transform: translateY(1px);
}
.trust-claim > span { line-height: 1.35; white-space: nowrap; }

.trust-marks {
	display: flex;
	align-items: center;
	gap: 34px;
	flex-wrap: wrap;
}
.trust-label {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--ink-mute);
	padding-right: 34px;
	border-right: 1px solid var(--line);
}
.trust-marks img { width: auto; }
.trust-marks img:first-of-type { height: 32px; }
.trust-marks img:last-of-type  { height: 44px; }

/* the hero has one block less, so it can breathe a little more */
.hero-copy p.lede { max-width: 32em; }

@media (max-width: 720px) {
	.trust-label { padding-right: 0; border-right: 0; width: 100%; }
	.trust-marks { gap: 26px; }
	.trust-claim strong { font-size: 1.6rem; }
}

@media (max-width: 420px) {
	/* only here is there genuinely not enough room for one line */
	.trust-claim > span { white-space: normal; }
}

/* ==========================================================================
   Sub pages
   ========================================================================== */

/* --- compact hero band ---------------------------------------------------- */

.page-hero {
	position: relative;
	padding: calc(var(--header-h) + 62px) 0 66px;
	background:
		radial-gradient(900px 460px at 84% 24%, rgba(74,128,192,.28), transparent 62%),
		radial-gradient(700px 460px at 6% 96%, rgba(0,200,224,.12), transparent 60%),
		linear-gradient(160deg, #0A1E3C 0%, #08182F 55%, #06142B 100%);
	color: rgba(255,255,255,.76);
	overflow: hidden;
}
.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../../images/hero-mesh.svg") no-repeat right -60px center;
	background-size: auto 150%;
	opacity: .5;
	pointer-events: none;
}
.page-hero .shell { position: relative; z-index: 1; }
.page-hero h1 {
	max-width: 20ch;
	margin: 0 0 .35em;
	color: #fff;
	font-size: clamp(2.1rem, 3.9vw, 3.3rem);
	font-weight: 800;
	letter-spacing: -0.03em;
}
.page-hero .lede {
	max-width: 58ch;
	color: rgba(255,255,255,.72);
}
.page-hero .eyebrow { color: var(--cyan-300); }

/* breadcrumbs */
.crumbs { margin: 0 0 26px; }
.crumbs ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .55em;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: .8rem;
	color: rgba(255,255,255,.45);
}
.crumbs li { margin: 0; display: flex; align-items: center; gap: .55em; }
.crumbs li + li::before { content: "/"; color: rgba(255,255,255,.28); }
.crumbs a { color: rgba(255,255,255,.62); border-bottom: 1px solid transparent; transition: color .2s var(--ease), border-color .2s var(--ease); }
.crumbs a:hover { color: var(--cyan-300); border-color: var(--cyan-300); }
.crumbs [aria-current] { color: rgba(255,255,255,.85); }

/* --- long-form text ------------------------------------------------------- */

.prose { max-width: 74ch; }
.prose.wide { max-width: 92ch; }
.prose h2 { margin-top: 1.6em; font-size: clamp(1.5rem, 2.2vw, 1.95rem); }
.prose h3 {
	margin-top: 1.9em;
	margin-bottom: .5em;
	font-size: clamp(1.15rem, 1.5vw, 1.32rem);
}
.prose h4 { margin-top: 1.6em; font-size: 1.03rem; }
.prose > :first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose ul ul { margin-top: .5em; margin-bottom: .8em; }
.prose strong { color: var(--ink); font-weight: 650; }
.prose a:not(.btn) {
	color: var(--blue-500);
	border-bottom: 1px solid rgba(74,128,192,.4);
	transition: color .2s var(--ease), border-color .2s var(--ease);
}
.prose a:not(.btn):hover { color: var(--navy-800); border-color: var(--cyan-400); }
.prose hr { margin: 2.4em 0; border: 0; border-top: 1px solid var(--line); }

.section--dark .prose strong { color: #fff; }

/* --- image blocks --------------------------------------------------------- */

.figure {
	margin: 0 0 2.2em;
	border-radius: 3px;
	overflow: hidden;
	background: var(--surface-2);
}
.figure img { width: 100%; height: auto; display: block; }
.figure figcaption {
	padding: 12px 2px 0;
	font-size: .84rem;
	color: var(--ink-mute);
}

.band-image {
	height: clamp(220px, 32vw, 380px);
	overflow: hidden;
	background: var(--navy-800);
}
.band-image img { width: 100%; height: 100%; object-fit: cover; }

.media-shot {
	border-radius: 3px;
	overflow: hidden;
	background: var(--surface-2);
	box-shadow: 0 26px 60px rgba(6,20,43,.14);
}
.media-shot img { width: 100%; height: auto; display: block; }

.inline-mark { max-width: 190px; height: auto; margin: 1.6em 0 0; }

/* --- actions -------------------------------------------------------------- */

.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 2em 0 0;
	padding: 0;
	list-style: none;
}
.actions li { margin: 0; }
.btn .ico-l { width: 16px; height: 16px; margin-right: -.1em; }

/* download / video button grid */
.doc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.doc-grid li { margin: 0; }
.doc-grid a {
	display: flex;
	align-items: center;
	gap: 16px;
	height: 100%;
	padding: 22px 24px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 3px;
	font-weight: 600;
	font-size: .98rem;
	color: var(--ink);
	transition: background .25s var(--ease), color .25s var(--ease);
}
.doc-grid a svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--blue-500); transition: color .25s var(--ease), transform .25s var(--ease); }
.doc-grid a:hover { background: var(--surface-2); color: var(--blue-500); border-color: var(--blue-400); }
.doc-grid a:hover svg { color: var(--cyan-400); transform: translateY(2px); }
.doc-grid a .meta { display: block; margin-top: 3px; font-size: .8rem; font-weight: 500; color: var(--ink-mute); }

/* --- card variants -------------------------------------------------------- */

.card-media.is-video { aspect-ratio: 16 / 9; background: #000; }
.card-media.is-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.card-media.is-video::after, .card-media.is-video::before { display: none; }

.cards.cards--wide { grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); }

/* --- tables --------------------------------------------------------------- */

.table-wrap { overflow-x: auto; margin: 0 0 2em; }
table.data {
	width: 100%;
	border-collapse: collapse;
	font-size: .95rem;
}
table.data th, table.data td {
	padding: 14px 16px;
	text-align: left;
	border-bottom: 1px solid var(--line);
	vertical-align: top;
}
table.data th {
	font-size: .78rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ink-mute);
	border-bottom-color: var(--ink-soft);
}

/* --- profile list (team) -------------------------------------------------- */

.profiles { margin: 0; padding: 0; list-style: none; }
.profiles li {
	position: relative;
	margin: 0;
	padding: 22px 0 22px 30px;
	border-top: 1px solid var(--line);
}
.profiles li:last-child { border-bottom: 1px solid var(--line); }
.profiles li::before {
	content: "";
	position: absolute;
	left: 0; top: 33px;
	width: 12px; height: 2px;
	background: var(--cyan-400);
}
.profiles b, .profiles strong { color: var(--ink); }

/* --- CTA band ------------------------------------------------------------- */

.cta-band {
	padding: clamp(52px, 6vw, 84px) 0;
	background: var(--navy-800);
	color: rgba(255,255,255,.74);
}
.cta-band .shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.cta-band h2 { margin: 0 0 .3em; color: #fff; font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.cta-band p { margin: 0; max-width: 52ch; }

@media (max-width: 900px) {
	.page-hero { padding: calc(var(--header-h) + 44px) 0 48px; }
	.page-hero::before { opacity: .28; }
}

/* rhythm between the generated content blocks */
.shell > .split + .split        { margin-top: clamp(64px, 8vw, 108px); }
.shell > .prose + .prose        { margin-top: 2.6em; }
.shell > .prose + .split,
.shell > .split + .prose        { margin-top: clamp(56px, 7vw, 92px); }
.shell > .prose + .doc-grid,
.shell > .prose + .cards,
.shell > .prose + .table-wrap,
.shell > .prose + .value-grid   { margin-top: 40px; }
.shell > .doc-grid + .prose,
.shell > .cards + .prose,
.shell > .table-wrap + .prose   { margin-top: 3em; }
.shell > .figure + .prose       { margin-top: 2.4em; }
.shell > .prose + .figure       { margin-top: 2.4em; }
.shell > .media-frame + .prose  { margin-top: 2.4em; }

.split .prose { max-width: none; }
.split .prose > h2:first-child { margin-top: 0; }
.split .actions { margin-top: 1.6em; }

/* headings inside a split are one step down from a page heading */
.split .prose h2 { font-size: clamp(1.55rem, 2.2vw, 2.05rem); }
.split .prose h3 {
	margin-top: 0;
	margin-bottom: 1em;
	font-size: 1.06rem;
	font-weight: 600;
	color: var(--blue-500);
}
.split .prose h2 + h3 { margin-top: -.3em; }

/* pages that are pure reading get a centred, narrower column */
.section--reading .shell { max-width: 1000px; }
.section--reading .prose { max-width: none; }


/* contact list: grouped by location instead of a dash separator */
.contact-lines .grp {
	padding: 30px 0 10px;
	border-bottom: 0;
}
.contact-lines .grp:first-child { padding-top: 0; border-top: 0; }
.contact-lines .grp span {
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--cyan-300);
}
.contact-lines .grp + li { border-top: 1px solid rgba(255,255,255,.12); }
