:root {
	--brand-navy: #092a66;
	--tech-blue: #005cc8;
	--brand-gold: #f2b51e;
	--deep-gold: #e0a512;
	--neutral: #646e7d;
	--light-bg: #f5f7fb;
	--ink: #1f2937;
	--white: #ffffff;
	--border: #dfe5ef;
	--shadow: 0 18px 50px rgba(10, 46, 115, 0.1);
	--radius: 20px;
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--white);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
	font-size: 16px;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

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

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

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	color: var(--brand-navy);
	line-height: 1.25;
}

h1 {
	font-size: clamp(2.7rem, 5.7vw, 5rem);
	letter-spacing: -0.045em;
}

h2 {
	font-size: clamp(2rem, 3.8vw, 3.15rem);
	letter-spacing: -0.035em;
}

h3 {
	font-size: 1.25rem;
}

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

.content-container {
	max-width: 850px;
}

.screen-reader-text {
	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;
	z-index: 9999;
	top: 12px;
	left: 12px;
	padding: 10px 16px;
	color: var(--white);
	background: var(--brand-navy);
	transform: translateY(-150%);
}

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

.site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	height: 78px;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid transparent;
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
	backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
	border-color: var(--border);
	box-shadow: 0 8px 30px rgba(10, 46, 115, 0.08);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	height: 100%;
}

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

.header-logo img,
.footer-logo img {
	display: block;
	width: auto;
	height: auto;
	object-fit: contain;
}

.header-logo img {
	max-width: 180px;
}

.footer-logo img {
	max-width: 220px;
}

.site-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.site-brand__text strong {
	color: var(--brand-navy);
	font-size: 1rem;
	letter-spacing: 0.08em;
}

