/*
Theme Name: VMR Modern
Description: Modern, accessible and SEO-focused presentation layer for VMR.
*/

:root {
	--navy-950: #07111f;
	--navy-900: #0b1728;
	--navy-800: #11233b;
	--navy-700: #19314f;
	--blue-600: #176bff;
	--blue-500: #2d7cff;
	--cyan-500: #08c7d5;
	--orange-500: #f59e0b;
	--ink: #101d2e;
	--muted: #617087;
	--line: #dfe6ef;
	--soft: #f4f7fb;
	--white: #ffffff;
	--container: 1180px;
	--shadow-sm: 0 12px 35px rgba(10, 28, 52, 0.08);
	--shadow-lg: 0 26px 80px rgba(4, 18, 38, 0.18);
	--radius-sm: 12px;
	--radius: 20px;
	--radius-lg: 30px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.nav-open {
	overflow: hidden;
}

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

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

button,
input,
textarea,
select {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid var(--cyan-500);
	outline-offset: 3px;
}

.site-shell {
	min-width: 0;
	overflow: hidden;
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin-inline: auto;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	padding: 10px 16px;
	border-radius: 8px;
	background: var(--white);
	color: var(--navy-950);
	font-weight: 800;
	transform: translateY(-160%);
	transition: transform 0.2s ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: relative;
	z-index: 50;
}

.utility-bar {
	background: var(--navy-950);
	color: #b8c5d7;
	font-size: 12px;
}

.utility-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 38px;
	gap: 24px;
}

.utility-contact {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	white-space: nowrap;
}

.utility-contact a,
.utility-nav a {
	transition: color 0.2s ease;
}

.utility-contact a:hover,
.utility-nav a:hover {
	color: var(--white);
}

.utility-nav {
	display: flex;
	align-items: center;
	gap: 22px;
}

.workbench-link {
	color: var(--white);
	font-weight: 700;
}

.workbench-link strong {
	color: var(--orange-500);
}

.primary-header {
	position: relative;
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid rgba(15, 34, 58, 0.08);
	box-shadow: 0 8px 25px rgba(12, 29, 50, 0.04);
	backdrop-filter: blur(12px);
}

.primary-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 84px;
	gap: 32px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.brand .brand-mark {
	width: 48px;
	height: 48px;
	border-radius: 9px;
	object-fit: contain;
}

.brand .brand-word {
	display: flex;
	flex-direction: column;
	gap: 0;
	color: var(--navy-950);
	line-height: 1;
}

.brand-word strong {
	font-size: 29px;
	font-weight: 900;
	letter-spacing: -0.055em;
}

.brand-word small {
	margin-top: 5px;
	color: var(--muted);
	font-size: 8px;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.primary-nav > ul {
	display: flex;
	align-items: center;
	gap: 5px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav li {
	position: relative;
}

.primary-nav > ul > li > a,
.submenu-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 44px;
	padding: 10px 12px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: #2b3b51;
	font-size: 13px;
	font-weight: 750;
	cursor: pointer;
	transition: color 0.2s ease, background 0.2s ease;
}

.primary-nav > ul > li > a:hover,
.submenu-toggle:hover,
.submenu-toggle[aria-expanded="true"] {
	background: var(--soft);
	color: var(--blue-600);
}

.submenu-toggle span {
	font-size: 15px;
	line-height: 1;
	transition: transform 0.2s ease;
}

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

.primary-nav > ul > li > .nav-cta {
	margin-left: 5px;
	padding-inline: 18px;
	background: var(--blue-600);
	color: var(--white);
	box-shadow: 0 8px 20px rgba(23, 107, 255, 0.2);
}

.primary-nav > ul > li > .nav-cta:hover {
	background: var(--navy-900);
	color: var(--white);
}

.submenu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 20;
	width: 255px;
	margin: 0;
	padding: 10px;
	list-style: none;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: var(--shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.submenu a {
	display: block;
	padding: 10px 12px;
	border-radius: 8px;
	color: #34445a;
	font-size: 13px;
	font-weight: 650;
	line-height: 1.4;
}

.submenu a:hover {
	background: var(--soft);
	color: var(--blue-600);
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu,
.submenu-toggle[aria-expanded="true"] + .submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 11px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: var(--white);
	cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: var(--navy-950);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(4) {
	transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(7, 17, 31, 0.98), rgba(10, 29, 52, 0.95)),
		radial-gradient(circle at 70% 20%, rgba(23, 107, 255, 0.25), transparent 34%);
	color: var(--white);
}

.hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background-image:
		linear-gradient(rgba(62, 134, 232, 0.065) 1px, transparent 1px),
		linear-gradient(90deg, rgba(62, 134, 232, 0.065) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: linear-gradient(to right, transparent, #000 45%, #000);
}

.hero-section::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue-600), var(--cyan-500), transparent 75%);
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
	align-items: center;
	gap: 46px;
	min-height: 560px;
	padding-block: 62px 72px;
}

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

.eyebrow,
.section-kicker {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 16px;
	color: var(--blue-600);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.eyebrow {
	color: #86b6ff;
}

.section-kicker {
	color: #0e56ce;
}

.eyebrow span {
	width: 28px;
	height: 2px;
	background: linear-gradient(90deg, var(--cyan-500), var(--orange-500));
}

.hero-copy h1 {
	max-width: 580px;
	margin: 0;
	font-size: clamp(39px, 4vw, 54px);
	font-weight: 780;
	letter-spacing: -0.04em;
	line-height: 1.08;
}

.hero-copy h1 em {
	background: linear-gradient(105deg, #82b4ff 0%, #82b4ff 58%, #f9ad37 115%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-style: normal;
}

.hero-lead {
	max-width: 570px;
	margin: 20px 0 0;
	color: #bdc9d9;
	font-size: 16px;
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 50px;
	padding: 13px 20px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button-primary {
	background: var(--blue-600);
	color: var(--white);
	box-shadow: 0 14px 30px rgba(23, 107, 255, 0.28);
}

.button-primary:hover {
	background: var(--blue-500);
	box-shadow: 0 18px 35px rgba(23, 107, 255, 0.36);
}

.button-primary span {
	color: #ffd07a;
}

.button-ghost {
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.04);
	color: var(--white);
}

.button-ghost:hover {
	border-color: rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.08);
}

.button-light {
	background: var(--white);
	color: var(--navy-950);
}

.hero-points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
	color: #aebdd0;
	font-size: 12px;
	font-weight: 650;
}

