:root {
	--msp-black: #080908;
	--msp-charcoal: #12110f;
	--msp-ink: #171714;
	--msp-muted: #6b675f;
	--msp-paper: #f3f1ec;
	--msp-white: #fff;
	--msp-gold: #c7a75e;
	--msp-gold-dark: #8e6d29;
	--msp-line: rgba(45, 39, 27, 0.15);
	--msp-shell: 1240px;
	--msp-header: 86px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: clip;
	color: var(--msp-ink);
	background: var(--msp-white);
	font-family: "Bai Jamjuree", Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
}

body.msp-menu-open {
	overflow: hidden;
}

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

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

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

.screen-reader-text,
.msp-skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.msp-skip-link:focus {
	z-index: 100000;
	left: 16px;
	top: 16px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	color: #fff;
	background: #111;
}

.msp-shell {
	width: min(var(--msp-shell), calc(100% - 48px));
	margin-inline: auto;
}

.msp-header {
	position: relative;
	z-index: 1000;
	height: var(--msp-header);
	background: rgba(255, 255, 255, 0.985);
	border-bottom: 1px solid rgba(25, 22, 17, 0.08);
}

.msp-header__inner {
	display: grid;
	grid-template-columns: 236px 1fr auto;
	align-items: center;
	gap: 34px;
	width: min(1680px, calc(100% - 40px));
	height: 100%;
	margin-inline: auto;
}

.msp-logo {
	display: block;
	width: 202px;
}

.msp-logo img {
	width: 100%;
	height: auto;
}

.msp-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(25px, 2.7vw, 48px);
	height: 100%;
}

.msp-nav > a,
.msp-products__trigger {
	position: relative;
	display: inline-flex;
	align-items: center;
	height: 100%;
	padding: 0;
	color: #241e1a;
	background: transparent;
	border: 0;
	font-family: "Jura", Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
}

.msp-nav > a::after,
.msp-products__trigger::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 24px;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.msp-nav > a:hover::after,
.msp-products__trigger:hover::after,
.msp-products.is-open .msp-products__trigger::after {
	transform: scaleX(1);
}

.msp-products {
	position: static;
	height: 100%;
}

.msp-products__trigger {
	gap: 7px;
}

.msp-products__trigger svg {
	width: 13px;
	height: 13px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.4;
	transition: transform 0.2s ease;
}

.msp-products.is-open .msp-products__trigger svg {
	transform: rotate(180deg);
}

.msp-products__panel {
	position: absolute;
	z-index: 10;
	left: 50%;
	top: calc(100% - 8px);
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: min(1028px, calc(100vw - 40px));
	overflow: visible;
	background: #fff;
	border: 1px solid rgba(27, 39, 52, 0.18);
	border-radius: 4px;
	box-shadow: 0 18px 42px rgba(10, 18, 28, 0.2);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-50%, -8px);
	transition:
		opacity 0.2s ease,
		transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0.2s ease;
}

.msp-products__panel::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -8px;
	z-index: -1;
	width: 15px;
	height: 15px;
	background: #fff;
	border-top: 1px solid rgba(27, 39, 52, 0.18);
	border-left: 1px solid rgba(27, 39, 52, 0.18);
	transform: translateX(-50%) rotate(45deg);
}

.msp-products.is-open .msp-products__panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.msp-products__panel > .msp-product-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 174px;
	gap: 20px;
	height: 214px;
	padding: 24px 30px;
	border-right: 1px solid rgba(30, 42, 54, 0.16);
	transition: background 0.2s ease;
}

.msp-products__panel > .msp-product-card:last-child {
	border-right: 0;
}

.msp-products__panel > .msp-product-card:hover {
	background: #fafaf8;
}

.msp-product-card__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}

.msp-product-card__copy small {
	margin-bottom: 15px;
	color: #354252;
	font-family: "Jura", Arial, sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	white-space: nowrap;
}

