:root {
	--bcg-navy: #082A66;
	--bcg-blue: #1565E5;
	--bcg-electric: #55B6FF;
	--bcg-violet: #6F5CFF;
	--bcg-bg: #060606;
	--bcg-soft: #0D0F14;
	--bcg-paper: #F7F9FC;
	--bcg-white: #FFFFFF;
	--bcg-border: rgba(232, 237, 245, 0.14);
	--bcg-border-light: #E8EDF5;
	--bcg-muted: #909090;
	--bcg-text: #FFFFFF;
	--bcg-ink: #09111F;
	--bcg-radius: 8px;
	--bcg-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
	--bcg-max: 1180px;
	--spot-x: 50%;
	--spot-y: 50%;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bcg-bg);
	color: var(--bcg-text);
	font-family: Inter, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	overflow-x: hidden;
}

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;
}

.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;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 16px;
	left: 16px;
	width: auto;
	height: auto;
	padding: 12px 14px;
	clip: auto;
	background: var(--bcg-white);
	color: var(--bcg-ink);
	border-radius: var(--bcg-radius);
}

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

.narrow {
	width: min(calc(100% - 40px), 850px);
}

.section-pad {
	padding: 118px 0;
}

.dark-band {
	position: relative;
	background:
		linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 100%) center / 72px 72px,
		linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 100%) center / 72px 72px,
		var(--bcg-bg);
	color: var(--bcg-text);
	overflow: hidden;
}

.light-band {
	background: var(--bcg-paper);
	color: var(--bcg-ink);
}

.light-reactive::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(560px circle at var(--spot-x) var(--spot-y), rgba(21, 101, 229, 0.22), transparent 62%);
	pointer-events: none;
	opacity: 0.9;
}

.site-header {
	position: fixed;
	z-index: 50;
	top: 20px;
	left: 0;
	right: 0;
	pointer-events: none;
}

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

.header-shell {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	width: min(calc(100% - 40px), 1240px);
	min-height: 68px;
	margin-inline: auto;
	padding: 10px 12px 10px 16px;
	border: 1px solid var(--bcg-border);
	border-radius: var(--bcg-radius);
	background: rgba(6, 6, 6, 0.72);
	box-shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
	backdrop-filter: blur(18px);
	pointer-events: auto;
	transition: background 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.is-scrolled .header-shell {
	background: rgba(6, 6, 6, 0.92);
	border-color: rgba(85, 182, 255, 0.22);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	font-family: "Inter Tight", Inter, Arial, sans-serif;
	font-weight: 800;
	font-size: 20px;
	line-height: 1;
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: var(--bcg-radius);
	background: linear-gradient(135deg, var(--bcg-navy), var(--bcg-blue) 62%, var(--bcg-electric));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 16px 38px rgba(21, 101, 229, 0.24);
	color: var(--bcg-white);
	font-size: 13px;
}

.brand-text {
	white-space: nowrap;
}

.custom-logo-link img {
	max-width: 220px;
	max-height: 54px;
	width: auto;
}

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

.nav-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.nav-menu > li {
	position: relative;
}

.nav-menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	color: rgba(255, 255, 255, 0.68);
	font-weight: 600;
}

.nav-menu > li > a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 6px;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--bcg-blue), var(--bcg-electric));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 220ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
	color: var(--bcg-white);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a:focus-visible::after {
	transform: scaleX(1);
}

.sub-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	display: grid;
	gap: 4px;
	width: 270px;
	padding: 12px;
	margin: 0;
	list-style: none;
	border: 1px solid var(--bcg-border);
	border-radius: var(--bcg-radius);
	background: rgba(13, 15, 20, 0.96);
	box-shadow: var(--bcg-shadow);
	backdrop-filter: blur(18px);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 10px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.sub-menu a {
	min-height: 42px;
	padding: 0 12px;
	border-radius: var(--bcg-radius);
	color: rgba(255, 255, 255, 0.7);
}