.site-brand__text small {
	margin-top: 5px;
	color: var(--tech-blue);
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.site-nav {
	margin-left: auto;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 25px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-nav a {
	position: relative;
	display: block;
	color: #34425a;
	font-size: 0.93rem;
	font-weight: 600;
	white-space: nowrap;
}

.site-nav a::after {
	position: absolute;
	right: 0;
	bottom: -10px;
	left: 0;
	height: 2px;
	background: var(--tech-blue);
	content: "";
	transform: scaleX(0);
	transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav .current-menu-item > a {
	color: var(--tech-blue);
}

.site-nav a:hover::after,
.site-nav a:focus::after,
.site-nav .current-menu-item > a::after {
	transform: scaleX(1);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.menu-toggle__line {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px 0;
	background: var(--brand-navy);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 25px;
	color: var(--white);
	background: var(--tech-blue);
	border: 1px solid var(--tech-blue);
	border-radius: 10px;
	box-shadow: 0 10px 25px rgba(27, 126, 237, 0.2);
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus {
	background: var(--brand-navy);
	border-color: var(--brand-navy);
	box-shadow: 0 14px 30px rgba(10, 46, 115, 0.24);
	transform: translateY(-2px);
}

.button--small {
	min-height: 42px;
	padding: 10px 18px;
	font-size: 0.92rem;
}

.button--gold {
	color: var(--brand-navy);
	background: var(--brand-gold);
	border-color: var(--brand-gold);
	box-shadow: 0 10px 25px rgba(245, 198, 40, 0.2);
}

.button--gold:hover,
.button--gold:focus {
	color: var(--brand-navy);
	background: var(--deep-gold);
	border-color: var(--deep-gold);
}

.button--ghost {
	color: var(--white);
	background: transparent;
	border-color: rgba(255, 255, 255, 0.4);
	box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--white);
}

.hero {
	position: relative;
	overflow: hidden;
	min-height: 720px;
	color: var(--white);
	background:
		linear-gradient(115deg, rgba(5, 27, 70, 0.98), rgba(10, 46, 115, 0.95) 52%, rgba(17, 87, 170, 0.94)),
		radial-gradient(circle at 20% 20%, #1b7eed, transparent 45%);
}

.hero::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 54px 54px;
	content: "";
	mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	align-items: center;
	gap: 60px;
	min-height: 720px;
	padding-block: 90px;
}

.hero__content {
	position: relative;
	z-index: 2;
}

.hero h1 {
	max-width: 760px;
	margin-bottom: 25px;
	color: var(--white);
}

.hero h1 span {
	display: block;
	color: var(--brand-gold);
}

.hero__subtitle {
	max-width: 680px;
	margin: -8px 0 22px;
	color: var(--white);
	font-size: clamp(1.45rem, 2.4vw, 2.15rem);
	font-weight: 650;
	letter-spacing: -0.02em;
}

.hero__lead {
	max-width: 690px;
	margin-bottom: 35px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.18rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.hero__proof {
	display: flex;
	gap: 34px;
	padding: 34px 0 0;
	margin: 44px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	list-style: none;
}

.hero__proof li {
	display: flex;
	flex-direction: column;
}

.hero__proof strong {
	color: var(--white);
	font-size: 1rem;
}

.hero__proof span {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.84rem;
}

.eyebrow {
	margin-bottom: 14px;
	color: var(--tech-blue);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.eyebrow--light {
	color: var(--brand-gold);
}

.hero-visual {
	position: relative;
	display: grid;
	aspect-ratio: 1;
	max-width: 480px;
	margin-inline: auto;
	place-items: center;
}

.hero-visual::before {
	position: absolute;
	width: 66%;
	height: 66%;
	background: radial-gradient(circle, rgba(27, 126, 237, 0.35), transparent 70%);
	content: "";
	filter: blur(10px);
}

.orbit {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
}

.orbit::before,
.orbit::after {
	position: absolute;
	width: 11px;
	height: 11px;
	background: var(--brand-gold);
	border-radius: 50%;
	box-shadow: 0 0 20px var(--brand-gold);
	content: "";
}

.orbit--outer {
	inset: 6%;
	animation: rotate 25s linear infinite;
}

.orbit--outer::before {
	top: 14%;
	left: 12%;
}

.orbit--outer::after {
	right: 2%;
	bottom: 35%;
	background: #56b4ff;
	box-shadow: 0 0 20px #56b4ff;
}

.orbit--inner {
	inset: 22%;
	animation: rotate 18s linear infinite reverse;
}

.orbit--inner::before {
	top: -5px;
	left: 50%;
}

.orbit--inner::after {
	right: 7%;
	bottom: 12%;
	width: 7px;
	height: 7px;
}

.hero-visual__core {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 155px;
	height: 155px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.04));
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 42% 58% 54% 46%;
	box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.08), 0 20px 60px rgba(0, 0, 0, 0.2);
	animation: morph 8s ease-in-out infinite;
	backdrop-filter: blur(15px);
}

.hero-visual__core span {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.9rem;
	letter-spacing: 0.18em;
}

.hero-visual__core strong {
	color: var(--brand-gold);
	font-size: 1.8rem;
}

.data-chip {
	position: absolute;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 9px 14px;
	color: rgba(255, 255, 255, 0.85);
	background: rgba(8, 39, 91, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 30px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	font-size: 0.8rem;
	backdrop-filter: blur(12px);
}

.data-chip span {
	width: 7px;
	height: 7px;
	background: var(--brand-gold);
	border-radius: 50%;
}

.data-chip--one {
	top: 18%;
	left: 0;
}

.data-chip--two {
	top: 28%;
	right: -2%;
}

.data-chip--three {
	right: 5%;
	bottom: 18%;
}

.hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
}

.hero__glow--one {
	top: -150px;
	right: 10%;
	width: 420px;
	height: 420px;
	background: rgba(27, 126, 237, 0.25);
}

.hero__glow--two {
	bottom: -180px;
	left: 30%;
	width: 360px;
	height: 360px;
	background: rgba(245, 198, 40, 0.08);
}

.agent-matrix-visual {
	position: relative;
	z-index: 2;
	padding: 28px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 24px;
	box-shadow: 0 28px 70px rgba(0, 10, 35, 0.32);
	backdrop-filter: blur(18px);
}

.agent-matrix-visual::before {
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(255, 255, 255, 0.055);
	border-radius: 18px;
	content: "";
	pointer-events: none;
}

.agent-matrix-visual__top {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 23px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.matrix-kicker {
	color: var(--brand-gold);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.agent-matrix-visual h2 {
	margin: 5px 0 0;
	color: var(--white);
	font-size: 2rem;
}

.matrix-status {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 8px;
	padding: 7px 11px;
	color: rgba(255, 255, 255, 0.75);
	background: rgba(255, 255, 255, 0.07);
	border-radius: 30px;
	font-size: 0.72rem;
}

.matrix-status i {
	width: 7px;
	height: 7px;
	background: #52d99d;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(82, 217, 157, 0.8);
}

.matrix-engine-list {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
	margin-block: 24px;
}

.matrix-engine-list div {
	padding: 15px 6px;
	background: rgba(255, 255, 255, 0.075);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 12px;
	text-align: center;
}

.matrix-engine-list span,
.matrix-engine-list small {
	display: block;
}

.matrix-engine-list span {
	color: var(--white);
	font-size: 1rem;
	font-weight: 800;
}

.matrix-engine-list small {
	overflow: hidden;
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.48);
	font-size: 0.58rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.matrix-flow {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 14px 16px;
	color: rgba(255, 255, 255, 0.76);
	background: rgba(4, 25, 67, 0.48);
	border-radius: 12px;
	font-size: 0.7rem;
}

.matrix-flow i {
	color: var(--brand-gold);
	font-style: normal;
}

.matrix-output {
	position: relative;
	display: grid;
	gap: 9px;
	margin-top: 20px;
}

.matrix-output div {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 13px;
	background: rgba(255, 255, 255, 0.055);
	border-radius: 10px;
}

.matrix-output span {
	display: grid;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	color: var(--brand-navy);
	background: var(--brand-gold);
	border-radius: 8px;
	font-size: 0.67rem;
	font-weight: 800;
	place-items: center;
}

.matrix-output p {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.8rem;
}

.section {
	padding-block: 96px;
}

.section--light {
	background: var(--light-bg);
}

.section--blue {
	position: relative;
	overflow: hidden;
	color: var(--white);
	background: var(--brand-navy);
}

.section--blue::before {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 80% 20%, rgba(27, 126, 237, 0.35), transparent 35%);
	content: "";
}

.section-heading {
	max-width: 920px;
	margin: 0 auto 55px;
	text-align: center;
}

.section-heading h2 {
	margin-bottom: 18px;
}

.section-heading > p:last-child {
	color: var(--neutral);
	font-size: 1.06rem;
}

@media (min-width: 1024px) {
	.section-heading {
		width: fit-content;
		max-width: min(100%, 1080px);
	}

	.section-heading h2 {
		white-space: nowrap;
	}

	.section-heading > p:last-child {
		max-width: 920px;
		margin-inline: auto;
	}
}

.section-heading--light {
	position: relative;
}

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

.section-heading--light > p:last-child {
	color: rgba(255, 255, 255, 0.68);
}

.card-grid {
	display: grid;
	gap: 24px;
}

.card-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

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

.card-grid--5 {
	grid-template-columns: repeat(5, 1fr);
}

.feature-card,
.service-card,
.entry-card {
	padding: 32px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-card:hover,
.service-card:hover {
	border-color: rgba(27, 126, 237, 0.4);
	box-shadow: var(--shadow);
	transform: translateY(-6px);
}

.feature-card p,
.service-card p {
	margin-bottom: 0;
	color: var(--neutral);
}

.icon-box {
	display: inline-grid;
	width: 48px;
	height: 48px;
	margin-bottom: 23px;
	color: var(--tech-blue);
	background: rgba(27, 126, 237, 0.09);
	border-radius: 13px;
	font-size: 0.82rem;
	font-weight: 800;
	place-items: center;
}

.split-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 85px;
}

.split-layout--reverse > :first-child {
	order: 2;
}

.split-layout__content h2 {
	margin-bottom: 24px;
}

.split-layout__content > p:not(.eyebrow) {
	color: var(--neutral);
}

.agent-panel {
	overflow: hidden;
	padding: 0 30px 30px;
	background: var(--brand-navy);
	border-radius: 26px;
	box-shadow: 0 26px 65px rgba(10, 46, 115, 0.22);
}

.agent-panel__header {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 -30px 25px;
	padding: 16px 25px;
	color: rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.07);
	font-size: 0.85rem;
}

.status-dot {
	width: 8px;
	height: 8px;
	background: #4fdb9b;
	border-radius: 50%;
	box-shadow: 0 0 12px #4fdb9b;
}

.agent-panel__flow {
	display: grid;
	gap: 13px;
}

.agent-panel__flow > div {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 17px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 13px;
}

.agent-panel__flow > div > span {
	display: grid;
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	color: var(--brand-navy);
	background: var(--brand-gold);
	border-radius: 9px;
	font-size: 0.8rem;
	font-weight: 800;
	place-items: center;
}

.agent-panel__flow p {
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.85rem;
}

.agent-panel__flow strong {
	display: block;
	color: var(--white);
	font-size: 1rem;
}

.check-list,
.plain-list {
	padding: 0;
	margin: 28px 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding: 7px 0 7px 31px;
	color: #394860;
}

.check-list li::before {
	position: absolute;
	top: 10px;
	left: 0;
	display: grid;
	width: 20px;
	height: 20px;
	color: var(--white);
	background: var(--tech-blue);
	border-radius: 50%;
	content: "✓";
	font-size: 0.72rem;
	font-weight: 900;
	place-items: center;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--tech-blue);
	font-weight: 800;
}

.text-link span {
	transition: transform 0.2s ease;
}

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

.engine-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
}

.engine-card {
	min-height: 245px;
	padding: 28px 23px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	transition: background 0.2s ease, transform 0.2s ease;
}

.engine-card:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-6px);
}