.hero-points li {
	display: flex;
	align-items: center;
	gap: 7px;
}

.hero-points span {
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border: 1px solid rgba(8, 199, 213, 0.45);
	border-radius: 50%;
	color: var(--cyan-500);
	font-size: 10px;
}

.hero-visual {
	position: relative;
	min-width: 0;
}

.hero-image-frame {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(123, 174, 244, 0.2);
	border-radius: 24px;
	background: var(--navy-900);
	box-shadow: 0 35px 90px rgba(0, 0, 0, 0.32);
}

.hero-image-frame img {
	width: 100%;
	aspect-ratio: 1.707 / 1;
	object-fit: cover;
	object-position: center;
}

.hero-image-frame::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 45%);
}

.floating-product {
	position: absolute;
	right: -25px;
	bottom: -48px;
	display: grid;
	grid-template-columns: 110px 1fr auto;
	align-items: center;
	gap: 16px;
	width: min(390px, 85%);
	padding: 13px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	background: rgba(16, 35, 59, 0.93);
	box-shadow: var(--shadow-lg);
	backdrop-filter: blur(16px);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.floating-product:hover {
	transform: translateY(-4px);
	border-color: rgba(8, 199, 213, 0.5);
}

.floating-product img {
	width: 110px;
	height: 65px;
	border-radius: 10px;
	object-fit: cover;
}

.floating-product span {
	display: flex;
	min-width: 0;
	flex-direction: column;
	line-height: 1.35;
}

.floating-product small {
	color: #8ba2bd;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.floating-product strong {
	font-size: 13px;
}

.floating-product b {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--blue-600);
	font-size: 14px;
}

.hero-glow {
	position: absolute;
	top: 15%;
	right: 4%;
	z-index: -1;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(23, 107, 255, 0.2);
	filter: blur(100px);
}

.metrics {
	position: relative;
	z-index: 3;
	padding-bottom: 42px;
	background: var(--soft);
}

.metric-grid {
	position: relative;
	z-index: 4;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: -34px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 20px;
	background: linear-gradient(108deg, #155bd7 0%, #176bff 52%, #2485dc 76%, #d98518 125%);
	box-shadow: 0 24px 58px rgba(13, 58, 126, 0.22);
	overflow: hidden;
	transform: translateY(-34px);
}

.metric-grid > div {
	position: relative;
	display: flex;
	min-height: 108px;
	flex-direction: column;
	justify-content: center;
	padding: 20px 27px;
	transition: background 0.2s ease;
}

.metric-grid > div:hover {
	background: rgba(255, 255, 255, 0.08);
}

.metric-grid > div:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 28px;
	right: 0;
	bottom: 28px;
	width: 1px;
	background: rgba(255, 255, 255, 0.22);
}

.metric-grid small {
	margin-bottom: 5px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.16em;
}

.metric-grid strong {
	color: var(--white);
	font-size: 15px;
	font-weight: 850;
}

.metric-grid span {
	color: rgba(255, 255, 255, 0.76);
	font-size: 12px;
}

.section {
	padding-block: 104px;
}

.intro-section {
	padding-block: 38px 32px;
	background: var(--soft);
}

.section-soft {
	background: var(--soft);
}

.intro-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
	gap: 64px;
	align-items: center;
	overflow: hidden;
	padding: 52px 54px 0;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: var(--white);
	box-shadow: 0 22px 60px rgba(10, 28, 52, 0.1);
}

.intro-grid::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--blue-600), var(--cyan-500) 72%, var(--orange-500));
}

.intro-grid::after {
	content: "";
	position: absolute;
	top: -90px;
	right: -70px;
	width: 230px;
	height: 230px;
	border: 1px solid rgba(23, 107, 255, 0.07);
	border-radius: 50%;
}

.intro-grid > * {
	position: relative;
	z-index: 1;
}

.intro-grid h2,
.section-heading h2,
.connectivity h2,
.seo-copy-section h2,
.cta-section h2,
.page-hero h1 {
	margin: 0;
	color: var(--navy-950);
	font-size: clamp(34px, 4.1vw, 54px);
	font-weight: 770;
	letter-spacing: -0.04em;
	line-height: 1.12;
}

.intro-copy {
	padding: 0 0 0 42px;
	border-left: 1px solid var(--line);
}

.intro-copy p {
	margin: 0 0 20px;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.85;
}

.intro-grid h2 {
	max-width: 680px;
	font-size: clamp(38px, 3.85vw, 54px);
	letter-spacing: -0.052em;
	line-height: 1.03;
}

.intro-grid h2 strong {
	color: var(--blue-600);
	font-weight: inherit;
}

.intro-grid h2 em {
	color: #d97706;
	font-style: normal;
	font-weight: inherit;
}

.intro-statement .section-kicker {
	margin-bottom: 20px;
}

.intro-steps {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 12px -54px 0;
	padding: 0 54px;
	background: var(--navy-950);
	color: var(--white);
	list-style: none;
}

.intro-steps li {
	display: flex;
	align-items: center;
	gap: 13px;
	min-width: 0;
	min-height: 88px;
	padding: 18px 24px;
	border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.intro-steps li:first-child {
	padding-left: 0;
}

.intro-steps li:last-child {
	padding-right: 0;
	border-right: 0;
}

.intro-steps small {
	color: var(--orange-500);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.13em;
}

.intro-steps span {
	font-size: 12px;
	font-weight: 800;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--blue-600);
	font-size: 14px;
	font-weight: 850;
}

.text-link span {
	color: var(--orange-500);
	transition: transform 0.2s ease;
}

.text-link:hover span {
	transform: translateX(4px);
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
	align-items: end;
	gap: 80px;
	margin-bottom: 48px;
}

.section-heading > p {
	margin: 0 0 3px;
	color: var(--muted);
	font-size: 15px;
}

.compact-heading {
	grid-template-columns: minmax(0, 800px);
}

.solutions-section {
	position: relative;
	padding-block: 36px 90px;
	background: #f1f5fa;
}

.solutions-heading {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	align-items: end;
	gap: 70px;
	overflow: hidden;
	margin-bottom: 20px;
	padding: 36px 40px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 22px;
	background:
		linear-gradient(115deg, rgba(7, 17, 31, 0.99), rgba(18, 48, 82, 0.97)),
		var(--navy-950);
	box-shadow: 0 18px 45px rgba(10, 28, 52, 0.13);
}