.sub-menu a:hover,
.sub-menu a:focus-visible {
	background: rgba(21, 101, 229, 0.16);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--bcg-border);
	border-radius: var(--bcg-radius);
	background: rgba(255, 255, 255, 0.04);
	color: var(--bcg-white);
}

.menu-toggle span {
	display: block;
	width: 19px;
	height: 2px;
	margin: 5px auto;
	background: currentColor;
	border-radius: 999px;
	transition: transform 180ms ease;
}

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

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

.button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 46px;
	padding: 0 14px 0 18px;
	border: 1px solid transparent;
	border-radius: var(--bcg-radius);
	font-weight: 700;
	white-space: nowrap;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
}

.button-primary,
.button-header {
	background: linear-gradient(135deg, var(--bcg-blue), var(--bcg-electric));
	color: var(--bcg-white);
	box-shadow: 0 18px 45px rgba(21, 101, 229, 0.25), inset 0 1px 0 rgba(255,255,255,0.32);
}

.button-ghost {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.04);
	color: var(--bcg-white);
}

.light-band .button-ghost {
	border-color: rgba(8, 42, 102, 0.18);
	color: var(--bcg-ink);
}

.button i {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: var(--bcg-radius);
	background: rgba(255, 255, 255, 0.16);
}

.button i::before,
.button i::after {
	content: "";
	position: absolute;
	background: currentColor;
}

.button i::before {
	width: 12px;
	height: 2px;
}

.button i::after {
	width: 8px;
	height: 8px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	background: transparent;
	transform: translateX(2px) rotate(45deg);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 15px;
	margin: 0 0 22px;
	border: 1px solid rgba(85, 182, 255, 0.32);
	border-radius: var(--bcg-radius);
	background: rgba(21, 101, 229, 0.14);
	color: #A9DFFF;
	font-weight: 800;
	font-size: 13px;
}

.hero {
	position: relative;
	min-height: 1180px;
	padding: 190px 0 0;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 100%) center / 76px 76px,
		linear-gradient(0deg, rgba(255,255,255,0.028) 0 1px, transparent 1px 100%) center / 76px 76px,
		var(--bcg-bg);
}

.hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 160px;
	height: 260px;
	background: linear-gradient(90deg, transparent, rgba(21,101,229,0.1), rgba(85,182,255,0.34), rgba(111,92,255,0.16), transparent);
	filter: blur(34px);
	animation: gradientFlow 8s ease-in-out infinite alternate;
}

.hero-ambient,
.hero-grid,
.hero-dashboard,
.page-hero > .container,
.footer-cta-inner {
	position: relative;
	z-index: 2;
}

.light-wave {
	position: absolute;
	display: block;
	width: 54vw;
	height: 620px;
	border: 1px solid rgba(255,255,255,0.04);
	background: linear-gradient(180deg, rgba(21,101,229,0.18), rgba(255,255,255,0.018));
	transform: skewX(-18deg);
}

.wave-one {
	top: -160px;
	left: -24vw;
}

.wave-two {
	top: -140px;
	right: -24vw;
}

.grid-plane {
	position: absolute;
	left: 50%;
	top: 320px;
	width: 760px;
	height: 760px;
	border: 1px solid rgba(85, 182, 255, 0.12);
	background:
		linear-gradient(90deg, rgba(85,182,255,0.08) 0 1px, transparent 1px 100%) center / 36px 36px,
		linear-gradient(0deg, rgba(85,182,255,0.08) 0 1px, transparent 1px 100%) center / 36px 36px;
	transform: translateX(-50%) rotateX(58deg) rotateZ(45deg);
	opacity: 0.5;
}

.hero-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 64px;
	align-items: center;
}

.hero-copy h1,
.page-hero h1,
.footer-cta h2 {
	margin: 0;
	font-family: "Inter Tight", Inter, Arial, sans-serif;
	font-weight: 800;
	line-height: 0.96;
}

