/*
 * KINETRA Process Systems
 * Industrial editorial theme foundation.
 */

:root {
	--color-graphite: #111716;
	--color-graphite-soft: #1b2422;
	--color-ink: #1d2523;
	--color-paper: #f4f4ef;
	--color-white: #ffffff;
	--color-mist: #e6e8e2;
	--color-line: #c9cdc5;
	--color-muted: #68716d;
	--color-cobalt: #2f61ff;
	--color-cobalt-dark: #1f49ce;
	--color-orange: #ff5c35;
	--color-success: #1e7d55;
	--color-error: #b82e26;
	--font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
	--font-body: "Public Sans", Helvetica, sans-serif;
	--shell: 1360px;
	--gutter: 32px;
	--section-space: 112px;
	--radius: 6px;
	--shadow-small: 0 12px 32px rgb(17 23 22 / 10%);
	--shadow-dialog: 0 28px 80px rgb(17 23 22 / 32%);
	--ease-out: cubic-bezier(0.23, 1, 0.32, 1);
	--ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
	--ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
	--transition: 180ms var(--ease-out);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 112px;
}

body {
	margin: 0;
	min-width: 320px;
	background: var(--color-paper);
	color: var(--color-ink);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.menu-open,
body.menu-is-open,
body.has-open-dialog {
	overflow: hidden;
}

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

img {
	height: auto;
}

button,
input,
textarea,
select {
	font: inherit;
	letter-spacing: 0;
}

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

button {
	cursor: pointer;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

[hidden] {
	display: none !important;
}

::selection {
	background: var(--color-orange);
	color: var(--color-graphite);
}

:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 3px;
}

.site-shell {
	width: min(100% - (var(--gutter) * 2), var(--shell));
	margin-inline: auto;
}

.section {
	padding-block: var(--section-space);
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 10000;
	padding: 10px 16px;
	transform: translateY(-180%);
	background: var(--color-white);
	color: var(--color-graphite);
	font-size: 13px;
	font-weight: 700;
	transition: transform var(--transition);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--color-graphite);
	font-family: var(--font-display);
	font-weight: 600;
	letter-spacing: 0;
	line-height: 0.98;
	text-wrap: balance;
}

h1 {
	font-size: 76px;
}

h2 {
	font-size: 58px;
}

h3 {
	font-size: 32px;
}

p {
	text-wrap: pretty;
}

.lead {
	font-size: 22px;
	line-height: 1.5;
}

.eyebrow,
.hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
}

.eyebrow > span,
.hero__eyebrow > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 26px;
	padding-inline: 8px;
	border: 1px solid currentColor;
	border-radius: 2px;
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 600;
}

.button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 12px 20px;
	border: 1px solid var(--color-cobalt);
	border-radius: 3px;
	background: var(--color-cobalt);
	color: var(--color-white);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	transition: background-color var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.button svg,
.button i,
.text-link svg,
.text-link i {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	stroke-width: 1.8;
}

.button--small {
	min-height: 42px;
	padding: 9px 15px;
}

.button--light {
	border-color: var(--color-white);
	background: var(--color-white);
	color: var(--color-graphite);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	border-bottom: 1px solid currentColor;
	color: var(--color-graphite);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.55;
	transition: color var(--transition), border-color var(--transition);
}

.text-link--light {
	color: var(--color-white);
}

.icon-button {
	display: inline-flex;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 3px;
	background: transparent;
	color: inherit;
	transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.icon-button svg,
.icon-button i {
	width: 20px;
	height: 20px;
	stroke-width: 1.8;
}

.icon-button--outlined {
	border: 1px solid var(--color-line);
	background: transparent;
}

.button:active,
.icon-button:active,
.filter-button:active,
.hero__tab:active {
	transform: scale(0.97);
	transition-duration: 160ms;
}

@media (hover: hover) {
	.button:hover {
		border-color: var(--color-orange);
		background: var(--color-orange);
		color: var(--color-graphite);
		transform: translateY(-2px);
	}

	.button--light:hover {
		border-color: var(--color-orange);
		background: var(--color-orange);
	}

	.text-link:hover {
		border-color: var(--color-orange);
		color: var(--color-cobalt);
	}

	.text-link--light:hover {
		color: var(--color-orange);
	}

	.icon-button:hover {
		background: var(--color-orange);
		color: var(--color-graphite);
	}
}

/* Header and navigation */

.utility-bar {
	position: relative;
	z-index: 90;
	min-height: 32px;
	background: var(--color-cobalt);
	color: var(--color-white);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.3;
}

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

.utility-bar__meta,
.utility-bar__meta > span {
	display: flex;
	align-items: center;
	gap: 22px;
}

.utility-bar__meta > span {
	gap: 6px;
}

.utility-bar__meta svg,
.utility-bar__meta i {
	width: 14px;
	height: 14px;
}

.utility-bar a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 80;
	border-bottom: 1px solid var(--color-line);
	background: rgb(244 244 239 / 96%);
	backdrop-filter: blur(12px);
	transition: box-shadow var(--transition), background-color var(--transition);
}

.site-header.is-scrolled {
	background: rgb(244 244 239 / 99%);
	box-shadow: 0 8px 24px rgb(17 23 22 / 8%);
}

.site-header__inner {
	display: grid;
	min-height: 76px;
	grid-template-columns: auto 1fr auto auto;
	align-items: center;
	gap: 38px;
}

.language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	padding: 3px;
	border: 1px solid var(--color-line);
	border-radius: 3px;
	background: rgb(255 255 255 / 58%);
}

.language-switcher a {
	display: inline-flex;
	min-width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	padding-inline: 7px;
	border-radius: 2px;
	color: var(--color-muted);
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	transition: background-color var(--transition), color var(--transition), transform 160ms var(--ease-out);
}

.language-switcher a[aria-current="page"] {
	background: var(--color-graphite);
	color: var(--color-white);
}

.language-switcher--mobile {
	display: none;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	width: fit-content;
	color: var(--color-graphite);
}

.brand__mark {
	position: relative;
	display: grid;
	width: 38px;
	height: 38px;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	border: 2px solid currentColor;
	background: var(--color-cobalt);
	color: var(--color-graphite);
}

.brand__mark::after {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
	content: "";
	transform: translateY(-50%);
}

.brand__mark span {
	display: block;
	border-right: 2px solid currentColor;
	transform: skewY(-28deg);
	transform-origin: bottom;
}

.brand__mark span:last-child {
	border-right: 0;
	transform: skewY(28deg);
}