.solutions-heading::before {
	content: "";
	position: absolute;
	top: -90px;
	right: -30px;
	width: 330px;
	height: 250px;
	border: 1px solid rgba(8, 199, 213, 0.15);
	border-radius: 50%;
	transform: rotate(-18deg);
}

.solutions-heading::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue-600) 0%, var(--cyan-500) 65%, var(--orange-500) 100%);
}

.solutions-heading > * {
	position: relative;
	z-index: 1;
}

.solutions-heading .section-kicker {
	margin-bottom: 11px;
	color: #ffb84e;
}

.solutions-heading h2 {
	max-width: 660px;
	margin: 0;
	color: var(--white);
	font-size: clamp(32px, 3.3vw, 46px);
	font-weight: 770;
	letter-spacing: -0.04em;
	line-height: 1.1;
}

.solutions-heading-copy {
	max-width: 390px;
	justify-self: end;
}

.solutions-heading-copy > span {
	display: inline-flex;
	margin-bottom: 12px;
	padding: 5px 10px;
	border: 1px solid rgba(113, 184, 255, 0.3);
	border-radius: 999px;
	background: rgba(23, 107, 255, 0.13);
	color: #8ebcff;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.solutions-heading-copy p {
	margin: 0;
	color: #aebed1;
	font-size: 14px;
	line-height: 1.65;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.product-card {
	position: relative;
	display: flex;
	min-height: 430px;
	flex-direction: column;
	overflow: hidden;
	padding: 18px;
	border: 1px solid #dce5ef;
	border-radius: 20px;
	background: var(--white);
	box-shadow: 0 1px 0 rgba(10, 28, 52, 0.03);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 2;
	height: 3px;
	background: linear-gradient(90deg, var(--blue-600), var(--orange-500));
}

.product-card-energy::before {
	background: linear-gradient(90deg, var(--orange-500), var(--blue-600));
}

.product-card:hover {
	transform: translateY(-4px);
	border-color: #c7d7e9;
	box-shadow: 0 18px 44px rgba(10, 28, 52, 0.09);
}

.product-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 32px;
	padding: 0 4px 10px;
	color: #7b8ba0;
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.card-index {
	color: var(--blue-600);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.16em;
}

.product-image,
.energy-visual {
	position: relative;
	display: grid;
	place-items: center;
	height: 190px;
	overflow: hidden;
	border: 1px solid #e1e8f0;
	border-radius: 15px;
	background:
		linear-gradient(rgba(22, 78, 145, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(22, 78, 145, 0.035) 1px, transparent 1px),
		linear-gradient(145deg, #f7f9fc, #e7edf4);
	background-size: 28px 28px, 28px 28px, auto;
}

.product-image::after {
	content: "";
	position: absolute;
	inset: auto 15% -30px;
	height: 46px;
	border-radius: 50%;
	background: rgba(20, 53, 93, 0.14);
	filter: blur(16px);
}

.product-image img {
	position: relative;
	z-index: 1;
	width: 92%;
	height: 172px;
	object-fit: contain;
	mix-blend-mode: multiply;
	transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.035);
}

.product-image-server img {
	width: 90%;
	transform: scale(1.28);
}

.product-card:hover .product-image-server img {
	transform: scale(1.32);
}

.product-image-pdu img {
	width: 94%;
	object-position: center;
}

.product-image-connectivity img {
	width: 82%;
}

.product-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 24px 8px 7px;
}

.product-card h3 {
	margin: 0 0 9px;
	color: var(--navy-950);
	font-size: 24px;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.product-card p {
	margin: 0 0 19px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.65;
}

.product-content .text-link,
.product-content .inline-links {
	margin-top: auto;
}

.inline-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.inline-links a {
	padding: 7px 12px;
	border: 1px solid #cfdaea;
	border-radius: 999px;
	color: var(--blue-600);
	font-size: 11px;
	font-weight: 800;
}

.inline-links a:hover {
	border-color: var(--blue-600);
	background: #eef4ff;
}

.energy-visual {
	isolation: isolate;
	place-items: stretch;
	padding: 26px;
	border-color: rgba(255, 255, 255, 0.15);
	background:
		linear-gradient(135deg, rgba(23, 107, 255, 0.98) 0%, rgba(26, 130, 220, 0.94) 72%, rgba(245, 158, 11, 0.9) 145%),
		var(--blue-600);
	color: var(--white);
}

.energy-visual::before,
.energy-visual::after {
	content: "";
	position: absolute;
	right: -45px;
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: 50%;
}

.energy-visual::before {
	top: -75px;
	width: 230px;
	height: 230px;
}

.energy-visual::after {
	top: -30px;
	width: 140px;
	height: 140px;
}

.energy-visual > strong {
	position: relative;
	z-index: 1;
	font-size: 45px;
	font-weight: 850;
	letter-spacing: -0.05em;
	line-height: 1;
}

.energy-visual > div {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: end;
	gap: 6px;
	height: 45px;
	margin-top: 18px;
}

.energy-visual i {
	display: block;
	width: 9px;
	border-radius: 4px 4px 0 0;
	background: rgba(255, 255, 255, 0.88);
}

.energy-visual i:nth-child(1) { height: 35%; }
.energy-visual i:nth-child(2) { height: 68%; }
.energy-visual i:nth-child(3) { height: 48%; }
.energy-visual i:nth-child(4) { height: 88%; }
.energy-visual i:nth-child(5) { height: 62%; }
.energy-visual i:nth-child(6) { height: 100%; }

.energy-visual i:nth-child(3),
.energy-visual i:nth-child(6) {
	background: #ffc25b;
}

.energy-visual > span {
	position: absolute;
	right: 24px;
	bottom: 24px;
	z-index: 1;
	color: rgba(255, 255, 255, 0.82);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.solutions-editorial-section {
	padding-block: 48px 92px;
	background: #f5f7fa;
}

.solutions-editorial-heading {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
	align-items: end;
	gap: 80px;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #dbe3ed;
}

.solutions-editorial-heading h2 {
	max-width: 620px;
	margin: 0;
	color: var(--navy-950);
	font-size: clamp(32px, 3.3vw, 46px);
	font-weight: 770;
	letter-spacing: -0.04em;
	line-height: 1.12;
}

.solutions-editorial-heading > p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.75;
}

.solution-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.solution-item {
	position: relative;
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 16px;
	padding: 28px;
	border: 1px solid #dce4ed;
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 8px 26px rgba(10, 28, 52, 0.04);
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.solution-item::before {
	content: "";
	position: absolute;
	top: 24px;
	bottom: 24px;
	left: 0;
	width: 3px;
	border-radius: 0 3px 3px 0;
	background: linear-gradient(var(--blue-600), var(--orange-500));
}

.solution-item:hover {
	border-color: #cbd8e7;
	box-shadow: 0 14px 34px rgba(10, 28, 52, 0.07);
	transform: translateY(-2px);
}

.solution-number {
	padding-top: 3px;
	color: var(--blue-600);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.13em;
}

.solution-item-body {
	min-width: 0;
}

.solution-title-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 112px;
	align-items: center;
	gap: 18px;
	margin-bottom: 14px;
}

.solution-title-row > div > span {
	display: block;
	margin-bottom: 5px;
	color: #78889e;
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.solution-title-row h3 {
	margin: 0;
	color: var(--navy-950);
	font-size: 22px;
	font-weight: 780;
	letter-spacing: -0.025em;
	line-height: 1.22;
}

.solution-title-row h3 a:hover {
	color: var(--blue-600);
}

.solution-title-row img {
	width: 112px;
	height: 78px;
	padding: 6px;
	border: 1px solid #e0e6ee;
	border-radius: 10px;
	background: #f7f9fb;
	object-fit: contain;
}

.solution-item-body > p {
	margin: 0 0 16px;
	color: #5e6e83;
	font-size: 13px;
	line-height: 1.72;
}

.solution-points {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 16px;
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}

.solution-points li {
	position: relative;
	padding-left: 13px;
	color: #35465d;
	font-size: 11px;
	font-weight: 700;
}

.solution-points li::before {
	content: "";
	position: absolute;
	top: 0.68em;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--orange-500);
	transform: translateY(-50%);
}

.solution-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.solution-links a {
	color: var(--blue-600);
	font-size: 12px;
	font-weight: 850;
}

.solution-links a::after {
	content: " →";
	color: var(--orange-500);
}

.application-rd-section {
	background: var(--white);
}

.application-rd-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
	align-items: end;
	gap: 80px;
	margin-bottom: 38px;
}

.application-rd-heading h2 {
	max-width: 720px;
	margin: 0;
	color: var(--navy-950);
	font-size: clamp(34px, 3.5vw, 50px);
	font-weight: 780;
	letter-spacing: -0.045em;
	line-height: 1.1;
}

.application-rd-heading > p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.75;
}