.hero-copy h1 {
	font-size: 76px;
}

.hero-copy p:not(.eyebrow) {
	max-width: 640px;
	margin: 26px 0 34px;
	color: rgba(255,255,255,0.72);
	font-size: 20px;
}

.hero-system {
	position: relative;
	min-height: 620px;
	border: 1px solid var(--bcg-border);
	border-radius: var(--bcg-radius);
	background:
		linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 100%) center / 42px 42px,
		linear-gradient(0deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 100%) center / 42px 42px,
		rgba(13, 15, 20, 0.6);
	box-shadow: var(--bcg-shadow);
	overflow: hidden;
}

.system-core,
.system-node,
.architecture-panel {
	position: absolute;
	border: 1px solid rgba(85, 182, 255, 0.18);
	border-radius: var(--bcg-radius);
	background: rgba(6, 6, 6, 0.72);
	backdrop-filter: blur(14px);
}

.system-core {
	left: 50%;
	top: 50%;
	display: grid;
	place-items: center;
	width: 148px;
	height: 148px;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 90px rgba(85, 182, 255, 0.28);
	animation: floatSoft 5.5s ease-in-out infinite;
}

.system-core span {
	font-family: "Inter Tight", Inter, Arial, sans-serif;
	font-weight: 800;
	font-size: 36px;
}

.system-core i {
	position: absolute;
	inset: -72px;
	border: 1px solid rgba(85, 182, 255, 0.16);
	border-radius: 999px;
	animation: rotateSlow 24s linear infinite;
}

.system-node {
	display: grid;
	place-items: center;
	width: 132px;
	min-height: 64px;
	color: rgba(255,255,255,0.86);
	animation: floatSoft 7s ease-in-out infinite;
}

.node-1 { top: 72px; left: 50%; transform: translateX(-50%); }
.node-2 { top: 180px; right: 44px; animation-delay: -1s; }
.node-3 { bottom: 140px; right: 76px; animation-delay: -2s; }
.node-4 { bottom: 76px; left: 50%; transform: translateX(-50%); animation-delay: -3s; }
.node-5 { bottom: 140px; left: 76px; animation-delay: -4s; }
.node-6 { top: 180px; left: 44px; animation-delay: -5s; }

.architecture-panel {
	width: 210px;
	padding: 16px;
	display: grid;
	gap: 10px;
}

.panel-one {
	left: 24px;
	top: 36px;
}

.panel-two {
	right: 24px;
	bottom: 36px;
}

.architecture-panel span {
	display: block;
	height: 10px;
	border-radius: 999px;
	background: rgba(255,255,255,0.16);
}

.architecture-panel span:first-child {
	width: 70%;
	background: var(--bcg-electric);
}

.hero-dashboard {
	display: grid;
	grid-template-columns: 210px 1fr;
	gap: 16px;
	min-height: 520px;
	margin-top: 120px;
	padding: 16px;
	border: 1px solid var(--bcg-border);
	border-radius: var(--bcg-radius);
	background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
	box-shadow: var(--bcg-shadow);
}

.dash-sidebar,
.dash-main,
.dash-cards div,
.glass-card,
.glow-card,
.testimonial-card,
.job-card,
.contact-panel,
.contact-details,
.detail-panel,
.toc-card,
.team-card,
.insight-card,
.service-card,
.industry-card {
	border: 1px solid var(--bcg-border);
	border-radius: var(--bcg-radius);
	background: rgba(13, 15, 20, 0.86);
}

.dash-sidebar {
	padding: 22px;
}

.dash-sidebar strong {
	display: block;
	margin-bottom: 8px;
	font-size: 24px;
}

.dash-sidebar span {
	color: rgba(255,255,255,0.56);
}

.dash-sidebar i {
	display: block;
	height: 44px;
	margin-top: 18px;
	border-radius: var(--bcg-radius);
	background: rgba(255,255,255,0.06);
}

