:root {
	--gh-graphite-900: #071f38;
	--gh-graphite-800: #0f314c;
	--gh-graphite-700: #194766;
	--gh-graphite-600: #2b5d80;
	--gh-brand-red: #c5161d;
	--gh-brand-red-hover: #a01217;
	--gh-tech-blue: #005ea8;
	--gh-tech-blue-light: #0070c9;
	--gh-steel: #e7ecef;
	--gh-steel-dark: #c4d1d9;
	--gh-header-height: 64px;
	--gh-admin-bar-height: 0px;
}

html:has(body.admin-bar),
body.admin-bar {
	--gh-admin-bar-height: 32px;
}

html {
	scroll-behavior: smooth;
}

body.gh-theme {
	background: var(--gh-graphite-800);
	color: var(--gh-steel);
	font-family: "Inter", Arial, sans-serif;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.gh-theme.gh-menu-open {
	overflow: hidden;
}

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

.gh-site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: var(--gh-graphite-800);
}

.gh-site-header {
	position: fixed;
	top: var(--gh-admin-bar-height);
	left: 0;
	z-index: 50;
	width: 100%;
	background: rgba(15, 49, 76, 0.95);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(12px);
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gh-site-header::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 1px;
	content: "";
	background: linear-gradient(90deg, var(--gh-brand-red), var(--gh-tech-blue-light));
	transform: scaleX(var(--gh-scroll-progress, 0));
	transform-origin: left center;
	opacity: 0.88;
	pointer-events: none;
}

.gh-site-header.is-condensed {
	transform: translateY(-0.375rem);
}

.admin-bar .gh-site-header {
	top: var(--gh-admin-bar-height);
}

.admin-bar .gh-site-header.is-condensed {
	transform: none;
}