.engine-card > span {
	color: var(--brand-gold);
	font-size: 0.8rem;
	font-weight: 800;
}

.engine-card h3 {
	margin: 36px 0 4px;
	color: var(--white);
}

.engine-card > strong {
	display: block;
	margin-bottom: 15px;
	color: var(--brand-gold);
	font-size: 0.78rem;
	letter-spacing: 0.02em;
}

.engine-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.9rem;
}

.engine-grid--products {
	grid-template-columns: repeat(5, 1fr);
}

.engine-grid--products .engine-card {
	min-height: 410px;
	padding: 27px 22px;
}

.engine-grid--products dl {
	margin: 22px 0 0;
}

.engine-grid--products dt {
	margin-top: 16px;
	color: var(--brand-gold);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.engine-grid--products dd {
	margin: 5px 0 0;
	color: rgba(255, 255, 255, 0.67);
	font-size: 0.82rem;
	line-height: 1.65;
}

.audience-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.audience-card {
	padding: 28px 24px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(10, 46, 115, 0.045);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.audience-card:hover {
	border-color: rgba(27, 126, 237, 0.4);
	box-shadow: var(--shadow);
	transform: translateY(-4px);
}

.audience-card > span {
	color: var(--tech-blue);
	font-size: 0.72rem;
	font-weight: 800;
}

.audience-card h3 {
	min-height: 58px;
	margin: 25px 0 13px;
	font-size: 1.08rem;
}

.audience-card p {
	margin: 0;
	color: var(--neutral);
	font-size: 0.86rem;
}

.open-services {
	background:
		linear-gradient(180deg, rgba(245, 247, 251, 0.65), rgba(255, 255, 255, 0.92)),
		linear-gradient(90deg, rgba(27, 126, 237, 0.04), transparent);
}

.open-service-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	max-width: 1000px;
	margin-inline: auto;
}

.open-service-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 26px 28px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(10, 46, 115, 0.045);
}

.open-service-item:last-child {
	grid-column: 1 / -1;
}

.open-service-item > span {
	display: grid;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	color: var(--tech-blue);
	background: rgba(27, 126, 237, 0.08);
	border-radius: 11px;
	font-size: 0.72rem;
	font-weight: 800;
	place-items: center;
}

.open-service-item h3 {
	margin-bottom: 8px;
	font-size: 1.08rem;
}

.open-service-item p {
	margin: 0;
	color: var(--neutral);
	font-size: 0.88rem;
}

.section-action {
	position: relative;
	margin-top: 40px;
	text-align: center;
}

.service-card {
	min-height: 275px;
}