.dash-main {
	padding: 24px;
}

.dash-top {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.dash-top p,
.dash-top span {
	margin: 0;
}

.dash-top span {
	color: rgba(255,255,255,0.56);
}

.dash-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.dash-cards div {
	padding: 22px;
	background: rgba(255,255,255,0.035);
}

.dash-cards span {
	display: block;
	color: rgba(255,255,255,0.62);
}

.dash-cards strong,
.dash-cards em {
	font-style: normal;
	font-size: 44px;
	line-height: 1;
	font-weight: 800;
}

.dash-chart {
	display: flex;
	align-items: end;
	gap: 12px;
	height: 220px;
	margin-top: 18px;
	padding: 26px;
	border-radius: var(--bcg-radius);
	background: linear-gradient(180deg, rgba(21,101,229,0.18), rgba(255,255,255,0.03));
}

.dash-chart i {
	flex: 1;
	border-radius: 8px 8px 0 0;
	background: linear-gradient(180deg, var(--bcg-electric), rgba(21,101,229,0.1));
	transform-origin: bottom;
	animation: barPulse 3s ease-in-out infinite;
}

.dash-chart i:nth-child(1) { height: 36%; }
.dash-chart i:nth-child(2) { height: 48%; animation-delay: -0.4s; }
.dash-chart i:nth-child(3) { height: 44%; animation-delay: -0.8s; }
.dash-chart i:nth-child(4) { height: 66%; animation-delay: -1.2s; }
.dash-chart i:nth-child(5) { height: 58%; animation-delay: -1.6s; }
.dash-chart i:nth-child(6) { height: 72%; animation-delay: -2s; }
.dash-chart i:nth-child(7) { height: 82%; animation-delay: -2.4s; }

.marquee-section {
	overflow: hidden;
	padding: 34px 0;
	border-top: 1px solid var(--bcg-border);
	border-bottom: 1px solid var(--bcg-border);
	background: var(--bcg-bg);
}

.marquee-track {
	display: flex;
	width: max-content;
	gap: 42px;
	animation: marqueeMove 28s linear infinite;
}

.marquee-track span {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: rgba(255,255,255,0.48);
	font-family: "Inter Tight", Inter, Arial, sans-serif;
	font-size: 24px;
	font-weight: 800;
	white-space: nowrap;
}

.marquee-track span::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--bcg-electric);
	box-shadow: 0 0 24px rgba(85,182,255,0.74);
}

.section-header {
	display: grid;
	justify-items: center;
	width: min(760px, 100%);
	margin: 0 auto 68px;
	text-align: center;
}

.section-header-left {
	justify-items: start;
	margin-left: 0;
	text-align: left;
}

.section-header h2,
.split h2,
.faq-layout h2 {
	margin: 0;
	font-family: "Inter Tight", Inter, Arial, sans-serif;
	font-size: 56px;
	line-height: 1;
}

.section-header p:not(.eyebrow) {
	max-width: 660px;
	margin: 20px 0 0;
	color: rgba(255,255,255,0.68);
	font-size: 18px;
}

.light-band .section-header p:not(.eyebrow),
.light-band .split p,
.light-band .entry-content {
	color: rgba(9, 17, 31, 0.68);
}

.approach {
	background: var(--bcg-bg);
}

.card-grid,
.approach-grid,
.values-grid,
.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

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