.msp-product-card__copy strong {
	margin-bottom: 11px;
	color: #182637;
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
}

.msp-product-card__copy > span {
	max-width: 250px;
	color: #6a7078;
	font-size: 13px;
	line-height: 1.5;
}

.msp-product-card__copy b {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	margin-top: auto;
	color: #294663;
	font-family: "Jura", Arial, sans-serif;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.msp-product-card__copy i {
	font-family: Arial, sans-serif;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	transition: transform 0.2s ease;
}

.msp-products__panel > .msp-product-card:hover i {
	transform: translateX(4px);
}

.msp-product-card__visual {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.msp-header__cta {
	display: inline-grid;
	place-items: center;
	min-width: 128px;
	min-height: 42px;
	padding-inline: 18px;
	border: 1px solid rgba(24, 20, 17, 0.34);
	font-family: "Jura", Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	transition:
		color 0.2s ease,
		background 0.2s ease;
}

.msp-header__cta:hover {
	color: #fff;
	background: #111;
}

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

.msp-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 24px;
	color: var(--msp-gold);
	font-family: "Jura", Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.19em;
	text-transform: uppercase;
}

.msp-eyebrow::before {
	content: "";
	width: 28px;
	height: 1px;
	background: currentColor;
}

.msp-button {
	display: inline-grid;
	place-items: center;
	min-height: 52px;
	padding: 0 25px;
	font-family: "Jura", Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	transition:
		transform 0.2s ease,
		background 0.2s ease;
}

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

.msp-button--gold {
	color: #14110b;
	background: var(--msp-gold);
	border: 1px solid var(--msp-gold);
}

.msp-button--glass {
	color: #fff;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.32);
}

.msp-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.msp-home-hero {
	position: relative;
	min-height: calc(100vh - var(--msp-header));
	overflow: hidden;
	color: #fff;
	background: #080909;
	isolation: isolate;
}

.msp-home-hero__image,
.msp-home-hero__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.msp-home-hero__image {
	z-index: -2;
	object-fit: cover;
	object-position: center 52%;
}

.msp-home-hero__shade {
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(5, 7, 9, 0.92) 0%, rgba(7, 9, 11, 0.65) 45%, rgba(7, 8, 10, 0.24) 76%),
		linear-gradient(180deg, rgba(4, 5, 6, 0.12), rgba(4, 5, 6, 0.5));
}

.msp-home-hero__content {
	padding-top: clamp(110px, 13vh, 170px);
	padding-bottom: 180px;
}

.msp-home-hero h1 {
	max-width: 1000px;
	margin: 0;
	font-size: clamp(58px, 7vw, 104px);
	font-weight: 600;
	letter-spacing: -0.07em;
	line-height: 0.91;
	text-transform: uppercase;
}

.msp-home-hero__lead {
	max-width: 700px;
	margin: 36px 0 0;
	padding-left: 24px;
	color: rgba(255, 255, 255, 0.78);
	border-left: 1px solid rgba(199, 167, 94, 0.7);
	font-size: 18px;
	line-height: 1.7;
}