.brand__wordmark {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.brand__wordmark strong {
	font-family: var(--font-display);
	font-size: 25px;
	font-weight: 700;
}

.brand__wordmark small {
	margin-top: 4px;
	font-size: 8px;
	font-weight: 700;
}

.primary-navigation {
	justify-self: center;
}

.primary-navigation .menu,
.primary-navigation ul {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
}

.primary-navigation li {
	position: relative;
}

.primary-navigation a {
	display: flex;
	min-height: 42px;
	align-items: center;
	padding: 8px 13px;
	color: var(--color-graphite);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	transition: color var(--transition), background-color var(--transition);
}

.primary-navigation .current-menu-item > a,
.primary-navigation .current-menu-ancestor > a {
	color: var(--color-cobalt);
}

@media (hover: hover) {
	.primary-navigation > .menu > li > a:hover,
	.primary-navigation > ul > li > a:hover {
		background: var(--color-white);
		color: var(--color-cobalt);
	}
}

.primary-navigation .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	display: grid;
	min-width: 220px;
	gap: 0;
	padding: 8px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	visibility: hidden;
	background: var(--color-white);
	box-shadow: var(--shadow-small);
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.primary-navigation .sub-menu a {
	width: 100%;
	min-height: 38px;
}

.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.menu-toggle {
	display: none;
}

.mobile-navigation {
	position: fixed;
	inset: 0;
	z-index: 200;
	visibility: hidden;
	opacity: 0;
	transition: opacity 240ms var(--ease-out), visibility 240ms var(--ease-out);
}

.mobile-navigation.is-open {
	visibility: visible;
	opacity: 1;
}

.mobile-navigation__scrim {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: rgb(17 23 22 / 72%);
	opacity: 0;
	transition: opacity 240ms var(--ease-out);
}

.mobile-navigation.is-open .mobile-navigation__scrim {
	opacity: 1;
}

.mobile-navigation__panel {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	width: min(420px, 90%);
	height: 100%;
	flex-direction: column;
	overflow-y: auto;
	padding: 24px;
	background: var(--color-graphite);
	color: var(--color-white);
	box-shadow: -16px 0 48px rgb(0 0 0 / 24%);
	transform: translateX(100%);
	transition: transform 280ms var(--ease-drawer);
}

.mobile-navigation.is-open .mobile-navigation__panel {
	transform: translateX(0);
}

.mobile-navigation__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 22px;
	border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.mobile-navigation__label {
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
}

.mobile-navigation nav {
	margin-block: 26px auto;
}

.mobile-menu,
.mobile-navigation nav .menu {
	display: grid;
	list-style: none;
}

.mobile-menu > li,
.mobile-navigation nav .menu > li {
	border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.mobile-menu a,
.mobile-navigation nav .menu a {
	display: flex;
	min-height: 56px;
	align-items: center;
	justify-content: space-between;
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 600;
	line-height: 1.1;
}

.mobile-menu .sub-menu,
.mobile-navigation nav .menu .sub-menu {
	padding: 0 0 14px 18px;
	list-style: none;
}

.mobile-menu .sub-menu a,
.mobile-navigation nav .menu .sub-menu a {
	min-height: 40px;
	color: var(--color-mist);
	font-family: var(--font-body);
	font-size: 14px;
}

.mobile-navigation .button {
	width: 100%;
	margin-top: 28px;
}

.mobile-navigation__contact {
	display: grid;
	gap: 3px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid rgb(255 255 255 / 20%);
}

.mobile-navigation__contact span {
	color: var(--color-mist);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.mobile-navigation__contact a {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 600;
}

/* Homepage hero */

.hero {
	position: relative;
	height: min(650px, calc(100svh - 220px));
	min-height: 520px;
	overflow: hidden;
	background: var(--color-graphite);
	color: var(--color-white);
}

.hero__slides,
.hero__slide {
	position: absolute;
	inset: 0;
}

.hero__slide {
	visibility: hidden;
	opacity: 0;
	transition: opacity 360ms var(--ease-out), visibility 360ms var(--ease-out);
}

.hero__slide.is-active {
	z-index: 1;
	visibility: visible;
	opacity: 1;
}

.hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	transition: transform 7000ms var(--ease-in-out);
}

.hero__slide.is-active .hero__image {
	transform: scale(1.08);
}

.hero__veil {
	position: absolute;
	inset: 0;
	background: rgb(9 15 14 / 64%);
}

.hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: center;
	padding-top: 20px;
	padding-bottom: 132px;
}

.hero__eyebrow {
	color: var(--color-white);
}

.hero h1,
.hero h2 {
	max-width: 890px;
	color: var(--color-white);
	font-size: 84px;
	text-shadow: 0 2px 20px rgb(0 0 0 / 22%);
}

.hero__copy {
	max-width: 610px;
	margin-top: 26px;
	color: rgb(255 255 255 / 88%);
	font-size: 18px;
	line-height: 1.55;
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-top: 34px;
}

.hero__controls {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 4;
	display: grid;
	height: 92px;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid rgb(255 255 255 / 28%);
}

.hero__tab {
	position: relative;
	display: grid;
	grid-template-columns: 32px 1fr;
	align-content: center;
	align-items: baseline;
	gap: 12px;
	padding: 16px 24px;
	border: 0;
	border-right: 1px solid rgb(255 255 255 / 28%);
	background: rgb(17 23 22 / 58%);
	color: rgb(255 255 255 / 68%);
	font-size: 11px;
	text-align: left;
	transition: background-color var(--transition), color var(--transition);
}

.hero__tab:last-child {
	border-right: 0;
}

.hero__tab::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 4px;
	background: var(--color-orange);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 240ms var(--ease-out);
}

.hero__tab strong {
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 600;
}

.hero__tab.is-active,
.hero__tab[aria-selected="true"] {
	background: rgb(17 23 22 / 84%);
	color: var(--color-white);
}

.hero__tab.is-active::after,
.hero__tab[aria-selected="true"]::after {
	transform: scaleX(1);
}

.metrics-band {
	background: var(--color-cobalt);
	color: var(--color-white);
}

.metrics-band__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.metrics-band__grid > div {
	display: grid;
	min-height: 118px;
	align-content: center;
	gap: 5px;
	padding: 18px 28px;
	border-right: 1px solid rgb(255 255 255 / 30%);
}

.metrics-band__grid > div:first-child {
	border-left: 1px solid rgb(255 255 255 / 30%);
}

.metrics-band strong {
	font-family: var(--font-display);
	font-size: 40px;
	font-weight: 600;
	line-height: 1;
}

.metrics-band span {
	font-size: 11px;
	font-weight: 600;
	line-height: 1.35;
	text-transform: uppercase;
}

/* Homepage content */

.section--intro {
	background: var(--color-paper);
}

.intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
	gap: 10%;
	align-items: start;
}

.intro-grid h2,
.section-heading h2,
.delivery-grid__heading h2 {
	max-width: 790px;
}

.intro-grid__copy {
	display: grid;
	gap: 22px;
	padding-top: 46px;
}

