:root {
	color-scheme: light;
	--ink: #07131c;
	--navy: #0a1924;
	--blue: #00364a;
	--teal: #19eef2;
	--teal-soft: #aaf6f0;
	--paper: #f6f8f8;
	--mist: #dde7e4;
	--gold: #f0c35a;
	--coral: #e27b63;
	--green: #7bc7a4;
	--white: #ffffff;
	--muted: #52606b;
	--shadow: 0 20px 60px rgba(2, 13, 20, 0.18);
	--page-bg: #f6f8f8;
	--section-bg: #f6f8f8;
	--surface: #ffffff;
	--surface-alt: #e9efee;
	--text: #07131c;
	--text-muted: #52606b;
	--heading: #00364a;
	--border: rgba(0, 54, 74, 0.12);
	--header-bg: rgba(246, 248, 248, 0.92);
	--header-link: #1d313c;
	--hero-bg: #e9efee;
	--hero-shade: linear-gradient(90deg, rgba(246, 248, 248, 0.98) 0%, rgba(246, 248, 248, 0.88) 43%, rgba(246, 248, 248, 0.25) 100%);
	--hero-text: #07131c;
	--hero-muted: #263f4d;
	--hero-heading: #00364a;
	--quote-bg: #00364a;
	--quote-text: #ffffff;
}

@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) {
		color-scheme: dark;
		--page-bg: #07131c;
		--section-bg: #0a1924;
		--surface: #0d202b;
		--surface-alt: #102a38;
		--text: #f6f8f8;
		--text-muted: #b4c2c8;
		--heading: #19eef2;
		--border: rgba(255, 255, 255, 0.12);
		--header-bg: rgba(7, 19, 28, 0.92);
		--header-link: rgba(255, 255, 255, 0.78);
		--hero-bg: #0a1924;
		--hero-shade: linear-gradient(90deg, rgba(7, 19, 28, 0.98) 0%, rgba(7, 19, 28, 0.84) 42%, rgba(7, 19, 28, 0.25) 100%);
		--hero-text: #ffffff;
		--hero-muted: rgba(255, 255, 255, 0.84);
		--hero-heading: #19eef2;
		--quote-bg: #00364a;
		--quote-text: #ffffff;
	}
}

[data-theme="dark"] {
	color-scheme: dark;
	--page-bg: #07131c;
	--section-bg: #0a1924;
	--surface: #0d202b;
	--surface-alt: #102a38;
	--text: #f6f8f8;
	--text-muted: #b4c2c8;
	--heading: #19eef2;
	--border: rgba(255, 255, 255, 0.12);
	--header-bg: rgba(7, 19, 28, 0.92);
	--header-link: rgba(255, 255, 255, 0.78);
	--hero-bg: #0a1924;
	--hero-shade: linear-gradient(90deg, rgba(7, 19, 28, 0.98) 0%, rgba(7, 19, 28, 0.84) 42%, rgba(7, 19, 28, 0.25) 100%);
	--hero-text: #ffffff;
	--hero-muted: rgba(255, 255, 255, 0.84);
	--hero-heading: #19eef2;
	--quote-bg: #00364a;
	--quote-text: #ffffff;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--page-bg);
	color: var(--text);
	font-family: Barlow, Arial, Helvetica, sans-serif;
	font-size: 17px;
	line-height: 1.6;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
}

.error-layout {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 1.5rem;
	background:
		radial-gradient(circle at top right, color-mix(in srgb, var(--teal) 14%, transparent), transparent 38%),
		var(--page-bg);
}

.error-page {
	width: min(680px, 100%);
	padding: clamp(2rem, 7vw, 4.5rem);
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 0.75rem;
	box-shadow: var(--shadow);
}

.error-page h1 {
	margin: 0;
	color: var(--heading);
	font-size: clamp(2.4rem, 8vw, 4.4rem);
	line-height: 1.02;
}

.error-page > p:not(.eyebrow) {
	margin: 1.25rem 0 2rem;
	color: var(--text-muted);
	font-size: 1.1rem;
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: -6rem;
	z-index: 20;
	background: var(--white);
	color: var(--ink);
	padding: 0.75rem 1rem;
	border-radius: 0.25rem;
}

.skip-link:focus {
	top: 1rem;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 1.25rem;
	align-items: center;
	padding: 0.7rem 4rem;
	background: var(--header-bg);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border);
}

.brand img {
	width: 210px;
	height: auto;
}

.main-nav {
	display: flex;
	justify-content: flex-end;
	gap: 1rem;
	flex-wrap: wrap;
}

.main-nav a,
.theme-switch button,
.language-switch a,
.footer-links a {
	text-decoration: none;
}

