:root {
	--bg: #050506;
	--ink: #f5f7fb;
	--muted: #a9b0bd;
	--red: #dd3a44;
	--red-hot: #ff4d5c;
	--cyan: #19e0c4;
	--amber: #ffbf45;
	--panel: rgba(17, 19, 24, 0.62);
	--panel-2: rgba(22, 26, 34, 0.54);
	--glass: rgba(255, 255, 255, 0.065);
	--glass-soft: rgba(255, 255, 255, 0.035);
	--line: rgba(255, 255, 255, 0.16);
	--line-strong: rgba(255, 255, 255, 0.32);
	--shadow: 0 28px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255,255,255,0.08);
	--card-shadow: 0 22px 70px rgba(0, 0, 0, 0.34), 0 1px 0 rgba(255,255,255,0.08) inset;
	--card-shadow-hover: 0 34px 95px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(255,255,255,0.1) inset, 0 0 42px rgba(221,58,68,0.1);
	--glass-blur: blur(28px) saturate(140%);
	--surface-glow: rgba(25, 224, 196, 0.1);
}

:root[data-theme="light"] {
	--bg: #eef3f8;
	--ink: #10141b;
	--muted: #596273;
	--panel: rgba(255, 255, 255, 0.66);
	--panel-2: rgba(248, 251, 255, 0.58);
	--glass: rgba(255, 255, 255, 0.62);
	--glass-soft: rgba(255, 255, 255, 0.34);
	--line: rgba(35, 48, 66, 0.14);
	--line-strong: rgba(35, 48, 66, 0.24);
	--shadow: 0 24px 80px rgba(47, 65, 88, 0.16), inset 0 1px 0 rgba(255,255,255,0.78);
	--card-shadow: 0 20px 64px rgba(47, 65, 88, 0.15), 0 1px 0 rgba(255,255,255,0.86) inset;
	--card-shadow-hover: 0 34px 90px rgba(47, 65, 88, 0.25), 0 0 0 1px rgba(255,255,255,0.74) inset, 0 0 46px rgba(25,145,130,0.12);
	--glass-blur: blur(30px) saturate(150%);
	--surface-glow: rgba(221, 58, 68, 0.08);
}

* {
	box-sizing: border-box;
}