.gh-header-inner {
	width: 100%;
	height: var(--gh-header-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 1rem;
}

.gh-brand {
	position: relative;
	z-index: 55;
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 0.5rem;
	color: #fff;
	text-decoration: none;
}

.gh-brand:hover,
.gh-brand:focus {
	color: #fff;
}

/*
 * White artwork on a transparent background — it sits directly on the header.
 * max-height is a hard stop: the file's intrinsic size is 369x132, so without a
 * cap any failure to apply the height rule blows the header open.
 */
.gh-brand-logo {
	width: auto;
	height: 1.75rem;
	max-height: calc(var(--gh-header-height) - 1.25rem);
	display: block;
	flex: 0 0 auto;
}

/*
 * Two-layer logo. The wrapper shrink-wraps the base layer, so the blades can be
 * placed in percentages of it and stay aligned at every logo size.
 *
 * The numbers come straight from the source artwork (canvas 2752x1536, logo
 * cropped at 111,239 sized 2530x906):
 *   left   (842 - 111) / 2530  — ring centre, not the blades' bounding box,
 *   top    (481 - 239) / 906     which sits 17px higher and would wobble,
 *   width   318 / 2530         — the square the blades were exported into.
 */
.gh-brand-logo-wrap {
	position: relative;
	display: inline-block;
	line-height: 0;
	flex: 0 0 auto;
}

.gh-brand-leaves {
	position: absolute;
	top: 26.711%;
	left: 28.893%;
	width: 12.569%;
	height: auto;
	aspect-ratio: 1;
	/* Separate properties: a composite transform would have to repeat the
	   centring offset in every keyframe. */
	translate: -50% -50%;
	animation: gh-leaves-spin 12s linear infinite;
}

@keyframes gh-leaves-spin {
	from {
		rotate: 0deg;
	}

	to {
		rotate: 360deg;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gh-brand-leaves {
		animation: none;
	}
}

.gh-desktop-navigation,
.gh-header-cta {
	display: none;
}

.gh-header-cta {
	gap: 0.75rem;
}

.gh-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gh-menu a {
	color: var(--gh-steel);
	text-decoration: none;
}

.gh-menu a:hover,
.gh-menu a:focus {
	color: #fff;
}

.gh-menu > li {
	position: relative;
}

.gh-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gh-menu.is-enhanced > li > .sub-menu {
	display: none;
}

.gh-menu.is-enhanced > .is-submenu-open > .sub-menu {
	display: block;
}

.gh-submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 24px;
	min-height: 44px;
	padding: 0;
	border: 0;
	border-radius: 2px;
	background: transparent;
	color: var(--gh-steel);
	cursor: pointer;
	font-size: 0.625rem;
}

.gh-submenu-toggle:hover,
.gh-submenu-toggle[aria-expanded="true"] {
	color: #fff;
}

.gh-submenu-toggle[aria-expanded="true"] i {
	transform: rotate(180deg);
}

.gh-menu-toggle {
	position: relative;
	z-index: 55;
	min-width: 44px;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	border: 0;
	border-radius: 2px;
	background: transparent;
	color: var(--gh-steel);
	cursor: pointer;
}

.gh-menu-toggle:hover,
.gh-menu-toggle:focus {
	color: #fff;
	outline: 0;
}

.gh-menu-toggle:focus-visible,
.gh-submenu-toggle:focus-visible,
.gh-button:focus-visible,
.gh-brand:focus-visible,
.gh-menu a:focus-visible,
.gh-language-toggle:focus-visible,
.gh-language-option:focus-visible {
	outline: 2px solid var(--gh-tech-blue-light);
	outline-offset: 3px;
}

.gh-language-switcher {
	position: relative;
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	width: 5.25rem;
	color: var(--gh-steel);
}

.gh-language-switcher-icon {
	display: inline-flex;
	color: var(--gh-steel-dark);
	font-size: 0.8125rem;
	line-height: 1;
	pointer-events: none;
}

.gh-language-toggle {
	width: 100%;
	min-height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.45rem;
	padding: 0.5rem 0.7rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
	font: inherit;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease;
}

.gh-language-toggle:hover,
.gh-language-toggle:focus,
.gh-language-toggle[aria-expanded="true"] {
	border-color: rgba(255, 255, 255, 0.32);
	background: rgba(255, 255, 255, 0.08);
}

.gh-language-current {
	min-width: 1.7rem;
	text-align: left;
}

.gh-language-chevron {
	color: var(--gh-steel-dark);
	font-size: 0.625rem;
	transition: transform 180ms ease;
}

.gh-language-toggle[aria-expanded="true"] .gh-language-chevron {
	transform: rotate(180deg);
}

.gh-language-menu {
	position: absolute;
	top: calc(100% + 0.45rem);
	right: 0;
	z-index: 80;
	min-width: 100%;
	margin: 0;
	padding: 0.35rem;
	list-style: none;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 2px;
	background: rgba(7, 31, 56, 0.98);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(12px);
}

.gh-language-menu[hidden] {
	display: none;
}

.gh-language-option {
	min-height: 36px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.55rem 0.65rem;
	border-radius: 2px;
	color: var(--gh-steel);
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
}

.gh-language-option:hover,
.gh-language-option:focus,
.gh-language-option.is-current {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.gh-language-option.is-current::after {
	content: "\f00c";
	color: var(--gh-tech-blue-light);
	font-family: "Font Awesome 6 Free";
	font-size: 0.6875rem;
	font-weight: 900;
}

.gh-mobile-menu {
	position: fixed;
	top: var(--gh-admin-bar-height);
	right: 0;
	bottom: auto;
	left: auto;
	z-index: 45;
	width: min(100%, 24rem);
	height: calc(100vh - var(--gh-admin-bar-height));
	height: calc(100svh - var(--gh-admin-bar-height));
	display: flex;
	flex-direction: column;
	padding: calc(var(--gh-header-height) + 2rem) 1.5rem 1.5rem;
	overflow-y: auto;
	overscroll-behavior: contain;
	background: var(--gh-graphite-900);
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
	transform: translateX(100%);
	transition: transform 260ms ease;
	-webkit-overflow-scrolling: touch;
}

.admin-bar .gh-mobile-menu {
	top: var(--gh-admin-bar-height);
	height: calc(100vh - var(--gh-admin-bar-height));
	height: calc(100svh - var(--gh-admin-bar-height));
}

.gh-mobile-menu.is-open {
	transform: translateX(0);
}

.gh-mobile-navigation {
	flex: 1 1 auto;
}

.gh-mobile-navigation .gh-menu {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.gh-mobile-navigation .gh-menu a {
	min-height: 44px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--gh-steel);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.2;
}

.gh-mobile-navigation .gh-menu a::after {
	content: "\f054";
	color: var(--gh-steel-dark);
	font-family: "Font Awesome 6 Free";
	font-size: 0.75rem;
	font-weight: 900;
}

.gh-mobile-navigation .gh-has-submenu {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 44px;
}

.gh-mobile-navigation .gh-has-submenu > a {
	padding-right: 0.5rem;
}

.gh-mobile-navigation .gh-has-submenu > a::after {
	content: none;
}

.gh-mobile-navigation .gh-submenu-toggle {
	width: 44px;
	align-self: stretch;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gh-mobile-navigation .sub-menu {
	grid-column: 1 / -1;
	margin: 0.5rem 0 0;
	padding-left: 0.75rem;
	border-left: 2px solid var(--gh-tech-blue-light);
}

.gh-mobile-navigation .sub-menu a {
	gap: 0.75rem;
	padding: 0.75rem 0;
	font-size: 0.9375rem;
	line-height: 1.4;
}

.gh-menu .sub-menu a[aria-current="page"] {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.gh-mobile-panel-cta {
	margin-top: auto;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gh-mobile-panel-cta .gh-language-switcher,
.gh-mobile-panel-cta .gh-button {
	width: 100%;
}

.gh-mobile-panel-cta .gh-language-switcher {
	margin-bottom: 1rem;
}

.gh-mobile-panel-cta .gh-language-menu {
	right: 0;
	left: 0;
}

.gh-mobile-overlay {
	position: fixed;
	top: var(--gh-admin-bar-height);
	right: 0;
	bottom: auto;
	left: 0;
	z-index: 40;
	height: calc(100vh - var(--gh-admin-bar-height));
	height: calc(100svh - var(--gh-admin-bar-height));
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 220ms ease;
}

.gh-mobile-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

.gh-button {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 0.875rem 1.5rem;
	border-radius: 2px;
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.gh-button:hover,
.gh-button:focus {
	color: #fff;
	text-decoration: none;
}

.gh-button-primary {
	background: var(--gh-brand-red);
	box-shadow: 0 14px 35px rgba(197, 22, 29, 0.2);
}

.gh-button-primary:hover,
.gh-button-primary:focus {
	background: var(--gh-brand-red-hover);
}

.gh-button-secondary {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(12px);
}

.gh-button-secondary:hover,
.gh-button-secondary:focus {
	background: rgba(255, 255, 255, 0.1);
}

.gh-button-outline {
	min-height: auto;
	padding: 0.625rem 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: transparent;
	font-size: 0.875rem;
}

.gh-button-outline:hover,
.gh-button-outline:focus {
	background: rgba(255, 255, 255, 0.05);
}

.gh-button .fa-arrow-right {
	color: var(--gh-brand-red);
	transition: transform 180ms ease;
}

.gh-button-primary .fa-arrow-right {
	color: #fff;
}

.gh-button:hover .fa-arrow-right,
.gh-button:focus .fa-arrow-right {
	transform: translateX(0.25rem);
}

.gh-button .fa-envelope {
	color: var(--gh-tech-blue-light);
}

.gh-front-main {
	flex: 1 0 auto;
}

.gh-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	overflow: hidden;
	padding-top: var(--gh-header-height);
	background: var(--gh-graphite-800);
}

.gh-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.gh-hero-bg img,
.gh-hero-bg video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	opacity: 0.6;
}

/* object-fit covers the poster frame too, so the fallback fills the same box. */
.gh-hero-video {
	pointer-events: none;
}

.gh-hero-bg::after {
	position: absolute;
	inset: 0;
	z-index: 2;
	content: "";
	background: linear-gradient(
		to bottom,
		rgba(15, 49, 76, 0.95) 0%,
		rgba(15, 49, 76, 0.8) 50%,
		rgba(15, 49, 76, 0.95) 100%
	);
}

.gh-hero-tech {
	--gh-tech-x: 0px;
	--gh-tech-y: 0px;

	position: absolute;
	inset: 0;
	z-index: 3;
	overflow: hidden;
	opacity: 0.36;
	pointer-events: none;
	transform: translate3d(var(--gh-tech-x), var(--gh-tech-y), 0);
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gh-hero-tech-grid {
	position: absolute;
	inset: -12%;
	background-image:
		linear-gradient(rgba(140, 176, 205, 0.16) 1px, transparent 1px),
		linear-gradient(90deg, rgba(140, 176, 205, 0.16) 1px, transparent 1px),
		linear-gradient(rgba(140, 176, 205, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(140, 176, 205, 0.07) 1px, transparent 1px);
	background-size: 96px 96px, 96px 96px, 24px 24px, 24px 24px;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
	animation: gh-hero-grid-drift 24s linear infinite;
}

.gh-hero-tech-scan,
.gh-hero-tech-axis,
.gh-hero-tech-measure,
.gh-hero-tech-note,
.gh-hero-tech-node {
	position: absolute;
	display: block;
}

.gh-hero-tech-scan {
	background: linear-gradient(90deg, transparent, rgba(112, 196, 255, 0.65), transparent);
	opacity: 0.42;
	filter: drop-shadow(0 0 10px rgba(112, 196, 255, 0.42));
}

.gh-hero-tech-scan--x {
	top: 36%;
	right: -18%;
	width: 52%;
	height: 1px;
	animation: gh-hero-scan-x 7s ease-in-out infinite;
}

.gh-hero-tech-scan--y {
	top: -20%;
	right: 30%;
	width: 1px;
	height: 72%;
	background: linear-gradient(180deg, transparent, rgba(112, 196, 255, 0.6), transparent);
	animation: gh-hero-scan-y 8.5s ease-in-out infinite;
}

.gh-hero-tech-axis {
	background: rgba(238, 245, 249, 0.32);
}

.gh-hero-tech-axis--x {
	top: 58%;
	right: 10%;
	width: min(34vw, 34rem);
	height: 1px;
}

.gh-hero-tech-axis--y {
	top: 28%;
	right: 22%;
	width: 1px;
	height: min(40vh, 24rem);
}

.gh-hero-tech-measure {
	color: rgba(238, 245, 249, 0.82);
	font-size: 0.6875rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.gh-hero-tech-measure::before,
.gh-hero-tech-measure::after {
	position: absolute;
	content: "";
	background: rgba(238, 245, 249, 0.72);
}

.gh-hero-tech-measure--horizontal {
	right: 11%;
	bottom: 24%;
	width: min(32vw, 28rem);
	height: 1px;
	border-top: 1px solid rgba(238, 245, 249, 0.52);
}

.gh-hero-tech-measure--horizontal::before,
.gh-hero-tech-measure--horizontal::after {
	top: -0.5rem;
	width: 1px;
	height: 1rem;
}

.gh-hero-tech-measure--horizontal::before {
	left: 0;
}

.gh-hero-tech-measure--horizontal::after {
	right: 0;
}

.gh-hero-tech-measure--horizontal span {
	position: absolute;
	top: -2.05rem;
	right: 12%;
}

.gh-hero-tech-measure--vertical {
	top: 30%;
	right: 7%;
	width: 1px;
	height: min(32vh, 18rem);
	border-left: 1px solid rgba(238, 245, 249, 0.48);
}

.gh-hero-tech-measure--vertical::before,
.gh-hero-tech-measure--vertical::after {
	left: -0.5rem;
	width: 1rem;
	height: 1px;
}

.gh-hero-tech-measure--vertical::before {
	top: 0;
}

.gh-hero-tech-measure--vertical::after {
	bottom: 0;
}

.gh-hero-tech-measure--vertical span {
	position: absolute;
	top: 43%;
	left: 0.75rem;
	white-space: nowrap;
	writing-mode: vertical-rl;
}

.gh-hero-tech-note {
	padding: 0.5rem 0.625rem;
	border: 1px solid rgba(112, 196, 255, 0.28);
	background: rgba(7, 31, 56, 0.5);
	color: rgba(238, 245, 249, 0.82);
	font-size: 0.625rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	backdrop-filter: blur(10px);
}

.gh-hero-tech-note::before {
	position: absolute;
	top: 50%;
	width: 4.5rem;
	height: 1px;
	content: "";
	background: rgba(112, 196, 255, 0.38);
}

.gh-hero-tech-note--clamp {
	top: 25%;
	right: 28%;
	animation: gh-hero-note-float 5.5s ease-in-out infinite;
}

.gh-hero-tech-note--clamp::before {
	right: -4.5rem;
}

.gh-hero-tech-note--cad {
	right: 18%;
	bottom: 31%;
	animation: gh-hero-note-float 6.2s ease-in-out infinite reverse;
}

.gh-hero-tech-note--cad::before {
	left: -4.5rem;
}

.gh-hero-tech-node {
	width: 0.625rem;
	height: 0.625rem;
	border: 1px solid rgba(238, 245, 249, 0.78);
	background: rgba(112, 196, 255, 0.4);
	box-shadow: 0 0 0 0 rgba(112, 196, 255, 0.45);
	animation: gh-hero-node-pulse 2.8s ease-out infinite;
}

.gh-hero-tech-node--one {
	top: 28%;
	right: 22%;
}

.gh-hero-tech-node--two {
	top: 58%;
	right: 35%;
	animation-delay: 700ms;
}

.gh-hero-tech-node--three {
	right: 11%;
	bottom: 24%;
	animation-delay: 1400ms;
}

.gh-hero-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: calc(100vh - var(--gh-header-height));
	min-height: calc(100svh - var(--gh-header-height));
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3rem 1rem;
}

.gh-hero-panel {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.gh-hero-badge {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	padding: 0.375rem 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
}

.gh-hero-badge-dot {
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 999px;
	background: var(--gh-tech-blue-light);
	animation: gh-pulse 1.8s ease-in-out infinite;
}

.gh-hero-badge-text {
	color: var(--gh-steel);
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.gh-hero-title {
	max-width: 12ch;
	margin: 0 0 1rem;
	color: #fff;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
}

.gh-hero-highlight {
	display: block;
	margin-top: 0.25rem;
	color: transparent;
	background: linear-gradient(90deg, var(--gh-brand-red), #f87171);
	-webkit-background-clip: text;
	background-clip: text;
}

.gh-hero-copy {
	max-width: 36rem;
	margin: 0 0 2rem;
	color: var(--gh-steel-dark);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.65;
}

.gh-hero-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	width: 100%;
	margin-bottom: 3rem;
}

.gh-hero-actions .gh-button {
	width: 100%;
}

.gh-trust-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	width: 100%;
	margin-top: auto;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gh-trust-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.05);
}

.gh-trust-icon {
	width: 2.5rem;
	height: 2.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--gh-steel);
}

.gh-trust-icon.is-red {
	color: var(--gh-brand-red);
}

.gh-trust-icon.is-blue {
	color: var(--gh-tech-blue-light);
}

.gh-trust-title {
	display: block;
	margin: 0 0 0.125rem;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.25;
}

.gh-trust-copy {
	display: block;
	margin: 0;
	color: var(--gh-steel-dark);
	font-size: 0.75rem;
	line-height: 1.35;
}

.gh-scroll-indicator {
	display: none;
}

.gh-front-content {
	background: #fff;
	color: var(--gh-graphite-800);
}

.gh-front-content-inner {
	width: min(100% - 2rem, 960px);
	margin: 0 auto;
	padding: 4rem 0;
}

.gh-site-footer {
	flex: 0 0 auto;
	background: var(--gh-graphite-900);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--gh-steel-dark);
}

.gh-footer-inner {
	width: min(100% - 2rem, 1600px);
	margin: 0 auto;
	padding: 1.25rem 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	font-size: 0.875rem;
}

.gh-footer-row {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
}

.gh-footer-brand {
	display: inline-block;
	line-height: 0;
}

.gh-footer-logo {
	width: auto;
	height: 2.25rem;
	display: block;
}

.gh-footer-copy {
	color: var(--gh-steel-dark);
}

.gh-footer-row--credit {
	padding-top: 0.875rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gh-footer-credit {
	color: var(--gh-steel-dark);
	font-size: 0.8125rem;
}

.gh-footer-credit a {
	color: var(--gh-steel);
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	transition: color 180ms ease, border-color 180ms ease;
}

.gh-footer-credit a:hover,
.gh-footer-credit a:focus {
	color: #fff;
	border-bottom-color: var(--gh-brand-red);
}

.gh-footer-credit a:focus-visible {
	outline: 2px solid var(--gh-tech-blue-light);
	outline-offset: 3px;
}

.gh-footer-legal {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	align-items: center;
	font-size: 0.8125rem;
}

.gh-footer-legal a {
	color: var(--gh-steel);
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	transition: color 180ms ease, border-color 180ms ease;
}

.gh-footer-legal a:hover,
.gh-footer-legal a:focus {
	color: #fff;
	border-bottom-color: var(--gh-brand-red);
}

.gh-footer-legal a:focus-visible {
	outline: 2px solid var(--gh-tech-blue-light);
	outline-offset: 3px;
}

.gh-cookie-banner {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	left: 1rem;
	z-index: 140;
	pointer-events: none;
}

.gh-cookie-banner[hidden] {
	display: none;
}

.gh-cookie-banner-inner {
	width: min(100%, 920px);
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	padding: 1rem 1rem 1rem 1.125rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 4px;
	background: rgba(7, 31, 56, 0.97);
	box-shadow: 0 18px 52px rgba(0, 0, 0, 0.36);
	color: var(--gh-steel);
	pointer-events: auto;
	backdrop-filter: blur(14px);
}

.gh-cookie-banner p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.5;
}

.gh-cookie-banner a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	transition: color 180ms ease, border-color 180ms ease;
}

.gh-cookie-banner a:hover,
.gh-cookie-banner a:focus {
	color: #fff;
	border-bottom-color: var(--gh-brand-red);
}

.gh-cookie-banner a:focus-visible,
.gh-cookie-button:focus-visible {
	outline: 2px solid var(--gh-tech-blue-light);
	outline-offset: 3px;
}

.gh-cookie-button {
	min-width: 5rem;
	min-height: 2.625rem;
	flex: 0 0 auto;
	padding: 0.65rem 1rem;
	border: 1px solid var(--gh-brand-red);
	border-radius: 2px;
	background: var(--gh-brand-red);
	color: #fff;
	font: inherit;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease;
}

.gh-cookie-button:hover,
.gh-cookie-button:focus {
	border-color: #d23d43;
	background: #d23d43;
}

@media (max-width: 640px) {
	.gh-cookie-banner {
		right: 0.75rem;
		bottom: 0.75rem;
		left: 0.75rem;
	}

	.gh-cookie-banner-inner {
		flex-direction: column;
		align-items: stretch;
		gap: 0.875rem;
		padding: 0.875rem;
	}

	.gh-cookie-button {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.gh-hero-tech {
		opacity: 0.24;
	}

	.gh-hero-tech-grid {
		-webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 28%, #000 100%);
		mask-image: linear-gradient(to bottom, transparent 0%, #000 28%, #000 100%);
	}

	.gh-hero-tech-axis,
	.gh-hero-tech-measure,
	.gh-hero-tech-note,
	.gh-hero-tech-node {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gh-hero-tech,
	.gh-hero-tech-grid,
	.gh-hero-tech-scan,
	.gh-hero-tech-note,
	.gh-hero-tech-node {
		animation: none;
		transition: none;
	}

	.gh-hero-tech-scan {
		display: none;
	}
}

@keyframes gh-pulse {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.45;
	}
}

@keyframes gh-hero-grid-drift {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(96px, 96px, 0);
	}
}

@keyframes gh-hero-scan-x {
	0%,
	100% {
		transform: translateX(0);
		opacity: 0;
	}

	18%,
	66% {
		opacity: 0.42;
	}

	82% {
		transform: translateX(-82vw);
		opacity: 0;
	}
}

@keyframes gh-hero-scan-y {
	0%,
	100% {
		transform: translateY(0);
		opacity: 0;
	}

	20%,
	68% {
		opacity: 0.36;
	}

	86% {
		transform: translateY(92vh);
		opacity: 0;
	}
}

@keyframes gh-hero-note-float {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-0.5rem);
	}
}

@keyframes gh-hero-node-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(112, 196, 255, 0.45);
	}

	70%,
	100% {
		box-shadow: 0 0 0 1rem rgba(112, 196, 255, 0);
	}
}