.application-rd-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.application-rd-grid > a {
	position: relative;
	min-width: 0;
	min-height: 260px;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: #fbfcfe;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.application-rd-grid > a::before {
	content: "";
	position: absolute;
	top: 26px;
	bottom: 26px;
	left: 0;
	width: 3px;
	border-radius: 0 4px 4px 0;
	background: linear-gradient(var(--blue-600), var(--orange-500));
}

.application-rd-grid > a:hover {
	border-color: #cbd8e7;
	box-shadow: var(--shadow-sm);
	transform: translateY(-3px);
}

.application-rd-grid span {
	color: #718198;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.application-rd-grid h3 {
	margin: 28px 0 12px;
	color: var(--navy-950);
	font-size: 24px;
	letter-spacing: -0.03em;
	line-height: 1.18;
}

.application-rd-grid p {
	max-width: 520px;
	margin: 0 0 24px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.7;
}

.application-rd-grid b {
	position: absolute;
	right: 30px;
	bottom: 26px;
	left: 30px;
	color: #0e56ce;
	font-size: 12px;
	font-weight: 850;
}

.application-rd-grid b i {
	margin-left: 5px;
	color: var(--orange-500);
	font-style: normal;
}

.capability-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.capability-grid a {
	position: relative;
	min-height: 210px;
	padding: 28px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--white);
	transition: background 0.2s ease, transform 0.2s ease;
}

.capability-grid a:hover {
	z-index: 1;
	background: var(--soft);
	transform: translateY(-3px);
}

.capability-grid span {
	color: var(--blue-600);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.capability-grid h3 {
	margin: 28px 45px 7px 0;
	color: var(--navy-950);
	font-size: 18px;
	line-height: 1.25;
}

.capability-grid p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.55;
}

.capability-grid b {
	position: absolute;
	top: 25px;
	right: 25px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid var(--line);
	border-radius: 50%;
	font-size: 12px;
	transition: background 0.2s ease, color 0.2s ease;
}

.capability-grid a:hover b {
	background: var(--blue-600);
	color: var(--white);
}

.industry-section {
	position: relative;
	background: var(--navy-950);
	color: var(--white);
}

.industry-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(65, 131, 219, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(65, 131, 219, 0.055) 1px, transparent 1px);
	background-size: 50px 50px;
	pointer-events: none;
}

.industry-section .container {
	position: relative;
}

.light-heading h2 {
	color: var(--white);
}

.text-link-light {
	color: #91baff;
}

.industry-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.industry-grid article {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.045);
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.industry-grid article:hover {
	transform: translateY(-5px);
	border-color: rgba(8, 199, 213, 0.45);
}

.industry-grid img {
	width: 100%;
	height: 155px;
	object-fit: cover;
	filter: saturate(0.8);
	transition: filter 0.25s ease, transform 0.25s ease;
}

.industry-grid article:hover img {
	filter: saturate(1.05);
	transform: scale(1.025);
}

.industry-grid article > div {
	padding: 22px;
}

.industry-grid span {
	color: #75a9ff;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.industry-grid h3 {
	margin: 8px 0;
	font-size: 18px;
	line-height: 1.25;
}

.industry-grid p {
	margin: 0;
	color: #aebed1;
	font-size: 13px;
	line-height: 1.6;
}

.connectivity-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	align-items: center;
	gap: 95px;
}

.connectivity-copy > p:not(.section-kicker) {
	margin: 25px 0;
	color: var(--muted);
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tag-list li {
	padding: 6px 12px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--soft);
	color: #43536a;
	font-size: 11px;
	font-weight: 750;
}

.connectivity-visual {
	position: relative;
	padding: 44px;
	border-radius: var(--radius-lg);
	background: var(--soft);
}

.connectivity-visual > img {
	width: 100%;
	min-height: 260px;
	object-fit: contain;
}

.protocol-card {
	position: absolute;
	right: -30px;
	bottom: -24px;
	display: flex;
	min-width: 260px;
	flex-direction: column;
	padding: 20px 24px;
	border-radius: 14px;
	background: var(--navy-950);
	color: var(--white);
	box-shadow: var(--shadow-lg);
}

