:root {
	--seo-accent: #52788f;
	--seo-accent-dark: #36576b;
	--seo-accent-light: #9db9ca;
	--seo-bg: #111416;
	--seo-panel: rgba(17, 20, 22, 0.94);
	--seo-line: rgba(255, 255, 255, 0.2);
	--seo-muted: rgba(255, 255, 255, 0.66);
}

html {
	background: var(--seo-bg);
	scroll-behavior: smooth;
}

body.seo-page {
	min-width: 320px;
	margin: 0;
	padding-bottom: 6.5rem;
	overflow-x: hidden;
	background: var(--seo-bg);
	color: #fff;
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.7;
}

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

.seo-page a {
	color: inherit;
}

.seo-background {
	position: fixed;
	z-index: 0;
	inset: 0;
	overflow: hidden;
	background:
		linear-gradient(to bottom, rgba(10, 13, 15, 0.62), rgba(10, 13, 15, 0.92)),
		url("../../images/umr-bg-v2.webp") 58% center / cover no-repeat;
}

.seo-background::after {
	content: "";
	position: absolute;
	inset: 0;
	background: url("../../images/overlay.png") repeat;
	opacity: 0.22;
}

.seo-shell {
	position: relative;
	z-index: 1;
	width: min(calc(100% - 2rem), 72rem);
	margin: 0 auto;
	padding: 1.25rem 0 4rem;
}

.seo-fixed-actions {
	position: fixed;
	z-index: 100;
	right: 50%;
	bottom: max(0.8rem, env(safe-area-inset-bottom));
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.55rem;
	width: min(calc(100% - 2rem), 34rem);
	padding: 0.55rem;
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: rgba(17, 20, 22, 0.94);
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.48);
	transform: translateX(50%);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.seo-fixed-actions .seo-button {
	width: 100%;
	min-width: 0;
	background: rgba(17, 20, 22, 0.82);
}

.seo-close {
	position: fixed;
	z-index: 120;
	top: max(0.85rem, env(safe-area-inset-top));
	right: max(0.85rem, env(safe-area-inset-right));
	width: 2.8rem;
	height: 2.8rem;
	border: 1px solid rgba(255, 255, 255, 0.58);
	border-radius: 50%;
	background: rgba(17, 20, 22, 0.9);
	box-shadow: 0 0.8rem 2.2rem rgba(0, 0, 0, 0.38);
	text-decoration: none;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.seo-close::before,
.seo-close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1.15rem;
	height: 1px;
	background: #fff;
	transform-origin: center;
}

.seo-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.seo-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.seo-close:hover,
.seo-close:focus-visible {
	border-color: var(--seo-accent-light);
	background: rgba(82, 120, 143, 0.12);
	outline: none;
}

.seo-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	padding: 0.8rem 1rem;
	border: 1px solid var(--seo-line);
	background: rgba(15, 18, 20, 0.78);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

body.seo-page .seo-topbar,
body.seo-page .seo-actions {
	display: none;
}

.seo-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	border: 0;
	text-decoration: none;
}

.seo-brand img {
	width: 2.65rem;
	height: 2.65rem;
	object-fit: contain;
}

.seo-brand span {
	display: grid;
	line-height: 1.2;
}

.seo-brand strong {
	font-size: 0.83rem;
	letter-spacing: 0.16rem;
	text-transform: uppercase;
}

.seo-brand small {
	margin-top: 0.22rem;
	color: var(--seo-muted);
	font-size: 0.58rem;
	letter-spacing: 0.08rem;
	text-transform: uppercase;
}

.seo-topnav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 0.45rem 1.1rem;
}

.seo-topnav a,
.seo-breadcrumbs a,
.seo-footer a {
	border-bottom-color: transparent;
	text-decoration: none;
}

.seo-topnav a {
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.08rem;
	text-transform: uppercase;
}

.seo-topnav a:hover,
.seo-topnav a:focus-visible,
.seo-breadcrumbs a:hover,
.seo-breadcrumbs a:focus-visible,
.seo-footer a:hover,
.seo-footer a:focus-visible {
	color: var(--seo-accent-light);
}

.seo-breadcrumbs {
	margin: 1.1rem 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.68rem;
	letter-spacing: 0.05rem;
}

.seo-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.seo-breadcrumbs li {
	padding: 0;
}