.glass-card,
.glow-card,
.service-card,
.testimonial-card,
.job-card,
.team-card {
	position: relative;
	padding: 26px;
	overflow: hidden;
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.glass-card::after,
.glow-card::after,
.service-card::after,
.industry-card::after {
	content: "";
	position: absolute;
	inset: auto -20% -50% -20%;
	height: 150px;
	background: linear-gradient(90deg, transparent, rgba(85,182,255,0.28), transparent);
	filter: blur(22px);
	opacity: 0;
	transition: opacity 220ms ease;
}

.glass-card:hover,
.glow-card:hover,
.service-card:hover,
.industry-card:hover,
.team-card:hover {
	transform: translateY(-6px);
	border-color: rgba(85,182,255,0.36);
	box-shadow: 0 24px 70px rgba(21,101,229,0.15);
}

.glass-card:hover::after,
.glow-card:hover::after,
.service-card:hover::after,
.industry-card:hover::after {
	opacity: 1;
}

.glass-card span,
.card-icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin-bottom: 34px;
	border-radius: var(--bcg-radius);
	background: linear-gradient(135deg, var(--bcg-navy), var(--bcg-blue));
	color: var(--bcg-white);
	font-weight: 800;
}

.glass-card h3,
.glow-card h3,
.service-card h3,
.industry-card h3,
.testimonial-card h3,
.insight-card h2,
.insight-card h3,
.job-card h2 {
	margin: 0 0 12px;
	font-family: "Inter Tight", Inter, Arial, sans-serif;
	font-size: 25px;
	line-height: 1.12;
}

.glass-card p,
.glow-card p,
.service-card p,
.industry-card p,
.testimonial-card p,
.job-card p,
.insight-card p {
	color: rgba(255,255,255,0.66);
}

.light-band .glass-card,
.light-band .glow-card,
.light-band .team-card,
.light-band .contact-panel,
.light-band .contact-details,
.light-band .detail-panel,
.light-band .toc-card {
	background: var(--bcg-white);
	border-color: var(--bcg-border-light);
}

.light-band .glass-card p,
.light-band .glow-card p,
.light-band .team-card p,
.light-band .job-card p {
	color: rgba(9, 17, 31, 0.66);
}

.service-card ul,
.detail-panel ul,
.glow-card ul,
.entry-content ul {
	display: grid;
	gap: 10px;
	padding-left: 20px;
}

.service-card a,
.insight-card a,
.industry-card a {
	position: relative;
	z-index: 1;
}

.service-card > a {
	display: inline-flex;
	margin-top: 12px;
	color: #A9DFFF;
	font-weight: 800;
}

.split {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 68px;
	align-items: center;
}

.split p {
	font-size: 19px;
}

.principle-list {
	display: grid;
	gap: 12px;
}

.principle-list div {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 62px;
	padding: 0 18px;
	border: 1px solid rgba(8,42,102,0.1);
	border-radius: var(--bcg-radius);
	background: rgba(255,255,255,0.78);
	font-weight: 700;
}

.principle-list span {
	width: 16px;
	height: 16px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--bcg-blue), var(--bcg-electric));
}

.industry-card {
	position: relative;
	overflow: hidden;
}

.industry-card a {
	display: grid;
	gap: 20px;
	padding: 14px;
}

.industry-image,
.insight-image,
.team-image,
.single-media {
	overflow: hidden;
	border-radius: var(--bcg-radius);
	background:
		linear-gradient(135deg, rgba(8,42,102,0.95), rgba(21,101,229,0.55), rgba(85,182,255,0.22)),
		linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 100%) center / 34px 34px;
}

.industry-image,
.insight-image {
	min-height: 250px;
}

.generated-visual {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 250px;
	color: rgba(255,255,255,0.72);
	font-family: "Inter Tight", Inter, Arial, sans-serif;
	font-size: 28px;
	font-weight: 800;
}

.generated-visual i {
	position: absolute;
	display: block;
	width: 38%;
	height: 1px;
	background: rgba(255,255,255,0.22);
}

.generated-visual i:nth-child(2) {
	transform: rotate(45deg);
}

.generated-visual i:nth-child(3) {
	transform: rotate(-45deg);
}

.process-line {
	position: relative;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 14px;
}

.process-line::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 34px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--bcg-electric), transparent);
}

.process-line article {
	position: relative;
	z-index: 1;
	padding: 0 6px;
}