.intro-grid__copy > p:not(.lead) {
	color: var(--color-muted);
}

.process-map {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	margin-top: 88px;
	border-top: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
}

.process-map__track {
	position: absolute;
	top: 77px;
	right: 8%;
	left: 8%;
	height: 1px;
	background: var(--color-line);
}

.process-map__stage {
	position: relative;
	z-index: 1;
	display: grid;
	min-height: 224px;
	align-content: start;
	justify-items: start;
	padding: 22px 24px;
	border-right: 1px solid var(--color-line);
	background: var(--color-paper);
}

.process-map__stage:first-of-type {
	border-left: 1px solid var(--color-line);
}

.process-map__number {
	margin-bottom: 26px;
	color: var(--color-muted);
	font-family: var(--font-display);
	font-size: 13px;
}

.process-map__stage svg,
.process-map__stage i {
	width: 34px;
	height: 34px;
	margin-bottom: 24px;
	padding: 6px;
	border: 1px solid var(--color-graphite);
	border-radius: 2px;
	background: var(--color-paper);
	color: var(--color-cobalt);
	stroke-width: 1.7;
}

.process-map__stage strong {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.1;
}

.process-map__stage small {
	max-width: 160px;
	margin-top: 8px;
	color: var(--color-muted);
	font-size: 11px;
	line-height: 1.45;
}

.capability-section {
	padding-block: 0;
	background: var(--color-white);
}

.capability-grid {
	display: grid;
	width: 100%;
	max-width: none;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	margin: 0;
}

.capability-grid__media {
	position: relative;
	min-height: 650px;
	overflow: hidden;
}

.capability-grid__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.capability-grid__media figcaption {
	position: absolute;
	right: 24px;
	bottom: 24px;
	left: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 16px;
	border-radius: 3px;
	background: rgb(17 23 22 / 86%);
	color: var(--color-white);
	font-size: 11px;
	line-height: 1.4;
}

.capability-grid__media figcaption span {
	color: var(--color-orange);
	font-weight: 700;
	text-transform: uppercase;
}

.capability-grid__content {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
	padding: 78px max(32px, calc((100vw - var(--shell)) / 2));
	background: var(--color-white);
}

.capability-grid__content h2 {
	max-width: 620px;
}

.capability-list {
	display: grid;
	margin-top: 56px;
	border-top: 1px solid var(--color-line);
}

.capability-list a {
	display: grid;
	min-height: 84px;
	grid-template-columns: 36px minmax(150px, 1fr) minmax(150px, 0.8fr) 22px;
	align-items: center;
	gap: 14px;
	border-bottom: 1px solid var(--color-line);
	transition: color var(--transition), background-color var(--transition), transform var(--transition);
}

.capability-list span {
	color: var(--color-muted);
	font-family: var(--font-display);
	font-size: 13px;
}

.capability-list strong {
	font-family: var(--font-display);
	font-size: 23px;
	font-weight: 600;
	line-height: 1.1;
}

.capability-list small {
	color: var(--color-muted);
	font-size: 11px;
	line-height: 1.4;
}

.capability-list svg,
.capability-list i {
	width: 20px;
	height: 20px;
}

@media (hover: hover) {
	.capability-list a:hover {
		background: var(--color-paper);
		color: var(--color-cobalt);
		transform: translateX(6px);
	}
}

.equipment-section {
	background: var(--color-paper);
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 48px;
	margin-bottom: 48px;
}

.equipment-filters {
	display: flex;
	align-items: center;
	gap: 8px;
	overflow-x: auto;
	margin-bottom: 28px;
	padding-bottom: 5px;
	scrollbar-width: thin;
}

.filter-button {
	min-height: 40px;
	flex: 0 0 auto;
	padding: 9px 15px;
	border: 1px solid var(--color-line);
	border-radius: 3px;
	background: transparent;
	color: var(--color-graphite);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}

.filter-button.is-active,
.filter-button[aria-pressed="true"] {
	border-color: var(--color-graphite);
	background: var(--color-graphite);
	color: var(--color-white);
}

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

.product-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-white);
	transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.product-card__media {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-bottom: 1px solid var(--color-line);
	background: var(--color-mist);
}

.product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
}

.product-card__model {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 5px 8px;
	border-radius: 2px;
	background: var(--color-cobalt);
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}

.product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.product-card__category {
	margin-bottom: 13px;
	color: var(--color-cobalt);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
}

.product-card h2,
.product-card h3 {
	font-size: 29px;
	line-height: 1.05;
}

.product-card h2 a,
.product-card h3 a {
	transition: color var(--transition);
}

.product-card__body > p:not(.product-card__category) {
	margin-top: 15px;
	color: var(--color-muted);
	font-size: 13px;
	line-height: 1.55;
}

.product-card__specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 22px;
	border-top: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
}

.product-card__specs > div {
	display: grid;
	min-width: 0;
	gap: 3px;
	padding: 12px 10px 12px 0;
}

.product-card__specs > div + div {
	padding-left: 12px;
	border-left: 1px solid var(--color-line);
}

.product-card__specs dt {
	color: var(--color-muted);
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
}

.product-card__specs dd {
	overflow-wrap: anywhere;
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
}

.product-card__actions,
.product-card__body > .text-link {
	margin-top: auto;
	padding-top: 22px;
}

.product-card__actions {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 16px;
}

@media (hover: hover) {
	.product-card:hover {
		border-color: var(--color-graphite);
		box-shadow: var(--shadow-small);
		transform: translateY(-4px);
	}

	.product-card:hover .product-card__media img {
		transform: scale(1.045);
	}

	.product-card h2 a:hover,
	.product-card h3 a:hover {
		color: var(--color-cobalt);
	}
}

.product-grid__empty {
	margin-top: 28px;
	padding: 22px;
	border: 1px solid var(--color-line);
	background: var(--color-white);
	text-align: center;
}

.industry-section {
	background: var(--color-graphite);
	color: var(--color-white);
}

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

.section-heading--light > p {
	max-width: 410px;
	color: rgb(255 255 255 / 68%);
	font-size: 14px;
}

.industry-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2px;
	background: rgb(255 255 255 / 20%);
}

.industry-card {
	position: relative;
	display: block;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: var(--color-graphite-soft);
}

.industry-card > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease, opacity 300ms ease;
}

.industry-card__veil {
	position: absolute;
	inset: 0;
	background: rgb(17 23 22 / 56%);
	transition: background-color 300ms ease;
}

.industry-card__content {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: grid;
	min-height: 178px;
	grid-template-columns: 1fr auto;
	align-content: end;
	gap: 10px 18px;
	padding: 24px;
	color: var(--color-white);
}

.industry-card__content strong {
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 600;
	line-height: 1.05;
}