.protocol-card strong {
	font-size: 14px;
}

.protocol-card span {
	color: #9eb0c6;
	font-size: 11px;
}

.seo-copy-section {
	padding-top: 20px;
}

.seo-copy-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
	gap: 90px;
	padding-top: 70px;
	border-top: 1px solid var(--line);
}

.seo-copy-section h2 {
	font-size: clamp(32px, 3.6vw, 46px);
}

.prose-columns {
	columns: 2;
	column-gap: 36px;
}

.prose-columns p {
	margin: 0;
	break-inside: avoid;
	color: var(--muted);
	font-size: 14px;
}

.prose-columns p + p {
	margin-top: 18px;
}

.cta-section {
	padding-block: 82px;
	background: linear-gradient(135deg, #eef5ff, #f7fafc 58%, #e9fbfc);
}

.cta-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
	align-items: center;
	gap: 70px;
}

.cta-section h2 {
	font-size: clamp(34px, 4vw, 50px);
}

.cta-section p:not(.section-kicker) {
	max-width: 650px;
	margin: 16px 0 0;
	color: var(--muted);
}

.cta-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 13px;
}

.cta-actions > a:not(.button) {
	padding-left: 5px;
	color: var(--navy-800);
	font-size: 18px;
	font-weight: 850;
}

.page-hero {
	position: relative;
	overflow: hidden;
	padding-block: 72px 76px;
	background: var(--navy-950);
	color: var(--white);
}

.page-hero .container {
	position: relative;
	z-index: 1;
}

.page-hero h1 {
	max-width: 900px;
	color: var(--white);
}

.page-hero .section-kicker {
	margin-top: 24px;
	color: #85b2f8;
}

.page-hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(54, 122, 214, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(54, 122, 214, 0.07) 1px, transparent 1px);
	background-size: 55px 55px;
	mask-image: linear-gradient(to right, transparent, #000);
}

.breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 9px;
	color: #91a4bc;
	font-size: 12px;
}

.breadcrumb a:hover {
	color: var(--white);
}

.breadcrumb span[aria-current="page"] {
	color: #c8d3e0;
}

.page-content-section {
	padding-block: 84px 110px;
}

.page-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	align-items: start;
	gap: 72px;
}

.entry-content {
	min-width: 0;
	color: #42536b;
	font-size: 16px;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: var(--navy-950);
	font-weight: 780;
	letter-spacing: -0.025em;
	line-height: 1.25;
}

.entry-content h2 {
	margin: 48px 0 18px;
	font-size: 32px;
}

.entry-content h3 {
	margin: 38px 0 14px;
	font-size: 23px;
}

.entry-content h4 {
	margin: 28px 0 10px;
	font-size: 18px;
}

.entry-content p {
	margin: 0 0 20px;
}

.entry-content a {
	color: var(--blue-600);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-content ul,
.entry-content ol {
	margin: 0 0 24px;
	padding-left: 24px;
}

.entry-content li {
	margin-bottom: 8px;
}

.entry-content img {
	border-radius: 14px;
}

.entry-content blockquote {
	margin: 32px 0;
	padding: 22px 26px;
	border-left: 4px solid var(--blue-600);
	border-radius: 0 12px 12px 0;
	background: var(--soft);
	color: var(--navy-800);
	font-size: 18px;
}

.entry-content table {
	width: 100%;
	margin: 28px 0;
	border-collapse: collapse;
	font-size: 14px;
}

.entry-content th,
.entry-content td {
	padding: 12px 14px;
	border: 1px solid var(--line);
	text-align: left;
}

.entry-content th {
	background: var(--soft);
	color: var(--navy-950);
}

.page-aside {
	position: sticky;
	top: 28px;
}

.featured-image,
.page-gallery img {
	overflow: hidden;
	margin-bottom: 14px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--soft);
}

.featured-image img,
.page-gallery img {
	width: 100%;
}

.aside-cta {
	position: relative;
	overflow: hidden;
	margin-top: 22px;
	padding: 28px;
	border-radius: 18px;
	background: var(--navy-950);
	color: var(--white);
}

.aside-cta::after {
	content: "";
	position: absolute;
	top: -55px;
	right: -55px;
	width: 150px;
	height: 150px;
	border: 1px solid rgba(8, 199, 213, 0.22);
	border-radius: 50%;
}

.aside-cta > * {
	position: relative;
	z-index: 1;
}

.aside-cta > span {
	color: #83b5ff;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.aside-cta h2 {
	margin: 16px 0 10px;
	font-size: 25px;
	line-height: 1.2;
}

.aside-cta p {
	margin: 0 0 22px;
	color: #aab9cc;
	font-size: 13px;
}

.contact-layout {
	grid-template-columns: minmax(0, 1fr);
	max-width: 920px;
}

.contact-layout .page-aside {
	display: none;
}

.contact-intro {
	max-width: 760px;
	margin-bottom: 34px;
}

.contact-intro h2 {
	margin: 0 0 16px;
	color: var(--navy-950);
	font-size: clamp(30px, 3.5vw, 44px);
	font-weight: 770;
	letter-spacing: -0.035em;
	line-height: 1.15;
}

.contact-intro > p:last-child {
	margin: 0;
	color: var(--muted);
}