.process-line span,
.stat-card strong {
	display: grid;
	place-items: center;
	width: 68px;
	height: 68px;
	margin-bottom: 22px;
	border-radius: var(--bcg-radius);
	background: linear-gradient(135deg, var(--bcg-navy), var(--bcg-blue));
	font-family: "Inter Tight", Inter, Arial, sans-serif;
	font-weight: 800;
}

.process-line h3 {
	margin: 0 0 8px;
	font-size: 18px;
}

.process-line p {
	margin: 0;
	color: rgba(255,255,255,0.62);
	font-size: 14px;
}

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

.stat-card {
	padding: 28px;
	border: 1px solid var(--bcg-border-light);
	border-radius: var(--bcg-radius);
	background: var(--bcg-white);
}

.stat-card strong {
	width: auto;
	height: auto;
	place-items: start;
	margin: 0 0 18px;
	background: none;
	color: var(--bcg-blue);
	font-size: 54px;
	line-height: 1;
}

.stat-card span {
	display: block;
	color: var(--bcg-ink);
	font-weight: 800;
}

.stat-card p {
	margin-bottom: 0;
	color: rgba(9,17,31,0.58);
}

.testimonial-swiper {
	overflow: visible;
}

.testimonial-card {
	min-height: 280px;
	background: rgba(13,15,20,0.92);
}

.quote-mark {
	color: var(--bcg-electric);
	font-size: 56px;
	line-height: 1;
}

.swiper-pagination-bullet {
	background: rgba(255,255,255,0.4);
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: var(--bcg-electric);
}

.faq-layout {
	display: grid;
	grid-template-columns: 0.42fr 1fr;
	gap: 60px;
	align-items: start;
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-item {
	border: 1px solid var(--bcg-border-light);
	border-radius: var(--bcg-radius);
	background: var(--bcg-white);
	overflow: hidden;
}

.faq-item button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	min-height: 70px;
	padding: 0 22px;
	border: 0;
	background: transparent;
	color: var(--bcg-ink);
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}

.faq-item i {
	position: relative;
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
}

.faq-item i::before,
.faq-item i::after {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	width: 18px;
	height: 2px;
	background: var(--bcg-ink);
	transition: transform 180ms ease;
}

.faq-item i::after {
	transform: rotate(90deg);
}

.faq-item.is-open i::after {
	transform: rotate(0);
}

.faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 220ms ease;
}

.faq-answer p {
	overflow: hidden;
	margin: 0;
	padding: 0 22px;
	color: rgba(9,17,31,0.66);
}

.faq-item.is-open .faq-answer {
	grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
	padding-bottom: 22px;
}

.insight-card {
	overflow: hidden;
}

.insight-card a {
	display: grid;
	gap: 16px;
	padding: 14px;
}

.card-meta {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	color: #A9DFFF;
	font-size: 14px;
	font-weight: 800;
}

.site-footer {
	background: var(--bcg-bg);
	color: var(--bcg-white);
	border-top: 1px solid var(--bcg-border);
}

.footer-cta {
	position: relative;
	overflow: hidden;
	text-align: center;
}

.footer-cta h2 {
	font-size: 70px;
}

.footer-cta p:not(.eyebrow) {
	max-width: 650px;
	margin: 22px auto 30px;
	color: rgba(255,255,255,0.68);
	font-size: 19px;
}

.footer-cta .button-row {
	justify-content: center;
}

.footer-main {
	display: grid;
	grid-template-columns: 1.35fr 0.9fr 0.8fr 1fr;
	gap: 46px;
	padding: 74px 0;
	border-top: 1px solid var(--bcg-border);
}

.footer-brand p,
.footer-col p,
.footer-col a,
.footer-bottom {
	color: rgba(255,255,255,0.62);
}

.footer-brand p {
	max-width: 420px;
	margin: 24px 0;
}