.industry-card__content small {
	max-width: 250px;
	color: rgb(255 255 255 / 74%);
	font-size: 11px;
	line-height: 1.5;
}

.industry-card__content svg,
.industry-card__content i {
	grid-row: 1 / span 2;
	grid-column: 2;
	width: 22px;
	height: 22px;
	color: var(--color-orange);
}

@media (hover: hover) {
	.industry-card:hover > img {
		transform: scale(1.06);
	}

	.industry-card:hover .industry-card__veil {
		background: rgb(17 23 22 / 38%);
	}
}

.case-study {
	background: var(--color-white);
}

.case-study__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	align-items: stretch;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	overflow: hidden;
}

.case-study__content {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 64px;
	border-left: 6px solid var(--color-orange);
}

.case-study__kicker {
	margin-bottom: 18px;
	color: var(--color-cobalt);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.case-study__content h2 {
	font-size: 52px;
}

.case-study__content > p:not(.eyebrow, .case-study__kicker) {
	margin-top: 22px;
	color: var(--color-muted);
}

.case-study__metrics {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-block: 34px;
	border-top: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
}

.case-study__metrics > div {
	display: grid;
	gap: 5px;
	padding: 18px 10px 18px 0;
}

.case-study__metrics > div + div {
	padding-left: 14px;
	border-left: 1px solid var(--color-line);
}

.case-study__metrics strong {
	font-family: var(--font-display);
	font-size: 30px;
	font-weight: 600;
	line-height: 1;
}

.case-study__metrics span {
	color: var(--color-muted);
	font-size: 9px;
	font-weight: 700;
	line-height: 1.35;
	text-transform: uppercase;
}

.case-study__media {
	position: relative;
	min-height: 590px;
	background: var(--color-mist);
}

.case-study__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.case-study__media figcaption {
	position: absolute;
	right: 18px;
	bottom: 18px;
	padding: 8px 11px;
	border-radius: 2px;
	background: rgb(17 23 22 / 84%);
	color: var(--color-white);
	font-size: 9px;
	font-weight: 600;
	text-transform: uppercase;
}

.delivery-section {
	border-top: 1px solid var(--color-line);
	background: var(--color-paper);
}

.delivery-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
	gap: 10%;
}

.delivery-grid__heading {
	position: sticky;
	top: 132px;
	height: fit-content;
}

.delivery-steps {
	list-style: none;
	counter-reset: none;
}

.delivery-steps li {
	display: grid;
	min-height: 138px;
	grid-template-columns: 66px 1fr;
	align-items: start;
	gap: 26px;
	padding: 28px 0;
	border-top: 1px solid var(--color-line);
}

.delivery-steps li:last-child {
	border-bottom: 1px solid var(--color-line);
}

.delivery-steps li > span {
	display: inline-flex;
	width: 54px;
	height: 54px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-graphite);
	border-radius: 2px;
	background: var(--color-graphite);
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 17px;
}

.delivery-steps strong {
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 600;
	line-height: 1;
}

.delivery-steps p {
	margin-top: 10px;
	color: var(--color-muted);
	font-size: 14px;
}

.insight-section {
	background: var(--color-white);
}

.insight-list {
	border-top: 1px solid var(--color-graphite);
}

.insight-row {
	display: grid;
	min-height: 142px;
	grid-template-columns: 150px minmax(250px, 1.1fr) minmax(260px, 0.8fr) 44px;
	align-items: center;
	gap: 32px;
	padding-block: 24px;
	border-bottom: 1px solid var(--color-line);
}

.insight-row > div {
	display: grid;
	gap: 6px;
	color: var(--color-muted);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.insight-row h3 {
	font-size: 29px;
}

.insight-row h3 a {
	transition: color var(--transition);
}

.insight-row > p {
	color: var(--color-muted);
	font-size: 13px;
	line-height: 1.55;
}

@media (hover: hover) {
	.insight-row:hover h3 a {
		color: var(--color-cobalt);
	}
}

.contact-section {
	padding-block: 112px;
	background: var(--color-cobalt);
	color: var(--color-white);
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.84fr) minmax(500px, 1fr);
	gap: 9%;
	align-items: start;
}

.contact-grid__content {
	padding-top: 24px;
}

.contact-grid__content .eyebrow,
.contact-grid__content h2 {
	color: var(--color-white);
}

.contact-grid__content > p:not(.eyebrow) {
	max-width: 570px;
	margin-top: 26px;
	color: rgb(255 255 255 / 78%);
}

.contact-grid__direct {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 46px;
	border-top: 1px solid rgb(255 255 255 / 36%);
	border-bottom: 1px solid rgb(255 255 255 / 36%);
}

.contact-grid__direct > div {
	display: grid;
	min-width: 0;
	gap: 6px;
	padding: 18px 16px 18px 0;
}

.contact-grid__direct > div + div {
	padding-left: 18px;
	border-left: 1px solid rgb(255 255 255 / 36%);
}

.contact-grid__direct span {
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
}

.contact-grid__direct a {
	overflow-wrap: anywhere;
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
}

.contact-grid__form {
	padding: 36px;
	border-radius: var(--radius);
	background: var(--color-paper);
	color: var(--color-graphite);
	box-shadow: 0 20px 52px rgb(17 23 22 / 20%);
}

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

.form-field {
	display: grid;
	min-width: 0;
	gap: 7px;
}

.form-field--full,
.inquiry-form__footer,
.form-notice {
	grid-column: 1 / -1;
}

.form-field label {
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
}

.form-field label span {
	color: var(--color-error);
}

.form-field input,
.form-field textarea {
	width: 100%;
	min-height: 50px;
	padding: 12px 14px;
	border: 1px solid var(--color-line);
	border-radius: 3px;
	background: var(--color-white);
	color: var(--color-graphite);
	font-size: 15px;
	line-height: 1.45;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field textarea {
	min-height: 138px;
	resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
	border-color: var(--color-cobalt);
	box-shadow: 0 0 0 3px rgb(47 97 255 / 14%);
	outline: 0;
}

.form-field input:user-invalid,
.form-field textarea:user-invalid {
	border-color: var(--color-error);
}

.inquiry-form button:disabled {
	cursor: wait;
	opacity: 0.62;
	transform: none;
}

.inquiry-form__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 3px;
}

.inquiry-form__footer p {
	max-width: 260px;
	color: var(--color-muted);
	font-size: 10px;
	line-height: 1.45;
}

.inquiry-form__footer .button--light {
	border-color: var(--color-graphite);
	background: var(--color-graphite);
	color: var(--color-white);
}

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

.form-notice {
	margin-bottom: 22px;
	padding: 13px 15px;
	border: 1px solid currentColor;
	border-left-width: 4px;
	border-radius: 3px;
	font-size: 13px;
	line-height: 1.5;
}

