/* WeldInPro – mobile-first styles. Breakpoints: 600, 900, 1200. */

@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope-latin.woff2") format("woff2");
	font-weight: 200 800;
	font-style: normal;
	font-display: optional;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
	font-weight: 200 800;
	font-style: normal;
	font-display: optional;
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
	--navy-900: #06131F;
	--navy-800: #0A1D2B;
	--navy-700: #0D2638;
	--footer: #040D16;
	--blue: #168BFF;
	--blue-2: #36A8FF;
	--orange: #FF7A18;
	--orange-2: #FF9A3D;
	--white: #F5F8FA;
	--muted: #A7B5C2;
	--soft: #C3CFD9;
	--line: rgba(255, 255, 255, .10);
	--line-2: rgba(255, 255, 255, .20);
	--font: "Manrope", "Manrope Fallback", "Segoe UI", system-ui, -apple-system, sans-serif;
	--gutter: clamp(20px, 5vw, 64px);
	--max: 1312px;
	--section: clamp(72px, 10vw, 128px);
	--header-h: 64px;
	--ease: cubic-bezier(.2, .7, .2, 1);
	--safe-b: env(safe-area-inset-bottom, 0px);
}
@media (min-width: 900px) { :root { --header-h: 84px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
	margin: 0;
	background: var(--navy-900);
	color: var(--white);
	font-family: var(--font);
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
html, body { overflow-x: clip; }
body.menu-open { overflow: hidden; }
body.menu-open .site-header { background: var(--navy-900); }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--blue-2); text-underline-offset: 3px; }
a:hover { color: var(--white); }
h1, h2, h3 { margin: 0; line-height: 1.1; letter-spacing: -.02em; font-weight: 800; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--blue-2); outline-offset: 3px; }

.visually-hidden, .screen-reader-text {
	position: absolute !important; width: 1px !important; height: 1px !important; min-height: 0 !important;
	padding: 0 !important; margin: -1px !important; overflow: hidden !important;
	clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; border: 0 !important;
}
.skip-link {
	position: absolute; left: 12px; top: -60px; z-index: 100;
	background: var(--orange); color: var(--navy-900); padding: 12px 18px; font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 12px; color: var(--navy-900); }