.main-nav a {
	color: var(--header-link);
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a:focus {
	color: var(--teal);
}

.header-tools {
	display: flex;
	gap: 0.55rem;
	align-items: center;
}

.theme-switch,
.language-switch {
	display: flex;
	gap: 0.25rem;
	padding: 0.25rem;
	border: 1px solid var(--border);
	border-radius: 999px;
}

.theme-switch button,
.language-switch a {
	min-width: 2.25rem;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	color: var(--header-link);
	font-size: 0.8rem;
	font-weight: 700;
	text-align: center;
}

.theme-switch button {
	border: 0;
	background: transparent;
	cursor: pointer;
	font-family: inherit;
}

.theme-switch button:hover,
.theme-switch button:focus,
.language-switch a:hover,
.language-switch a:focus {
	color: var(--teal);
}

.theme-switch .active,
.language-switch .active {
	background: var(--teal);
	color: var(--ink);
}

.hero {
	position: relative;
	min-height: 44rem;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--hero-bg);
}

.hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-shade {
	position: absolute;
	inset: 0;
	background: var(--hero-shade);
}

.hero-content {
	position: relative;
	width: min(760px, calc(100% - 3rem));
	margin-left: clamp(1.5rem, 7vw, 6rem);
	padding: 6rem 0;
	color: var(--hero-text);
}

.eyebrow,
.section-kicker,
.status {
	margin: 0 0 0.8rem;
	color: var(--teal);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-panel h2,
.product-hero h1 {
	margin: 0;
	line-height: 1.02;
	font-weight: 700;
}

.hero h1 {
	max-width: 680px;
	color: var(--hero-heading);
	font-size: 4.6rem;
}

.hero-copy {
	max-width: 650px;
	margin: 1.4rem 0 0;
	color: var(--hero-muted);
	font-size: 1.25rem;
}

.hero-actions,
.contact-actions,
.product-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	align-items: center;
	margin-top: 2rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.9rem;
	padding: 0.75rem 1.15rem;
	border-radius: 0.35rem;
	font-weight: 700;
	text-decoration: none;
}

.button.primary {
	background: var(--teal);
	color: var(--ink);
}

.button.secondary {
	border: 1px solid var(--border);
	color: var(--hero-text);
}

.button.light {
	border: 1px solid var(--border);
	color: var(--heading);
}

.section {
	padding: 6rem 4rem;
}

.split {
	display: grid;
	grid-template-columns: minmax(16rem, 0.85fr) minmax(18rem, 1.15fr);
	gap: 4rem;
	max-width: 1180px;
	margin: 0 auto;
}

.section h2,
.contact-panel h2 {
	font-size: 3rem;
	color: var(--heading);
}

.prose p,
.section-heading p,
.contact-panel p,
.product-copy p {
	color: var(--text-muted);
	margin: 0;
}

.prose p + p {
	margin-top: 1rem;
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(18rem, 0.95fr) minmax(18rem, 1.05fr);
	gap: 4rem;
	align-items: end;
	max-width: 1180px;
	margin: 0 auto 2rem;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	max-width: 1180px;
	margin: 0 auto;
}

.product-card {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 0.5rem;
	box-shadow: 0 12px 30px rgba(7, 19, 28, 0.08);
	overflow: hidden;
}

.product-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.2rem;
}

.card-body h3,
.capability-item h3,
.product-copy h2,
.detail-card h2 {
	margin: 0 0 0.55rem;
	color: var(--heading);
	line-height: 1.15;
}

.card-body p {
	margin: 0;
	color: var(--text-muted);
}

.card-body a {
	margin-top: auto;
	padding-top: 1.2rem;
	color: var(--heading);
	font-weight: 700;
	text-decoration-color: var(--teal);
	text-decoration-thickness: 0.18rem;
	text-underline-offset: 0.22rem;
}

.status {
	color: var(--coral);
}

.capabilities-section {
	background: var(--surface);
}

.capability-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	max-width: 1180px;
	margin: 0 auto;
	background: var(--border);
	border: 1px solid var(--border);
}

.capability-item {
	background: var(--surface);
	padding: 1.4rem;
	min-height: 12rem;
}

.capability-item:nth-child(2) {
	border-top: 0.35rem solid var(--gold);
}

.capability-item:nth-child(4) {
	border-top: 0.35rem solid var(--green);
}

.capability-item:nth-child(6) {
	border-top: 0.35rem solid var(--coral);
}

.capability-item p {
	margin: 0;
	color: var(--text-muted);
}

.quote-band {
	padding: 5rem 4rem;
	background: var(--quote-bg);
	color: var(--quote-text);
}