.form-notice--success {
	background: rgb(30 125 85 / 9%);
	color: var(--color-success);
}

.form-notice--error {
	background: rgb(184 46 38 / 8%);
	color: var(--color-error);
}

/* Page heroes and archive layouts */

.page-hero {
	position: relative;
	display: flex;
	min-height: 500px;
	align-items: center;
	overflow: hidden;
	background: var(--color-graphite);
	color: var(--color-white);
}

.page-hero > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-hero__veil {
	position: absolute;
	inset: 0;
	background: rgb(8 14 13 / 66%);
}

.page-hero__content {
	position: relative;
	z-index: 1;
	padding-block: 80px;
}

.page-hero__content .eyebrow,
.page-hero__content h1 {
	color: var(--color-white);
}

.page-hero__content h1 {
	max-width: 900px;
}

.page-hero__content > p:last-child:not(.eyebrow) {
	max-width: 620px;
	margin-top: 26px;
	color: rgb(255 255 255 / 80%);
	font-size: 18px;
}

.simple-page-header {
	padding-block: 96px;
	border-bottom: 1px solid var(--color-line);
	background: var(--color-white);
}

.archive-equipment,
.archive-insights {
	background: var(--color-paper);
}

.archive-insights .insight-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.insight-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-white);
	transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.insight-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-bottom: 1px solid var(--color-line);
	background: var(--color-mist);
}

.insight-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
}

.insight-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 26px;
}

.insight-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 18px;
	color: var(--color-muted);
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
}

.insight-card__meta span {
	color: var(--color-cobalt);
}

.insight-card h2 {
	font-size: 30px;
}

.insight-card__body > p {
	margin-top: 16px;
	color: var(--color-muted);
	font-size: 13px;
}

.insight-card__body .text-link {
	margin-top: auto;
	padding-top: 24px;
}

@media (hover: hover) {
	.insight-card:hover {
		border-color: var(--color-graphite);
		box-shadow: var(--shadow-small);
		transform: translateY(-4px);
	}

	.insight-card:hover .insight-card__media img {
		transform: scale(1.045);
	}

	.insight-card h2 a:hover {
		color: var(--color-cobalt);
	}
}

.pagination {
	margin-top: 52px;
}

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 7px;
}

.pagination .page-numbers {
	display: inline-flex;
	min-width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	padding-inline: 12px;
	border: 1px solid var(--color-line);
	border-radius: 3px;
	background: var(--color-white);
	font-size: 12px;
	font-weight: 700;
}

.pagination .page-numbers.current {
	border-color: var(--color-graphite);
	background: var(--color-graphite);
	color: var(--color-white);
}

.compact-cta {
	background: var(--color-orange);
	color: var(--color-graphite);
}

.compact-cta__inner {
	display: flex;
	min-height: 230px;
	align-items: center;
	justify-content: space-between;
	gap: 54px;
	padding-block: 44px;
}

.compact-cta__inner > div {
	max-width: 830px;
}

.compact-cta__inner span {
	display: block;
	margin-bottom: 12px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.compact-cta__inner h2 {
	font-size: 47px;
}

.compact-cta .button--light {
	flex: 0 0 auto;
	border-color: var(--color-graphite);
	background: var(--color-graphite);
	color: var(--color-white);
}

/* Product detail */

.product-detail__hero {
	padding-block: 78px;
	background: var(--color-white);
}

.product-detail__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
	align-items: center;
	gap: 7%;
}

.product-detail__content h1 {
	max-width: 650px;
}

.product-detail__content .lead {
	max-width: 600px;
	margin-top: 28px;
	color: var(--color-muted);
}

.product-detail__actions {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-top: 36px;
}

.product-detail__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-mist);
}

.product-detail__media::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 60px;
	height: 6px;
	background: var(--color-orange);
	content: "";
}

.product-detail__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-detail__overview {
	border-top: 1px solid var(--color-line);
	background: var(--color-paper);
}

.product-detail__overview-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.72fr);
	gap: 11%;
}

.product-spec-band {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 76px;
	border: 1px solid var(--color-graphite);
	background: var(--color-white);
}

.product-spec-band > div {
	display: grid;
	min-width: 0;
	align-content: center;
	gap: 8px;
	min-height: 132px;
	padding: 22px;
	border-right: 1px solid var(--color-line);
}

.product-spec-band > div:last-child {
	border-right: 0;
}

.product-spec-band span {
	color: var(--color-muted);
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
}

.product-spec-band strong {
	overflow-wrap: anywhere;
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
}

.product-detail__engineering {
	background: var(--color-graphite);
	color: var(--color-white);
}

.product-detail__engineering-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.75fr);
	align-items: center;
	gap: 9%;
}

.product-detail__engineering-grid figure {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: var(--radius);
}

.product-detail__engineering-grid figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-detail__engineering-grid .eyebrow,
.product-detail__engineering-grid h2 {
	color: var(--color-white);
}

.check-list {
	display: grid;
	margin-top: 40px;
	list-style: none;
}

.check-list li {
	display: grid;
	grid-template-columns: 28px 1fr;
	align-items: start;
	gap: 14px;
	padding-block: 17px;
	border-top: 1px solid rgb(255 255 255 / 22%);
	color: rgb(255 255 255 / 82%);
	font-size: 13px;
}

.check-list li:last-child {
	border-bottom: 1px solid rgb(255 255 255 / 22%);
}

.check-list svg,
.check-list i {
	width: 22px;
	height: 22px;
	padding: 4px;
	border-radius: 2px;
	background: var(--color-orange);
	color: var(--color-graphite);
	stroke-width: 2.2;
}

/* Standard and editorial content */

.standard-page__body {
	max-width: 900px;
	padding-block: 100px;
}

.entry-content {
	color: var(--color-ink);
}

.entry-content > * + * {
	margin-top: 22px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 48px;
}

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

.entry-content h3 {
	font-size: 31px;
}

.entry-content h4 {
	font-size: 24px;
}

.entry-content p,
.entry-content li {
	font-size: 16px;
	line-height: 1.75;
}

.entry-content ul,
.entry-content ol {
	display: grid;
	gap: 10px;
	padding-left: 24px;
}