.seo-breadcrumbs li:not(:last-child)::after {
	content: "/";
	margin-left: 0.35rem;
	color: var(--seo-accent);
}

.seo-main {
	display: grid;
	gap: 1rem;
}

.seo-hero,
.seo-section,
.seo-cta {
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: var(--seo-panel);
	box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.36);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.seo-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
	min-height: 31rem;
	overflow: hidden;
}

.seo-hero-copy {
	align-self: center;
	padding: clamp(2rem, 6vw, 4.6rem);
}

.seo-kicker {
	margin: 0 0 0.8rem;
	color: var(--seo-accent-light);
	font-family: "Courier New", monospace;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14rem;
	text-transform: uppercase;
}

.seo-page h1,
.seo-page h2,
.seo-page h3 {
	margin-top: 0;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.045em;
	text-transform: uppercase;
}

.seo-page h1 {
	max-width: 12ch;
	margin-bottom: 1.2rem;
	font-size: clamp(2.15rem, 6vw, 4.35rem);
	line-height: 1.03;
	overflow-wrap: break-word;
	hyphens: auto;
}

.seo-page h2 {
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--seo-accent);
	font-size: clamp(1.55rem, 3.7vw, 2.5rem);
	line-height: 1.15;
}

.seo-page h3 {
	margin-bottom: 0.55rem;
	color: var(--seo-accent-light);
	font-size: 0.9rem;
	line-height: 1.35;
}

.seo-lead {
	max-width: 42rem;
	margin-bottom: 1.4rem;
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(1rem, 2.1vw, 1.22rem);
	line-height: 1.75;
}

.seo-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin: 1.7rem 0 0;
	padding: 0;
	list-style: none;
}

.seo-actions li {
	padding: 0;
}

.seo-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.25rem;
	padding: 0.7rem 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 3px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1rem;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.seo-button--primary {
	border-color: var(--seo-accent);
	background: var(--seo-accent);
	color: #fff;
}

.seo-button:hover,
.seo-button:focus-visible {
	border-color: var(--seo-accent-light);
	background: rgba(82, 120, 143, 0.13);
	color: #fff;
	outline: none;
}

.seo-button--primary:hover,
.seo-button--primary:focus-visible {
	border-color: var(--seo-accent-dark);
	background: var(--seo-accent-dark);
	color: #fff;
}

.seo-hero-media {
	position: relative;
	min-height: 24rem;
}

.seo-hero-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(17, 20, 22, 0.3), transparent 38%);
	pointer-events: none;
}

.seo-hero-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.82) contrast(1.04);
}

.seo-section {
	padding: clamp(1.7rem, 5vw, 3.7rem);
}

.seo-section > p {
	max-width: 57rem;
	color: rgba(255, 255, 255, 0.76);
}

.seo-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	margin-top: 1.6rem;
	border-top: 1px solid var(--seo-line);
	border-left: 1px solid var(--seo-line);
}

.seo-grid > section,
.seo-grid > div {
	min-width: 0;
	padding: 1.45rem;
	border-right: 1px solid var(--seo-line);
	border-bottom: 1px solid var(--seo-line);
}

.seo-landing-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 15rem;
	padding: 1.45rem;
	border-right: 1px solid var(--seo-line);
	border-bottom: 1px solid var(--seo-line);
	color: inherit;
	text-decoration: none;
}

.seo-landing-index h1 {
	max-width: 20ch;
}