.msp-home-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: min(630px, 100%);
	margin-top: 38px;
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.msp-home-hero__stats span {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 14px 20px;
	background: rgba(4, 5, 6, 0.42);
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.msp-home-hero__stats span:last-child {
	border-right: 0;
}

.msp-home-hero__stats strong {
	font-family: "Jura", Arial, sans-serif;
	font-size: 18px;
}

.msp-home-hero__stats small {
	color: rgba(255, 255, 255, 0.65);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.msp-home-hero__capabilities {
	position: absolute;
	left: 50%;
	bottom: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	transform: translateX(-50%);
	background: rgba(8, 8, 8, 0.87);
	border: 1px solid rgba(199, 167, 94, 0.22);
	backdrop-filter: blur(16px);
}

.msp-home-hero__capabilities span {
	display: flex;
	align-items: center;
	min-height: 94px;
	padding: 18px 28px;
	color: rgba(255, 255, 255, 0.76);
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 14px;
	line-height: 1.5;
}

.msp-home-hero__capabilities span:last-child {
	border-right: 0;
}

.msp-intro {
	padding: clamp(90px, 9vw, 140px) 0;
}

.msp-intro__grid,
.msp-home-product__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
	align-items: center;
	gap: clamp(56px, 8vw, 120px);
}

.msp-intro h2,
.msp-section-heading h2,
.msp-home-product h2,
.msp-process h2,
.msp-home-cta h2,
.msp-footer h2,
.msp-page-hero h1,
.msp-error h1 {
	margin: 0;
	font-size: clamp(42px, 5vw, 70px);
	font-weight: 700;
	letter-spacing: -0.055em;
	line-height: 1;
	text-wrap: balance;
}

.msp-intro__grid > p {
	margin: 0;
	color: var(--msp-muted);
	font-size: 18px;
	line-height: 1.8;
}

.msp-home-services {
	padding: clamp(90px, 9vw, 136px) 0;
	color: #fff;
	background:
		radial-gradient(circle at 88% 10%, rgba(199, 167, 94, 0.12), transparent 28%),
		#0a0a09;
}

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

.msp-section-heading h2 {
	max-width: 760px;
}

.msp-section-heading > a {
	flex: 0 0 auto;
	color: var(--msp-gold);
	font-family: "Jura", Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.msp-section-heading > a span {
	margin-left: 10px;
}

.msp-home-services__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.msp-home-services__grid > a {
	position: relative;
	display: flex;
	min-height: 310px;
	flex-direction: column;
	padding: 34px;
	border-right: 1px solid rgba(255, 255, 255, 0.13);
	border-bottom: 1px solid rgba(255, 255, 255, 0.13);
	transition:
		background 0.25s ease,
		transform 0.25s ease;
}

.msp-home-services__grid > a:hover {
	z-index: 2;
	background: rgba(199, 167, 94, 0.08);
	transform: translateY(-3px);
}

.msp-home-services__grid small,
.msp-process__grid small {
	color: var(--msp-gold);
	font-family: "Jura", Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.msp-home-services__grid h3 {
	margin: auto 0 16px;
	font-size: 25px;
	font-weight: 600;
}

.msp-home-services__grid p {
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
	line-height: 1.7;
}

.msp-home-product {
	padding: clamp(90px, 9vw, 140px) 0;
	color: #fff;
	background: #11100e;
}

.msp-home-product h2 {
	max-width: 700px;
}

.msp-home-product p:not(.msp-eyebrow) {
	max-width: 650px;
	margin: 28px 0 34px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 17px;
	line-height: 1.75;
}

.msp-home-product figure {
	position: relative;
	margin: 0;
	padding: 14px;
	border: 1px solid rgba(199, 167, 94, 0.28);
}

.msp-home-product figure::before {
	content: "ALPR / SiO";
	position: absolute;
	left: 28px;
	top: 28px;
	z-index: 2;
	padding: 7px 10px;
	color: #17130b;
	background: var(--msp-gold);
	font-family: "Jura", Arial, sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.msp-home-product img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.msp-process {
	padding: clamp(90px, 9vw, 135px) 0;
	background: var(--msp-paper);
}

.msp-process h2 {
	max-width: 760px;
}

.msp-process__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 58px;
	border-top: 1px solid var(--msp-line);
}

.msp-process__grid > div {
	min-height: 230px;
	padding: 30px 28px 0 0;
	border-right: 1px solid var(--msp-line);
}

.msp-process__grid > div + div {
	padding-left: 28px;
}

.msp-process__grid > div:last-child {
	border-right: 0;
}

.msp-process__grid h3 {
	margin: 46px 0 12px;
	font-size: 22px;
}

.msp-process__grid p {
	margin: 0;
	color: var(--msp-muted);
	font-size: 14px;
	line-height: 1.65;
}

.msp-home-cta {
	padding: clamp(92px, 10vw, 150px) 0;
	color: #fff;
	text-align: center;
	background:
		radial-gradient(circle at 50% 0, rgba(199, 167, 94, 0.14), transparent 34%),
		#080908;
}

.msp-home-cta .msp-eyebrow {
	justify-content: center;
}

.msp-home-cta h2 {
	max-width: 900px;
	margin-inline: auto;
}

.msp-home-cta .msp-button {
	margin-top: 38px;
}

.msp-footer {
	padding: 80px 0 28px;
	color: rgba(255, 255, 255, 0.74);
	background: #050505;
	border-top: 1px solid rgba(199, 167, 94, 0.18);
}

.msp-footer__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 50px;
	padding-bottom: 64px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.msp-footer h2 {
	max-width: 820px;
	color: #fff;
	font-size: clamp(36px, 4vw, 58px);
}

.msp-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.45fr));
	gap: 70px;
	padding: 54px 0;
}