.entry-content a:not(.button) {
	color: var(--color-cobalt);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.entry-content blockquote {
	padding: 24px 28px;
	border-left: 5px solid var(--color-orange);
	background: var(--color-white);
	font-size: 20px;
}

.entry-content img {
	border-radius: var(--radius);
}

.entry-content figure,
.entry-content .wp-block-image {
	max-width: 100%;
}

.entry-content figcaption {
	margin-top: 8px;
	color: var(--color-muted);
	font-size: 11px;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	background: var(--color-white);
	font-size: 13px;
}

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

.entry-content th {
	background: var(--color-graphite);
	color: var(--color-white);
	font-size: 11px;
	text-transform: uppercase;
}

.article-detail__header {
	padding-block: 112px 96px;
	border-bottom: 1px solid var(--color-line);
	background: var(--color-white);
}

.article-detail__header-inner {
	max-width: 980px;
}

.article-detail__header h1 {
	font-size: 78px;
}

.article-detail__header .lead {
	max-width: 760px;
	margin-top: 28px;
	color: var(--color-muted);
}

.article-detail__media {
	margin-top: 64px;
	aspect-ratio: 16 / 7;
	overflow: hidden;
	border-radius: var(--radius);
}

.article-detail__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-detail__body {
	display: grid;
	max-width: 1120px;
	grid-template-columns: 180px minmax(0, 760px);
	justify-content: space-between;
	gap: 80px;
	padding-block: 88px 120px;
}

.article-detail__body aside {
	position: sticky;
	top: 130px;
	display: grid;
	height: fit-content;
	gap: 4px;
	padding-top: 14px;
	border-top: 2px solid var(--color-graphite);
}

.article-detail__body aside span {
	color: var(--color-muted);
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
}

.article-detail__body aside strong {
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: 600;
}

.article-detail__body aside a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: 20px;
	padding-top: 12px;
	border-top: 1px solid var(--color-line);
	font-size: 11px;
	font-weight: 700;
}

.article-detail__body aside svg,
.article-detail__body aside i {
	width: 17px;
	height: 17px;
}

.not-found {
	display: flex;
	min-height: 68vh;
	align-items: center;
	background: var(--color-white);
}

.not-found__inner {
	padding-block: 90px;
}

.not-found__inner h1 {
	max-width: 850px;
}

.not-found__inner > p:not(.eyebrow) {
	margin-top: 24px;
	color: var(--color-muted);
	font-size: 18px;
}

.not-found__inner > div {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-top: 34px;
}

/* Quick view dialog */

.product-dialog {
	position: fixed;
	inset: 50% auto auto 50%;
	width: min(560px, calc(100% - 40px));
	max-height: calc(100dvh - 40px);
	overflow-y: auto;
	margin: 0;
	padding: 42px;
	border: 1px solid var(--color-graphite);
	border-radius: var(--radius);
	background: var(--color-paper);
	color: var(--color-graphite);
	box-shadow: var(--shadow-dialog);
	transform: translate(-50%, -50%);
	transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out), display 220ms allow-discrete, overlay 220ms allow-discrete;
}

.product-dialog[open] {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

@starting-style {
	.product-dialog[open] {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.97);
	}
}

.product-dialog:not([open]) {
	display: none;
}

.product-dialog::backdrop {
	background: rgb(17 23 22 / 78%);
	backdrop-filter: blur(3px);
}

.product-dialog__close {
	position: absolute;
	top: 14px;
	right: 14px;
	border: 1px solid var(--color-line);
}

.product-dialog .eyebrow {
	max-width: calc(100% - 54px);
	color: var(--color-cobalt);
}

.product-dialog h2 {
	padding-right: 24px;
	font-size: 46px;
}

.product-dialog > p:not(.eyebrow) {
	margin-top: 18px;
	color: var(--color-muted);
}

.product-dialog__specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-block: 28px;
	border-top: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
}

.product-dialog__specs > div {
	display: grid;
	min-width: 0;
	gap: 5px;
	padding: 15px 12px 15px 0;
}

.product-dialog__specs > div + div {
	padding-left: 16px;
	border-left: 1px solid var(--color-line);
}

.product-dialog__specs span {
	color: var(--color-muted);
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
}

.product-dialog__specs strong {
	overflow-wrap: anywhere;
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 600;
}

/* Footer */

.site-footer {
	padding-top: 78px;
	background: var(--color-graphite);
	color: var(--color-white);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(150px, 0.65fr));
	gap: 6%;
	padding-bottom: 68px;
}

.brand--footer {
	color: var(--color-white);
}

.brand--footer .brand__mark {
	color: var(--color-white);
}

.site-footer__brand > p {
	max-width: 390px;
	margin-block: 24px 20px;
	color: rgb(255 255 255 / 64%);
	font-size: 13px;
}

.site-footer__column h2 {
	margin-bottom: 20px;
	color: var(--color-white);
	font-size: 18px;
	text-transform: uppercase;
}

.site-footer__column ul,
.footer-menu {
	display: grid;
	gap: 9px;
	list-style: none;
}

.site-footer__column li,
.site-footer__column a,
.site-footer__column address {
	color: rgb(255 255 255 / 66%);
	font-size: 12px;
	font-style: normal;
	line-height: 1.65;
	transition: color var(--transition);
}

.site-footer__column a:hover {
	color: var(--color-orange);
}

.site-footer__locations {
	display: block;
}

.site-footer__locations address + address {
	margin-top: 20px;
}

.site-footer__locations strong {
	color: var(--color-white);
}

.site-footer__bottom {
	display: flex;
	min-height: 68px;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	border-top: 1px solid rgb(255 255 255 / 18%);
	color: rgb(255 255 255 / 45%);
	font-size: 9px;
}

.site-footer__bottom > div {
	display: flex;
	gap: 20px;
}

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

/* Motion */

.reveal {
	opacity: 1;
	transform: none;
}

.js:not(.reveal-fallback) .reveal:not(.is-visible) {
	opacity: 0;
	transform: translateY(14px);
}

.js .reveal {
	transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out);
}

.reveal.is-visible,
.reveal-fallback .reveal {
	opacity: 1;
	transform: translateY(0);
}

.admin-bar .site-header {
	top: 32px;
}

/* Large tablet */

@media (max-width: 1180px) {
	:root {
		--gutter: 26px;
		--section-space: 94px;
	}

	h1 {
		font-size: 66px;
	}

	h2 {
		font-size: 50px;
	}

	.site-header__inner {
		gap: 22px;
	}

	.language-switcher {
		justify-self: end;
	}

	.primary-navigation a {
		padding-inline: 9px;
	}

	.site-header__cta {
		display: none;
	}

	.hero h1,
	.hero h2 {
		font-size: 72px;
	}

	.capability-grid__content {
		padding-inline: 42px;
	}

	.product-grid {
		gap: 18px;
	}

	.product-card__body {
		padding: 20px;
	}

	.industry-card__content {
		padding: 20px;
	}

	.case-study__content {
		padding: 46px;
	}

	.case-study__content h2 {
		font-size: 46px;
	}

	.contact-grid {
		gap: 5%;
	}

	.site-footer__grid {
		gap: 4%;
	}
}

/* Tablet */