.seo-landing-card h2 {
	margin-bottom: 1rem;
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.seo-landing-card p {
	margin: 0 0 1.35rem;
	color: var(--seo-muted);
	font-size: 0.9rem;
}

.seo-card-action {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: auto;
	padding-top: 0.9rem;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.1rem;
	text-transform: uppercase;
}

.seo-landing-card:hover,
.seo-landing-card:focus-visible {
	background: rgba(82, 120, 143, 0.09);
	outline: none;
}

.seo-landing-card:hover .seo-card-action,
.seo-landing-card:focus-visible .seo-card-action {
	color: var(--seo-accent-light);
}

.seo-grid p {
	margin: 0;
	color: var(--seo-muted);
	font-size: 0.88rem;
}

.seo-process {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.8rem;
	margin: 1.6rem 0 0;
	padding: 0;
	counter-reset: seo-process;
	list-style: none;
}

.seo-process li {
	position: relative;
	min-height: 10rem;
	padding: 2.8rem 1.1rem 1.1rem;
	border: 1px solid var(--seo-line);
	counter-increment: seo-process;
}

.seo-process li::before {
	content: "0" counter(seo-process);
	position: absolute;
	top: 0.85rem;
	left: 1.1rem;
	color: var(--seo-accent-light);
	font-family: "Courier New", monospace;
	font-size: 0.68rem;
	letter-spacing: 0.08rem;
}

.seo-process strong {
	display: block;
	margin-bottom: 0.45rem;
	font-size: 0.84rem;
	letter-spacing: 0.05rem;
	text-transform: uppercase;
}

.seo-process span {
	color: var(--seo-muted);
	font-size: 0.82rem;
}

.seo-faq {
	display: grid;
	gap: 0;
	margin-top: 1.3rem;
	border-top: 1px solid var(--seo-line);
}

.seo-faq details {
	padding: 1.15rem 0;
	border-bottom: 1px solid var(--seo-line);
}

.seo-faq summary {
	position: relative;
	padding-right: 2rem;
	cursor: pointer;
	font-weight: 700;
	letter-spacing: 0.03rem;
	list-style: none;
}

.seo-faq summary::-webkit-details-marker {
	display: none;
}

.seo-faq summary::after {
	content: "+";
	position: absolute;
	top: 0;
	right: 0.25rem;
	color: var(--seo-accent);
	font-size: 1.2rem;
	font-weight: 400;
}

.seo-faq details[open] summary::after {
	content: "−";
}

.seo-faq details p {
	max-width: 55rem;
	margin: 0.75rem 0 0;
	color: var(--seo-muted);
	font-size: 0.9rem;
}

.seo-related {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 1.4rem 0 0;
	padding: 0;
	list-style: none;
}

.seo-related li {
	padding: 0;
}

.seo-related a {
	display: flex;
	align-items: center;
	min-height: 5.5rem;
	padding: 1rem;
	border: 1px solid var(--seo-line);
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06rem;
	line-height: 1.35;
	text-decoration: none;
	text-transform: uppercase;
}

.seo-related a:hover,
.seo-related a:focus-visible {
	border-color: var(--seo-accent);
	background: rgba(82, 120, 143, 0.1);
}

.seo-cta {
	padding: clamp(1.7rem, 5vw, 3.4rem);
	text-align: center;
}

.seo-cta h2,
.seo-cta p {
	max-width: 50rem;
	margin-right: auto;
	margin-left: auto;
}

.seo-cta .seo-actions {
	justify-content: center;
}

.seo-footer {
	display: grid;
	gap: 0.75rem;
	padding: 2rem 0 1rem;
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.7rem;
	letter-spacing: 0.1rem;
	text-align: center;
	text-transform: uppercase;
}

.seo-footer nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.55rem 1.2rem;
}

.seo-footer p {
	margin: 0;
}

@media (max-width: 860px) {
	.seo-hero {
		grid-template-columns: 1fr;
	}

	.seo-hero-media {
		order: -1;
		min-height: 18rem;
	}

	.seo-hero-media::after {
		background: linear-gradient(0deg, rgba(17, 20, 22, 0.35), transparent 45%);
	}

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

@media (max-width: 640px) {
	body.seo-page {
		font-size: 17px;
	}

	.seo-shell {
		width: min(calc(100% - 1rem), 72rem);
		padding-top: 0.5rem;
	}

	.seo-topbar {
		align-items: flex-start;
		padding: 0.75rem;
	}

	.seo-brand small {
		display: none;
	}

	.seo-topnav {
		display: grid;
		grid-template-columns: repeat(2, auto);
		gap: 0.35rem 0.75rem;
	}

	.seo-topnav a {
		font-size: 0.58rem;
	}

	.seo-hero-copy,
	.seo-section,
	.seo-cta {
		padding: 1.45rem;
	}

	.seo-page h1 {
		max-width: 100%;
		font-size: clamp(1.9rem, 9.4vw, 2.75rem);
		letter-spacing: 0.025em;
	}

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

	.seo-close {
		top: max(0.65rem, env(safe-area-inset-top));
		right: max(0.65rem, env(safe-area-inset-right));
		width: 2.5rem;
		height: 2.5rem;
	}

	.seo-landing-card {
		min-height: 12.5rem;
		padding: 1.35rem;
	}

	.seo-actions,
	.seo-actions li,
	.seo-button {
		width: 100%;
	}
}

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