.vmr-contact-form {
	display: grid;
	gap: 18px;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: var(--soft);
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.vmr-contact-form label {
	display: grid;
	gap: 7px;
	color: var(--navy-900);
	font-size: 13px;
	font-weight: 750;
}

.vmr-contact-form label > span {
	color: #c86d00;
}

.vmr-contact-form input:not([type="checkbox"]),
.vmr-contact-form textarea,
.vmr-contact-form select {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid #cbd6e2;
	border-radius: 10px;
	background: var(--white);
	color: var(--ink);
	outline: 0;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vmr-contact-form input:focus,
.vmr-contact-form textarea:focus,
.vmr-contact-form select:focus {
	border-color: var(--blue-600);
	box-shadow: 0 0 0 3px rgba(23, 107, 255, 0.11);
}

.vmr-contact-form textarea {
	min-height: 160px;
	resize: vertical;
}

.vmr-contact-form .form-consent {
	display: flex;
	grid-template-columns: none;
	align-items: flex-start;
	gap: 10px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 600;
}

.form-consent input {
	flex: 0 0 auto;
	margin-top: 4px;
}

.vmr-contact-form .button {
	justify-self: start;
	border: 0;
	cursor: pointer;
}

.form-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-message {
	margin-bottom: 20px;
	padding: 13px 16px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
}

.form-success {
	border: 1px solid #9bd7b0;
	background: #edf9f1;
	color: #21683a;
}

.form-error {
	border: 1px solid #f0b0a8;
	background: #fff1ef;
	color: #943b30;
}

/* Text-first expertise and SEO landing pages. */
.service-page-hero {
	position: relative;
	overflow: hidden;
	padding: 62px 0 0;
	background:
		linear-gradient(90deg, rgba(7, 17, 31, 0.99), rgba(16, 42, 75, 0.96)),
		radial-gradient(circle at 78% 18%, rgba(23, 107, 255, 0.28), transparent 35%);
	color: var(--white);
}

.service-page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(74, 145, 238, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(74, 145, 238, 0.055) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: linear-gradient(to right, transparent 3%, #000 58%, #000);
}

.service-hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
	align-items: center;
	gap: 70px;
	padding-bottom: 62px;
}

.service-hero-grid > * {
	min-width: 0;
}

.service-page-hero .breadcrumb {
	margin-bottom: 30px;
	color: #9fb1c8;
}

.service-page-hero .section-kicker {
	color: #8bb9ff;
}

.service-page-hero h1 {
	max-width: 820px;
	margin: 0;
	font-size: clamp(42px, 5.2vw, 68px);
	font-weight: 780;
	letter-spacing: -0.05em;
	line-height: 1.03;
}

.service-hero-lead {
	max-width: 720px;
	margin: 24px 0 0;
	color: #c1cddd;
	font-size: 17px;
	line-height: 1.75;
}

.service-signal {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr;
	align-items: center;
	gap: 10px;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.045);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
}

.service-signal span {
	display: grid;
	place-items: center;
	min-height: 88px;
	border: 1px solid rgba(117, 171, 255, 0.23);
	border-radius: 12px;
	background: rgba(23, 107, 255, 0.09);
	font-size: 13px;
	font-weight: 800;
}

.service-signal span b {
	display: block;
	color: #ffc35d;
	font-size: 10px;
	letter-spacing: 0.1em;
}

.service-signal i {
	color: #ffc35d;
	font-style: normal;
}

.service-signal p {
	grid-column: 1 / -1;
	margin: 12px 0 0;
	color: #aabbd0;
	font-size: 12px;
	text-align: center;
}

.service-facts {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-radius: 16px 16px 0 0;
	background: linear-gradient(110deg, #176bff, #2679ef 65%, #f59e0b 150%);
	box-shadow: 0 24px 55px rgba(4, 18, 38, 0.23);
}

.service-facts > div {
	display: grid;
	gap: 3px;
	min-width: 0;
	padding: 22px 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.service-facts > div:last-child {
	border-right: 0;
}

.service-facts small {
	color: #d5e5ff;
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.service-facts strong {
	font-size: 14px;
}

.service-overview {
	background: var(--white);
}

.service-overview-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
	gap: 90px;
}

.service-overview-heading h2,
.service-section-heading h2,
.service-faq-grid > div > h2 {
	margin: 0;
	color: var(--navy-950);
	font-size: clamp(34px, 3.6vw, 50px);
	font-weight: 780;
	letter-spacing: -0.045em;
	line-height: 1.1;
}

.service-overview-copy p {
	margin: 0 0 20px;
	color: #526278;
	font-size: 15px;
	line-height: 1.85;
}

.service-overview-copy p:last-child {
	margin-bottom: 0;
}

.service-detail-list {
	display: grid;
	gap: 16px;
}

.service-detail {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 22px;
	padding: 38px;
	border: 1px solid #dbe4ee;
	border-radius: 18px;
	background: var(--white);
}

.service-detail-index {
	padding-top: 5px;
	color: var(--blue-600);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.13em;
}

.service-detail-body {
	min-width: 0;
}

.service-detail h2 {
	margin: 0 0 24px;
	color: var(--navy-950);
	font-size: 30px;
	letter-spacing: -0.035em;
	line-height: 1.15;
}

.service-detail p {
	margin: 0 0 17px;
	color: #56667b;
	font-size: 14px;
	line-height: 1.82;
}

.service-detail ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.service-detail li {
	padding: 8px 12px;
	border: 1px solid #dce5f1;
	border-radius: 999px;
	background: #f7f9fc;
	color: #33465f;
	font-size: 11px;
	font-weight: 750;
}

.service-process-section {
	background: var(--white);
}

.service-section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
	align-items: end;
	gap: 70px;
	margin-bottom: 38px;
}

.service-section-heading > p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.75;
}

.service-section-heading.compact {
	grid-template-columns: 1fr;
}

.service-process-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
	list-style: none;
}

.service-process-list li {
	min-height: 220px;
	padding: 28px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.service-process-list span {
	color: var(--orange-500);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.service-process-list h3 {
	margin: 34px 0 10px;
	color: var(--navy-950);
	font-size: 18px;
	line-height: 1.25;
}

.service-process-list p {
	margin: 0;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.7;
}

.service-faq-grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
	gap: 80px;
}

.service-review-note {
	max-width: 420px;
	margin-top: 24px;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.75;
}

.service-faq-list {
	display: grid;
	gap: 12px;
}

.service-faq-list article {
	padding: 24px 26px;
	border: 1px solid #dbe4ee;
	border-radius: 14px;
	background: var(--white);
}

.service-faq-list h3 {
	margin: 0 0 8px;
	color: var(--navy-950);
	font-size: 17px;
	line-height: 1.35;
}

.service-faq-list p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.75;
}

.service-related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.service-related-grid a {
	position: relative;
	min-height: 190px;
	padding: 26px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--white);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-related-grid a:hover {
	border-color: var(--blue-600);
	transform: translateY(-3px);
}