.footer-col h3 {
	margin: 0 0 18px;
	font-size: 17px;
}

.footer-col ul {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.newsletter-form {
	display: flex;
	gap: 8px;
	max-width: 420px;
}

.newsletter-form input,
.search-form input,
.bcg-form input,
.bcg-form select,
.bcg-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid rgba(8,42,102,0.14);
	border-radius: var(--bcg-radius);
	background: var(--bcg-white);
	color: var(--bcg-ink);
}

.bcg-form textarea {
	padding-top: 12px;
}

.newsletter-form button,
.search-form button,
.bcg-form button {
	min-height: 48px;
	padding: 0 16px;
	border: 0;
	border-radius: var(--bcg-radius);
	background: var(--bcg-blue);
	color: var(--bcg-white);
	font-weight: 800;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 0 34px;
	border-top: 1px solid var(--bcg-border);
	font-size: 14px;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom div {
	display: flex;
	gap: 18px;
}

.page-hero {
	position: relative;
	padding: 190px 0 110px;
}

.page-hero h1 {
	font-size: 66px;
}

.page-hero p:not(.eyebrow) {
	max-width: 680px;
	color: rgba(255,255,255,0.7);
	font-size: 19px;
}

.entry-content {
	font-size: 18px;
}

.entry-content h2,
.legal-content h2 {
	margin-top: 40px;
	font-family: "Inter Tight", Inter, Arial, sans-serif;
	font-size: 34px;
	line-height: 1.08;
}

.mission-grid,
.contact-layout,
.legal-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.team-card {
	background: var(--bcg-white);
	color: var(--bcg-ink);
}

.team-image {
	min-height: 280px;
	margin-bottom: 20px;
}

.job-list {
	display: grid;
	gap: 18px;
}

.job-card {
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 24px;
	align-items: center;
}

.job-card ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.job-card li {
	padding: 7px 10px;
	border-radius: var(--bcg-radius);
	background: rgba(21,101,229,0.16);
	color: #A9DFFF;
	font-size: 13px;
	font-weight: 800;
}

.contact-layout {
	grid-template-columns: 1.2fr 0.8fr;
	align-items: start;
}

.contact-panel,
.contact-details,
.detail-panel,
.toc-card {
	padding: 28px;
	color: var(--bcg-ink);
}

.bcg-form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.bcg-form label {
	display: grid;
	gap: 6px;
	font-weight: 700;
}

.bcg-form label:nth-child(8),
.bcg-form .checkbox,
.bcg-form button,
.form-message {
	grid-column: 1 / -1;
}

.checkbox {
	display: flex !important;
	grid-template-columns: auto 1fr;
	align-items: center;
}

.checkbox input {
	width: 18px;
	min-height: 18px;
}

.legal-layout {
	grid-template-columns: 270px 1fr;
	align-items: start;
}

.toc-card {
	position: sticky;
	top: 120px;
}

.search-form {
	display: flex;
	gap: 10px;
	max-width: 520px;
	margin-top: 28px;
}

.pagination-wrap {
	margin-top: 42px;
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.nav-links a,
.nav-links span {
	display: grid;
	place-items: center;
	min-width: 42px;
	min-height: 42px;
	padding: 0 12px;
	border: 1px solid var(--bcg-border);
	border-radius: var(--bcg-radius);
}

.nav-links .current {
	background: var(--bcg-blue);
	color: var(--bcg-white);
}

.page-transition {
	position: fixed;
	z-index: 9999;
	inset: 0;
	background: var(--bcg-bg);
	pointer-events: none;
	transform: translateY(0);
	animation: pageLift 700ms ease 120ms forwards;
}

[data-animate],
[data-stagger] {
	will-change: transform, opacity;
}

@keyframes pageLift {
	to { transform: translateY(-100%); }
}

@keyframes gradientFlow {
	from { transform: translateX(-4%); opacity: 0.55; }
	to { transform: translateX(4%); opacity: 0.9; }
}

@keyframes floatSoft {
	0%, 100% { margin-top: 0; }
	50% { margin-top: -14px; }
}

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

@keyframes barPulse {
	0%, 100% { transform: scaleY(0.82); opacity: 0.72; }
	50% { transform: scaleY(1); opacity: 1; }
}

@keyframes marqueeMove {
	to { transform: translateX(-50%); }
}

@media (max-width: 1120px) {
	.hero-copy h1,
	.footer-cta h2 {
		font-size: 60px;
	}

	.section-header h2,
	.split h2,
	.faq-layout h2,
	.page-hero h1 {
		font-size: 48px;
	}

	.hero-grid,
	.split,
	.contact-layout,
	.legal-layout {
		grid-template-columns: 1fr;
	}

	.hero-system {
		min-height: 520px;
	}

	.approach-grid,
	.process-line,
	.footer-main {
		grid-template-columns: repeat(2, 1fr);
	}

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

@media (max-width: 900px) {
	.header-shell {
		grid-template-columns: auto auto;
	}

	.menu-toggle {
		display: block;
		justify-self: end;
	}

	.primary-navigation {
		position: fixed;
		top: 90px;
		left: 20px;
		right: 20px;
		display: none;
		max-height: calc(100vh - 120px);
		padding: 18px;
		overflow: auto;
		border: 1px solid var(--bcg-border);
		border-radius: var(--bcg-radius);
		background: rgba(6,6,6,0.97);
		box-shadow: var(--bcg-shadow);
		backdrop-filter: blur(18px);
	}

	.admin-bar .primary-navigation {
		top: 122px;
	}

	.menu-open .primary-navigation {
		display: block;
		animation: menuIn 180ms ease both;
	}

	.nav-menu {
		display: grid;
		gap: 4px;
	}

	.nav-menu a {
		width: 100%;
		min-height: 48px;
	}

	.sub-menu {
		position: static;
		width: 100%;
		margin: 0 0 8px;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: rgba(255,255,255,0.04);
	}

	.button-header {
		display: none;
	}

	.hero {
		min-height: auto;
		padding-top: 160px;
		padding-bottom: 80px;
	}

	.hero-dashboard {
		grid-template-columns: 1fr;
		margin-top: 70px;
	}

	.dash-sidebar {
		display: none;
	}

	.dash-cards,
	.faq-layout,
	.job-card {
		grid-template-columns: 1fr;
	}
}

@keyframes menuIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 680px) {
	.container,
	.narrow,
	.header-shell {
		width: min(calc(100% - 28px), var(--bcg-max));
	}

	.section-pad {
		padding: 82px 0;
	}

	.hero-copy h1 {
		font-size: 42px;
	}

	.footer-cta h2,
	.section-header h2,
	.split h2,
	.faq-layout h2,
	.page-hero h1 {
		font-size: 36px;
	}

	.hero-copy p:not(.eyebrow),
	.page-hero p:not(.eyebrow) {
		font-size: 17px;
	}

	.brand-text {
		max-width: 190px;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.hero-system {
		min-height: 440px;
	}

	.system-node {
		width: 112px;
		min-height: 52px;
		font-size: 13px;
	}

	.architecture-panel {
		display: none;
	}

	.dash-main,
	.glass-card,
	.glow-card,
	.service-card,
	.testimonial-card,
	.contact-panel,
	.contact-details,
	.detail-panel,
	.toc-card {
		padding: 20px;
	}

	.approach-grid,
	.card-grid,
	.stats-grid,
	.process-line,
	.footer-main,
	.bcg-form {
		grid-template-columns: 1fr;
	}

	.process-line::before {
		display: none;
	}

	.footer-bottom,
	.newsletter-form,
	.search-form {
		display: grid;
	}

	.marquee-track span {
		font-size: 20px;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.page-transition {
		display: none;
	}
}