.wrap { width: 100%; max-width: calc(var(--max) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 52px; padding: 0 24px;
	font-weight: 700; font-size: 1rem; text-decoration: none; line-height: 1.2;
	border: 1px solid transparent; border-radius: 2px; cursor: pointer;
	transition: background-color .2s, border-color .2s, color .2s;
	-webkit-tap-highlight-color: transparent;
}
.btn .icon { width: 18px; height: 18px; flex: none; transition: transform .25s var(--ease); }
.btn:hover .icon { transform: translateX(4px); }
.btn-primary { background: var(--orange); color: var(--navy-900); }
.btn-primary:hover { background: var(--orange-2); color: var(--navy-900); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: var(--blue-2); color: var(--white); }
.btn-sm { min-height: 44px; padding: 0 18px; font-size: .9375rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 600px) { .btn-row { flex-direction: row; flex-wrap: wrap; } }
.link-btn { background: none; border: 0; padding: 10px 0; color: var(--muted); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; min-height: 44px; }
.link-btn:hover { color: var(--white); }

/* ---------- Header ---------- */
.site-header {
	position: fixed; inset: 0 0 auto; z-index: 50;
	background: rgba(6, 19, 31, .72);
	-webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
	transition: background-color .3s;
}
.site-header.is-scrolled { background: rgba(6, 19, 31, .92); }
.header-inner {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	height: var(--header-h); padding-inline: var(--gutter); max-width: calc(var(--max) + 2 * var(--gutter)); margin-inline: auto;
	transition: height .3s var(--ease);
}
@media (min-width: 900px) { .site-header.is-scrolled .header-inner { height: 68px; } }
.brand { display: inline-flex; align-items: center; min-height: 44px; text-decoration: none; flex: none; }
.brand img { display: block; width: auto; height: 46px; transition: height .3s var(--ease); }
@media (min-width: 900px) { .brand img { height: 60px; } .site-header.is-scrolled .brand img { height: 50px; } }
.brand-footer img { height: auto; width: 240px; max-width: 100%; }
.custom-logo { max-height: 44px; width: auto; }

.nav-desktop { display: none; }
.nav-desktop .nav-list { display: flex; gap: clamp(20px, 2.4vw, 36px); }
.nav-desktop a {
	display: inline-flex; align-items: center; min-height: 44px;
	color: #D5DEE6; font-weight: 600; font-size: .9375rem; text-decoration: none;
	border-bottom: 2px solid transparent;
}
.nav-desktop a:hover { color: var(--white); }
.nav-desktop a[aria-current="page"] { color: var(--white); border-bottom-color: var(--orange); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-cta { display: none; }
@media (min-width: 600px) { .header-cta { display: inline-flex; } }
@media (min-width: 1100px) { .nav-desktop { display: block; } .menu-btn { display: none !important; } }

.menu-btn {
	width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
	background: transparent; border: 1px solid var(--line-2); color: var(--white); cursor: pointer; border-radius: 2px;
}
.menu-btn .icon { width: 22px; height: 22px; }
.menu-btn .menu-close, .menu-btn[aria-expanded="true"] .menu-open { display: none; }
.menu-btn[aria-expanded="true"] .menu-close { display: inline; color: var(--orange-2); }

/* Mobile menu */
.mobile-menu {
	position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; z-index: 49;
	height: calc(100dvh - var(--header-h));
	display: flex; flex-direction: column;
	background:
		linear-gradient(rgba(54,168,255,.05) 1px, transparent 1px) 0 0 / 48px 48px,
		linear-gradient(90deg, rgba(54,168,255,.05) 1px, transparent 1px) 0 0 / 48px 48px,
		var(--navy-900);
}
.mobile-menu[hidden] { display: none; }
.mm-scroll { flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: 8px var(--gutter) 24px; }
.mm-list > li { border-bottom: 1px solid var(--line); }
.mm-row { display: flex; align-items: center; }
.mm-link {
	flex: 1; display: flex; align-items: center; min-height: 60px;
	font-size: 1.375rem; font-weight: 800; letter-spacing: -.01em; color: var(--white); text-decoration: none;
}
.mm-link[aria-current="page"] { color: var(--orange-2); }
.mm-link[aria-current="page"]::before { content: ""; width: 4px; height: 22px; background: var(--orange); margin-right: 12px; }
.mm-toggle {
	width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center;
	background: transparent; border: 1px solid var(--line); color: var(--white); cursor: pointer; border-radius: 2px;
}
.mm-toggle .icon { width: 20px; height: 20px; transition: transform .25s var(--ease); }
.mm-toggle[aria-expanded="true"] { border-color: var(--blue-2); }
.mm-toggle[aria-expanded="true"] .icon { transform: rotate(180deg); color: var(--blue-2); }
.mm-sub { padding: 0 0 14px; display: grid; gap: 2px; }
.mm-sub[hidden] { display: none; }
.mm-sub a {
	display: flex; align-items: center; gap: 12px; min-height: 48px; padding: 0 12px;
	color: var(--soft); text-decoration: none; font-weight: 600; font-size: .9688rem;
	background: rgba(255,255,255,.03); border-left: 2px solid transparent;
}
.mm-sub a:hover, .mm-sub a:focus-visible { color: var(--white); border-left-color: var(--blue-2); background: rgba(54,168,255,.08); }
.mm-sub-icon .icon { width: 20px; height: 20px; color: var(--blue-2); }
.mm-sub .mm-sub-all { background: none; color: var(--blue-2); font-weight: 700; }
.mm-sub .mm-sub-all .icon { width: 16px; height: 16px; }
.mm-block { margin-top: 24px; }
.mm-label { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .8125rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.mm-label .icon { width: 16px; height: 16px; }
.mm-langs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 6px; }
.mm-langs .lang-item {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; min-height: 66px; padding: 6px 2px;
	border: 1px solid var(--line); color: var(--white); text-decoration: none; font-weight: 700; font-size: .75rem; position: relative;
}
.mm-langs .lang-label { display: none; }
.mm-langs .is-current { border-color: var(--orange); background: rgba(255,122,24,.08); }
.mm-contact { display: grid; gap: 8px; }
.mm-contact a {
	display: flex; align-items: center; gap: 12px; min-height: 52px; padding: 0 14px;
	border: 1px solid var(--line); color: var(--white); text-decoration: none; font-weight: 600;
}
.mm-contact .icon { width: 20px; height: 20px; color: var(--orange-2); flex: none; }
.mm-contact span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mm-foot { padding: 12px var(--gutter) calc(12px + var(--safe-b)); border-top: 1px solid var(--line); background: var(--navy-900); }
@media (prefers-reduced-motion: no-preference) {
	.mobile-menu:not([hidden]) .mm-scroll { animation: menu-in .3s var(--ease); }
	.mm-sub:not([hidden]) { animation: menu-in .25s var(--ease); }
	@keyframes menu-in { from { opacity: 0; transform: translateY(-8px); } }
}

/* Language switcher (shared) */
.flag { width: 22px; height: 15px; flex: none; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,.14); }
.lang-item.is-soon { color: var(--muted); cursor: not-allowed; }
.lang-item.is-soon .flag { filter: grayscale(.85) brightness(.8); opacity: .7; }
.lang-soon {
	font-size: .625rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
	color: var(--navy-900); background: var(--muted); padding: 1px 5px; border-radius: 2px; line-height: 1.4;
}
.lang { position: relative; }
.lang-btn {
	display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 12px;
	background: transparent; border: 1px solid var(--line-2); color: var(--white); cursor: pointer; font-weight: 700; font-size: .875rem; border-radius: 2px;
}
.lang-btn .icon { width: 14px; height: 14px; color: var(--muted); transition: transform .2s; }
.lang-btn[aria-expanded="true"] .icon { transform: rotate(180deg); }
.lang-list {
	position: absolute; right: 0; top: calc(100% + 8px); width: 230px; padding: 6px;
	background: var(--navy-800); border: 1px solid var(--line); box-shadow: 0 20px 40px -12px rgba(0,0,0,.6);
}
.lang-list .lang-item { display: flex; align-items: center; gap: 12px; min-height: 44px; padding: 0 12px; color: var(--white); text-decoration: none; font-size: .9375rem; }
.lang-list .lang-code { display: none; }
.lang-list .lang-soon { margin-left: auto; }
.lang-list a.lang-item:hover, .lang-list .is-current { background: rgba(54,168,255,.12); }
.lang-list .is-soon { color: var(--muted); }
@media (max-width: 599px) { .header-actions .lang { display: none; } }

/* ---------- Common sections ---------- */
main { display: block; }
.section { padding-block: var(--section); }
.section-alt { background: var(--navy-800); }
.section-head { display: grid; gap: 16px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head h2 { font-size: clamp(2rem, 1.4rem + 3vw, 3.5rem); max-width: 18ch; }
.section-head p { color: var(--muted); font-size: clamp(1rem, .95rem + .3vw, 1.0625rem); max-width: 58ch; }
@media (min-width: 900px) { .section-head { grid-template-columns: 1fr 1fr; align-items: end; gap: 64px; } }
.kicker { color: var(--blue-2); font-size: .8125rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.lead { color: var(--soft); font-size: clamp(1.0625rem, 1rem + .4vw, 1.25rem); max-width: 60ch; }
.img-missing {
	display: block; width: 100%; height: 100%; min-height: 200px;
	background: var(--navy-700) repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 2px, transparent 2px 16px);
}

/* ---------- Hero ---------- */
.hero {
	position: relative; isolation: isolate; overflow: hidden;
	min-height: min(100svh, 900px); display: flex; align-items: flex-end;
	padding: calc(var(--header-h) + 48px) 0 48px;
}
@media (min-width: 900px) { .hero { align-items: center; padding-bottom: 96px; } }
.hero-media { position: absolute; inset: 0; z-index: -1; background: var(--navy-700); }
.hero-media img, .hero-media .img-missing { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.hero-shade {
	position: absolute; inset: 0;
	background:
		linear-gradient(0deg, var(--navy-900) 8%, rgba(6,19,31,.55) 55%, rgba(6,19,31,.35) 100%),
		linear-gradient(rgba(54,168,255,.07) 1px, transparent 1px) 0 0 / 48px 48px,
		linear-gradient(90deg, rgba(54,168,255,.07) 1px, transparent 1px) 0 0 / 48px 48px;
}
@media (min-width: 900px) {
	.hero-shade {
		background:
			linear-gradient(90deg, var(--navy-900) 0%, rgba(6,19,31,.9) 36%, rgba(6,19,31,.3) 72%, rgba(6,19,31,.5) 100%),
			linear-gradient(rgba(54,168,255,.07) 1px, transparent 1px) 0 0 / 48px 48px,
			linear-gradient(90deg, rgba(54,168,255,.07) 1px, transparent 1px) 0 0 / 48px 48px;
	}
}
.hero-lines { position: absolute; inset: 0; width: 100%; height: 100%; display: none; fill: none; stroke: rgba(54,168,255,.55); stroke-width: 1.2; }
.hero-lines .accent { stroke: var(--orange-2); }
.hero-lines .dot { fill: var(--orange-2); stroke: none; }
@media (min-width: 900px) { .hero-lines { display: block; } }
.hero-content { display: grid; gap: 22px; }
.hero h1 { font-size: clamp(2.5rem, 1.6rem + 5vw, 5.25rem); line-height: 1.02; letter-spacing: -.03em; max-width: 13ch; }
.hero h1 .hl { display: block; color: var(--orange-2); }
.hero .btn-row { margin-top: 8px; }

.draw { stroke-dasharray: 1000; stroke-dashoffset: 0; }
@media (prefers-reduced-motion: no-preference) {
	.draw { stroke-dashoffset: 1000; animation: draw 2.8s var(--ease) .2s forwards; }
	.draw-late { animation-delay: .9s; }
	@keyframes draw { to { stroke-dashoffset: 0; } }
}

/* ---------- Certifications ---------- */
.certs { background: var(--navy-800); border-block: 1px solid var(--line); }
.certs-inner { display: grid; gap: 20px; padding-block: 28px; }
.certs-title { font-size: .8125rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-2); display: grid; gap: 4px; }
.certs-title span { color: var(--muted); font-size: .875rem; letter-spacing: 0; text-transform: none; font-weight: 500; }
.certs-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.certs-list li { background: var(--navy-800); padding: 16px; display: grid; gap: 2px; }
.certs-list strong { font-size: 1.0625rem; }
.certs-list span { color: var(--muted); font-size: .8125rem; line-height: 1.4; }
@media (min-width: 700px) { .certs-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) {
	.certs-inner { grid-template-columns: 200px 1fr; align-items: center; gap: 32px; }
	.certs-list { grid-template-columns: repeat(6, 1fr); background: none; border: 0; gap: 0; }
	.certs-list li { padding: 8px 20px; border-left: 1px solid var(--line); background: none; }
}

/* ---------- Service cards ---------- */
.cards { display: grid; gap: 20px; }
@media (min-width: 700px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cards { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.card {
	position: relative; display: flex; flex-direction: column;
	background: var(--navy-800); border: 1px solid var(--line);
	transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.card-media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--navy-700); }
.card-media img, .card-media .img-missing { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card-body { display: flex; flex-direction: column; gap: 12px; padding: 24px; flex: 1; }
@media (min-width: 900px) { .card-body { padding: 32px; gap: 14px; } }
.card-icon .icon { width: 32px; height: 32px; color: var(--blue-2); }
.card h3 { font-size: 1.375rem; letter-spacing: -.01em; }
.card-link { color: var(--white); text-decoration: none; }
.card-link::after { content: ""; position: absolute; inset: 0; } /* whole card is the tap target */
.card p { color: var(--muted); font-size: .9375rem; }
.more { margin-top: auto; padding-top: 6px; display: inline-flex; align-items: center; gap: 8px; color: var(--blue-2); font-weight: 700; font-size: .9375rem; }
.more .icon { width: 16px; height: 16px; transition: transform .25s var(--ease); }
@media (hover: hover) {
	.card:hover { transform: translateY(-6px); border-color: rgba(54,168,255,.55); box-shadow: 0 0 0 1px rgba(54,168,255,.2), 0 18px 40px -20px rgba(22,139,255,.55); }
	.card:hover .card-media img { transform: scale(1.05); }
	.card:hover .more .icon { transform: translateX(5px); }
}
.card:focus-within { border-color: var(--blue-2); }
.card-link:focus-visible { outline: none; }
.card-link:focus-visible::after { outline: 2px solid var(--blue-2); outline-offset: -2px; }

/* ---------- Industries ---------- */
.industries { display: grid; gap: 16px; }
.industry {
	position: relative; overflow: hidden; min-height: 300px; display: flex; align-items: flex-end;
	background: var(--navy-700); border: 1px solid var(--line);
}
.industry img, .industry .img-missing { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.industry::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(6,19,31,.96) 12%, rgba(6,19,31,.15) 75%); }
.industry-body { position: relative; z-index: 2; padding: 24px; display: grid; gap: 10px; }
@media (min-width: 900px) { .industry-body { padding: 32px; } }
.industry h3 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
.industry p { color: var(--soft); font-size: .9375rem; max-width: 46ch; }
.bar { display: block; width: 40px; height: 3px; transition: width .35s var(--ease); }
.bar-orange { background: var(--orange); }
.bar-blue { background: var(--blue-2); }
@media (hover: hover) {
	.industry:hover img { transform: scale(1.05); }
	.industry:hover .bar { width: 96px; }
}
@media (min-width: 700px) { .industries { grid-template-columns: repeat(2, 1fr); } .industry:last-child { grid-column: span 2; } }
@media (min-width: 900px) {
	.industries { grid-template-columns: repeat(6, 1fr); gap: 20px; }
	.industry { grid-column: span 2; min-height: 340px; }
	.industry:last-child { grid-column: span 2; }
	.industry.is-large { grid-column: span 3; min-height: 420px; }
}

/* ---------- Projects ---------- */
.projects { display: grid; gap: 20px; }
@media (min-width: 900px) { .projects { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.project { background: var(--navy-800); border: 1px solid var(--line); display: flex; flex-direction: column; }
.project .card-media { aspect-ratio: 16 / 9; }
.project-body { padding: 24px; display: grid; gap: 16px; align-content: start; }
@media (min-width: 900px) { .project-body { padding: 36px; gap: 18px; } }
.project h3 { font-size: clamp(1.625rem, 1.3rem + 1vw, 2rem); }
.project p { color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags li { border: 1px solid var(--line-2); padding: 4px 10px; font-size: .8125rem; font-weight: 600; color: var(--soft); }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 0; padding-top: 18px; border-top: 1px solid var(--line); }
.facts dt { color: var(--muted); font-size: .8125rem; }
.facts dd { margin: 0; font-weight: 700; }
.experience {
	margin-top: 24px; padding: 20px 24px; border: 1px solid var(--line);
	display: grid; gap: 6px; color: var(--muted); font-size: .9375rem;
}
.experience .names { color: var(--soft); font-weight: 700; font-size: 1.0625rem; }
@media (min-width: 900px) { .experience { grid-template-columns: auto 1fr; align-items: center; gap: 32px; padding: 24px 32px; } }

/* ---------- Why / values ---------- */
.why { display: grid; gap: 48px; }
@media (min-width: 1000px) { .why { grid-template-columns: 5fr 7fr; gap: 80px; } }
.why-intro { display: grid; gap: 20px; align-content: start; }
.why-intro h2 { font-size: clamp(2rem, 1.4rem + 3vw, 3.5rem); }
.why-intro > p { color: var(--muted); font-size: 1.0625rem; }
.values-title { font-size: 1rem; font-weight: 700; color: var(--soft); margin-top: 12px; }
.values { display: flex; flex-wrap: wrap; gap: 8px; }
.values li { border: 1px solid var(--line-2); padding: 8px 14px; font-size: .875rem; font-weight: 600; }
.strengths { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 600px) { .strengths { grid-template-columns: repeat(2, 1fr); } }
.strengths li { background: var(--navy-800); padding: 24px; display: grid; gap: 8px; align-content: start; }
@media (min-width: 900px) { .strengths li { padding: 32px; } }
.strengths h3 { font-size: 1.1875rem; }
.strengths h3::before { content: ""; display: block; width: 24px; height: 2px; background: var(--orange); margin-bottom: 14px; }
.strengths p { color: var(--muted); font-size: .9375rem; }

/* ---------- Process ---------- */
.process { display: grid; gap: 0; counter-reset: none; position: relative; }
.process li { position: relative; display: grid; grid-template-columns: 46px 1fr; column-gap: 18px; row-gap: 4px; padding-bottom: 28px; }
.process li::before { content: ""; position: absolute; left: 22px; top: 46px; bottom: 0; width: 1px; background: linear-gradient(var(--blue), var(--orange)); }
.process li:last-child::before { display: none; }
.step {
	grid-row: span 2; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
	border: 1px solid var(--blue-2); background: var(--navy-900); font-weight: 700; font-size: .875rem; font-variant-numeric: tabular-nums;
}
.process .is-warm .step { border-color: var(--orange); }
.process li:last-child .step { background: var(--orange); color: var(--navy-900); }
.process h3 { font-size: 1.0625rem; align-self: end; }
.process p { color: var(--muted); font-size: .875rem; }
@media (min-width: 1100px) {
	.process { grid-template-columns: repeat(8, 1fr); gap: 20px; }
	.process::before { content: ""; position: absolute; left: 0; right: 0; top: 23px; height: 1px; background: linear-gradient(90deg, var(--blue), var(--orange)); }
	.process li { grid-template-columns: 1fr; row-gap: 14px; padding-bottom: 0; }
	.process li::before { display: none; }
	.step { grid-row: auto; position: relative; }
	.process h3 { align-self: start; }
}

/* ---------- Blueprint ---------- */
.blueprint {
	padding-block: var(--section); border-block: 1px solid var(--line);
	background:
		linear-gradient(rgba(54,168,255,.07) 1px, transparent 1px) 0 0 / 48px 48px,
		linear-gradient(90deg, rgba(54,168,255,.07) 1px, transparent 1px) 0 0 / 48px 48px,
		var(--navy-700);
}
.blueprint-inner { display: grid; gap: 32px; }
@media (min-width: 1000px) { .blueprint-inner { grid-template-columns: 4fr 8fr; gap: 64px; align-items: center; } }
.blueprint-text { display: grid; gap: 18px; }
.blueprint-text h2 { font-size: clamp(2rem, 1.5rem + 2.4vw, 3rem); }
.blueprint-text p { color: var(--muted); font-size: 1.0625rem; }
.blueprint-fig { margin: 0; border: 1px solid rgba(54,168,255,.3); background: rgba(6,19,31,.6); padding: 8px; }
.blueprint-fig svg { width: 100%; height: auto; fill: none; }
.bp-steel { stroke: var(--blue-2); stroke-width: 1.4; }
.bp-steel .faint { stroke-opacity: .35; stroke-dasharray: 10 6; }
.bp-weld { stroke: var(--orange-2); stroke-width: 1.6; fill: rgba(255,122,24,.16); }
.bp-weld.dashed { stroke-dasharray: 6 6; fill: none; }
.bp-leaders { stroke: var(--muted); stroke-width: 1; stroke-opacity: .7; }
.bp-text text { fill: var(--soft); font: 600 12px/1 var(--font); letter-spacing: .08em; }
.bp-text .blue { fill: var(--blue-2); }
.dot { fill: var(--orange); }
@media (max-width: 599px) { .bp-text text { font-size: 17px; } }

/* ---------- CTA ---------- */
.cta {
	padding-block: var(--section); text-align: center;
	background:
		linear-gradient(rgba(54,168,255,.06) 1px, transparent 1px) 0 0 / 48px 48px,
		linear-gradient(90deg, rgba(54,168,255,.06) 1px, transparent 1px) 0 0 / 48px 48px,
		var(--navy-900);
}
.cta-inner { display: grid; gap: 22px; justify-items: center; }
.cta h2 { font-size: clamp(2.25rem, 1.5rem + 3.6vw, 4rem); }
.cta p { color: var(--muted); font-size: 1.0625rem; max-width: 60ch; }
.cta .btn-row { justify-content: center; width: 100%; }
@media (max-width: 599px) { .cta .btn { width: 100%; } }

/* ---------- Page hero / prose ---------- */
.page-hero {
	padding: calc(var(--header-h) + clamp(48px, 8vw, 96px)) 0 clamp(48px, 7vw, 96px);
	border-bottom: 1px solid var(--line);
	background:
		linear-gradient(rgba(54,168,255,.07) 1px, transparent 1px) 0 0 / 48px 48px,
		linear-gradient(90deg, rgba(54,168,255,.07) 1px, transparent 1px) 0 0 / 48px 48px,
		var(--navy-800);
}
.page-hero .wrap { display: grid; gap: 18px; }
.page-hero h1 { font-size: clamp(2.25rem, 1.5rem + 3.8vw, 4.75rem); max-width: 18ch; }
.page-hero-sm h1 { font-size: clamp(2rem, 1.5rem + 2.6vw, 3.5rem); }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .875rem; color: var(--muted); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--white); }
.crumbs [aria-current] { color: var(--blue-2); }
.prose { max-width: calc(760px + 2 * var(--gutter)); }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem); margin-top: 1.8em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.5em; }
.prose p, .prose li { color: var(--soft); }
.prose ul { list-style: disc; padding-left: 1.2em; }
.prose ol { list-style: decimal; padding-left: 1.2em; }
.prose li + li { margin-top: .4em; }
.prose img { margin-block: 1.5em; }
.prose table { width: 100%; border-collapse: collapse; display: block; overflow-x: auto; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.post-list li { padding: 16px 0; border-bottom: 1px solid var(--line); display: grid; gap: 4px; }
.post-list time { color: var(--muted); font-size: .875rem; }

/* ---------- Gallery (core [gallery]) ---------- */
.prose .gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 1.5em 0 !important; }
@media (min-width: 700px) { .prose .gallery { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
.prose .gallery-item { margin: 0 !important; width: auto !important; max-width: none !important; }
.prose .gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; margin: 0; border: 1px solid var(--line) !important; }
.prose .gallery br { display: none; }
.prose .gallery-caption { color: var(--muted); font-size: .8125rem; }
.prose .btn { margin-top: .5em; color: var(--navy-900); text-decoration: none; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 24px; align-items: start; }
@media (min-width: 1000px) { .contact-grid { grid-template-columns: 1.6fr 1fr; gap: 48px; } }
.panel { background: var(--navy-800); border: 1px solid var(--line); padding: 24px; display: grid; gap: 14px; }
@media (min-width: 600px) { .panel { padding: 40px; } }
.panel-quiet { background: transparent; }
.panel-title { font-size: clamp(1.375rem, 1.2rem + .8vw, 1.875rem); }
.contact-side { display: grid; gap: 20px; }
.company { color: var(--soft); }
.facts-list { grid-template-columns: auto 1fr; gap: 10px 20px; border-top: 0; padding-top: 0; }
.facts-list > div { display: contents; }
.facts-list dd { font-weight: 600; word-break: break-word; }
.next-steps { display: grid; gap: 18px; counter-reset: step; }
.next-steps li { display: grid; gap: 2px; padding-left: 40px; position: relative; counter-increment: step; }
.next-steps li::before { content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: 2px; color: var(--blue-2); font-weight: 800; font-size: .875rem; }
.next-steps span { color: var(--muted); font-size: .9375rem; }

.form { display: grid; gap: 22px; margin-top: 8px; }
.form-grid { display: grid; gap: 18px; }
@media (min-width: 700px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 20px; } .span-2 { grid-column: span 2; } }
.field { display: grid; gap: 8px; align-content: start; position: relative; }
.field label, .field .label { font-weight: 700; font-size: .9375rem; }
.req { color: var(--orange-2); }
.hint { color: #8FA1B1; font-size: .8125rem; line-height: 1.5; }
.field input, .field select, .field textarea {
	width: 100%; min-height: 52px; padding: 12px 14px;
	background: var(--navy-900); color: var(--white);
	border: 1px solid var(--line-2); border-radius: 2px;
	font: inherit; font-size: 1rem; /* 16px avoids iOS zoom on focus */
	-webkit-appearance: none; appearance: none;
}
.field select {
	padding-right: 40px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A7B5C2' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 14px center; background-size: 16px;
}
.field textarea { min-height: 160px; resize: vertical; line-height: 1.55; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--blue-2); outline-offset: 1px; border-color: var(--blue-2); }
.field input::placeholder, .field textarea::placeholder { color: #6F8496; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #FF8A7A; }
.field-error { color: #FFB1A6; font-size: .8125rem; }
.drop {
	display: flex; align-items: center; gap: 16px; min-height: 76px; padding: 16px 18px; cursor: pointer;
	border: 1px dashed rgba(54,168,255,.5); background: rgba(22,139,255,.05);
}
.drop .icon { width: 28px; height: 28px; color: var(--blue-2); flex: none; }
.drop span { display: grid; gap: 2px; }
.drop:hover { border-color: var(--blue-2); }
#f-files:focus-visible + .drop, .drop:focus-within { outline: 2px solid var(--blue-2); outline-offset: 2px; }
.hp { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip-path: inset(50%) !important; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: .9375rem; color: var(--soft); cursor: pointer; }
.check input { width: 22px; height: 22px; margin: 2px 0 0; accent-color: var(--orange); flex: none; }
.form-foot { display: grid; gap: 16px; padding-top: 20px; border-top: 1px solid var(--line); }
.form-foot .hint { display: flex; gap: 8px; align-items: center; }
.form-foot .hint .icon { width: 16px; height: 16px; flex: none; }
.form-foot .btn { width: 100%; }
@media (min-width: 700px) { .form-foot { grid-template-columns: 1fr auto; align-items: center; } .form-foot .btn { width: auto; } }
.btn[aria-busy="true"] { opacity: .7; pointer-events: none; }
.form-note { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border: 1px solid; }
.form-note .icon { width: 22px; height: 22px; flex: none; margin-top: 2px; }
.form-note.is-success { border-color: rgba(54,168,255,.5); background: rgba(22,139,255,.08); }
.form-note.is-success .icon { color: var(--blue-2); }
.form-note.is-error { border-color: rgba(255,138,122,.6); background: rgba(255,138,122,.08); }
.form-note.is-error .icon { color: #FF8A7A; }

/* ---------- 404 ---------- */
.notfound { min-height: 100svh; display: flex; align-items: center; padding: calc(var(--header-h) + 48px) 0 64px; }
.notfound-inner { display: grid; gap: 40px; align-items: center; }
.notfound h1 { font-size: clamp(2.25rem, 1.6rem + 3vw, 4rem); margin-block: 14px 18px; }
.nf-art { width: 100%; max-width: 560px; fill: none; }
@media (min-width: 900px) { .notfound-inner { grid-template-columns: 1fr 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer); border-top: 1px solid var(--line); color: var(--muted); font-size: .9375rem; padding-top: clamp(48px, 8vw, 88px); }
.footer-grid { display: grid; gap: 0; padding-bottom: 32px; }
.footer-about { display: grid; gap: 18px; align-content: start; padding-bottom: 28px; }
.footer-about p { max-width: 40ch; }
.brand-footer img { height: auto; width: 230px; max-width: 70%; }
.footer-contact { display: grid; gap: 4px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 10px; min-height: 40px; color: var(--soft); text-decoration: none; font-weight: 600; }
.footer-contact a:hover { color: var(--white); }
.footer-contact .icon { width: 18px; height: 18px; color: var(--orange-2); }
.social { display: flex; gap: 12px; }
.social a { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line-2); color: var(--muted); }
.social a:hover { color: var(--white); border-color: var(--blue-2); }
.social .icon { width: 18px; height: 18px; }
.footer-col { border-top: 1px solid var(--line); }
.footer-col:last-child { border-bottom: 1px solid var(--line); }
.footer-title { margin: 0; font-size: 1rem; }
.footer-toggle {
	width: 100%; min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
	background: none; border: 0; padding: 0; color: var(--white); font-weight: 700; font-size: .9375rem; letter-spacing: .02em; cursor: pointer; text-align: left;
}
.footer-toggle .icon { width: 18px; height: 18px; color: var(--muted); transition: transform .25s var(--ease); }
.footer-toggle[aria-expanded="true"] .icon { transform: rotate(180deg); color: var(--blue-2); }
.footer-panel { padding-bottom: 16px; }
.js .footer-col:not(.is-open) .footer-panel { display: none; }
.footer-list li a { display: inline-flex; align-items: center; min-height: 42px; color: var(--muted); text-decoration: none; }
.footer-list li a:hover { color: var(--white); }
.footer-company { display: grid; gap: 20px; padding-block: 24px; border-top: 1px solid var(--line); }
.footer-company address { font-style: normal; display: grid; gap: 2px; font-size: .8125rem; line-height: 1.6; color: #8FA1B1; }
.footer-company strong { color: var(--soft); font-weight: 700; }
.footer-langs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 6px; max-width: 420px; }
.footer-langs .lang-item {
	display: flex; align-items: center; justify-content: center; gap: 6px; min-height: 40px; padding: 0 4px;
	border: 1px solid var(--line); color: var(--soft); text-decoration: none; font-size: .75rem; font-weight: 700; white-space: nowrap;
}
.footer-langs .flag { width: 18px; height: 12px; }
.footer-langs .lang-label, .footer-langs .lang-soon { display: none; }
.footer-langs .is-current { border-color: var(--orange); color: var(--white); }
.footer-langs .is-soon { opacity: .6; }
@media (min-width: 900px) { .footer-langs { display: flex; max-width: none; } .footer-langs .lang-item { padding: 0 10px; gap: 8px; font-size: .8125rem; } .footer-langs .flag { width: 22px; height: 15px; } }
.footer-bottom { display: grid; gap: 8px; padding-block: 20px calc(20px + var(--safe-b)); border-top: 1px solid var(--line); font-size: .8125rem; color: #7F93A5; }
.credits { color: #6F8496; }
.credits a { color: #8FA1B1; text-decoration: underline; text-decoration-color: currentColor; text-decoration-thickness: 1px; text-underline-offset: 3px; display: inline-block; padding-block: 12px; }
.credits a:hover { color: var(--white); text-decoration: underline; }
.credits span { margin-inline: 6px; opacity: .6; }
@media (min-width: 900px) {
	.footer-grid { grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 48px; padding-bottom: 48px; }
	.footer-about { padding-bottom: 0; }
	.footer-col, .footer-col:last-child { border: 0; }
	.footer-toggle { min-height: 0; margin-bottom: 12px; cursor: default; pointer-events: none; font-size: .8125rem; letter-spacing: .08em; text-transform: uppercase; }
	.footer-toggle .icon { display: none; }
	.footer-panel, .js .footer-col:not(.is-open) .footer-panel { display: block; padding: 0; }
	.footer-company { grid-template-columns: 1fr auto; align-items: center; }
	.footer-bottom { grid-template-columns: 1fr auto; align-items: center; gap: 32px; }
}

/* ---------- Cookie consent ---------- */
.consent {
	position: fixed; z-index: 90; left: 12px; right: 12px; bottom: calc(12px + var(--safe-b));
	max-height: calc(100svh - 24px); overflow-y: auto; overscroll-behavior: contain;
	background: var(--navy-800); border: 1px solid var(--line-2); border-top: 3px solid var(--orange);
	box-shadow: 0 24px 60px -20px rgba(0,0,0,.7);
}
.consent[hidden] { display: none; }
@media (min-width: 700px) { .consent { left: auto; right: 24px; bottom: 24px; width: 560px; } }
.consent-inner { padding: 20px; display: grid; gap: 14px; }
@media (min-width: 700px) { .consent-inner { padding: 28px; gap: 16px; } }
.consent-title { font-size: 1.25rem; }
.consent p { color: var(--soft); font-size: .875rem; line-height: 1.6; }
.consent-cats { border: 1px solid var(--line); margin: 0; padding: 0; }
.consent-cat { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.consent-cat:last-child { border-bottom: 0; }
.consent-cat > div { display: grid; gap: 2px; }
.consent-cat-name { font-weight: 700; font-size: .9375rem; }
.consent-cat-desc { color: var(--muted); font-size: .8125rem; line-height: 1.45; }
.consent-always { color: #8FA1B1; font-size: .75rem; font-weight: 700; white-space: nowrap; }
.switch {
	flex: none; width: 52px; height: 30px; padding: 3px; border: 1px solid var(--line-2); background: var(--navy-900);
	display: flex; cursor: pointer; border-radius: 2px;
}
.switch span { width: 22px; height: 22px; background: #6F8496; transition: transform .2s var(--ease), background-color .2s; }
.switch[aria-checked="true"] { background: var(--blue); border-color: var(--blue); }
.switch[aria-checked="true"] span { transform: translateX(22px); background: var(--white); }
.consent-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.consent-actions .btn { min-height: 48px; padding: 0 12px; font-size: .875rem; }
.consent-actions .btn-primary { grid-column: span 2; }
@media (min-width: 700px) { .consent-actions { grid-template-columns: repeat(3, 1fr); } .consent-actions .btn-primary { grid-column: auto; } }

/* ---------- Reveal (single orchestrated entrance, JS-enabled only) ---------- */
@media (prefers-reduced-motion: no-preference) {
	.js .hero-content > * { opacity: 0; animation: rise .7s var(--ease) forwards; }
	.js .hero-content > :nth-child(2) { animation-delay: .08s; }
	.js .hero-content > :nth-child(3) { animation-delay: .16s; }
	.js .hero-content > :nth-child(4) { animation-delay: .24s; }
	@keyframes rise { to { opacity: 1; } }
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ======================================================================
   v1.1 – logo, links, page blocks
   ====================================================================== */
.brand-img { padding: 0; }
.brand-logo { height: 38px; width: auto; max-width: 180px; object-fit: contain; }
@media (min-width: 900px) { .brand-logo { height: 46px; max-width: 220px; } .site-header.is-scrolled .brand-logo { height: 40px; } }
.logo-plate .brand-logo { background: #F5F8FA; padding: 5px 10px; border-radius: 2px; box-sizing: content-box; height: 30px; }
@media (min-width: 900px) { .logo-plate .brand-logo { height: 36px; } }
.logo-white .brand-logo { filter: brightness(0) invert(1); }
.site-footer .brand-logo { height: 40px; }
.site-footer .logo-plate .brand-logo { height: 32px; }

.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--blue-2); text-decoration: none; min-height: 44px; }
.text-link .icon { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.text-link:hover .icon { transform: translateX(4px); }
.title-link { color: inherit; text-decoration: none; }
.title-link:hover { color: var(--blue-2); }
.updated { color: var(--muted); font-size: .875rem; }
.page-hero .lead { max-width: 62ch; }

/* Page blocks: full-width sections written in page content. */
.wip-blocks { display: block; }
.pb-section { padding-block: var(--section); }
.pb-section + .pb-section { border-top: 1px solid var(--line); }
.pb-alt { background: var(--navy-800); }
.pb-alt + .pb-section, .pb-section + .pb-alt { border-top: 0; }
.pb-head { display: grid; gap: 14px; margin-bottom: clamp(32px, 4.5vw, 56px); max-width: 760px; }
.pb-head h2 { font-size: clamp(1.875rem, 1.3rem + 2.6vw, 3rem); }
.pb-head p { color: var(--muted); font-size: clamp(1rem, .95rem + .3vw, 1.0625rem); }
.pb-label { color: var(--blue-2); font-size: .8125rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.pb-split { display: grid; gap: 32px; align-items: center; }
@media (min-width: 950px) { .pb-split { grid-template-columns: 1fr 1fr; gap: 72px; } .pb-split.is-reverse > :first-child { order: 2; } }
.pb-split .pb-text { display: grid; gap: 18px; }
.pb-split h2 { font-size: clamp(1.875rem, 1.3rem + 2.6vw, 3rem); }
.pb-split h3 { font-size: 1.375rem; }
.pb-text p { color: var(--soft); }
.pb-media { margin: 0; position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy-700); border: 1px solid var(--line); }
.pb-media img { width: 100%; height: 100%; object-fit: cover; }
.pb-media figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 14px; font-size: .75rem; color: var(--muted); background: linear-gradient(0deg, rgba(6,19,31,.85), transparent); }

.pb-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .pb-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1050px) { .pb-grid-3 { grid-template-columns: repeat(3, 1fr); } .pb-grid-4 { grid-template-columns: repeat(4, 1fr); } }
.pb-card { background: var(--navy-800); border: 1px solid var(--line); padding: 24px; display: grid; gap: 12px; align-content: start; }
.pb-alt .pb-card { background: var(--navy-900); }
@media (min-width: 900px) { .pb-card { padding: 32px; } }
.pb-card h3 { font-size: 1.25rem; }
.pb-card p { color: var(--muted); font-size: .9375rem; }
.pb-icon .icon { width: 32px; height: 32px; color: var(--blue-2); }
.pb-card.is-warm .pb-icon .icon { color: var(--orange-2); }

.pb-list { display: grid; gap: 10px; }
.pb-list li { position: relative; padding-left: 28px; color: var(--soft); }
.pb-list li::before { content: ""; position: absolute; left: 0; top: .6em; width: 14px; height: 2px; background: var(--blue-2); }
.pb-list.is-warm li::before { background: var(--orange); }
.pb-list strong { color: var(--white); }
@media (min-width: 800px) { .pb-list.is-cols { grid-template-columns: 1fr 1fr; column-gap: 40px; } }

.pb-phases { display: grid; gap: 20px; counter-reset: phase; }
@media (min-width: 1050px) { .pb-phases { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.pb-phase { counter-increment: phase; border: 1px solid var(--line); background: var(--navy-800); padding: 28px 24px; display: grid; gap: 16px; align-content: start; position: relative; }
.pb-phase::before { content: counter(phase, decimal-leading-zero); font-weight: 800; font-size: 2.5rem; line-height: 1; color: var(--orange-2); }
.pb-phase h3 { font-size: 1.375rem; }
.pb-phase .pb-when { color: var(--blue-2); font-size: .8125rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
@media (min-width: 900px) { .pb-phase { padding: 36px 32px; } }

.pb-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pb-chips li { border: 1px solid var(--line-2); padding: 8px 14px; font-size: .875rem; font-weight: 600; }

.pb-facts { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); margin: 0; }
@media (min-width: 640px) { .pb-facts { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .pb-facts.is-4 { grid-template-columns: repeat(4, 1fr); } }
.pb-facts > div { background: var(--navy-800); padding: 18px 20px; display: grid; gap: 4px; }
.pb-facts dt { color: var(--muted); font-size: .8125rem; }
.pb-facts dd { margin: 0; font-weight: 700; }

.pb-project { display: grid; gap: 0; border: 1px solid var(--line); background: var(--navy-800); }
@media (min-width: 950px) { .pb-project { grid-template-columns: 5fr 7fr; } }
.pb-project + .pb-project { margin-top: 24px; }
.pb-project-side { padding: 28px 24px; border-bottom: 1px solid var(--line); display: grid; gap: 16px; align-content: start; background: var(--navy-700); }
@media (min-width: 950px) { .pb-project-side { padding: 40px; border-bottom: 0; border-right: 1px solid var(--line); } }
.pb-project-side h2 { font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem); }
.pb-project-body { padding: 28px 24px; display: grid; gap: 18px; align-content: start; }
@media (min-width: 950px) { .pb-project-body { padding: 40px; } }
.pb-project-body p { color: var(--soft); }
.pb-note { font-size: .875rem; color: var(--muted); border-left: 2px solid var(--blue-2); padding-left: 14px; }

.pb-cta { padding-block: clamp(56px, 8vw, 96px); background:
	linear-gradient(rgba(54,168,255,.06) 1px, transparent 1px) 0 0 / 48px 48px,
	linear-gradient(90deg, rgba(54,168,255,.06) 1px, transparent 1px) 0 0 / 48px 48px, var(--navy-700);
	border-top: 1px solid var(--line); }
.pb-cta .wrap { display: grid; gap: 20px; }
@media (min-width: 900px) { .pb-cta .wrap { grid-template-columns: 1fr auto; align-items: center; gap: 48px; } }
.pb-cta h2 { font-size: clamp(1.75rem, 1.3rem + 2vw, 2.75rem); }
.pb-cta p { color: var(--muted); margin-top: 10px; max-width: 60ch; }
.pb-cta .btn-row { margin: 0; }
@media (max-width: 599px) { .pb-cta .btn { width: 100%; } }
.pb-anchor { scroll-margin-top: calc(var(--header-h) + 16px); }
.pb-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (min-width: 800px) { .pb-gallery { grid-template-columns: repeat(4, 1fr); gap: 12px; } }
.pb-gallery figure { margin: 0; aspect-ratio: 1; overflow: hidden; background: var(--navy-700); }
.pb-gallery img { width: 100%; height: 100%; object-fit: cover; }
.prose h2:first-child { margin-top: 0; }
.prose address { font-style: normal; color: var(--soft); }


/* ---------- Light sections (about a third of each page) ---------- */
.is-light {
	--white: #0B1A28;
	--soft: #2B3C4E;
	--muted: #53636F;
	--line: rgba(6, 19, 31, .10);
	--line-2: rgba(6, 19, 31, .20);
	--navy-800: #FFFFFF;
	--navy-700: #E4EAF0;
	--blue-2: #0A6ED1;
	background: #F2F5F8;
	color: #0B1A28;
}
.is-light a:not(.btn):hover { color: #06131F; }
.is-light .card, .is-light .project, .is-light .pb-card, .is-light .pb-phase, .is-light .pb-project, .is-light .panel:not(.panel-quiet) {
	box-shadow: 0 1px 2px rgba(6, 19, 31, .05), 0 14px 34px -22px rgba(6, 19, 31, .35);
}
@media (hover: hover) {
	.is-light .card:hover { box-shadow: 0 0 0 1px rgba(10, 110, 209, .25), 0 22px 44px -22px rgba(10, 110, 209, .45); }
}
.is-light .step { background: #FFFFFF; }
.is-light .process li:last-child .step { background: var(--orange); color: #06131F; }
.is-light .btn-ghost { color: #0B1A28; border-color: rgba(6, 19, 31, .25); }
.is-light .btn-ghost:hover { border-color: var(--blue-2); color: #0B1A28; }
.is-light .hint { color: #5C6B79; }
.is-light .field input, .is-light .field select, .is-light .field textarea { background: #FFFFFF; color: #0B1A28; border-color: rgba(6, 19, 31, .22); }
.is-light .field input::placeholder, .is-light .field textarea::placeholder { color: #8795A3; }
.is-light .drop { background: #F5F9FD; border-color: rgba(10, 110, 209, .45); }
.is-light .form-note.is-success { background: #EAF3FD; }
.is-light .form-note.is-error { background: #FFF1EF; color: #7A1F12; }
.is-light .pb-media figcaption { color: #FFFFFF; }
.is-light .tags li { background: #F2F5F8; }
.is-light .img-missing { background-color: #E4EAF0; }
.is-light .experience .names { color: #0B1A28; }

/* Layout safety: grid/flex children may shrink below their content width. */
.contact-grid > *, .form-grid > *, .footer-grid > *, .pb-split > *, .pb-grid > *, .projects > * { min-width: 0; }
.field select { max-width: 100%; text-overflow: ellipsis; }

/* ---------- Footer bottom centred on mobile ---------- */
@media (max-width: 899px) {
	.footer-bottom { text-align: center; justify-items: center; }
	.footer-company { justify-items: center; text-align: center; }
	.footer-company address { justify-items: center; }
}

/* ---------- Page blocks: extras ---------- */
.pb-card .pb-card-img { margin: -24px -24px 8px; aspect-ratio: 16 / 9; overflow: hidden; background: var(--navy-700); }
@media (min-width: 900px) { .pb-card .pb-card-img { margin: -32px -32px 8px; } }
.pb-card .pb-card-img img { width: 100%; height: 100%; object-fit: cover; }
.pb-card a.more { text-decoration: none; }
.pb-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-2); font-weight: 700; font-size: .875rem; }
.pb-kicker .icon { width: 22px; height: 22px; }
@media (min-width: 950px) { .pb-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.btn .pb-icon { display: inline-flex; }
.btn .pb-icon .icon { width: 18px; height: 18px; color: currentColor; }
.pb-kicker .pb-icon .icon { width: 22px; height: 22px; }
.pb-card > .pb-icon { display: inline-flex; width: 52px; height: 52px; align-items: center; justify-content: center; border: 1px solid var(--line-2); }
.pb-card > .pb-icon .icon { width: 26px; height: 26px; }
.pb-cta .btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.pb-industries { margin-top: 0; }
.pb-stat { display: grid; gap: 6px; }
.pb-stat strong { font-size: 1.25rem; }
.pb-stat span { color: var(--muted); font-size: .875rem; }

.pb-card h3 a { color: inherit; text-decoration: none; }
.pb-card h3 a:hover { color: var(--blue-2); }
.pb-card .more { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 4px; min-height: 44px; }

@media (min-width: 1280px) { .cards { grid-template-columns: repeat(4, 1fr); } .cards .card-body { padding: 26px; } .cards .card h3 { font-size: 1.1875rem; } }
/* 7 industries: the last two share the final row on desktop */
@media (min-width: 900px) { .industry:nth-child(n+6):nth-last-child(-n+2) { grid-column: span 3; } }

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-hero .kicker, .post-hero .kicker { color: var(--blue-2); }
.blog-layout { display: grid; gap: 40px; }
@media (min-width: 1024px) { .blog-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 48px; align-items: start; } }
.post-grid { display: grid; gap: 24px; }
@media (min-width: 700px) { .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .post-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.post-card { position: relative; display: flex; flex-direction: column; min-width: 0; background: #FFFFFF; border: 1px solid rgba(6,19,31,.1); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.post-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(6,19,31,.45); }
.post-card-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #DDE5EC; }
.post-card-media img, .post-card-media .img-missing { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-card-media img { transform: scale(1.04); }
.post-card-body { display: flex; flex-direction: column; gap: 12px; padding: 22px; flex: 1; }
.post-card h3 { font-size: 1.1875rem; line-height: 1.3; letter-spacing: -.01em; }
.is-light .post-card h3 a, .post-card h3 a { color: #0B1A28; text-decoration: none; }
.post-card-link::after { content: ""; position: absolute; inset: 0; }
.post-card-link:focus-visible { outline: none; }
.post-card-link:focus-visible::after { outline: 2px solid var(--blue); outline-offset: -2px; }
.post-card p { color: #4A5B6B; font-size: .9375rem; margin: 0; }
.post-card .post-meta { margin-top: auto; font-size: .8125rem; color: #6A7B8B; display: flex; gap: 6px; flex-wrap: wrap; }
@media (min-width: 700px) { .post-card.is-featured { grid-column: 1 / -1; } }
@media (min-width: 900px) {
	.post-card.is-featured { display: grid; grid-template-columns: 1.25fr 1fr; }
	.post-card.is-featured .post-card-media { aspect-ratio: auto; min-height: 340px; }
	.post-card.is-featured .post-card-body { padding: 32px; justify-content: center; }
	.post-card.is-featured h3 { font-size: 1.625rem; }
}
.chip { position: relative; z-index: 2; align-self: flex-start; display: inline-flex; padding: 5px 10px; font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #0B5FB0 !important; background: rgba(22,139,255,.1); text-decoration: none !important; }
.chip:hover { background: rgba(22,139,255,.18); }
.blog-empty { color: #4A5B6B; }

.blog-aside, .post-aside { display: grid; gap: 20px; align-content: start; min-width: 0; }
@media (min-width: 1024px) { .blog-aside, .post-aside { position: sticky; top: calc(var(--header-h) + 24px); } }
.widget { background: #FFFFFF; border: 1px solid rgba(6,19,31,.1); padding: 22px; }
.widget h2 { font-size: .8125rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #5B6B7A; margin: 0 0 12px; }
.cat-list a { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(6,19,31,.08); color: #0B1A28; text-decoration: none; font-weight: 600; }
.cat-list li:last-child a { border-bottom: 0; }
.cat-list a:hover, .cat-list a[aria-current] { color: var(--blue); }
.cat-list .count { min-width: 28px; text-align: center; font-size: .8125rem; color: #5B6B7A; background: #F2F5F8; padding: 2px 8px; }
.mini-posts { display: grid; gap: 14px; }
.mini-posts a { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 12px; align-items: center; color: #0B1A28; text-decoration: none; font-weight: 600; font-size: .9375rem; line-height: 1.35; }
.mini-posts a:hover { color: var(--blue); }
.mini-thumb { width: 64px; height: 64px; overflow: hidden; background: #DDE5EC; }
.mini-thumb img, .mini-thumb .img-missing { width: 100%; height: 100%; object-fit: cover; min-height: 0; }
.mini-posts small { display: block; margin-top: 4px; font-weight: 500; color: #6A7B8B; font-size: .75rem; }
.blog-search { display: flex; padding: 6px; gap: 6px; }
.blog-search input { flex: 1; min-width: 0; height: 44px; border: 0; background: #F2F5F8; padding: 0 14px; font: inherit; color: #0B1A28; }
.blog-search button { width: 44px; height: 44px; border: 0; background: #06131F; color: #FFFFFF; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.widget-cta { background: #06131F; border-color: #06131F; color: #F5F8FA; display: grid; gap: 12px; }
.widget-cta .kicker { margin: 0; color: var(--orange-2); }
.widget-cta h2 { font-size: 1.25rem; letter-spacing: -.01em; text-transform: none; color: #FFFFFF; margin: 0; }
.widget-cta p { color: #A7B5C2; font-size: .9375rem; margin: 0; }
.widget-cta .btn { justify-self: start; }
.pagination { margin-top: 36px; }
.pagination ul { display: flex; flex-wrap: wrap; gap: 8px; }
.pagination a, .pagination span { display: inline-flex; min-width: 44px; height: 44px; align-items: center; justify-content: center; padding: 0 14px; background: #FFFFFF; border: 1px solid rgba(6,19,31,.12); color: #0B1A28; text-decoration: none; font-weight: 700; }
.pagination .current { background: #06131F; color: #FFFFFF; border-color: #06131F; }

/* Single article */
.post-byline { display: flex; align-items: center; gap: 14px; margin-top: 6px; }
.avatar { flex: none; width: 48px; height: 48px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: #0D2638; color: var(--orange-2); font-weight: 800; font-size: 1rem; border: 1px solid var(--line-2); }
.avatar-lg { width: 64px; height: 64px; font-size: 1.25rem; }
.byline-text { display: grid; gap: 2px; font-size: .9375rem; }
.byline-text .role { color: var(--muted); font-weight: 500; margin-left: 6px; }
.byline-meta { color: var(--muted); font-size: .875rem; }
.post-section { padding-top: clamp(28px, 4vw, 48px); }
.post-cover { margin: 0 0 clamp(28px, 4vw, 48px); }
.post-cover img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.post-cover figcaption { font-size: .75rem; color: #6A7B8B; margin-top: 8px; }
.post-layout { display: grid; gap: 40px; }
@media (min-width: 1024px) { .post-layout { grid-template-columns: minmax(0, 780px) 300px; justify-content: center; column-gap: clamp(40px, 5vw, 72px); align-items: start; } }
.post-body { min-width: 0; color: #1C2B39; font-size: 1.0625rem; line-height: 1.75; }
.post-body > * + * { margin-top: 1.1em; }
.post-body h2 { font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem); line-height: 1.2; margin-top: 1.9em; color: #0B1A28; scroll-margin-top: calc(var(--header-h) + 20px); }
.post-body h3 { font-size: 1.25rem; margin-top: 1.5em; color: #0B1A28; scroll-margin-top: calc(var(--header-h) + 20px); }
.post-body p, .post-body li { color: #2A3A49; }
.post-body a:not(.btn) { color: #0B5FB0; text-decoration: underline; text-underline-offset: 3px; }
.post-body ul { list-style: disc; padding-left: 1.3em; }
.post-body ol { list-style: decimal; padding-left: 1.3em; }
.post-body li + li { margin-top: .45em; }
.post-body strong { color: #0B1A28; }
.post-body figure { margin: 1.8em 0; }
.post-body figure img { width: 100%; height: auto; }
.post-body figcaption { font-size: .8125rem; color: #6A7B8B; margin-top: 8px; }
.post-body blockquote { margin: 1.6em 0; padding: 18px 22px; border-left: 3px solid var(--orange); background: #FFFFFF; font-size: 1.125rem; color: #0B1A28; }
.post-body .table-wrap { overflow-x: auto; margin: 1.6em 0; }
.post-body table { width: 100%; min-width: 560px; border-collapse: collapse; background: #FFFFFF; font-size: .9375rem; }
.post-body th, .post-body td { border: 1px solid rgba(6,19,31,.12); padding: 11px 14px; text-align: left; vertical-align: top; }
.post-body th { background: #06131F; color: #FFFFFF; font-weight: 700; }
.post-body tr:nth-child(even) td { background: #F7F9FB; }
.post-takeaways { background: #FFFFFF; border: 1px solid rgba(6,19,31,.1); border-top: 3px solid var(--orange); padding: 22px 24px; }
.post-takeaways > p:first-child { font-size: .8125rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #C2560A; margin: 0 0 8px; }
.post-takeaways ul { margin: 0; }
.post-callout { background: rgba(22,139,255,.08); border-left: 3px solid var(--blue); padding: 18px 22px; }
.post-callout p { margin: 0; color: #0B1A28; }
.wip-faq { display: grid; gap: 10px; }
.wip-faq details { background: #FFFFFF; border: 1px solid rgba(6,19,31,.1); }
.wip-faq summary { cursor: pointer; list-style: none; padding: 16px 48px 16px 18px; font-weight: 700; color: #0B1A28; position: relative; }
.wip-faq summary::-webkit-details-marker { display: none; }
.wip-faq summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 1.375rem; color: var(--blue); }
.wip-faq details[open] summary::after { content: "–"; }
.wip-faq details > div { padding: 0 18px 16px; }
.wip-faq details > div p { margin: 0; }
.post-inline-cta { background: #06131F; color: #F5F8FA; padding: 26px; display: grid; gap: 12px; }
.post-inline-cta p { color: #C3CFD9 !important; margin: 0; }
.post-inline-cta strong { color: #FFFFFF !important; font-size: 1.1875rem; }
.post-inline-cta .btn { justify-self: start; color: #06131F !important; text-decoration: none !important; }
.author-box { display: flex; gap: 18px; align-items: flex-start; margin-top: 3em !important; padding: 24px; background: #FFFFFF; border: 1px solid rgba(6,19,31,.1); }
.author-box .kicker { margin: 0 0 4px; color: #5B6B7A; }
.author-box .author-name { font-weight: 800; color: #0B1A28; margin: 0; }
.author-box .author-name span { font-weight: 500; color: #5B6B7A; }
.author-box p { margin: 6px 0 0; font-size: .9375rem; }
.toc ol { counter-reset: toc; display: grid; gap: 2px; }
.toc li { counter-increment: toc; }
.toc a { display: grid; grid-template-columns: 26px minmax(0, 1fr); gap: 6px; padding: 7px 0; color: #3A4B5B; text-decoration: none; font-size: .9375rem; line-height: 1.4; border-left: 2px solid transparent; }
.toc a::before { content: counter(toc, decimal-leading-zero); color: #8A9AA9; font-size: .75rem; font-weight: 700; padding-top: 2px; }
.toc a:hover, .toc a.is-active { color: #0B5FB0; }
.toc a.is-active::before { color: var(--orange); }
@media (max-width: 1023px) { .post-aside { order: -1; } .post-aside .widget-cta { display: none; } }
.related-section { background: #E9EEF3; }
.related-title { font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem); color: #0B1A28; margin-bottom: 28px; }
.read-progress { position: fixed; top: var(--header-h); left: 0; right: 0; height: 3px; z-index: 48; pointer-events: none; }
.read-progress span { display: block; height: 100%; width: 0; background: var(--orange); transition: width .1s linear; }

/* Long compound words (German): hyphenate headings and never let a word widen the layout */
h1, h2, h3 { overflow-wrap: break-word; }
.hero-content, .hero-content > * { min-width: 0; }
:lang(de) h1, :lang(de) h2, :lang(de) h3, :lang(de) .card h3, :lang(de) .btn { -webkit-hyphens: auto; hyphens: auto; }
:lang(de) .hero h1 { font-size: clamp(2.125rem, 1.4rem + 5vw, 5rem); }
:lang(de) .page-hero h1 { font-size: clamp(2rem, 1.3rem + 3.6vw, 4.5rem); }
.page-hero .wrap > *, .pb-head > *, .section-head > *, .cta-inner > * { min-width: 0; max-width: 100%; }

/* ==========================================================================
   Portfolio (projects + clients)
   ========================================================================== */
.pf-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: rgba(6,19,31,.1); border: 1px solid rgba(6,19,31,.1); margin: 0 0 28px; }
.pf-stats div { background: #FFFFFF; padding: 18px 20px; display: flex; flex-direction: column-reverse; gap: 2px; }
.pf-stats dt { font-size: .8125rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #5B6B7A; }
.pf-stats dd { margin: 0; font-size: clamp(1.75rem, 1.3rem + 2vw, 2.75rem); font-weight: 800; color: #0B1A28; line-height: 1; }
.pf-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; }
.pf-filters button { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px; border: 1px solid rgba(6,19,31,.15); background: #FFFFFF; color: #0B1A28; font: inherit; font-weight: 700; font-size: .875rem; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.pf-filters button span { font-size: .75rem; color: #5B6B7A; background: #F2F5F8; padding: 2px 7px; }
.pf-filters button:hover { border-color: var(--blue); }
.pf-filters button.is-active { background: #06131F; color: #FFFFFF; border-color: #06131F; }
.pf-filters button.is-active span { background: rgba(255,255,255,.14); color: #FFFFFF; }
.pf-grid { display: grid; gap: 20px; }
@media (min-width: 760px) { .pf-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .pf-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.pf-card { position: relative; display: flex; flex-direction: column; gap: 14px; min-width: 0; padding: 24px; background: #FFFFFF; border: 1px solid rgba(6,19,31,.1); border-top: 3px solid var(--blue); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.pf-card[data-sector="refinery"] { border-top-color: var(--orange); }
.pf-card[data-sector="onshore"] { border-top-color: #0B5FB0; }
.pf-card[data-sector="renewable"] { border-top-color: #1D9E75; }
.pf-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -26px rgba(6,19,31,.5); }
.pf-card[hidden] { display: none; }
.pf-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.pf-year { font-size: .8125rem; font-weight: 700; color: #5B6B7A; }
.pf-card h3 { font-size: 1.25rem; line-height: 1.25; color: #0B1A28; -webkit-hyphens: auto; hyphens: auto; }
.pf-client { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-block: 1px solid rgba(6,19,31,.08); }
.pf-client strong { display: block; color: #0B1A28; font-size: .9375rem; }
.pf-client span:not(.pf-logo) { display: block; color: #5B6B7A; font-size: .8125rem; line-height: 1.4; }
.pf-logo { flex: none; min-width: 56px; max-width: 96px; padding: 0 8px; height: 40px; overflow: hidden; white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; background: #06131F; color: var(--orange-2); font-weight: 800; font-size: .75rem; letter-spacing: .04em; }
.pf-logo.has-img { background: #FFFFFF; border: 1px solid rgba(6,19,31,.08); padding: 4px; }
.pf-logo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.pf-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0; }
.pf-meta dt { font-size: .6875rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #8A9AA9; }
.pf-meta dd { margin: 2px 0 0; font-size: .875rem; font-weight: 600; color: #0B1A28; }
.pf-summary { margin: 0; font-size: .9375rem; line-height: 1.6; color: #3A4B5B; }
.pf-scopes { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 4px; }
.pf-scopes li { font-size: .75rem; font-weight: 600; color: #0B1A28; background: #F2F5F8; border: 1px solid rgba(6,19,31,.06); padding: 4px 9px; }
.clients-wall { background: var(--navy-900); }
.cl-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 600px) { .cl-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 900px) { .cl-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .cl-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.cl-item { background: #FFFFFF; border-radius: 6px; box-shadow: 0 1px 2px rgba(6,19,31,.25); min-height: 104px; display: flex; align-items: center; justify-content: center; padding: 18px 20px; text-align: center; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.cl-item:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(6,19,31,.4); }
.cl-item a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; text-decoration: none; }
.cl-item img { max-width: 140px; max-height: 52px; width: auto; height: auto; object-fit: contain; }
.cl-name { font-weight: 800; font-size: clamp(.9375rem, .85rem + .3vw, 1.125rem); letter-spacing: .01em; color: #06131F; }

/* ==========================================================================
   Careers page: founder quote + quick-facts strip
   Colors are hardcoded (not theme tokens) so these "always-dark" chips stay
   readable even when placed inside a light (.is-light) section, which remaps
   --white/--navy-800/etc. for ordinary components. See .pf-logo for the same pattern.
   ========================================================================== */
.pb-founder-quote { position: relative; padding: 40px clamp(24px, 4vw, 56px); background: #0A1D2B; border: 1px solid rgba(255,255,255,.10); border-left: 4px solid #FF7A18; }
.pb-founder-quote .quote-mark { position: absolute; top: 18px; left: clamp(18px, 3vw, 40px); font: 800 4.5rem/1 Georgia, serif; color: #FF7A18; opacity: .35; }
.pb-founder-quote blockquote { margin: 0 0 20px; font-size: clamp(1.125rem, 1rem + .6vw, 1.5rem); line-height: 1.5; color: #F5F8FA; font-weight: 600; position: relative; z-index: 1; }
.pb-founder-quote figcaption { display: flex; align-items: center; gap: 14px; }
.pb-founder-quote .qi { width: 52px; height: 52px; flex: none; border-radius: 50%; overflow: hidden; background: #0D2638; border: 1px solid rgba(255,255,255,.20); }
.pb-founder-quote .qi img { width: 100%; height: 100%; object-fit: cover; }
.pb-founder-quote .qn { font-weight: 800; color: #F5F8FA; }
.pb-founder-quote .qr { display: block; color: #A7B5C2; font-size: .875rem; font-weight: 500; }

.pb-quickfacts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.10); margin: 28px 0 0; }
@media (min-width: 700px) { .pb-quickfacts { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.pb-quickfacts > div { background: #06131F; padding: 18px 16px; text-align: center; }
.pb-quickfacts dt { display: block; font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem); font-weight: 800; color: #F5F8FA; line-height: 1; }
.pb-quickfacts dd { margin: 6px 0 0; color: #A7B5C2; font-size: .8125rem; font-weight: 600; letter-spacing: .02em; }

.pb-role-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 700px) { .pb-role-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.pb-role { display: flex; align-items: center; gap: 12px; padding: 16px 18px; background: #0A1D2B; border: 1px solid rgba(255,255,255,.10); transition: border-color .2s, transform .2s cubic-bezier(.2,.7,.2,1); }
.pb-role:hover { border-color: #36A8FF; transform: translateY(-2px); }
.pb-role .icon { width: 24px; height: 24px; flex: none; color: #36A8FF; }
.pb-role span { font-weight: 700; font-size: .9375rem; color: #F5F8FA; line-height: 1.3; overflow-wrap: break-word; min-width: 0; -webkit-hyphens: auto; hyphens: auto; }