.msp-footer__logo {
	width: 220px;
	filter: invert(1);
}

.msp-footer__grid p {
	max-width: 430px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.52);
	line-height: 1.7;
}

.msp-footer__grid h3 {
	margin: 0 0 22px;
	color: var(--msp-gold);
	font-family: "Jura", Arial, sans-serif;
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.msp-footer__grid > div:not(:first-child) {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.msp-footer__grid a:hover {
	color: var(--msp-gold);
}

.msp-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 24px;
	color: rgba(255, 255, 255, 0.4);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 12px;
}

.msp-page-hero {
	padding: clamp(90px, 9vw, 140px) 0;
	color: #fff;
	background:
		radial-gradient(circle at 78% 20%, rgba(199, 167, 94, 0.13), transparent 28%),
		#080908;
}

.msp-page-content,
.msp-article {
	padding-top: 80px;
	padding-bottom: 100px;
}

.msp-page-content > * {
	max-width: 820px;
	margin-inline: auto;
}

.msp-page-content > .alignwide {
	max-width: var(--msp-shell);
}

.msp-page-content > .alignfull {
	max-width: none;
}

.msp-article {
	max-width: 860px;
}

.msp-article h1 {
	margin: 0 0 40px;
	font-size: clamp(44px, 5vw, 70px);
	line-height: 1;
}

.msp-article p {
	font-size: 17px;
	line-height: 1.8;
}

.msp-post-card {
	padding: 30px 0;
	border-bottom: 1px solid var(--msp-line);
}

.msp-error {
	display: grid;
	min-height: 70vh;
	place-items: center;
	padding: 100px 0;
	text-align: center;
}

.msp-error .msp-eyebrow {
	justify-content: center;
}

.msp-error p:not(.msp-eyebrow) {
	margin: 24px 0 32px;
	color: var(--msp-muted);
}

a:focus-visible,
button:focus-visible {
	outline: 2px solid var(--msp-gold);
	outline-offset: 4px;
}

@media (max-width: 1120px) {
	.msp-header__inner {
		grid-template-columns: 1fr auto;
	}

	.msp-nav,
	.msp-header__cta {
		display: none;
	}

	.msp-menu-toggle {
		display: grid;
		place-items: center;
		width: 42px;
		height: 42px;
		padding: 11px;
		background: #fff;
		border: 1px solid rgba(25, 22, 17, 0.25);
		cursor: pointer;
	}

	.msp-menu-toggle span:not(.screen-reader-text) {
		display: block;
		width: 19px;
		height: 1px;
		background: #111;
		transition: transform 0.2s ease;
	}

	.msp-menu-toggle span:first-child {
		transform: translateY(4px);
	}

	.msp-menu-toggle span:nth-child(2) {
		transform: translateY(-4px);
	}

	.msp-menu-open .msp-menu-toggle span:first-child {
		transform: rotate(45deg);
	}

	.msp-menu-open .msp-menu-toggle span:nth-child(2) {
		transform: rotate(-45deg);
	}

	.msp-mobile-menu {
		position: fixed;
		z-index: 999;
		left: 16px;
		right: 16px;
		top: calc(var(--msp-header) - 2px);
		display: flex;
		width: auto !important;
		max-width: calc(100% - 32px);
		max-height: calc(100vh - var(--msp-header) - 20px);
		flex-direction: column;
		overflow-y: auto;
		padding: 8px;
		background: #fff;
		border: 1px solid rgba(25, 22, 17, 0.14);
		box-shadow: 0 20px 50px rgba(12, 10, 8, 0.18);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-8px);
		transition:
			opacity 0.2s ease,
			transform 0.2s ease,
			visibility 0.2s ease;
	}

	.msp-menu-open .msp-mobile-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.msp-mobile-menu > a,
	.msp-mobile-menu summary,
	.msp-mobile-menu details a {
		display: flex;
		align-items: center;
		min-height: 52px;
		padding: 0 16px;
		border-bottom: 1px solid rgba(25, 22, 17, 0.09);
		font-family: "Jura", Arial, sans-serif;
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0.12em;
		text-transform: uppercase;
	}

	.msp-mobile-menu summary {
		justify-content: space-between;
		cursor: pointer;
		list-style: none;
	}

	.msp-mobile-menu summary::after {
		content: "+";
		font-size: 18px;
		font-weight: 400;
	}

	.msp-mobile-menu details[open] summary::after {
		content: "−";
	}

	.msp-mobile-menu details a {
		padding-left: 30px;
		background: var(--msp-paper);
		font-size: 10px;
	}

	.msp-mobile-menu__cta {
		justify-content: center;
		margin-top: 8px;
		color: #fff;
		background: #111;
		border: 0 !important;
	}
}