.service-card__tag {
	display: inline-block;
	margin-bottom: 35px;
	color: var(--tech-blue);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.service-card--cta {
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: var(--white);
	background: var(--brand-navy);
	border-color: var(--brand-navy);
}

.service-card--cta h3 {
	color: var(--white);
	font-size: 1.65rem;
}

.service-card--cta .text-link {
	color: var(--brand-gold);
}

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

.solution-card {
	position: relative;
	overflow: hidden;
	padding: 32px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
	box-shadow: 0 14px 35px rgba(10, 46, 115, 0.055);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.solution-card::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 70px;
	height: 4px;
	background: linear-gradient(90deg, var(--tech-blue), var(--brand-gold));
	content: "";
}

.solution-card:hover {
	border-color: rgba(27, 126, 237, 0.42);
	box-shadow: var(--shadow);
	transform: translateY(-5px);
}

.solution-card__number {
	display: inline-grid;
	width: 42px;
	height: 42px;
	margin-bottom: 24px;
	color: var(--tech-blue);
	background: rgba(27, 126, 237, 0.08);
	border-radius: 11px;
	font-size: 0.75rem;
	font-weight: 800;
	place-items: center;
}

.solution-card h2 {
	min-height: 58px;
	margin-bottom: 24px;
	font-size: 1.3rem;
}

.solution-card dl {
	margin: 0;
}

.solution-card dt {
	margin-top: 17px;
	color: var(--brand-navy);
	font-size: 0.78rem;
	font-weight: 800;
}

.solution-card dd {
	margin: 5px 0 0;
	color: var(--neutral);
	font-size: 0.88rem;
}

.process-list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	padding: 0;
	margin: 0;
	list-style: none;
}

.process-list li {
	position: relative;
	padding: 0 24px;
	text-align: center;
}

.process-list li:not(:last-child)::after {
	position: absolute;
	top: 26px;
	right: -13px;
	width: 26px;
	height: 1px;
	background: var(--border);
	content: "";
}

.process-list > li > span {
	display: grid;
	width: 54px;
	height: 54px;
	margin: 0 auto 24px;
	color: var(--tech-blue);
	background: var(--white);
	border: 1px solid rgba(27, 126, 237, 0.22);
	border-radius: 50%;
	box-shadow: 0 8px 25px rgba(10, 46, 115, 0.08);
	font-size: 0.8rem;
	font-weight: 800;
	place-items: center;
}

.process-list h3 {
	margin-bottom: 10px;
	font-size: 1.05rem;
}

.process-list p {
	margin: 0;
	color: var(--neutral);
	font-size: 0.87rem;
}

.metric-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin-top: 35px;
}

.metric-row > div {
	padding: 18px;
	background: var(--light-bg);
	border-radius: 13px;
}

.metric-row strong,
.metric-row span {
	display: block;
}

.metric-row strong {
	color: var(--brand-navy);
}

.metric-row span {
	color: var(--neutral);
	font-size: 0.78rem;
}

.asset-visual {
	position: relative;
	min-height: 410px;
	perspective: 900px;
}

.asset-layer {
	position: absolute;
	right: 6%;
	left: 6%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 118px;
	padding: 25px 38px;
	color: var(--white);
	border-radius: 18px;
	box-shadow: 0 25px 45px rgba(10, 46, 115, 0.18);
	transform: rotateX(58deg) rotateZ(-6deg);
}

.asset-layer span {
	font-size: 0.85rem;
	opacity: 0.7;
}

.asset-layer strong {
	font-size: 1.25rem;
}

.asset-layer--top {
	z-index: 3;
	top: 40px;
	background: var(--tech-blue);
}

.asset-layer--middle {
	z-index: 2;
	top: 135px;
	background: #1556a6;
}

.asset-layer--bottom {
	z-index: 1;
	top: 230px;
	background: var(--brand-navy);
}

.diagnosis-banner {
	padding-block: 80px;
	background: linear-gradient(115deg, #08265f, var(--brand-navy) 60%, #12559f);
}

.diagnosis-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

.diagnosis-banner h2 {
	margin-bottom: 16px;
	color: var(--white);
}

.diagnosis-banner p:last-child {
	max-width: 760px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.68);
}

.diagnosis-banner .button {
	flex: 0 0 auto;
}

.about-visual {
	position: relative;
	overflow: hidden;
	min-height: 440px;
	padding: 55px;
	color: var(--white);
	background:
		linear-gradient(145deg, rgba(10, 46, 115, 0.1), rgba(10, 46, 115, 0.9)),
		var(--tech-blue);
	border-radius: 26px;
}

.about-visual::after {
	position: absolute;
	right: -60px;
	bottom: -100px;
	width: 320px;
	height: 320px;
	border: 45px solid rgba(245, 198, 40, 0.22);
	border-radius: 50%;
	content: "";
}

.about-visual__label {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.25em;
	opacity: 0.6;
}

.about-visual__title {
	margin-top: 65px;
	color: var(--white);
	font-size: 4.6rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1.05;
}

.about-visual p {
	position: absolute;
	z-index: 1;
	bottom: 35px;
	margin: 0;
	color: var(--brand-gold);
	font-weight: 700;
}

.contact-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	padding: 55px 65px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 24px;
	box-shadow: var(--shadow);
}

.contact-panel h2 {
	margin-bottom: 15px;
}

.contact-panel p:last-child {
	max-width: 700px;
	margin-bottom: 0;
	color: var(--neutral);
}