html {
	background: var(--bg);
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body {
	background:
		linear-gradient(130deg, rgba(221, 58, 68, 0.15), transparent 28%),
		linear-gradient(230deg, rgba(25, 224, 196, 0.11), transparent 36%),
		linear-gradient(180deg, #06070a, #030304 58%, #07090d);
	color: var(--ink);
	font-family: "Open Sans", Arial, sans-serif;
	margin: 0;
	min-width: 320px;
	overflow-x: hidden;
}

:root[data-theme="light"] body {
	background:
		linear-gradient(130deg, rgba(221, 58, 68, 0.12), transparent 30%),
		linear-gradient(230deg, rgba(25, 145, 130, 0.1), transparent 36%),
		linear-gradient(180deg, #f8fbff, #eef3f8 58%, #f4f7fb);
}

body:before {
	background-image:
		linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
	background-size: 44px 44px;
	content: "";
	inset: 0;
	mask-image: linear-gradient(#000, transparent 70%);
	pointer-events: none;
	position: fixed;
	z-index: 0;
}

body > * {
	position: relative;
	z-index: 1;
}

.welcome-loader {
	align-items: center;
	background:
		linear-gradient(135deg, rgba(221, 58, 68, 0.16), transparent 36%),
		linear-gradient(230deg, rgba(25, 224, 196, 0.09), transparent 38%),
		#050506;
	color: #fff;
	display: flex;
	inset: 0;
	justify-content: center;
	overflow: hidden;
	position: fixed;
	text-align: center;
	transition: opacity 1.35s ease, visibility 1.35s ease;
	z-index: 999;
}

.welcome-loader:before {
	background-image:
		linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
	background-size: 38px 38px;
	content: "";
	inset: 0;
	mask-image: linear-gradient(#000, transparent 78%);
	position: absolute;
}

.welcome-loader.is-hidden {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

.welcome-loader img {
	filter: drop-shadow(0 24px 40px rgba(221, 58, 68, 0.34));
	height: auto;
	object-fit: contain;
	position: relative;
	width: 210px;
	z-index: 2;
}

.welcome-core {
	align-items: center;
	display: grid;
	height: 520px;
	justify-items: center;
	position: relative;
	width: 520px;
}

.welcome-core:before {
	background:
		linear-gradient(90deg, transparent 0 18%, rgba(25,224,196,0.22) 18% 19%, transparent 19% 81%, rgba(221,58,68,0.2) 81% 82%, transparent 82%),
		linear-gradient(0deg, transparent 0 22%, rgba(255,255,255,0.11) 22% 23%, transparent 23% 77%, rgba(255,255,255,0.1) 77% 78%, transparent 78%);
	border-radius: 50%;
	content: "";
	height: 420px;
	position: absolute;
	width: 420px;
	z-index: 1;
}

.welcome-orbit {
	animation: welcomeSpin 8s linear infinite;
	border: 1px solid rgba(255,255,255,0.16);
	border-radius: 50%;
	height: 480px;
	position: absolute;
	width: 480px;
	z-index: 1;
}

.orbit-ring {
	border: 1px solid rgba(25, 224, 196, 0.28);
	border-radius: 50%;
	inset: 44px;
	position: absolute;
}

.orbit-ring:nth-child(2) {
	border-color: rgba(221, 58, 68, 0.38);
	inset: 104px;
}

.orbit-node {
	animation: nodePulse 1.8s ease-in-out infinite alternate;
	background: var(--red);
	border: 0;
	border-radius: 50%;
	box-shadow: 0 0 18px rgba(221, 58, 68, 0.7);
	height: 14px;
	left: 50%;
	position: absolute;
	top: 50%;
	width: 14px;
}

.orbit-node:nth-child(3) {
	transform: rotate(0deg) translateX(240px);
}

.orbit-node:nth-child(4) {
	animation-delay: -0.25s;
	background: var(--cyan);
	box-shadow: 0 0 18px rgba(25, 224, 196, 0.7);
	transform: rotate(60deg) translateX(210px);
}

.orbit-node:nth-child(5) {
	animation-delay: -0.5s;
	transform: rotate(125deg) translateX(236px);
}

.orbit-node:nth-child(6) {
	animation-delay: -0.75s;
	background: var(--cyan);
	box-shadow: 0 0 18px rgba(25, 224, 196, 0.7);
	transform: rotate(190deg) translateX(192px);
}

.orbit-node:nth-child(7) {
	animation-delay: -1s;
	transform: rotate(250deg) translateX(232px);
}

.orbit-node:nth-child(8) {
	animation-delay: -1.25s;
	background: var(--cyan);
	box-shadow: 0 0 18px rgba(25, 224, 196, 0.7);
	transform: rotate(310deg) translateX(208px);
}

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

@keyframes nodePulse {
	to {
		opacity: 0.42;
	}
}

@keyframes rotatorFlip {
	0% {
		opacity: 0;
		transform: rotateX(-92deg) translateY(8px);
	}

	58% {
		opacity: 1;
		transform: rotateX(10deg) translateY(0);
	}

	100% {
		opacity: 1;
		transform: rotateX(0deg) translateY(0);
	}
}

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

img {
	max-width: 100%;
}

.site-alert {
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: var(--shadow);
	font-weight: 800;
	left: 50%;
	padding: 14px 18px;
	position: fixed;
	top: 18px;
	transform: translateX(-50%);
	z-index: 50;
}

.site-alert.success {
	background: #063a32;
	color: #8fffea;
}

.site-alert.error {
	background: #3b0b12;
	color: #ffc3ca;
}

.shell-nav {
	align-items: center;
	-webkit-backdrop-filter: var(--glass-blur);
	backdrop-filter: var(--glass-blur);
	background: rgba(8, 9, 12, 0.58);
	border: 1px solid var(--line);
	border-radius: 24px;
	box-shadow: var(--shadow);
	display: flex;
	gap: 18px;
	justify-content: space-between;
	left: 50%;
	padding: 12px 16px;
	position: fixed;
	top: 18px;
	transform: translateX(-50%);
	width: min(1180px, calc(100% - 32px));
	z-index: 30;
}

:root[data-theme="light"] .shell-nav {
	background: rgba(255, 255, 255, 0.58);
}

.brand {
	align-items: center;
	background: transparent;
	border-radius: 18px;
	color: var(--red);
	display: flex;
	gap: 12px;
	height: 58px;
	padding: 0;
	width: 330px;
}

.brand-mark {
	flex: 0 0 72px;
	height: 50px;
	object-fit: contain;
	width: 72px;
}

.brand-copy {
	display: grid;
	line-height: 1;
	min-width: 210px;
}

.brand-copy strong {
	color: var(--ink);
	font-size: 21px;
	font-weight: 800;
	letter-spacing: 0;
}

.brand-copy small {
	color: var(--red);
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	margin-top: 5px;
	text-transform: uppercase;
	white-space: nowrap;
}

.theme-toggle {
	align-items: center;
	-webkit-backdrop-filter: var(--glass-blur);
	backdrop-filter: var(--glass-blur);
	background: var(--glass);
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--ink);
	cursor: pointer;
	display: inline-flex;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.nav-links {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
	margin-left: auto;
}

.nav-links a {
	border: 1px solid transparent;
	border-radius: 999px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
	padding: 11px 13px;
	text-transform: uppercase;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
	background: rgba(221, 58, 68, 0.16);
	border-color: rgba(221, 58, 68, 0.34);
	color: var(--ink);
}

.nav-toggle {
	background: var(--glass-soft);
	border: 1px solid var(--line);
	border-radius: 14px;
	display: none;
	height: 46px;
	width: 78px;
}

.nav-toggle span {
	color: var(--ink);
	font-size: 18px;
}

.nav-toggle b {
	color: var(--ink);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.mobile-nav-toggle {
	display: none;
}

.hero {
	min-height: 100vh;
	overflow: hidden;
	padding: 142px 0 70px;
}

#threat-canvas {
	inset: 0;
	opacity: 0.58;
	position: absolute;
	width: 100%;
	height: 100%;
}

:root[data-theme="light"] #threat-canvas {
	opacity: 0.46;
}

.hero:after {
	background:
		linear-gradient(115deg, rgba(5, 5, 6, 0.98), rgba(5, 5, 6, 0.78) 48%, rgba(221, 58, 68, 0.2)),
		url("../images/home-bg.jpg") center / cover no-repeat;
	content: "";
	inset: 0;
	position: absolute;
	z-index: -1;
}

:root[data-theme="light"] .hero:after {
	background:
		linear-gradient(115deg, rgba(245, 247, 251, 0.96), rgba(245, 247, 251, 0.78) 52%, rgba(221, 58, 68, 0.12)),
		url("../images/home-bg.jpg") center / cover no-repeat;
}

.hero-grid,
.section,
.site-footer {
	margin: 0 auto;
	width: min(1180px, calc(100% - 40px));
}

.hero-grid {
	align-items: end;
	display: grid;
	gap: 36px;
	grid-template-columns: 1fr 360px;
	min-height: calc(100vh - 212px);
}

.hero-grid > *,
.ops-panel {
	min-width: 0;
}

.eyebrow {
	color: var(--cyan);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	margin: 0 0 16px;
	text-transform: uppercase;
}

:root[data-theme="light"] .hero .eyebrow {
	color: #0f4f49;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero h1,
.section h2 {
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
	margin: 0;
}

.hero h1 {
	font-size: 86px;
	max-width: 900px;
}

.hero h1 span {
	background: linear-gradient(90deg, var(--red-hot), var(--red), var(--amber));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.rotator {
	align-items: center;
	color: var(--muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 20px;
	font-weight: 800;
	gap: 10px;
	min-height: 44px;
	margin: 24px 0 30px;
	perspective: 900px;
}

:root[data-theme="light"] .hero .rotator {
	color: #263243;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.48);
}

.rotator span {
	display: none;
}

.rotator span.is-current {
	align-items: center;
	animation: rotatorFlip 1.05s cubic-bezier(.2, .82, .2, 1) both;
	background: linear-gradient(90deg, var(--red-hot), var(--red), var(--amber));
	border-radius: 0;
	box-shadow: 0 16px 36px rgba(221, 58, 68, 0.28);
	color: #fff;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	line-height: 1;
	padding: 9px 13px 10px;
	transform-origin: 50% 50%;
	white-space: nowrap;
}

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

.primary-action,
.secondary-action,
form button {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	justify-content: center;
	min-height: 52px;
	padding: 15px 22px;
	text-transform: uppercase;
}

.primary-action,
form button {
	background: linear-gradient(135deg, var(--red), var(--red-hot));
	box-shadow: 0 18px 50px rgba(221, 58, 68, 0.34);
	color: #fff;
}

.secondary-action {
	-webkit-backdrop-filter: var(--glass-blur);
	backdrop-filter: var(--glass-blur);
	background: var(--glass);
	border: 1px solid var(--line);
	color: var(--ink);
}

.ops-panel {
	-webkit-backdrop-filter: var(--glass-blur);
	backdrop-filter: var(--glass-blur);
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 28px;
	box-shadow: var(--shadow);
	display: grid;
	gap: 1px;
	overflow: hidden;
}

:root[data-theme="light"] .ops-panel,
:root[data-theme="light"] .intel-strip div {
	background: var(--panel);
}

.ops-panel > div {
	background: linear-gradient(135deg, var(--glass), var(--glass-soft));
	padding: 24px;
}

:root[data-theme="light"] .ops-panel > div {
	background: linear-gradient(135deg, rgba(255,255,255,0.76), rgba(255,255,255,0.38));
}

.panel-label {
	color: var(--cyan);
	display: block;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.ops-panel strong,
.about-metrics strong {
	color: var(--ink);
	display: block;
	font-size: 44px;
	font-weight: 800;
	line-height: 1;
	margin: 6px 0;
}

.ops-panel p,
.service-card p,
.solution-timeline p,
.project-grid p,
.training-grid p,
.about p,
.clients p,
.contact p,
.contact li,
.site-footer {
	color: var(--muted);
	line-height: 1.7;
	overflow-wrap: break-word;
}

.intel-strip {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(4, 1fr);
	margin: 30px auto 0;
	width: min(1180px, calc(100% - 40px));
}

.intel-strip div {
	-webkit-backdrop-filter: var(--glass-blur);
	backdrop-filter: var(--glass-blur);
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 18px;
	position: relative;
	overflow: hidden;
}

.intel-strip div:before {
	background: linear-gradient(90deg, var(--red), var(--cyan));
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.intel-strip span,
.assurance-flow span {
	color: var(--cyan);
	display: block;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.intel-strip strong {
	display: block;
	font-size: 15px;
	font-weight: 800;
	margin: 8px 0 6px;
}

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

.section {
	padding: 96px 0;
}

.section-heading {
	display: grid;
	gap: 16px;
	grid-template-columns: 0.72fr 1.28fr;
	margin-bottom: 48px;
}

.section h2 {
	font-size: 46px;
}

.service-board,
.project-grid,
.training-grid,
.logo-wall,
.assurance-flow {
	display: grid;
	gap: 16px;
}

.service-board {
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	position: relative;
}

.service-board:before {
	background:
		linear-gradient(90deg, rgba(221,58,68,0.1), transparent 40%),
		linear-gradient(270deg, rgba(25,224,196,0.09), transparent 42%),
		var(--glass-soft);
	border: 1px solid var(--line);
	border-radius: 34px;
	content: "";
	inset: -20px;
	opacity: 0.8;
	pointer-events: none;
	position: absolute;
}

.service-card {
	--service-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80");
	-webkit-backdrop-filter: var(--glass-blur);
	backdrop-filter: var(--glass-blur);
	background:
		linear-gradient(160deg, rgba(255,255,255,0.15), var(--glass) 34%, var(--glass-soft)),
		var(--panel);
	border: 1px solid var(--line);
	border-radius: 26px;
	box-shadow: var(--card-shadow);
	display: grid;
	grid-template-rows: 136px auto 1fr;
	min-height: 330px;
	overflow: hidden;
	padding: 0 22px 22px;
	position: relative;
	transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
	z-index: 1;
}

.service-card:before {
	background:
		linear-gradient(135deg, rgba(5,5,6,0.18), rgba(5,5,6,0.4)),
		linear-gradient(180deg, rgba(221,58,68,0.12), rgba(25,224,196,0.1)),
		var(--service-image) center / cover no-repeat;
	border-bottom: 1px solid var(--line);
	content: "";
	height: 136px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform-origin: center;
	transition: filter 0.32s ease, transform 0.32s ease;
}

.solution-timeline article:before {
	background: linear-gradient(90deg, var(--red), var(--cyan));
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.service-card:hover,
.project-grid article:hover,
.training-grid a:hover,
.solution-timeline article:hover,
.assurance-flow article:hover,
.about:hover,
.contact-card:hover {
	border-color: var(--line-strong);
	box-shadow: var(--card-shadow-hover);
	transform: translateY(-10px) scale(1.018);
}

.service-card:hover:before {
	filter: saturate(1.14) contrast(1.05);
	transform: scale(1.045);
}

.service-card:nth-child(1) {
	--service-image: url("https://images.unsplash.com/photo-1515879218367-8466d910aaa4?auto=format&fit=crop&w=900&q=80");
}

.service-card:nth-child(2) {
	--service-image: url("https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?auto=format&fit=crop&w=900&q=80");
}

.service-card:nth-child(3) {
	--service-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80");
}

.service-card:nth-child(4) {
	--service-image: url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=900&q=80");
}

.service-card:nth-child(5) {
	--service-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=900&q=80");
}

.service-card:nth-child(6) {
	--service-image: url("https://images.unsplash.com/photo-1555949963-aa79dcee981c?auto=format&fit=crop&w=900&q=80");
}

.service-card:nth-child(7) {
	--service-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=900&q=80");
}

.service-card:nth-child(8) {
	--service-image: url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=900&q=80");
}

.service-card h3,
.service-card p {
	position: relative;
	z-index: 1;
}

.service-card h3 {
	grid-row: 2;
	padding-top: 24px;
}

.service-card p {
	grid-row: 3;
}

.service-card h3,
.solution-timeline h3,
.project-grid h3,
.training-grid span,
.about h3 {
	color: var(--ink);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 10px;
}

.mcp-card,
.api-card {
	background:
		linear-gradient(180deg, rgba(25,224,196,0.12), rgba(221,58,68,0.06)),
		var(--panel);
}

:root[data-theme="light"] .service-card {
	background:
		linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.44)),
		var(--panel);
	border-color: rgba(12, 20, 30, 0.12);
}

.solution-timeline {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(4, 1fr);
}

.solution-timeline article,
.assurance-flow article,
.project-grid article,
.training-grid a,
.contact-card,
.about {
	-webkit-backdrop-filter: var(--glass-blur);
	backdrop-filter: var(--glass-blur);
	background:
		linear-gradient(145deg, rgba(255,255,255,0.14), var(--glass) 42%, var(--glass-soft)),
		var(--panel);
	border: 1px solid var(--line);
	border-radius: 26px;
	box-shadow: var(--card-shadow);
	position: relative;
}

.solution-timeline article,
.assurance-flow article {
	overflow: hidden;
	padding: 28px;
	transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.solution-timeline article span {
	color: var(--cyan);
	display: block;
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 16px;
}

.assurance {
	background:
		linear-gradient(120deg, rgba(221, 58, 68, 0.1), transparent 30%),
		linear-gradient(270deg, rgba(25, 224, 196, 0.09), transparent 42%),
		linear-gradient(180deg, var(--glass-soft), transparent 52%);
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-left: max(20px, calc((100vw - 1180px) / 2));
	padding-right: max(20px, calc((100vw - 1180px) / 2));
	position: relative;
	width: 100vw;
}

.assurance:before {
	background-image:
		linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
	background-size: 34px 34px;
	content: "";
	inset: 0;
	mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
	pointer-events: none;
	position: absolute;
}

:root[data-theme="light"] .assurance:before {
	background-image:
		linear-gradient(rgba(12,20,30,0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(12,20,30,0.05) 1px, transparent 1px);
}

.assurance-flow {
	counter-reset: assurance-step;
	display: grid;
	gap: 0;
	margin: 18px auto 0;
	max-width: 980px;
	position: relative;
}

.assurance-flow:before {
	background: linear-gradient(180deg, var(--red), var(--cyan));
	border-radius: 999px;
	content: "";
	height: 100%;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 4px;
}

.assurance-flow article {
	-webkit-backdrop-filter: var(--glass-blur);
	backdrop-filter: var(--glass-blur);
	background:
		linear-gradient(145deg, rgba(255,255,255,0.14), var(--glass) 42%, var(--glass-soft)),
		var(--panel-2);
	border: 1px solid var(--line);
	border-radius: 22px;
	box-shadow: var(--card-shadow);
	counter-increment: assurance-step;
	margin: 0;
	min-height: 150px;
	overflow: visible;
	padding: 24px;
	position: relative;
	width: calc(50% - 54px);
}

.assurance-flow article:nth-of-type(odd) {
	justify-self: start;
	text-align: right;
}

.assurance-flow article:nth-of-type(even) {
	justify-self: end;
	text-align: left;
}

.assurance-flow article:before {
	align-items: center;
	background: linear-gradient(135deg, var(--red), var(--red-hot));
	border: 5px solid var(--bg);
	border-radius: 50%;
	box-shadow: 0 0 0 1px var(--line), 0 18px 42px rgba(221, 58, 68, 0.26);
	color: #fff;
	content: "0" counter(assurance-step);
	display: flex;
	font-size: 12px;
	font-weight: 800;
	height: 54px;
	justify-content: center;
	position: absolute;
	top: 34px;
	width: 54px;
	z-index: 2;
}

.assurance-flow article:nth-of-type(odd):before {
	right: -82px;
}

.assurance-flow article:nth-of-type(even):before {
	left: -82px;
}

.assurance-flow article:after {
	border-bottom: 12px solid transparent;
	border-top: 12px solid transparent;
	content: "";
	position: absolute;
	top: 48px;
}

.assurance-flow article:nth-of-type(odd):after {
	border-left: 16px solid var(--panel-2);
	right: -15px;
}

.assurance-flow article:nth-of-type(even):after {
	border-right: 16px solid var(--panel-2);
	left: -15px;
}

.assurance-flow article + article {
	margin-top: 28px;
}

.assurance-flow article span {
	background: rgba(25, 224, 196, 0.1);
	border: 1px solid rgba(25, 224, 196, 0.26);
	border-radius: 999px;
	display: inline-flex;
	margin-bottom: 16px;
	padding: 8px 11px;
}

:root[data-theme="light"] .assurance-flow article {
	background:
		linear-gradient(145deg, rgba(255,255,255,0.74), rgba(255,255,255,0.42)),
		var(--panel);
}

:root[data-theme="light"] .assurance-flow article:before {
	border-color: var(--bg);
}

:root[data-theme="light"] .assurance-flow article:nth-of-type(odd):after {
	border-left-color: #fff;
}

:root[data-theme="light"] .assurance-flow article:nth-of-type(even):after {
	border-right-color: #fff;
}

.project-grid {
	align-items: stretch;
	grid-template-columns: repeat(3, 1fr);
}

.project-grid article {
	display: grid;
	grid-template-rows: 96px auto auto 1fr;
	min-height: 300px;
	overflow: hidden;
	padding: 24px;
	transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.project-grid img,
.logo-wall img {
	background: rgba(255,255,255,0.78);
	border-radius: 16px;
	height: 82px;
	object-fit: contain;
	padding: 12px;
	transition: box-shadow 0.24s ease, transform 0.24s ease;
	width: 100%;
}

.project-grid article:hover img {
	transform: scale(1.045);
}

.project-grid article:after {
	background: linear-gradient(180deg, transparent, rgba(25, 224, 196, 0.1));
	bottom: 0;
	content: "";
	height: 64px;
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
}

.project-grid article span {
	align-self: start;
	-webkit-backdrop-filter: var(--glass-blur);
	backdrop-filter: var(--glass-blur);
	background: rgba(25, 224, 196, 0.12);
	border: 1px solid rgba(25, 224, 196, 0.22);
	border-radius: 999px;
	color: var(--cyan);
	display: inline-flex;
	font-size: 11px;
	font-weight: 800;
	justify-self: start;
	margin: 18px 0 12px;
	padding: 7px 10px;
	text-transform: uppercase;
}

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

.training-grid a {
	color: inherit;
	display: block;
	overflow: hidden;
	transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.training-grid img {
	aspect-ratio: 4 / 3;
	display: block;
	object-fit: cover;
	transition: transform 0.32s ease;
	width: 100%;
}

.training-grid a:hover img {
	transform: scale(1.055);
}

.training-grid span,
.training-grid p {
	display: block;
	padding-left: 18px;
	padding-right: 18px;
}

.training-grid span {
	font-size: 15px;
	line-height: 1.25;
	min-height: 58px;
	padding-top: 18px;
}

.training-grid p {
	margin-bottom: 20px;
}

.about {
	display: grid;
	gap: 28px;
	grid-template-columns: 1.45fr 0.55fr;
	padding: 38px;
	transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.about-copy p {
	margin-top: 0;
}

.about-metrics {
	align-content: center;
	-webkit-backdrop-filter: var(--glass-blur);
	backdrop-filter: var(--glass-blur);
	background:
		linear-gradient(180deg, rgba(221,58,68,0.12), rgba(25,224,196,0.08)),
		var(--glass-soft);
	border: 1px solid var(--line);
	border-radius: 22px;
	display: grid;
	gap: 18px;
	padding: 24px;
	box-shadow: var(--card-shadow);
}

.metric-pair {
	border-bottom: 1px solid var(--line);
	padding-bottom: 16px;
}

.metric-pair:last-of-type {
	border-bottom: 0;
	padding-bottom: 0;
}

.about-metrics span {
	color: var(--muted);
}

.capability-list {
	display: grid;
	gap: 10px;
	margin-top: 4px;
}

.capability-list p {
	-webkit-backdrop-filter: var(--glass-blur);
	backdrop-filter: var(--glass-blur);
	background: var(--glass);
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(0,0,0,0.1);
	margin: 0;
	padding: 14px;
	transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.capability-list p:hover {
	border-color: var(--line-strong);
	box-shadow: var(--card-shadow-hover);
	transform: translateY(-4px);
}

.capability-list b {
	color: var(--ink);
	display: block;
	font-size: 13px;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.capability-list span {
	display: block;
	font-size: 13px;
	line-height: 1.55;
}

:root[data-theme="light"] .capability-list p {
	background: rgba(255,255,255,0.52);
}

.clients > p {
	max-width: 980px;
}

.logo-wall {
	grid-template-columns: repeat(11, minmax(92px, 1fr));
	margin-top: 26px;
}

.logo-wall img:hover {
	box-shadow: var(--card-shadow-hover);
	transform: translateY(-5px) scale(1.04);
}

.contact-card {
	display: grid;
	gap: 32px;
	grid-template-columns: 0.9fr 1.1fr;
	padding: 38px;
	transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.contact ul {
	list-style: none;
	margin: 26px 0 0;
	padding: 0;
}

.contact li {
	margin-bottom: 14px;
}

.contact i {
	color: var(--cyan);
	margin-right: 8px;
	width: 18px;
}

form {
	display: grid;
	gap: 12px;
}

label {
	color: var(--ink);
	font-size: 12px;
	font-weight: 800;
}

input,
textarea {
	-webkit-backdrop-filter: var(--glass-blur);
	backdrop-filter: var(--glass-blur);
	background: var(--glass);
	border: 1px solid var(--line);
	border-radius: 16px;
	color: var(--ink);
	font: inherit;
	min-height: 52px;
	padding: 13px 15px;
	width: 100%;
}

textarea {
	min-height: 136px;
	resize: vertical;
}

input:focus,
textarea:focus {
	border-color: var(--cyan);
	box-shadow: 0 0 0 4px rgba(25, 224, 196, 0.12);
	outline: 0;
}

form button {
	border: 0;
	cursor: pointer;
	justify-self: start;
	margin-top: 8px;
}

.site-footer {
	align-items: center;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	padding: 28px 0 36px;
}

.site-footer p {
	margin: 0;
}

.site-footer a {
	align-items: center;
	background: rgba(255,255,255,0.06);
	border: 1px solid var(--line);
	border-radius: 999px;
	display: inline-flex;
	height: 38px;
	justify-content: center;
	margin-left: 8px;
	width: 38px;
}

.whatsapp-float {
	align-items: center;
	-webkit-backdrop-filter: var(--glass-blur);
	backdrop-filter: var(--glass-blur);
	background: rgba(33, 212, 102, 0.9);
	border-radius: 999px;
	bottom: 24px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
	display: flex;
	height: 66px;
	justify-content: center;
	position: fixed;
	right: 24px;
	width: 66px;
	z-index: 40;
}

.whatsapp-float img {
	height: 36px;
	width: 36px;
}

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

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

@media (prefers-reduced-motion: reduce) {
	.service-card,
	.solution-timeline article,
	.assurance-flow article,
	.project-grid article,
	.training-grid a,
	.about,
	.contact-card,
	.capability-list p,
	.logo-wall img,
	.project-grid img,
	.training-grid img,
	.service-card:before {
		transition: none;
	}

	.service-card:hover,
	.solution-timeline article:hover,
	.assurance-flow article:hover,
	.project-grid article:hover,
	.training-grid a:hover,
	.about:hover,
	.contact-card:hover,
	.capability-list p:hover,
	.logo-wall img:hover,
	.project-grid article:hover img,
	.training-grid a:hover img,
	.service-card:hover:before {
		transform: none;
	}
}

@media (max-width: 1120px) {
	.hero h1 {
		font-size: 64px;
	}

	.section h2 {
		font-size: 38px;
	}

	.hero-grid,
	.about,
	.contact-card {
		grid-template-columns: 1fr;
	}

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

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

	.service-card,
	.mcp-card,
	.api-card {
		grid-column: auto;
	}

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

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

	.logo-wall {
		grid-template-columns: repeat(6, 1fr);
	}
}

@media (max-width: 760px) {
	.welcome-core {
		height: 360px;
		width: 360px;
	}

	.welcome-core:before {
		height: 292px;
		width: 292px;
	}

	.welcome-orbit {
		height: 330px;
		width: 330px;
	}

	.welcome-loader img {
		width: 150px;
	}

	.orbit-ring {
		inset: 30px;
	}

	.orbit-ring:nth-child(2) {
		inset: 74px;
	}

	.orbit-node {
		height: 11px;
		width: 11px;
	}

	.orbit-node:nth-child(3) {
		transform: rotate(0deg) translateX(165px);
	}

	.orbit-node:nth-child(4) {
		transform: rotate(60deg) translateX(144px);
	}

	.orbit-node:nth-child(5) {
		transform: rotate(125deg) translateX(162px);
	}

	.orbit-node:nth-child(6) {
		transform: rotate(190deg) translateX(132px);
	}

	.orbit-node:nth-child(7) {
		transform: rotate(250deg) translateX(160px);
	}

	.orbit-node:nth-child(8) {
		transform: rotate(315deg) translateX(136px);
	}

	.shell-nav {
		align-items: center;
		border-radius: 20px;
		display: grid;
		gap: 6px;
		grid-template-columns: minmax(0, 1fr);
		min-height: 70px;
		padding: 8px 58px 8px 8px;
		width: min(1180px, calc(100% - 20px));
	}

	.brand {
		height: 52px;
		min-width: 0;
		overflow: hidden;
		padding: 6px 6px 6px 4px;
		width: auto;
	}

	.brand-mark {
		flex: 0 0 54px;
		height: 40px;
		width: 54px;
	}

	.brand-copy {
		min-width: 0;
	}

	.brand-copy strong {
		font-size: 18px;
		line-height: 1;
	}

	.brand-copy small {
		font-size: 8px;
		letter-spacing: 0.04em;
		line-height: 1.15;
		max-width: 132px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.nav-toggle {
		display: none !important;
	}

	.mobile-nav-toggle {
		align-items: center;
		background: rgba(221, 58, 68, 0.94);
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 14px;
		box-shadow: 0 14px 34px rgba(221, 58, 68, 0.3);
		color: #fff;
		display: inline-flex;
		height: 42px;
		justify-content: center;
		position: fixed;
		right: 20px;
		top: 32px;
		width: 42px;
		z-index: 80;
	}

	.mobile-nav-toggle span {
		color: #fff;
		font-size: 18px;
	}

	.nav-toggle b {
		color: #fff;
		display: none;
	}

	.theme-toggle {
		display: none;
		grid-column: 1 / -1;
		height: 42px;
		justify-self: stretch;
		width: 100%;
	}

	.shell-nav.is-open .theme-toggle {
		display: inline-flex;
	}

	.nav-links {
		display: none;
		gap: 8px;
		grid-column: 1 / -1;
		justify-content: center;
		justify-items: center;
		margin: 12px -50px 0 0;
		padding: 12px 16px 6px;
	}

	.shell-nav.is-open .nav-links {
		display: grid;
	}

	.nav-links a {
		display: inline-flex;
		justify-content: center;
		text-align: center;
		width: min(100%, 260px);
	}

	.shell-nav.is-open .theme-toggle {
		margin-right: -50px;
		width: calc(100% + 50px);
	}

	.hero {
		min-height: auto;
		padding-top: 114px;
	}

	.hero-grid,
	.section,
	.site-footer {
		width: min(100% - 28px, 1180px);
	}

	.hero h1 {
		font-size: 35px;
		max-width: 360px;
	}

	.hero-copy p {
		max-width: 100%;
	}

	.rotator {
		font-size: 16px;
		min-height: 52px;
	}

	.hero-actions {
		display: grid;
		grid-template-columns: 1fr;
		max-width: 330px;
	}

	.primary-action,
	.secondary-action {
		width: 100%;
	}

	.ops-panel p {
		font-size: 15px;
		max-width: 260px;
	}

	.ops-panel,
	.intel-strip,
	.section-heading,
	.service-board,
	.solution-timeline,
	.assurance-flow,
	.project-grid,
	.training-grid,
	.logo-wall,
	.site-footer {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 68px 0;
	}

	.section-heading {
		gap: 10px;
		margin-bottom: 30px;
	}

	.section h2 {
		font-size: 31px;
	}

	.service-card,
	.mcp-card,
	.api-card {
		grid-column: auto;
		min-height: auto;
	}

	.contact-card,
	.about {
		padding: 24px;
	}

	.assurance-flow:before {
		display: block;
		height: auto;
		left: 18px;
		top: 12px;
		bottom: 12px;
		transform: none;
		width: 3px;
	}

	.assurance-flow {
		gap: 18px;
		margin-top: 4px;
		max-width: 100%;
		padding-left: 48px;
	}

	.assurance-flow article,
	.assurance-flow article:nth-of-type(odd),
	.assurance-flow article:nth-of-type(even) {
		justify-self: stretch;
		min-height: auto;
		padding: 22px;
		text-align: left;
		width: 100%;
	}

	.assurance-flow article:before {
		border-width: 4px;
		font-size: 11px;
		height: 40px;
		left: -50px !important;
		margin-bottom: 0;
		position: absolute;
		right: auto !important;
		top: 22px;
		width: 40px;
	}

	.assurance-flow article:after {
		display: none;
	}

	.assurance-flow article + article {
		margin-top: 0;
	}

	.assurance-flow article span {
		margin-bottom: 12px;
	}

	.site-footer {
		display: grid;
		gap: 16px;
	}
}

@media (max-width: 430px) {
	.shell-nav {
		grid-template-columns: minmax(0, 1fr);
		padding: 8px 56px 8px 8px;
		width: calc(100% - 20px);
	}

	.brand {
		border-radius: 16px;
		width: auto;
	}

	.brand-mark {
		flex-basis: 48px;
		height: 36px;
		width: 48px;
	}

	.brand-copy strong {
		font-size: 17px;
	}

	.brand-copy small {
		font-size: 7px;
		max-width: 116px;
	}

	.nav-toggle {
		height: 40px;
		left: auto;
		position: fixed;
		right: 20px;
		top: 32px;
		width: 40px;
	}

	.mobile-nav-toggle {
		height: 40px;
		right: 18px;
		top: 32px;
		width: 40px;
	}

	.nav-toggle b {
		display: none;
	}

	.theme-toggle {
		height: 40px;
		width: 100%;
	}

	.welcome-core {
		height: 310px;
		width: 310px;
	}

	.welcome-core:before {
		height: 250px;
		width: 250px;
	}

	.welcome-orbit {
		height: 286px;
		width: 286px;
	}

	.welcome-loader img {
		width: 130px;
	}

	.orbit-ring {
		inset: 28px;
	}

	.orbit-ring:nth-child(2) {
		inset: 62px;
	}

	.orbit-node:nth-child(3) {
		transform: rotate(0deg) translateX(143px);
	}

	.orbit-node:nth-child(4) {
		transform: rotate(60deg) translateX(125px);
	}

	.orbit-node:nth-child(5) {
		transform: rotate(125deg) translateX(140px);
	}

	.orbit-node:nth-child(6) {
		transform: rotate(190deg) translateX(114px);
	}

	.orbit-node:nth-child(7) {
		transform: rotate(250deg) translateX(138px);
	}

	.orbit-node:nth-child(8) {
		transform: rotate(315deg) translateX(118px);
	}

	.hero h1 {
		font-size: 31px;
		max-width: 318px;
	}

	.assurance-flow {
		padding-left: 42px;
	}

	.assurance-flow:before {
		left: 15px;
	}

	.assurance-flow article,
	.assurance-flow article:nth-of-type(odd),
	.assurance-flow article:nth-of-type(even) {
		padding: 20px;
	}

	.assurance-flow article:before {
		height: 36px;
		left: -44px !important;
		top: 20px;
		width: 36px;
	}

	.eyebrow {
		font-size: 11px;
		line-height: 1.5;
		max-width: 310px;
	}

	.ops-panel strong,
	.about-metrics strong {
		font-size: 40px;
	}

	.ops-panel p,
	.service-card p,
	.solution-timeline p,
	.project-grid p,
	.training-grid p,
	.about p,
	.clients p,
	.contact p,
	.contact li {
		overflow-wrap: anywhere;
	}
}