.service-related-grid span {
	color: var(--blue-600);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.service-related-grid h3 {
	max-width: 260px;
	margin: 28px 36px 0 0;
	color: var(--navy-950);
	font-size: 18px;
	line-height: 1.28;
}

.service-related-grid b {
	position: absolute;
	top: 24px;
	right: 24px;
	color: var(--orange-500);
}

.service-cta .cta-inner {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.wpcf7 form {
	display: grid;
	gap: 16px;
}

.wpcf7 p {
	margin: 0;
}

.wpcf7 label {
	display: block;
	color: var(--navy-900);
	font-size: 13px;
	font-weight: 750;
}

.wpcf7 input:not([type="submit"]),
.wpcf7 textarea,
.wpcf7 select {
	width: 100%;
	margin-top: 6px;
	padding: 13px 14px;
	border: 1px solid #ced8e4;
	border-radius: 10px;
	background: var(--white);
	color: var(--ink);
}

.wpcf7 textarea {
	min-height: 150px;
	resize: vertical;
}

.wpcf7 input[type="submit"] {
	min-height: 50px;
	padding: 12px 22px;
	border: 0;
	border-radius: 10px;
	background: var(--blue-600);
	color: var(--white);
	font-weight: 850;
	cursor: pointer;
}

.wpcf7 input[type="submit"]:hover {
	background: var(--navy-900);
}

.site-footer {
	background: var(--navy-950);
	color: #9badc3;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr 0.85fr 1.05fr;
	gap: 62px;
	padding-block: 78px 66px;
}

.brand-footer {
	display: inline-flex;
	padding: 8px 13px 8px 9px;
	border-radius: 10px;
	background: var(--white);
}

.brand-footer .brand-mark {
	width: 42px;
	height: 42px;
}

.brand-footer .brand-word strong {
	font-size: 25px;
}

.brand-footer .brand-word small {
	font-size: 7px;
}

.footer-brand > p {
	max-width: 300px;
	margin: 24px 0;
	font-size: 13px;
}

.workbench-footer {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: #83b4ff;
	font-size: 12px;
	font-weight: 800;
}

.footer-grid h2 {
	margin: 0 0 20px;
	color: var(--white);
	font-size: 14px;
	letter-spacing: 0.02em;
}

.footer-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links li + li {
	margin-top: 8px;
}

.footer-links a,
.footer-contact a {
	font-size: 12px;
	transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
	color: var(--white);
}

.footer-contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.footer-contact address {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 14px;
	font-size: 12px;
	font-style: normal;
}

.footer-contact address strong {
	color: #dce5ef;
}

.footer-contact .text-link {
	margin-top: 15px;
}

.footer-contact > a:not(.text-link) {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
}

.footer-bottom {
	display: grid;
	grid-template-columns: 1fr auto auto;
	align-items: center;
	gap: 30px;
	min-height: 74px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 10px;
}

.footer-bottom p {
	margin: 0;
}

.back-to-top {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #dce5ef;
	font-weight: 750;
}

@media (max-width: 1120px) {
	.primary-inner {
		min-height: 76px;
	}

	.brand .brand-mark {
		width: 44px;
		height: 44px;
	}

	.brand-word strong {
		font-size: 26px;
	}

	.primary-nav > ul > li > a,
	.submenu-toggle {
		padding-inline: 8px;
		font-size: 12px;
	}

	.hero-grid {
		gap: 40px;
	}

	.hero-copy h1 {
		font-size: clamp(39px, 4.8vw, 52px);
	}

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

	.footer-grid {
		grid-template-columns: 1.2fr 1fr 1fr;
	}

	.footer-contact {
		grid-column: 2 / -1;
	}
}

@media (max-width: 900px) {
	.container {
		width: min(calc(100% - 32px), var(--container));
	}

	.utility-nav a:not(.workbench-link) {
		display: none;
	}

	.primary-header {
		position: relative;
	}

	.nav-toggle {
		display: block;
	}

	.primary-nav {
		position: fixed;
		top: 114px;
		right: 0;
		bottom: 0;
		z-index: 100;
		width: min(390px, 90vw);
		padding: 18px;
		background: var(--white);
		box-shadow: -25px 25px 50px rgba(7, 17, 31, 0.22);
		overflow-y: auto;
		transform: translateX(105%);
		visibility: hidden;
		transition: transform 0.25s ease, visibility 0.25s ease;
	}

	.nav-open .primary-nav {
		transform: translateX(0);
		visibility: visible;
	}

	.primary-nav > ul {
		align-items: stretch;
		flex-direction: column;
		gap: 2px;
	}

	.primary-nav > ul > li > a,
	.submenu-toggle {
		justify-content: space-between;
		width: 100%;
		min-height: 48px;
		padding: 12px 14px;
		font-size: 14px;
		text-align: left;
	}

	.primary-nav > ul > li > .nav-cta {
		justify-content: center;
		margin: 10px 0 0;
	}

	.submenu {
		position: static;
		display: none;
		width: 100%;
		padding: 3px 10px 10px 18px;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.submenu-toggle[aria-expanded="true"] + .submenu {
		display: block;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		gap: 36px;
		min-height: auto;
		padding-block: 56px 68px;
	}

	.hero-copy {
		max-width: 720px;
	}

	.hero-visual {
		max-width: 720px;
	}

	.metric-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.metric-grid > div:nth-child(2)::after {
		display: none;
	}

	.metric-grid > div:nth-child(-n+2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.22);
	}

	.section {
		padding-block: 80px;
	}

	.intro-grid,
	.section-heading,
	.connectivity-grid,
	.seo-copy-grid,
	.cta-inner {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.application-rd-heading,
	.service-hero-grid,
	.service-overview-grid,
	.service-section-heading,
	.service-faq-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.service-signal {
		max-width: 620px;
	}

	.service-process-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.intro-copy {
		padding: 26px 0 0;
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.intro-grid {
		padding: 40px 34px 0;
	}

	.intro-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-inline: -34px;
		padding-inline: 34px;
	}

	.intro-steps li:nth-child(2) {
		border-right: 0;
	}

	.intro-steps li:nth-child(-n+2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.13);
	}

	.solutions-editorial-heading {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.solution-list {
		grid-template-columns: 1fr;
	}

	.solutions-heading {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 32px;
	}

	.solutions-heading-copy {
		max-width: 600px;
		justify-self: start;
	}

	.product-card-wide {
		grid-template-columns: 1fr;
	}

	.product-card-wide > img {
		justify-self: end;
		max-width: 360px;
	}

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

	.connectivity-visual {
		max-width: 700px;
	}

	.seo-copy-section {
		padding-top: 0;
	}

	.page-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 50px;
	}

	.page-aside {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.aside-cta {
		margin-top: 0;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-contact {
		grid-column: auto;
	}

	.footer-bottom {
		grid-template-columns: 1fr auto;
	}

	.footer-bottom p:nth-child(2) {
		display: none;
	}
}

@media (max-width: 640px) {
	.container {
		width: min(calc(100% - 26px), var(--container));
	}

	.utility-inner {
		min-height: 34px;
	}

	.utility-contact span,
	.utility-contact a[href^="mailto"] {
		display: none;
	}

	.utility-nav {
		display: none;
	}

	.primary-inner {
		min-height: 70px;
	}

	.brand .brand-mark {
		width: 42px;
		height: 42px;
	}

	.brand-word strong {
		font-size: 24px;
	}

	.brand-word small {
		font-size: 7px;
	}

	.primary-nav {
		top: 104px;
		width: 100%;
	}

	.hero-grid {
		padding-block: 48px 56px;
	}

	.hero-copy h1 {
		max-width: 100%;
		font-size: clamp(32px, 9.5vw, 40px);
		overflow-wrap: break-word;
	}

	.hero-lead {
		font-size: 16px;
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

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

	.hero-points {
		align-items: flex-start;
		flex-direction: column;
	}

	.hero-image-frame img {
		min-height: 0;
	}

	.floating-product {
		right: 8px;
		bottom: -42px;
		grid-template-columns: 75px 1fr auto;
		width: calc(100% - 16px);
	}

	.floating-product img {
		width: 75px;
		height: 54px;
	}

	.metric-grid {
		grid-template-columns: 1fr;
		margin-bottom: -24px;
		border-radius: 16px;
		transform: translateY(-24px);
	}

	.metric-grid > div {
		min-height: 88px;
		padding: 15px 20px;
	}

	.metric-grid > div:not(:last-child) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.22);
	}

	.metric-grid > div::after {
		display: none;
	}

	.section {
		padding-block: 65px;
	}

	.intro-section {
		padding-block: 28px 22px;
	}

	.intro-grid {
		gap: 24px;
		padding: 32px 22px 0;
		border-radius: 18px;
	}

	.intro-grid h2 {
		font-size: clamp(34px, 10vw, 42px);
	}

	.intro-copy {
		padding-top: 22px;
	}

	.intro-steps {
		margin: 4px -22px 0;
		padding-inline: 22px;
	}

	.intro-steps li {
		min-height: 78px;
		padding: 14px 10px;
	}

	.intro-steps li:first-child,
	.intro-steps li:nth-child(3) {
		padding-left: 0;
	}

	.intro-steps span {
		font-size: 11px;
		line-height: 1.35;
	}

	.solutions-section {
		padding-block: 30px 65px;
	}

	.solutions-editorial-section {
		padding-block: 30px 65px;
	}

	.solutions-editorial-heading {
		margin-bottom: 20px;
		padding-bottom: 22px;
	}

	.solutions-editorial-heading h2 {
		font-size: clamp(29px, 8.5vw, 37px);
	}

	.application-rd-heading {
		margin-bottom: 24px;
	}

	.application-rd-heading h2 {
		font-size: clamp(29px, 8.5vw, 37px);
	}

	.application-rd-grid {
		grid-template-columns: 1fr;
	}

	.application-rd-grid > a {
		min-height: 240px;
		padding: 24px 22px;
	}

	.application-rd-grid b {
		right: 22px;
		left: 22px;
	}

	.service-page-hero {
		padding-top: 46px;
	}

	.service-hero-grid {
		padding-bottom: 42px;
	}

	.service-page-hero h1 {
		font-size: clamp(35px, 10.5vw, 46px);
		overflow-wrap: break-word;
	}

	.service-hero-lead {
		font-size: 15px;
	}

	.service-signal {
		grid-template-columns: 1fr;
		padding: 18px;
	}

	.service-signal i {
		display: none;
	}

	.service-signal span {
		min-height: 58px;
	}

	.service-facts {
		grid-template-columns: 1fr;
		border-radius: 14px 14px 0 0;
	}

	.service-facts > div {
		padding: 16px 20px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.service-facts > div:last-child {
		border-bottom: 0;
	}

	.service-overview-grid,
	.service-section-heading,
	.service-faq-grid {
		gap: 28px;
	}

	.service-overview-heading h2,
	.service-section-heading h2,
	.service-faq-grid > div > h2 {
		font-size: clamp(29px, 8.5vw, 38px);
	}

	.service-detail {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 26px 22px;
	}

	.service-detail h2 {
		font-size: 25px;
	}

	.service-detail ul {
		align-items: flex-start;
		flex-direction: column;
	}

	.service-process-list,
	.service-related-grid {
		grid-template-columns: 1fr;
	}

	.service-process-list li {
		min-height: 180px;
	}

	.solution-item {
		grid-template-columns: 28px minmax(0, 1fr);
		gap: 10px;
		padding: 22px 18px;
	}

	.solution-title-row {
		grid-template-columns: minmax(0, 1fr) 84px;
		gap: 12px;
	}

	.solution-title-row img {
		width: 84px;
		height: 66px;
	}

	.solution-title-row h3 {
		font-size: 20px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.vmr-contact-form {
		padding: 22px 18px;
	}

	.solutions-heading {
		gap: 20px;
		padding: 26px 22px;
		border-radius: 18px;
	}

	.solutions-heading h2 {
		font-size: clamp(30px, 9vw, 38px);
	}

	.product-image,
	.energy-visual {
		height: 170px;
	}

	.intro-grid h2,
	.section-heading h2,
	.connectivity h2,
	.seo-copy-section h2,
	.cta-section h2,
	.page-hero h1 {
		font-size: clamp(31px, 9vw, 40px);
	}

	.section-heading {
		margin-bottom: 32px;
	}

	.product-grid,
	.capability-grid,
	.industry-grid,
	.page-aside,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.product-card {
		min-height: 360px;
		padding: 24px;
	}

	.product-card-wide > img {
		max-width: 100%;
	}

	.capability-grid a {
		min-height: 185px;
	}

	.industry-grid img {
		height: 190px;
	}

	.connectivity-visual {
		padding: 24px 14px 55px;
	}

	.connectivity-visual > img {
		min-height: 200px;
	}

	.protocol-card {
		right: 12px;
		bottom: -22px;
		left: 12px;
		min-width: 0;
	}

	.prose-columns {
		columns: 1;
	}

	.page-hero {
		padding-block: 52px 58px;
	}

	.page-content-section {
		padding-block: 58px 76px;
	}

	.page-layout {
		gap: 38px;
	}

	.entry-content {
		font-size: 15px;
	}

	.entry-content h2 {
		font-size: 27px;
	}

	.footer-grid {
		gap: 40px;
		padding-block: 60px 50px;
	}

	.footer-bottom {
		grid-template-columns: 1fr auto;
		gap: 15px;
		min-height: 78px;
	}
}

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