.contact-panel__actions {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.contact-panel__actions span {
	color: var(--neutral);
	font-size: 0.78rem;
}

.page-hero {
	position: relative;
	overflow: hidden;
	padding-block: 105px;
	color: var(--white);
	background: linear-gradient(115deg, #061f52, var(--brand-navy) 60%, #135cae);
}

.page-hero::after {
	position: absolute;
	top: -220px;
	right: -100px;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	box-shadow: 0 0 0 75px rgba(255, 255, 255, 0.025), 0 0 0 150px rgba(255, 255, 255, 0.02);
	content: "";
}

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

.page-hero h1 {
	max-width: 850px;
	margin-bottom: 20px;
	color: var(--white);
	font-size: clamp(2.7rem, 5vw, 4.4rem);
}

.page-hero__description {
	max-width: 720px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.16rem;
}

.quote-card {
	padding: 55px;
	background: var(--brand-navy);
	border-radius: 24px;
	box-shadow: var(--shadow);
}

.quote-card p {
	color: var(--white);
	font-size: 1.65rem;
	font-weight: 700;
	line-height: 1.6;
}

.quote-card span {
	color: var(--brand-gold);
	font-size: 0.85rem;
}

.engine-detail-list {
	display: grid;
	gap: 22px;
}

.engine-detail-list article {
	display: grid;
	grid-template-columns: 100px 1fr;
	align-items: center;
	gap: 30px;
	padding: 38px 45px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.engine-detail-list article:hover {
	box-shadow: var(--shadow);
	transform: translateX(6px);
}

.engine-detail-list article > span {
	color: rgba(27, 126, 237, 0.18);
	font-size: 3.5rem;
	font-weight: 900;
}

.engine-detail-list h2 {
	margin-bottom: 10px;
	font-size: 1.8rem;
}

.engine-detail-list p:last-child {
	margin: 0;
	color: var(--neutral);
}

.matrix-detail-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}

.matrix-detail-card {
	position: relative;
	overflow: hidden;
	padding: 38px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
	box-shadow: 0 16px 40px rgba(10, 46, 115, 0.06);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.matrix-detail-card::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 4px;
	background: var(--tech-blue);
	content: "";
}

.matrix-detail-card:hover {
	border-color: rgba(27, 126, 237, 0.38);
	box-shadow: var(--shadow);
	transform: translateY(-4px);
}

.matrix-detail-card:last-child {
	grid-column: 1 / -1;
}

.matrix-detail-card__head {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 24px;
}

.matrix-detail-card__head > span {
	color: rgba(27, 126, 237, 0.17);
	font-size: 3.25rem;
	font-weight: 900;
	line-height: 1;
}

.matrix-detail-card h2 {
	margin: 0;
	font-size: 1.8rem;
}

.matrix-detail-card .eyebrow {
	margin-bottom: 3px;
}

.matrix-detail-card dl {
	display: grid;
	grid-template-columns: 105px 1fr;
	gap: 11px 18px;
	margin: 0;
}

.matrix-detail-card dt {
	color: var(--brand-navy);
	font-size: 0.82rem;
	font-weight: 800;
}

.matrix-detail-card dd {
	margin: 0;
	color: var(--neutral);
	font-size: 0.92rem;
}

.matrix-positioning {
	min-height: 55px;
	margin-bottom: 25px;
	color: var(--neutral);
}

.deliverable-group {
	padding-top: 22px;
	border-top: 1px solid var(--border);
}

.deliverable-group h3 {
	margin-bottom: 14px;
	font-size: 0.85rem;
}

.deliverable-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.deliverable-tags li {
	padding: 7px 11px;
	color: #355274;
	background: var(--light-bg);
	border: 1px solid #e4e9f1;
	border-radius: 8px;
	font-size: 0.78rem;
	line-height: 1.35;
}

.matrix-detail-card--capital::before {
	background: var(--brand-gold);
}

.matrix-detail-card--government::before {
	background: #39a675;
}

.matrix-detail-card--sales::before {
	background: #745bd8;
}

.matrix-detail-card--channel::before {
	background: #e27e32;
}

.matrix-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 45px;
	margin-top: 38px;
	padding: 42px 48px;
	color: var(--white);
	background: linear-gradient(120deg, var(--brand-navy), #12539e);
	border-radius: 18px;
}

.matrix-cta h2 {
	margin-bottom: 10px;
	color: var(--white);
	font-size: 1.75rem;
}

.matrix-cta p:last-child {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
}

.matrix-cta .button {
	flex: 0 0 auto;
	color: var(--brand-navy);
	background: var(--brand-gold);
	border-color: var(--brand-gold);
}

.plain-list {
	margin-bottom: 0;
	color: var(--neutral);
}

.plain-list li {
	padding: 6px 0;
	border-bottom: 1px solid var(--border);
}

.form-layout {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	align-items: start;
	gap: 70px;
}

.form-layout__aside {
	position: sticky;
	top: 120px;
}

.form-layout__aside h2 {
	margin-bottom: 22px;
}

.form-note {
	margin-top: 30px;
	padding: 16px 18px;
	color: var(--neutral);
	background: var(--light-bg);
	border-left: 3px solid var(--brand-gold);
	border-radius: 0 9px 9px 0;
	font-size: 0.86rem;
}

.static-form {
	padding: 42px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 24px;
	box-shadow: var(--shadow);
}

.diagnosis-section {
	background: linear-gradient(180deg, var(--light-bg), var(--white) 55%);
}

.diagnosis-contact {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: 24px;
	padding-top: 22px;
	border-top: 1px solid var(--border);
}

.diagnosis-contact span {
	margin-bottom: 4px;
	color: var(--neutral);
	font-size: 0.78rem;
}

.diagnosis-contact a {
	color: var(--brand-navy);
	font-weight: 700;
}

.form-section {
	padding: 0;
	margin: 0 0 34px;
	border: 0;
}

.form-section + .form-section {
	padding-top: 30px;
	border-top: 1px solid var(--border);
}

.form-section legend {
	display: flex;
	align-items: center;
	gap: 11px;
	width: 100%;
	margin-bottom: 20px;
	color: var(--brand-navy);
	font-size: 1.03rem;
	font-weight: 800;
}

.form-section legend span {
	display: grid;
	width: 32px;
	height: 32px;
	color: var(--tech-blue);
	background: rgba(27, 126, 237, 0.09);
	border-radius: 9px;
	font-size: 0.68rem;
	place-items: center;
}

.diagnosis-submit {
	min-width: 180px;
}

.diagnosis-followup {
	background: var(--white);
}

.followup-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.followup-steps li {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 28px;
	background: var(--light-bg);
	border: 1px solid var(--border);
	border-radius: 18px;
}

.followup-steps > li > span {
	display: grid;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	color: var(--white);
	background: var(--brand-navy);
	border-radius: 11px;
	font-size: 0.72rem;
	font-weight: 800;
	place-items: center;
}

.followup-steps h3 {
	margin-bottom: 7px;
	font-size: 1.05rem;
}

.followup-steps p {
	margin: 0;
	color: var(--neutral);
	font-size: 0.86rem;
}

.contact-intro {
	margin: 20px 0 28px;
	color: var(--neutral);
}

.social-section {
	background: linear-gradient(180deg, var(--white), var(--light-bg));
}

.social-section--compact {
	background: var(--light-bg);
}

.social-placeholder-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 900px;
	margin-inline: auto;
}

.social-placeholder-card {
	padding: 30px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(10, 46, 115, 0.045);
	text-align: center;
}

.social-placeholder-card__mark {
	display: grid;
	width: 54px;
	height: 54px;
	margin: 0 auto 20px;
	color: var(--brand-navy);
	background: linear-gradient(145deg, rgba(27, 126, 237, 0.11), rgba(245, 198, 40, 0.2));
	border-radius: 15px;
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	place-items: center;
}

.social-placeholder-card h3 {
	margin-bottom: 7px;
	font-size: 1.05rem;
}

.social-placeholder-card p {
	margin: 0;
	color: var(--neutral);
	font-size: 0.84rem;
}

.official-media-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.official-media-card {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 24px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(9, 42, 102, 0.055);
}

.official-media-card__label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 12px;
	color: var(--tech-blue);
	font-size: 0.75rem;
	font-weight: 800;
}