.quote-band div {
	max-width: 900px;
	margin: 0 auto;
}

.quote-band p {
	margin: 0;
	font-size: 2rem;
	line-height: 1.25;
}

.quote-band span {
	display: block;
	margin-top: 1rem;
	color: var(--teal-soft);
	font-weight: 700;
}

.contact-section {
	background: var(--surface-alt);
}

.contact-panel {
	display: grid;
	grid-template-columns: minmax(18rem, 1fr) auto;
	gap: 2rem;
	align-items: center;
	max-width: 1180px;
	margin: 0 auto;
	padding: 2rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 0.5rem;
	box-shadow: var(--shadow);
}

.contact-actions {
	justify-content: flex-start;
	margin: 0;
}

address {
	color: var(--text-muted);
	font-style: normal;
}

.site-footer {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	align-items: center;
	padding: 2rem 4rem;
	background: var(--header-bg);
	border-top: 1px solid var(--border);
	color: var(--header-link);
}

.site-footer img {
	width: 170px;
	margin-bottom: 0.75rem;
}

.site-footer p {
	margin: 0;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: flex-end;
}

.footer-links a:hover,
.footer-links a:focus {
	color: var(--teal);
}

.product-page .site-header {
	position: sticky;
}

.product-hero {
	position: relative;
	overflow: hidden;
	background: var(--hero-bg);
	color: var(--hero-text);
}

.product-hero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.34;
}

.product-hero .hero-shade {
	background: var(--hero-shade);
}

.product-hero-content {
	position: relative;
	max-width: 980px;
	padding: 7rem 4rem 6rem;
}

.product-hero h1 {
	color: var(--hero-heading);
	font-size: 4rem;
}

.product-hero p {
	max-width: 760px;
	margin: 1.2rem 0 0;
	color: var(--hero-muted);
	font-size: 1.2rem;
}

.product-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
	gap: 2rem;
	max-width: 1180px;
	margin: 0 auto;
}

.product-copy,
.detail-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 0.5rem;
	padding: 1.6rem;
}

.product-copy p + p,
.detail-card p + p,
.detail-card ul {
	margin-top: 1rem;
}

.detail-card ul {
	padding-left: 1.2rem;
	color: var(--text-muted);
}

.detail-card li + li {
	margin-top: 0.45rem;
}

.related-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

@media (max-width: 1050px) {
	.site-header {
		grid-template-columns: 1fr auto;
		padding: 0.75rem 1.25rem;
	}

	.brand img {
		width: 190px;
	}

	.main-nav {
		grid-column: 1 / -1;
		justify-content: flex-start;
		order: 3;
	}

	.header-tools {
		justify-content: flex-end;
	}

	.hero h1 {
		font-size: 3.7rem;
	}

	.section,
	.quote-band {
		padding: 4rem 1.25rem;
	}

	.split,
	.section-heading,
	.product-layout {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.product-grid,
	.capability-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.contact-panel {
		grid-template-columns: 1fr;
	}

	.site-footer {
		align-items: flex-start;
		flex-direction: column;
		padding: 2rem 1.25rem;
	}

	.footer-links {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 16px;
	}

	.site-header {
		grid-template-columns: 1fr;
		gap: 0.8rem;
	}

	.brand img {
		width: 165px;
	}

	.header-tools {
		justify-content: flex-start;
		order: 2;
	}

	.main-nav {
		gap: 0.75rem;
		order: 3;
	}

	.main-nav a {
		font-size: 0.76rem;
	}

	.hero {
		min-height: 42rem;
		align-items: flex-start;
	}

	.hero-shade {
		background: linear-gradient(180deg, color-mix(in srgb, var(--page-bg) 96%, transparent) 0%, color-mix(in srgb, var(--page-bg) 78%, transparent) 52%, rgba(7, 19, 28, 0.2) 100%);
	}

	.hero-image {
		object-position: 68% center;
	}

	.hero-content {
		width: calc(100% - 2rem);
		margin: 0 1rem;
		padding: 4rem 0;
	}

	.hero h1,
	.product-hero h1 {
		font-size: 3rem;
	}

	.hero-copy,
	.product-hero p {
		font-size: 1.05rem;
	}

	.section h2,
	.contact-panel h2 {
		font-size: 2.3rem;
	}

	.product-grid,
	.capability-grid {
		grid-template-columns: 1fr;
	}

	.quote-band p {
		font-size: 1.45rem;
	}

	.contact-panel {
		padding: 1.25rem;
	}

	.product-hero-content {
		padding: 5rem 1.25rem 4rem;
	}
}