@media (max-width: 960px) {
	:root {
		--section-space: 82px;
	}

	h1 {
		font-size: 58px;
	}

	h2 {
		font-size: 46px;
	}

	.lead {
		font-size: 19px;
	}

	.primary-navigation,
	.site-header__cta {
		display: none;
	}

	.site-header__inner {
		grid-template-columns: 1fr auto auto;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.hero h1,
	.hero h2 {
		font-size: 64px;
	}

	.metrics-band__grid > div {
		padding-inline: 20px;
	}

	.intro-grid {
		grid-template-columns: 1fr 0.8fr;
		gap: 6%;
	}

	.process-map {
		grid-template-columns: repeat(5, minmax(148px, 1fr));
		overflow-x: auto;
		overscroll-behavior-inline: contain;
		scroll-snap-type: inline proximity;
	}

	.process-map__stage {
		scroll-snap-align: start;
	}

	.capability-grid__media {
		min-height: 600px;
	}

	.capability-grid__content {
		padding: 62px 32px;
	}

	.capability-list a {
		grid-template-columns: 30px 1fr 22px;
	}

	.capability-list small {
		display: none;
	}

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

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

	.industry-card {
		aspect-ratio: 4 / 3;
	}

	.case-study__grid {
		grid-template-columns: 1fr;
	}

	.case-study__media {
		min-height: 440px;
		order: -1;
	}

	.delivery-grid {
		grid-template-columns: 1fr 1fr;
		gap: 6%;
	}

	.insight-row {
		grid-template-columns: 110px minmax(230px, 1fr) 44px;
		gap: 24px;
	}

	.insight-row > p {
		display: none;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 58px;
	}

	.contact-grid__content {
		max-width: 720px;
		padding-top: 0;
	}

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

	.product-detail__grid {
		grid-template-columns: 1fr 1fr;
		gap: 5%;
	}

	.product-detail__overview-grid {
		grid-template-columns: 1fr 0.8fr;
		gap: 7%;
	}

	.product-detail__engineering-grid {
		grid-template-columns: 1fr 0.9fr;
		gap: 6%;
	}

	.site-footer__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 48px 36px;
	}

	.site-footer__brand {
		grid-column: 1 / -1;
	}
}

/* Mobile landscape and large phones */