.official-media-card h3 {
	margin-bottom: 8px;
	font-size: 1.08rem;
}

.official-media-card__body > p:not(.official-media-card__label) {
	margin-bottom: 0;
	color: var(--neutral);
	font-size: 0.86rem;
}

.official-media-card__meta {
	display: block;
	margin-top: 10px;
	color: var(--brand-navy);
	font-size: 0.78rem;
	font-weight: 700;
}

.official-media-card__qr {
	display: grid;
	min-height: 116px;
	padding: 14px;
	background: var(--light-bg);
	border: 1px dashed #cfd7e6;
	border-radius: 14px;
	color: var(--neutral);
	font-size: 0.82rem;
	text-align: center;
	place-items: center;
}

.official-media-card__qr img {
	width: 112px;
	height: 112px;
	object-fit: contain;
}

.official-media-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 14px;
	color: var(--white);
	background: var(--tech-blue);
	border-radius: 9px;
	font-size: 0.82rem;
	font-weight: 800;
}

.expert-cta-section {
	background: linear-gradient(120deg, var(--brand-navy), #0d3b83);
}

.expert-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 45px;
	padding: 52px 58px;
	color: var(--white);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 22px;
}

.expert-cta h2 {
	margin-bottom: 14px;
	color: var(--white);
}

.expert-cta p:last-child {
	max-width: 760px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.7);
}

.expert-cta .button {
	flex: 0 0 auto;
}

.expert-hero {
	position: relative;
	overflow: hidden;
	padding-block: 105px;
	color: var(--white);
	background:
		radial-gradient(circle at 80% 25%, rgba(0, 92, 200, 0.42), transparent 35%),
		linear-gradient(120deg, #061f52, var(--brand-navy));
}

.expert-hero__grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	align-items: center;
	gap: 70px;
}

.expert-hero h1 {
	margin-bottom: 22px;
	color: var(--white);
}

.expert-hero p:not(.eyebrow) {
	max-width: 720px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 1.12rem;
}

.expert-hero-card {
	padding: 38px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 24px;
	text-align: center;
	backdrop-filter: blur(16px);
}

.expert-hero-card span {
	display: block;
	color: var(--white);
	font-size: 1.25rem;
	font-weight: 800;
}

.expert-hero-card strong {
	display: block;
	margin: 18px 0;
	color: var(--brand-gold);
	font-size: 3rem;
	line-height: 1;
}

.expert-hero-card p {
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.9rem;
}

.expert-principle-card {
	padding: 34px;
	background: var(--light-bg);
	border: 1px solid var(--border);
	border-radius: 18px;
}

.expert-direction-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.expert-direction-card {
	padding: 28px 23px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(9, 42, 102, 0.045);
}

.expert-direction-card h3 {
	margin-bottom: 12px;
	font-size: 1.12rem;
}

.expert-direction-card p:last-child {
	margin: 0;
	color: var(--neutral);
	font-size: 0.84rem;
}

.expert-task-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.expert-task-grid div {
	padding: 20px 22px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 16px;
	color: var(--brand-navy);
	font-weight: 700;
}