@media (max-width: 782px) {
	html:has(body.admin-bar),
	body.admin-bar {
		--gh-admin-bar-height: 46px;
	}

	.admin-bar .gh-site-header,
	.admin-bar .gh-mobile-menu {
		top: var(--gh-admin-bar-height);
	}
}

@media (min-width: 640px) {
	.gh-header-inner {
		padding: 0 1.5rem;
	}

	.gh-brand {
		gap: 0.75rem;
	}

	.gh-brand-logo {
		height: 2rem;
	}

	.gh-hero-inner {
		padding: 4rem 1.5rem;
	}

	.gh-hero-title {
		font-size: 3rem;
	}

	.gh-hero-copy {
		font-size: 1.125rem;
	}
}

@media (min-width: 1024px) {
	:root {
		--gh-header-height: 80px;
	}

	.gh-site-header {
		background: rgba(15, 49, 76, 0.8);
	}

	.gh-header-inner {
		max-width: 1600px;
		height: var(--gh-header-height);
		margin: 0 auto;
		padding: 0 3rem;
		gap: 1.5rem;
	}

	.gh-brand-logo {
		height: 2.5rem;
	}

	.gh-desktop-navigation,
	.gh-header-cta {
		display: flex;
		align-items: center;
	}

	.gh-desktop-navigation {
		flex: 1;
		min-width: 0;
		justify-content: center;
	}

	.gh-header-cta {
		flex-shrink: 0;
	}

	.gh-desktop-navigation .gh-menu {
		display: flex;
		align-items: center;
		gap: 1rem;
	}

	.gh-desktop-navigation .gh-menu > li {
		display: flex;
		align-items: center;
		min-height: var(--gh-header-height);
	}

	.gh-desktop-navigation .gh-menu > li > a {
		font-size: 0.875rem;
		font-weight: 500;
		line-height: 1.2;
		letter-spacing: 0;
		white-space: normal;
	}

	.gh-desktop-navigation .sub-menu {
		position: absolute;
		top: 100%;
		left: -1rem;
		z-index: 60;
		display: none;
		width: min(24rem, calc(100vw - 3rem));
		max-height: calc(100vh - var(--gh-header-height) - var(--gh-admin-bar-height) - 1rem);
		max-height: calc(100svh - var(--gh-header-height) - var(--gh-admin-bar-height) - 1rem);
		padding: 0.5rem;
		overflow-y: auto;
		overscroll-behavior: contain;
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-top: 2px solid var(--gh-tech-blue-light);
		border-radius: 0 0 4px 4px;
		background: var(--gh-graphite-900);
		box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
	}

	.gh-desktop-navigation .gh-menu:not(.is-enhanced) > li:hover > .sub-menu,
	.gh-desktop-navigation .gh-menu:not(.is-enhanced) > li:focus-within > .sub-menu {
		display: block;
	}

	.gh-desktop-navigation .sub-menu a {
		display: block;
		padding: 0.625rem 0.75rem;
		border-radius: 2px;
		font-size: 0.875rem;
		font-weight: 400;
		line-height: 1.4;
	}

	.gh-desktop-navigation .sub-menu a:hover,
	.gh-desktop-navigation .sub-menu a:focus-visible {
		background: rgba(255, 255, 255, 0.08);
	}

	.gh-header-cta .gh-button {
		white-space: nowrap;
	}

	.gh-menu-toggle,
	.gh-mobile-menu,
	.gh-mobile-overlay {
		display: none;
	}

	.gh-hero-bg img,
	.gh-hero-bg video {
		opacity: 0.8;
	}

	.gh-hero-bg::after {
		background: linear-gradient(
			to right,
			rgba(15, 49, 76, 0.9) 0%,
			rgba(15, 49, 76, 0.7) 50%,
			rgba(15, 49, 76, 0.4) 100%
		);
	}

	.gh-hero-inner {
		max-width: 1600px;
		margin: 0 auto;
		padding: 5rem 3rem;
	}

	.gh-hero-panel {
		max-width: 48rem;
	}

	.gh-hero-badge {
		margin-bottom: 2rem;
		padding-block: 0.25rem;
	}

	.gh-hero-badge-text {
		font-size: 0.75rem;
	}

	.gh-hero-title {
		max-width: none;
		margin-bottom: 1.5rem;
		font-size: 4.5rem;
		line-height: 1.1;
	}

	.gh-hero-highlight {
		display: inline;
		margin-top: 0;
	}

	.gh-hero-copy {
		margin-bottom: 2.5rem;
		font-size: 1.25rem;
		line-height: 1.65;
	}

	.gh-hero-actions {
		width: auto;
		flex-direction: row;
		gap: 1rem;
		margin-bottom: 4rem;
	}

	.gh-hero-actions .gh-button {
		width: auto;
		padding-inline: 2rem;
	}

	.gh-trust-list {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.5rem;
		margin-top: 0;
		padding-top: 2.5rem;
	}

	.gh-trust-item {
		align-items: flex-start;
		padding: 0;
		border: 0;
		background: transparent;
	}

	.gh-trust-title {
		margin-bottom: 0.25rem;
		font-size: 1rem;
	}

	.gh-trust-copy {
		font-size: 0.875rem;
	}

	.gh-scroll-indicator {
		position: absolute;
		bottom: 2rem;
		left: 50%;
		z-index: 2;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.5rem;
		color: var(--gh-steel);
		opacity: 0.6;
		transform: translateX(-50%);
	}

	/* Only the label: the line below is a span too, and its height is in rem. */
	.gh-scroll-label {
		font-size: 0.625rem;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0.14em;
		text-transform: uppercase;
	}

	.gh-scroll-line {
		width: 1px;
		height: 3rem;
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
	}

	.gh-footer-inner {
		width: min(100% - 6rem, 1600px);
	}

	.gh-footer-row {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 1.5rem;
	}
}

/*
 * Compact desktop spacing accommodates translated menu labels.
 * The contact menu link remains available when the duplicate inquiry CTA is hidden.
 */
@media (min-width: 1024px) and (max-width: 1359px) {
	.gh-header-inner {
		padding: 0 1.5rem;
	}

	.gh-desktop-navigation .gh-menu {
		gap: 0.5rem;
	}

	.gh-header-cta .gh-button {
		padding: 0.5rem 1rem;
		font-size: 0.875rem;
	}
}

@media (min-width: 1024px) and (max-width: 1279px) {
	.gh-header-cta .gh-button {
		display: none;
	}
}