@media (max-width: 760px) {
	:root {
		--gutter: 20px;
		--section-space: 68px;
	}

	h1 {
		font-size: 49px;
	}

	h2 {
		font-size: 40px;
	}

	h3 {
		font-size: 28px;
	}

	.utility-bar {
		display: none;
	}

	.site-header__inner {
		min-height: 68px;
	}

	.site-header > .site-shell .language-switcher {
		display: none;
	}

	.site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.language-switcher--mobile {
		display: inline-flex;
		width: 100%;
		margin-top: 20px;
		border-color: rgb(255 255 255 / 24%);
		background: rgb(255 255 255 / 6%);
	}

	.language-switcher--mobile a {
		min-height: 38px;
		flex: 1;
		color: var(--color-white);
	}

	.language-switcher--mobile a[aria-current="page"] {
		background: var(--color-white);
		color: var(--color-graphite);
	}

	.brand__mark {
		width: 34px;
		height: 34px;
	}

	.brand__wordmark strong {
		font-size: 22px;
	}

	.hero {
		height: min(620px, calc(100svh - 160px));
		min-height: 500px;
	}

	.hero__content {
		justify-content: end;
		padding-top: 70px;
		padding-bottom: 122px;
	}

	.hero h1,
	.hero h2 {
		max-width: 610px;
		font-size: 54px;
	}

	.hero__copy {
		max-width: 520px;
		margin-top: 20px;
		font-size: 15px;
	}

	.hero__actions {
		margin-top: 25px;
	}

	.hero__controls {
		height: 82px;
		width: 100%;
		overflow-x: auto;
	}

	.hero__tab {
		min-width: 180px;
		padding-inline: 16px;
	}

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

	.metrics-band__grid > div,
	.metrics-band__grid > div:first-child {
		min-height: 92px;
		padding: 14px 18px;
		border: 0;
		border-right: 1px solid rgb(255 255 255 / 30%);
		border-bottom: 1px solid rgb(255 255 255 / 30%);
	}

	.metrics-band__grid > div:nth-child(even) {
		border-right: 0;
	}

	.metrics-band__grid > div:nth-child(n + 3) {
		border-bottom: 0;
	}

	.metrics-band strong {
		font-size: 34px;
	}

	.intro-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.intro-grid__copy {
		padding-top: 0;
	}

	.process-map {
		margin-top: 56px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		overflow: visible;
		scroll-snap-type: none;
	}

	.process-map__track {
		display: none;
	}

	.process-map__stage {
		min-height: 194px;
		padding: 18px;
	}

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

	.capability-grid__media {
		min-height: 0;
		aspect-ratio: 4 / 3;
	}

	.capability-grid__content {
		padding: 64px var(--gutter);
	}

	.capability-list {
		margin-top: 40px;
	}

	.section-heading {
		align-items: start;
		flex-direction: column;
		gap: 26px;
		margin-bottom: 38px;
	}

	.section-heading--light > p {
		max-width: 560px;
	}

	.industry-grid {
		grid-template-columns: 1fr;
	}

	.industry-card {
		aspect-ratio: 16 / 10;
	}

	.case-study__content {
		padding: 38px 30px;
		border-left-width: 4px;
	}

	.case-study__content h2 {
		font-size: 40px;
	}

	.case-study__media {
		min-height: 0;
		aspect-ratio: 4 / 3;
	}

	.delivery-grid {
		grid-template-columns: 1fr;
		gap: 46px;
	}

	.delivery-grid__heading {
		position: static;
	}

	.insight-row {
		grid-template-columns: 1fr 44px;
		gap: 20px;
		padding-block: 26px;
	}

	.insight-row > div {
		grid-column: 1;
		grid-row: 1;
		grid-template-columns: auto auto;
		justify-content: start;
		gap: 12px;
	}

	.insight-row h3 {
		grid-column: 1;
		grid-row: 2;
	}

	.insight-row > .icon-button {
		grid-column: 2;
		grid-row: 1 / span 2;
	}

	.contact-section {
		padding-block: 72px;
	}

	.contact-grid__form {
		padding: 28px;
	}

	.page-hero {
		min-height: 410px;
	}

	.page-hero__content {
		padding-block: 64px;
	}

	.simple-page-header {
		padding-block: 72px;
	}

	.archive-insights .insight-archive-grid {
		grid-template-columns: 1fr;
	}

	.compact-cta__inner {
		min-height: 0;
		align-items: flex-start;
		flex-direction: column;
		gap: 30px;
		padding-block: 54px;
	}

	.compact-cta__inner h2 {
		font-size: 40px;
	}

	.product-detail__hero {
		padding-block: 64px;
	}

	.product-detail__grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.product-detail__media {
		order: -1;
	}

	.product-detail__overview-grid,
	.product-detail__engineering-grid {
		grid-template-columns: 1fr;
		gap: 46px;
	}

	.product-spec-band {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 56px;
	}

	.product-spec-band > div:nth-child(2) {
		border-right: 0;
	}

	.product-spec-band > div:nth-child(-n + 2) {
		border-bottom: 1px solid var(--color-line);
	}

	.article-detail__header {
		padding-block: 76px 68px;
	}

	.article-detail__header h1 {
		font-size: 54px;
	}

	.article-detail__media {
		margin-top: 36px;
		aspect-ratio: 16 / 10;
	}

	.article-detail__body {
		grid-template-columns: 1fr;
		gap: 48px;
		padding-block: 56px 84px;
	}

	.article-detail__body aside {
		position: static;
	}

	.standard-page__body {
		padding-block: 72px;
	}

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

	.site-footer__brand {
		grid-column: 1 / -1;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		gap: 8px;
		padding-block: 18px;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

/* Small phones */

@media (max-width: 520px) {
	:root {
		--gutter: 16px;
	}

	h1 {
		font-size: 43px;
	}

	h2 {
		font-size: 37px;
	}

	.lead {
		font-size: 18px;
	}

	.eyebrow,
	.hero__eyebrow {
		margin-bottom: 18px;
	}

	.brand__wordmark small {
		display: none;
	}

	.hero {
		height: min(620px, calc(100svh - 148px));
		min-height: 510px;
	}

	.hero h1,
	.hero h2 {
		font-size: 47px;
	}

	.hero__content {
		padding-bottom: 104px;
	}

	.hero__copy {
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.hero__actions {
		gap: 18px;
	}

	.hero__actions .button {
		min-height: 46px;
		padding-inline: 15px;
	}

	.hero__controls {
		height: 72px;
	}

	.hero__tab {
		min-width: 0;
		grid-template-columns: 24px 1fr;
		gap: 7px;
		padding: 12px;
	}

	.hero__tab strong {
		font-size: 16px;
	}

	.metrics-band span {
		font-size: 9px;
	}

	.capability-grid__media figcaption {
		right: 12px;
		bottom: 12px;
		left: 12px;
		align-items: flex-start;
		flex-direction: column;
		gap: 3px;
	}

	.capability-list a {
		min-height: 72px;
	}

	.capability-list strong {
		font-size: 21px;
	}

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

	.product-card__body {
		padding: 22px;
	}

	.industry-card {
		aspect-ratio: 4 / 3;
	}

	.industry-card__content {
		min-height: 150px;
		padding: 18px;
	}

	.case-study__metrics {
		grid-template-columns: 1fr;
	}

	.case-study__metrics > div,
	.case-study__metrics > div + div {
		grid-template-columns: 95px 1fr;
		align-items: baseline;
		padding: 13px 0;
		border: 0;
		border-bottom: 1px solid var(--color-line);
	}

	.case-study__metrics > div:last-child {
		border-bottom: 0;
	}

	.delivery-steps li {
		grid-template-columns: 48px 1fr;
		gap: 17px;
	}

	.delivery-steps li > span {
		width: 44px;
		height: 44px;
	}

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

	.contact-grid__direct > div,
	.contact-grid__direct > div + div {
		padding: 15px 0;
		border: 0;
		border-bottom: 1px solid rgb(255 255 255 / 36%);
	}

	.contact-grid__direct > div:last-child {
		border-bottom: 0;
	}

	.contact-grid__form {
		padding: 22px 18px;
	}

	.inquiry-form {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.form-field,
	.form-field--full,
	.inquiry-form__footer {
		grid-column: 1;
	}

	.inquiry-form__footer {
		align-items: stretch;
		flex-direction: column;
	}

	.inquiry-form__footer .button {
		width: 100%;
	}

	.page-hero {
		min-height: 390px;
	}

	.page-hero__content > p:last-child:not(.eyebrow) {
		font-size: 15px;
	}

	.product-detail__actions,
	.not-found__inner > div {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
	}

	.product-spec-band {
		grid-template-columns: 1fr;
	}

	.product-spec-band > div,
	.product-spec-band > div:nth-child(2),
	.product-spec-band > div:nth-child(-n + 2) {
		min-height: 96px;
		border-right: 0;
		border-bottom: 1px solid var(--color-line);
	}

	.product-spec-band > div:last-child {
		border-bottom: 0;
	}

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

	.entry-content h3 {
		font-size: 28px;
	}

	.entry-content table {
		display: block;
		overflow-x: auto;
	}

	.article-detail__header h1 {
		font-size: 46px;
	}

	.product-dialog {
		width: calc(100% - 24px);
		max-height: calc(100dvh - 24px);
		padding: 36px 22px 24px;
	}

	.product-dialog h2 {
		font-size: 38px;
	}

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

	.product-dialog__specs > div,
	.product-dialog__specs > div + div {
		padding: 12px 0;
		border: 0;
		border-bottom: 1px solid var(--color-line);
	}

	.product-dialog__specs > div:last-child {
		border-bottom: 0;
	}

	.site-footer {
		padding-top: 62px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.site-footer__brand {
		grid-column: 1;
	}
}

@media (max-width: 390px) {
	.hero h1,
	.hero h2 {
		font-size: 43px;
	}

	.hero__eyebrow {
		font-size: 10px;
	}

	.hero__actions .text-link {
		font-size: 11px;
	}

	.metrics-band__grid > div {
		padding-inline: 14px;
	}

	.metrics-band strong {
		font-size: 31px;
	}

	.case-study__content {
		padding-inline: 22px;
	}

	.mobile-navigation__panel {
		width: 94%;
		padding: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
	}

	.hero__image,
	.hero__slide.is-active .hero__image,
	.js .reveal,
	.button:active,
	.icon-button:active,
	.filter-button:active,
	.hero__tab:active {
		transform: none;
	}

	.js:not(.reveal-fallback) .reveal:not(.is-visible) {
		opacity: 1;
		transform: none;
	}

	.hero__slide,
	.mobile-navigation,
	.mobile-navigation__scrim,
	.mobile-navigation__panel,
	.product-dialog,
	.button,
	.icon-button,
	.filter-button {
		transition-duration: 200ms;
	}
}

@media print {
	.utility-bar,
	.site-header,
	.mobile-navigation,
	.site-footer,
	.compact-cta,
	.contact-section,
	.product-dialog,
	.button,
	.icon-button {
		display: none !important;
	}

	body,
	.section,
	.article-detail__header,
	.product-detail__hero,
	.product-detail__overview,
	.product-detail__engineering {
		background: #ffffff !important;
		color: #000000 !important;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	p,
	a,
	span,
	strong {
		color: #000000 !important;
	}

	.site-shell {
		width: 100%;
	}
}