.expert-process {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.expert-process li {
	padding: 20px 12px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 16px;
	text-align: center;
}

.expert-process span {
	display: block;
	margin-bottom: 10px;
	color: var(--tech-blue);
	font-size: 0.74rem;
	font-weight: 900;
}

.expert-process p {
	margin: 0;
	color: var(--brand-navy);
	font-size: 0.84rem;
	font-weight: 800;
}

.compliance-panel {
	padding: 45px 50px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
	box-shadow: 0 14px 35px rgba(9, 42, 102, 0.05);
}

.compliance-panel h2 {
	margin-bottom: 14px;
}

.compliance-panel p:last-child {
	margin: 0;
	color: var(--neutral);
}

.service-boundary-section {
	padding-top: 0;
	background: var(--light-bg);
}

.service-boundary {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: 55px;
	padding: 45px 50px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
	box-shadow: 0 14px 35px rgba(10, 46, 115, 0.05);
}

.service-boundary h2 {
	margin-bottom: 15px;
	font-size: 1.8rem;
}

.service-boundary__intro > p:last-child {
	margin: 0;
	color: var(--neutral);
}

.boundary-list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.boundary-list li {
	position: relative;
	padding: 12px 0 12px 29px;
	color: #445166;
	border-bottom: 1px solid var(--border);
	font-size: 0.9rem;
}

.boundary-list li:last-child {
	border-bottom: 0;
}

.boundary-list li::before {
	position: absolute;
	top: 19px;
	left: 3px;
	width: 9px;
	height: 9px;
	background: var(--brand-gold);
	border-radius: 50%;
	content: "";
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 23px;
}

.form-grid label {
	display: block;
}

.form-grid label > span {
	display: block;
	margin-bottom: 8px;
	color: var(--brand-navy);
	font-size: 0.9rem;
	font-weight: 700;
}

.form-field--full {
	grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
	width: 100%;
	padding: 13px 15px;
	color: var(--ink);
	background: var(--light-bg);
	border: 1px solid transparent;
	border-radius: 9px;
	outline: none;
	transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
	background: var(--white);
	border-color: var(--tech-blue);
	box-shadow: 0 0 0 3px rgba(27, 126, 237, 0.12);
}

.form-grid textarea {
	resize: vertical;
}

.consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 25px 0;
	color: var(--neutral);
	font-size: 0.85rem;
}

.consent input {
	margin-top: 6px;
}

.form-feedback {
	margin: 18px 0 0;
	color: var(--tech-blue);
	font-size: 0.88rem;
	font-weight: 700;
}

.contact-details {
	padding: 0;
	margin: 32px 0;
	list-style: none;
}

.contact-details li {
	padding: 15px 0;
	border-bottom: 1px solid var(--border);
}

.contact-details span,
.contact-details strong {
	display: block;
}

.contact-details span {
	color: var(--neutral);
	font-size: 0.78rem;
}

.contact-details strong {
	color: var(--brand-navy);
}

.entry-title {
	font-size: clamp(2.2rem, 4vw, 3.5rem);
}

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

.site-footer {
	color: rgba(255, 255, 255, 0.63);
	background: #061c47;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.45fr 0.8fr 1fr 1.2fr;
	gap: 55px;
	padding-block: 75px 55px;
}

.footer-logo .site-brand__text strong {
	color: var(--white);
}

.footer-logo .site-brand__text small {
	color: var(--brand-gold);
}