@media (max-width: 900px) {
	.msp-intro__grid,
	.msp-home-product__grid,
	.msp-footer__top {
		grid-template-columns: 1fr;
	}

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

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

	.msp-process__grid > div:nth-child(2) {
		border-right: 0;
	}

	.msp-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.msp-footer__grid > div:first-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 680px) {
	:root {
		--msp-header: 68px;
	}

	.msp-shell,
	.msp-header__inner {
		width: min(100% - 32px, var(--msp-shell));
	}

	.msp-logo {
		width: 134px;
	}

	.msp-home-hero {
		min-height: 840px;
	}

	.msp-home-hero__content {
		padding-top: 72px;
		padding-bottom: 290px;
	}

	.msp-home-hero h1 {
		font-size: clamp(45px, 14vw, 66px);
	}

	.msp-home-hero__lead {
		padding-left: 16px;
		font-size: 16px;
	}

	.msp-actions {
		flex-direction: column;
	}

	.msp-button {
		width: 100%;
	}

	.msp-home-hero__stats {
		grid-template-columns: 1fr;
	}

	.msp-home-hero__stats span {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.msp-home-hero__capabilities {
		grid-template-columns: 1fr 1fr;
	}

	.msp-home-hero__capabilities span {
		min-height: 80px;
		padding: 14px;
		font-size: 11px;
	}

	.msp-home-services__grid,
	.msp-process__grid,
	.msp-footer__grid {
		grid-template-columns: 1fr;
	}

	.msp-section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.msp-home-services__grid > a {
		min-height: 270px;
	}

	.msp-process__grid > div,
	.msp-process__grid > div + div {
		min-height: 0;
		padding: 26px 0;
		border-right: 0;
		border-bottom: 1px solid var(--msp-line);
	}

	.msp-process__grid h3 {
		margin-top: 26px;
	}

	.msp-footer__grid > div:first-child {
		grid-column: auto;
	}

	.msp-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}
}

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