.footer-brand > p {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

.footer-brand > p:first-of-type {
	margin-top: 24px;
}

.footer-brand > p + p {
	margin-top: 6px;
}

.footer-brand > p:nth-of-type(2) {
	color: var(--brand-gold);
}

.footer-title {
	margin-bottom: 22px;
	color: var(--white);
	font-size: 1rem;
	letter-spacing: 0;
}

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

.footer-links li,
.footer-contact li {
	margin-bottom: 10px;
	font-size: 0.88rem;
}

.footer-contact li {
	display: flex;
	flex-direction: column;
	gap: 1px;
	margin-bottom: 14px;
}

.footer-contact span {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.7rem;
	letter-spacing: 0.08em;
}

.footer-contact a,
.footer-contact strong {
	color: rgba(255, 255, 255, 0.76);
	font-weight: 500;
}

.footer-contact a:hover {
	color: var(--brand-gold);
}

.footer-links a:hover {
	color: var(--brand-gold);
}

.footer-action p {
	font-size: 0.88rem;
}

.footer-social {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	align-items: center;
	gap: 45px;
	padding-block: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-social p {
	margin: 0;
	color: rgba(255, 255, 255, 0.48);
	font-size: 0.8rem;
}

.footer-social .footer-title {
	margin-bottom: 6px;
}

.footer-social ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-social li a {
	padding: 11px 13px;
	color: rgba(255, 255, 255, 0.72);
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 9px;
	font-size: 0.75rem;
	font-weight: 700;
}

.footer-social li a:hover {
	color: var(--brand-gold);
}

.official-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.official-link__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	color: currentColor;
}

.official-link__icon svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.footer-social .official-link {
	width: 100%;
	color: rgba(255, 255, 255, 0.86);
}

.footer-social .official-link:hover {
	color: var(--brand-gold);
}

.footer-social .official-link__text {
	white-space: nowrap;
}

.footer-compliance {
	padding-block: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-compliance p {
	max-width: 850px;
	margin: 0;
	color: rgba(255, 255, 255, 0.42);
	font-size: 0.76rem;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	padding-block: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__bottom p {
	margin: 0;
	font-size: 0.78rem;
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@keyframes rotate {
	to {
		transform: rotate(360deg);
	}
}

@keyframes morph {
	0%,
	100% {
		border-radius: 42% 58% 54% 46%;
		transform: translateY(0);
	}
	50% {
		border-radius: 58% 42% 44% 56%;
		transform: translateY(-8px);
	}
}

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

	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

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

@media (max-width: 1100px) {
	.site-header__inner {
		gap: 18px;
	}

	.site-nav__list {
		gap: 16px;
	}

	.site-nav a {
		font-size: 0.85rem;
	}

	.header-cta {
		display: none;
	}

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

	.card-grid--5 {
		grid-template-columns: repeat(3, 1fr);
	}

	.engine-grid {
		grid-template-columns: repeat(3, 1fr);
	}

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

	.audience-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.official-media-grid,
	.expert-direction-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.expert-process {
		grid-template-columns: repeat(4, 1fr);
	}

	.engine-grid--products .engine-card {
		min-height: 365px;
	}

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

	.process-list {
		grid-template-columns: repeat(3, 1fr);
		gap: 35px 0;
	}

	.process-list li::after {
		display: none;
	}

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

	.footer-action {
		grid-column: 1 / -1;
	}
}

@media (max-width: 900px) {
	.site-header {
		height: 70px;
	}

	.header-cta {
		display: inline-flex;
		margin-left: auto;
	}

	.menu-toggle {
		display: block;
		margin-left: 0;
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.site-nav {
		position: fixed;
		top: 70px;
		right: 0;
		left: 0;
		display: none;
		height: calc(100vh - 70px);
		padding: 26px 20px;
		background: var(--white);
		border-top: 1px solid var(--border);
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__list {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.site-nav a {
		padding: 14px 4px;
		border-bottom: 1px solid var(--border);
		font-size: 1rem;
	}

	.site-nav a::after {
		display: none;
	}

	.hero,
	.hero__grid {
		min-height: auto;
	}

	.hero__grid {
		grid-template-columns: 1fr;
		padding-block: 80px;
	}

	.hero-visual {
		width: min(100%, 460px);
	}

	.agent-matrix-visual {
		width: min(100%, 620px);
		margin-inline: auto;
	}

	.split-layout,
	.form-layout {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.split-layout--reverse > :first-child {
		order: initial;
	}

	.form-layout__aside {
		position: static;
	}

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

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

	.contact-panel,
	.diagnosis-banner__inner,
	.matrix-cta {
		align-items: flex-start;
		flex-direction: column;
	}

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

	.service-boundary,
	.footer-social {
		grid-template-columns: 1fr;
	}

	.expert-hero__grid,
	.expert-cta {
		grid-template-columns: 1fr;
	}

	.expert-cta {
		align-items: flex-start;
		flex-direction: column;
	}

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

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

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

	h1 {
		font-size: 2.65rem;
	}

	h2 {
		font-size: 2rem;
	}

	.section {
		padding-block: 60px;
	}

	.header-logo img {
		max-width: 150px;
	}

	.header-cta {
		min-height: 38px;
		padding: 8px 12px;
		font-size: 0.8rem;
	}

	.hero__grid {
		gap: 25px;
		padding-block: 65px;
	}

	.hero h1 span {
		display: inline;
	}

	.hero__subtitle {
		font-size: 1.35rem;
	}

	.hero__lead {
		font-size: 1rem;
	}

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

	.hero__proof {
		display: grid;
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 35px;
	}

	.hero-visual {
		margin-top: 25px;
	}

	.data-chip {
		font-size: 0.7rem;
	}

	.agent-matrix-visual {
		padding: 21px;
	}

	.agent-matrix-visual__top {
		align-items: flex-start;
		flex-direction: column;
	}

	.matrix-engine-list {
		grid-template-columns: repeat(5, minmax(58px, 1fr));
		overflow-x: auto;
		padding-bottom: 4px;
	}

	.matrix-flow {
		align-items: flex-start;
		flex-direction: column;
	}

	.matrix-flow i {
		display: none;
	}

	.card-grid--3,
	.card-grid--4,
	.card-grid--5,
	.engine-grid,
	.engine-grid--products,
	.audience-grid,
	.open-service-list,
	.solution-grid,
	.matrix-detail-grid,
	.followup-steps,
	.social-placeholder-grid,
	.official-media-grid,
	.expert-direction-grid,
	.expert-task-grid,
	.expert-process,
	.process-list,
	.metric-row,
	.form-grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.engine-grid--products .engine-card {
		min-height: auto;
	}

	.audience-card h3 {
		min-height: auto;
		margin-top: 16px;
	}

	.open-service-item,
	.followup-steps li {
		padding: 24px 20px;
	}

	.open-service-item:last-child {
		grid-column: auto;
	}

	.solution-card,
	.matrix-detail-card {
		padding: 27px 24px;
	}

	.solution-card h2 {
		min-height: auto;
	}

	.matrix-detail-card:last-child {
		grid-column: auto;
	}

	.matrix-detail-card dl {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.matrix-detail-card dd + dt {
		margin-top: 12px;
	}

	.matrix-cta {
		padding: 32px 25px;
	}

	.service-boundary {
		padding: 32px 25px;
	}

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

	.expert-hero {
		padding-block: 78px;
	}

	.expert-hero__grid {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.expert-cta,
	.compliance-panel {
		padding: 32px 25px;
	}

	.official-media-card {
		padding: 22px;
	}

	.feature-card,
	.service-card {
		min-height: auto;
		padding: 26px;
	}

	.engine-card {
		min-height: auto;
	}

	.engine-card h3 {
		margin-top: 28px;
	}

	.process-list {
		gap: 28px;
	}

	.process-list li {
		display: flex;
		align-items: flex-start;
		gap: 18px;
		padding: 0;
		text-align: left;
	}

	.process-list > li > span {
		flex: 0 0 48px;
		width: 48px;
		height: 48px;
		margin: 0;
	}

	.asset-visual {
		min-height: 330px;
	}

	.asset-layer {
		right: 2%;
		left: 2%;
		height: 95px;
		padding: 20px;
	}

	.asset-layer--top {
		top: 20px;
	}

	.asset-layer--middle {
		top: 98px;
	}

	.asset-layer--bottom {
		top: 176px;
	}

	.about-visual {
		min-height: 370px;
		padding: 35px;
	}

	.about-visual__title {
		font-size: 3.6rem;
	}

	.contact-panel {
		padding: 35px 27px;
	}

	.page-hero {
		padding-block: 80px;
	}

	.engine-detail-list article {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 30px 25px;
	}

	.engine-detail-list article > span {
		font-size: 2.5rem;
	}

	.static-form {
		padding: 27px 20px;
	}

	.site-footer__grid {
		gap: 38px;
	}

	.footer-logo img {
		max-width: 180px;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
	}
}
