:root {
	--font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--labels-primary: #ffffffd6;
}
.container {
	max-width: 64rem;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-sans);
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: var(--radius);
	cursor: pointer;
	transition:
		background 0.15s,
		color 0.15s,
		border-color 0.15s,
		opacity 0.15s;
	white-space: nowrap;
}
.btn--sm {
	height: 2.25rem;
	padding-inline: 0.875rem;
}
.btn--lg {
	height: 2.75rem;
	padding-inline: 2rem;
	font-size: 1rem;
}
.btn--primary {
	background: var(--primary);
	color: var(--primary-foreground);
	border: 1px solid transparent;
}
.btn--primary:hover {
	opacity: 0.88;
}
.btn--outline {
	background: transparent;
	color: var(--foreground);
	border: 1px solid var(--border);
}
.btn--outline:hover {
	background: var(--muted);
}
.ambient {
	pointer-events: none;
	position: absolute;
	inset: 0;
	z-index: 2;
	opacity: 0.5;
	overflow: hidden;
	display: none;
}
@media (min-width: 1024px) {
	.ambient {
		display: block;
	}
}
.ambient__blob-1 {
	position: absolute;
	left: 0;
	top: 0;
	width: 35rem;
	height: 80rem;
	border-radius: 9999px;
	transform: rotate(-45deg) translateY(-87.5%);
	background: radial-gradient(
		68.54% 68.72% at 55.02% 31.46%,
		hsla(0, 0%, 85%, 0.08) 0,
		hsla(0, 0%, 55%, 0.02) 50%,
		hsla(0, 0%, 45%, 0) 80%
	);
}
.ambient__blob-2 {
	position: absolute;
	left: 0;
	top: 0;
	width: 14rem;
	height: 80rem;
	border-radius: 9999px;
	transform: rotate(-45deg) translate(5%, -50%);
	background: radial-gradient(
		50% 50% at 50% 50%,
		hsla(0, 0%, 85%, 0.06) 0,
		hsla(0, 0%, 45%, 0.02) 80%,
		transparent 100%
	);
}
.ambient__blob-3 {
	position: absolute;
	left: 0;
	top: 0;
	width: 14rem;
	height: 80rem;
	transform: rotate(-45deg) translateY(-87.5%);
	background: radial-gradient(
		50% 50% at 50% 50%,
		hsla(0, 0%, 85%, 0.04) 0,
		hsla(0, 0%, 45%, 0.02) 80%,
		transparent 100%
	);
}
.hero-scroll {
	position: relative;
	height: 170vh;
}
.hero {
	position: relative;
	min-height: 900px;
	width: 100%;
	padding-top: 120px;
	overflow: hidden;
	color: var(--labels-primary);
	background: var(--background);
}
.hero__content {
	position: relative;
	z-index: 2;
	margin-inline: auto;
	max-width: 64rem;
	padding-inline: 1.5rem;
	padding-top: 8rem;
	padding-bottom: 5rem;
}
.hero__h1 {
	display: flex;
	flex-direction: column;
	position: relative;
	margin-top: 16px;
	max-width: 350px;
	font: Inter;
	font-size: 12px;
}
.tl-wrap {
	display: block;
	overflow: hidden;
	position: relative;
}
.tl-item {
	display: block;
	animation: tl-enter 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.tl-item.tl-exit {
	animation: tl-exit 0.3s cubic-bezier(0.4, 0, 1, 1) forwards;
	position: absolute;
	top: 0;
	left: 0;
}
@keyframes tl-enter {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes tl-exit {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 0;
		transform: translateY(-28px);
	}
}
@media (prefers-reduced-motion: reduce) {
	.tl-item,
	.tl-item.tl-exit {
		animation: none;
	}
}
.hero__desc {
	font-size: 1.25rem;
	color: var(--muted-foreground);
	line-height: 1.65;
	margin-bottom: 2rem;
	max-width: 38rem;
	margin-inline: auto;
}
.hero__cta-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.875rem;
	justify-content: flex-start;
}
.marquee {
	margin-top: 2.5rem;
	overflow: hidden;
	-webkit-mask: linear-gradient(
		90deg,
		transparent,
		#000 12%,
		#000 88%,
		transparent
	);
	mask: linear-gradient(
		90deg,
		transparent,
		#000 12%,
		#000 88%,
		transparent
	);
}
.marquee__track {
	display: flex;
	width: max-content;
	animation: marquee-scroll 28s linear infinite;
}
.marquee__track:hover {
	animation-play-state: paused;
}
.marquee__group {
	display: flex;
	align-items: center;
	gap: 0;
	flex-shrink: 0;
}
.marquee__item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-inline: 1.5rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--muted-foreground);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s;
}
.marquee__item:hover {
	color: #2bc8b7;
}
.marquee__dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #3f3f46;
	flex-shrink: 0;
}
@keyframes marquee-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
@media (prefers-reduced-motion: reduce) {
	.marquee__track {
		animation: none;
	}
}
.hero-exit {
	position: absolute;
	inset: 0;
	z-index: 40;
	background: var(--background);
	opacity: 0;
	pointer-events: none;
}
.card-stack {
	position: relative;
	width: 100%;
	height: 100%;
}
.stack-card {
	position: absolute;
	left: 0;
	right: 0;
	border-radius: 0.75rem;
	padding: 0.875rem 1.25rem;
	border: 1px solid #2a2a2e;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	transition:
		top 0.5s cubic-bezier(0.33, 1, 0.68, 1),
		opacity 0.5s ease,
		filter 0.5s ease;
	will-change: top, opacity;
}
.stack-card--front {
	top: 0.5rem;
	background: #141416;
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.6),
		0 1px 0 rgba(255, 255, 255, 0.04) inset;
	z-index: 3;
}
.stack-card--mid {
	top: 8rem;
	background: #101012;
	border-color: #222226;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
	z-index: 2;
	opacity: 0.92;
}
.stack-card--back {
	top: 15.5rem;
	background: #0c0c0e;
	border-color: #1e1e22;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
	z-index: 1;
	opacity: 0.75;
}
.stack-card--deepback {
	top: 23rem;
	background: #090909;
	border-color: #191919;
	z-index: 0;
	opacity: 0.4;
	filter: blur(0.4px);
}
.sc-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}
.sc-dot-group {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.sc-label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--muted-foreground);
}
.sc-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 9999px;
	flex-shrink: 0;
}
.sc-dot--green {
	background: #22c55e;
}
.sc-dot--cyan {
	background: #2bc8b7;
}
.sc-dot--pulse {
	animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(43, 200, 183, 0.5);
	}
	50% {
		box-shadow: 0 0 0 5px rgba(43, 200, 183, 0);
	}
}
.sc-badge {
	font-size: 0.6875rem;
	font-weight: 500;
	padding: 0.2rem 0.6rem;
	border-radius: 9999px;
	flex-shrink: 0;
}
.sc-badge--blue {
	background: rgba(59, 130, 246, 0.15);
	color: #60a5fa;
	border: 1px solid rgba(59, 130, 246, 0.25);
}
.sc-badge--green {
	background: rgba(34, 197, 94, 0.12);
	color: #4ade80;
	border: 1px solid rgba(34, 197, 94, 0.2);
}
.sc-project-name {
	font-size: 0.9375rem;
	font-weight: 500;
	color: #e4e4e7;
	line-height: 1.4;
}
.sc-progress-wrap {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.sc-progress-bar {
	flex: 1;
	height: 0.3125rem;
	border-radius: 9999px;
	background: #27272a;
	overflow: hidden;
}
.sc-progress-fill {
	height: 100%;
	border-radius: 9999px;
	background: linear-gradient(to right, #2bc8b7, #3b82f6);
}
.sc-progress-pct {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #2bc8b7;
	flex-shrink: 0;
}
.sc-footer {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}
.sc-meta {
	font-size: 0.75rem;
	color: #52525b;
}
.sc-kpis {
	display: flex;
	gap: 0;
	divide-x: 1px solid #27272a;
}
.sc-kpi {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding-right: 1.25rem;
	border-right: 1px solid #27272a;
}
.sc-kpi:last-child {
	border-right: none;
	padding-right: 0;
	padding-left: 1.25rem;
}
.sc-kpi:not(:first-child):not(:last-child) {
	padding-inline: 1.25rem;
}
.kpi-value {
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--foreground);
	letter-spacing: -0.02em;
	line-height: 1;
}
.kpi-name {
	font-size: 0.6875rem;
	color: #52525b;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.sparkline {
	width: 100%;
	height: 1.25rem;
	margin-top: 0.375rem;
	overflow: visible;
}
.sc-compliance-row {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.sc-check {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.8125rem;
	color: var(--muted-foreground);
	font-weight: 500;
}
.check-icon {
	font-size: 0.875rem;
	color: #22c55e;
	font-weight: 700;
}
.check-icon--partial {
	color: #f59e0b;
}
.sc-ring-wrap {
	margin-left: auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.sc-ring-wrap svg {
	width: 2.75rem;
	height: 2.75rem;
	transform: rotate(-90deg);
}
.sc-ring-label {
	position: absolute;
	font-size: 0.625rem;
	font-weight: 700;
	color: #2bc8b7;
}
.partners {
	position: relative;
	z-index: 10;
	background: var(--background);
	padding-block: 4rem;
}
.partners__title {
	text-align: center;
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--foreground);
	margin-bottom: 5rem;
}
.partners__logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	column-gap: 3rem;
	row-gap: 3rem;
	max-width: 56rem;
	margin-inline: auto;
}
.partners__logos img {
	height: 1.25rem;
	width: auto;
	filter: invert(1) brightness(0.7);
	transition: filter 0.2s;
}
.partners__logos img:hover {
	filter: invert(1) brightness(1);
}
@media (min-width: 640px) {
	.partners__logos {
		column-gap: 4rem;
		row-gap: 3rem;
	}
}
.feat {
	overflow: hidden;
	padding-block: 5rem;
	background: var(--background);
}
@media (min-width: 768px) {
	.feat {
		padding-block: 7rem;
	}
}
.feat__heading {
	max-width: 36rem;
}
.feat__h2 {
	color: var(--foreground);
	margin-bottom: 1.25rem;
}
.feat__lead {
	font-size: 1.0625rem;
	color: var(--muted-foreground);
	line-height: 1.7;
	max-width: 44rem;
	margin-bottom: 2.5rem;
}
.feat__visual-wrap {
	margin-inline: -1.5rem;
	border-radius: 1.5rem;
	padding: 0.75rem;
}
@media (min-width: 768px) {
	.feat__visual-wrap {
		margin-inline: -4rem;
	}
}
.feat__perspective {
	perspective: 800px;
}
.feat__tilted {
	transform: skewY(-2deg) skewX(-2deg) rotateX(6deg);
}
.feat__mockup {
	aspect-ratio: 88 / 36;
	background: #0a0a0b;
	border: 1px solid var(--border);
	border-radius: 0.75rem;
	overflow: hidden;
	font-size: 0.6875rem;
	color: var(--muted-foreground);
	position: relative;
	padding: 0.3rem;
}
.feat__mockup::after {
	content: "";
	position: absolute;
	inset: -4rem;
	pointer-events: none;
	background: radial-gradient(
		ellipse at 75% 25%,
		transparent 0%,
		transparent 45%,
		#0a0a0a 78%
	);
	z-index: 20;
}
.bento {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: 1fr 1fr;
	gap: 0.4rem;
	height: 100%;
	width: 100%;
}
.bc-stats {
	grid-column: span 2;
}
.bc-security {
	grid-column: span 2;
}
.bc-ai {
	grid-column: span 2;
}
.bc-factory {
	grid-column: span 3;
}
.bc-consulting {
	grid-column: span 3;
}
.bc {
	background: #111113;
	border: 1px solid #1e1e22;
	border-radius: 0.5rem;
	padding: 0.5rem 0.625rem;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	position: relative;
}
.bc-label {
	font-size: 0.4375rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: #3f3f46;
	display: flex;
	align-items: center;
	gap: 0.3rem;
	margin-bottom: 0.1rem;
}
.bc-dot {
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 9999px;
	flex-shrink: 0;
}
.bc-dot--cyan {
	background: #2bc8b7;
}
.bc-dot--green {
	background: #22c55e;
}
.bc-dot--purple {
	background: #8b5cf6;
}
.bc-dot--blue {
	background: #3b82f6;
}
.bc-badge {
	font-size: 0.4rem;
	padding: 0.1rem 0.35rem;
	border-radius: 9999px;
	font-weight: 600;
	flex-shrink: 0;
}
.bc-badge--blue {
	background: rgba(59, 130, 246, 0.15);
	color: #60a5fa;
}
.bc-badge--green {
	background: rgba(34, 197, 94, 0.12);
	color: #4ade80;
}
.bc-badge--cyan {
	background: rgba(43, 200, 183, 0.15);
	color: #2bc8b7;
}
.bc-badge--purple {
	background: rgba(139, 92, 246, 0.15);
	color: #a78bfa;
}
.bc-row {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	overflow: hidden;
}
.bc-row-name {
	flex: 1;
	font-size: 0.5rem;
	color: #d4d4d8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.bc-bar {
	flex: 1;
	height: 0.175rem;
	border-radius: 9999px;
	background: #27272a;
	overflow: hidden;
}
.bc-bar-fill {
	height: 100%;
	border-radius: 9999px;
	background: linear-gradient(to right, #2bc8b7, #6366f1);
}
.bc-bar-fill--purple {
	background: linear-gradient(to right, #8b5cf6, #ec4899);
}
.bc-bar-fill--green {
	background: #22c55e;
}
.bc-pct {
	font-size: 0.4375rem;
	color: #52525b;
	flex-shrink: 0;
	min-width: 1.5rem;
	text-align: right;
}
.bc-code {
	margin-top: auto;
	background: #0c0c0e;
	border: 1px solid #1a1a1d;
	border-radius: 0.3rem;
	padding: 0.3rem 0.4rem;
	font-family: ui-monospace, monospace;
	font-size: 0.4rem;
	color: #52525b;
	line-height: 1.6;
}
.bc-code .c-kw {
	color: #a78bfa;
}
.bc-code .c-fn {
	color: #2bc8b7;
}
.bc-code .c-str {
	color: #4ade80;
}
.bc-code .c-cm {
	color: #3f3f46;
}
.bc-sectors {
	display: flex;
	flex-wrap: wrap;
	gap: 0.2rem;
	flex: 1;
	align-content: flex-start;
	padding-top: 0.1rem;
}
.bc-sector-tag {
	font-size: 0.4rem;
	color: #52525b;
	background: #0e0e10;
	border: 1px solid #1e1e22;
	border-radius: 0.2rem;
	padding: 0.15rem 0.35rem;
}
.bc-event-log {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	flex: 1;
}
.bc-event-row {
	display: flex;
	align-items: center;
	gap: 0.3rem;
	background: #0c0c0e;
	border: 1px solid #1a1a1d;
	border-radius: 0.25rem;
	padding: 0.2rem 0.35rem;
}
.bc-event-time {
	font-size: 0.375rem;
	color: #3f3f46;
	font-family: ui-monospace, monospace;
	flex-shrink: 0;
}
.bc-event-desc {
	font-size: 0.4rem;
	color: #71717a;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.bc-ba-block {
	background: #0c0c0e;
	border: 1px solid #1a1a1d;
	border-radius: 0.3rem;
	padding: 0.3rem 0.4rem;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}
.bc-ba-title {
	font-size: 0.375rem;
	color: #3f3f46;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.bc-ba-row {
	display: flex;
	align-items: center;
	gap: 0.3rem;
}
.bc-ba-side {
	display: flex;
	flex-direction: column;
	gap: 0.08rem;
	flex: 1;
}
.bc-ba-lbl {
	font-size: 0.375rem;
	color: #3f3f46;
}
.bc-ba-val {
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.02em;
}
.bc-ba-val--old {
	color: #3f3f46;
	text-decoration: line-through;
}
.bc-ba-val--new {
	color: #2bc8b7;
}
.bc-ba-arrow {
	font-size: 0.5rem;
	color: #27272a;
	flex-shrink: 0;
}
.bc-deploy {
	display: flex;
	align-items: center;
	gap: 0.3rem;
	background: rgba(34, 197, 94, 0.05);
	border: 1px solid rgba(34, 197, 94, 0.12);
	border-radius: 0.25rem;
	padding: 0.2rem 0.35rem;
	margin-bottom: 0.2rem;
	flex-shrink: 0;
}
.bc-deploy-text {
	font-size: 0.4rem;
	color: var(--muted-foreground);
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.bc-pipeline {
	display: flex;
	align-items: stretch;
	margin-bottom: 0.25rem;
	flex-shrink: 0;
}
.bc-pipe-step {
	flex: 1;
	text-align: center;
	font-size: 0.375rem;
	color: #3f3f46;
	padding: 0.18rem 0.1rem;
	background: #0c0c0e;
	border: 1px solid #1a1a1d;
	margin-left: -1px;
}
.bc-pipe-step:first-child {
	border-radius: 0.2rem 0 0 0.2rem;
	margin-left: 0;
}
.bc-pipe-step:last-child {
	border-radius: 0 0.2rem 0.2rem 0;
}
.bc-pipe-step--done {
	color: #2bc8b7;
	background: rgba(43, 200, 183, 0.04);
	border-color: rgba(43, 200, 183, 0.15);
}
.bc-pipe-step--active {
	color: var(--foreground);
	background: rgba(43, 200, 183, 0.1);
	border-color: rgba(43, 200, 183, 0.35);
	font-weight: 600;
}
.bc-timeline {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.bc-tl-row {
	display: flex;
	align-items: center;
	gap: 0.3rem;
	padding-block: 0.22rem;
	border-bottom: 1px solid #1a1a1d;
}
.bc-tl-row:last-child {
	border-bottom: none;
}
.bc-tl-dot {
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 9999px;
	flex-shrink: 0;
	border: 1px solid var(--border);
}
.bc-tl-dot--done {
	background: #2bc8b7;
	border-color: #2bc8b7;
}
.bc-tl-dot--active {
	background: transparent;
	border-color: #2bc8b7;
	box-shadow: 0 0 0 1.5px rgba(43, 200, 183, 0.25);
}
.bc-tl-dot--next {
	background: transparent;
	border-color: #3f3f46;
}
.bc-tl-mes {
	font-size: 0.375rem;
	color: #3f3f46;
	width: 1.5rem;
	flex-shrink: 0;
	font-family: ui-monospace, monospace;
}
.bc-tl-name {
	font-size: 0.4375rem;
	color: #71717a;
	flex: 1;
}
.bc-tl-name--done {
	color: #52525b;
}
.bc-tl-name--active {
	color: #e4e4e7;
	font-weight: 500;
}
.bc-big-num {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--foreground);
	letter-spacing: -0.04em;
	line-height: 1;
}
.bc-sub {
	font-size: 0.4375rem;
	color: #52525b;
	margin-top: -0.1rem;
	margin-bottom: 0.15rem;
}
.bc-sparkline-wrap {
	width: 100%;
	flex: 1;
	min-height: 2rem;
	overflow: visible;
	margin-bottom: 0.1rem;
}
.bc-status-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.25rem 0.5rem;
}
.bc-status-item {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.4375rem;
	color: #71717a;
}
.bc-bar-chart {
	flex: 1;
	display: flex;
	align-items: flex-end;
	gap: 0.2rem;
	padding-top: 0.2rem;
}
.bc-bar-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.15rem;
}
.bc-bar-col-fill {
	width: 100%;
	border-radius: 0.1rem 0.1rem 0 0;
	background: linear-gradient(to top, #2bc8b7, rgba(43, 200, 183, 0.3));
}
.bc-bar-col-lbl {
	font-size: 0.375rem;
	color: #3f3f46;
	white-space: nowrap;
}
.bc-stat-big {
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 1;
	background: linear-gradient(135deg, #fafafa 40%, #52525b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.bc-stat-label {
	font-size: 0.4375rem;
	color: #71717a;
	margin-top: 0.1rem;
}
.bc-divider {
	height: 1px;
	background: #1e1e22;
	margin-block: 0.3rem;
}
.bc-stat-mini {
	font-size: 0.4375rem;
	color: #52525b;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}
.bc-stat-mini span {
	color: #71717a;
}
.bc-msft-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.15rem;
	width: 1.25rem;
	flex-shrink: 0;
}
.bc-msft-sq {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 0.05rem;
}
.bc-msft-header {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}
.bc-consulting-hdr {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.4rem;
	margin-bottom: 0.2rem;
}
.bc-ring-inline {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.bc-ring-inline svg {
	width: 1.75rem;
	height: 1.75rem;
	transform: rotate(-90deg);
}
.bc-ring-inline span {
	position: absolute;
	font-size: 0.325rem;
	font-weight: 700;
	color: #2bc8b7;
}
.bc-comply-table {
	display: flex;
	flex-direction: column;
	gap: 0;
	flex: 1;
}
.bc-comply-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.3rem;
	padding-block: 0.22rem;
	border-bottom: 1px solid #1a1a1d;
}
.bc-comply-row:last-child {
	border-bottom: none;
}
.bc-comply-name {
	font-size: 0.4375rem;
	color: var(--muted-foreground);
	font-weight: 500;
}
.bc-chat {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-top: 0.1rem;
	flex: 1;
}
.bc-prompt {
	background: #0c0c0e;
	border: 1px solid #1a1a1d;
	border-radius: 0.3rem 0.3rem 0.3rem 0;
	padding: 0.25rem 0.375rem;
	font-size: 0.4375rem;
	color: #71717a;
}
.bc-response {
	background: #131317;
	border: 1px solid var(--border);
	border-radius: 0.3rem 0.3rem 0 0.3rem;
	padding: 0.25rem 0.375rem;
	font-size: 0.4375rem;
	color: var(--muted-foreground);
	line-height: 1.6;
	align-self: flex-end;
	width: 90%;
}
.bc-response-line {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}
.bc-response-line::before {
	content: "↳";
	color: #2bc8b7;
	font-size: 0.4375rem;
}
.feat__grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1rem;
}
@media (max-width: 768px) {
	.feat__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 1rem;
		margin-inline: -1.5rem;
		padding-inline: 1.5rem;
		scroll-padding-inline: 1.5rem;
	}
	.feat__grid::-webkit-scrollbar {
		display: none;
	}
	.feat__item {
		flex: 0 0 calc(100% - 3rem);
		scroll-snap-align: center;
	}
}
@media (min-width: 769px) {
	.feat__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}
.feat__item {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 1.5rem;
	border: 1px solid var(--border);
	border-radius: 0.75rem;
	background: linear-gradient(
		to bottom,
		rgba(9, 9, 11, 0.6),
		rgba(9, 9, 11, 0.3)
	);
}
.feat__item-header {
	height: 5rem;
	border-radius: 0.5rem;
	background: #060608;
	border: 1px solid #1c1c20;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
}
.feat__icon {
	width: 2.5rem;
	height: 2.5rem;
	color: var(--foreground);
}
.feat__item-body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.feat__item-title {
	font-size: 1rem;
	font-weight: 600;
	color: #f4f4f5;
	letter-spacing: -0.01em;
	line-height: 1.3;
}
.feat__item-desc {
	font-size: 0.875rem;
	color: var(--muted-foreground);
	line-height: 1.65;
}
.smock__visual {
	position: relative;
	height: 32rem;
}
@media (max-width: 768px) {
	.smock__visual {
		height: 24rem;
	}
}
.smock__card-back {
	position: absolute;
	width: 80%;
	height: 75%;
	left: -8%;
	top: 16%;
	background: #06060a;
	border: 1px solid #18181b;
	border-radius: 1.5rem;
	filter: blur(1.5px);
	z-index: 0;
	overflow: hidden;
	padding: 1rem 1.125rem;
	font-size: 0.5625rem;
	color: #9ca3af;
	opacity: 0.75;
}
.smock__card-front {
	position: absolute;
	width: 88%;
	height: 90%;
	right: 0;
	top: 4%;
	background: rgba(255, 255, 255, 0.028);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 1.75rem;
	z-index: 10;
	overflow: hidden;
	padding: 1.25rem 1.5rem;
	font-size: 0.5625rem;
	color: var(--muted-foreground);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.smock-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
}
.smock-lbl {
	font-size: 0.5rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #9ca3af;
}
.smock-title {
	font-size: 0.75rem;
	font-weight: 600;
	color: #e4e4e7;
	line-height: 1.3;
}
.smock-sub {
	font-size: 0.5rem;
	color: #a1a1aa;
	margin-top: 0.1rem;
}
.smock-kpis {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
	flex-shrink: 0;
}
.smock-kpi {
	background: #0c0c0e;
	border: 1px solid #1e1e22;
	border-radius: 0.625rem;
	padding: 0.5rem 0.625rem;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}
.smock-kpi-val {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--foreground);
	line-height: 1;
}
.smock-kpi-val--up {
	color: #2bc8b7;
}
.smock-kpi-val--warn {
	color: #f59e0b;
}
.smock-kpi-name {
	font-size: 0.4375rem;
	color: #a1a1aa;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.smock-chart {
	flex: 1;
	min-height: 4rem;
	overflow: visible;
	border-radius: 0.5rem;
	background: #08080a;
	border: 1px solid #18181b;
	padding: 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.smock-chart svg {
	width: 100%;
	flex: 1;
	overflow: visible;
}
.smock-feed {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	flex-shrink: 0;
}
.smock-feed-row {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	background: #0c0c0e;
	border: 1px solid #18181b;
	border-radius: 0.4rem;
	padding: 0.3rem 0.5rem;
}
.smock-feed-icon {
	width: 0.875rem;
	height: 0.875rem;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.4rem;
	flex-shrink: 0;
}
.smock-feed-icon--green {
	background: rgba(34, 197, 94, 0.12);
	color: #22c55e;
}
.smock-feed-icon--cyan {
	background: rgba(43, 200, 183, 0.12);
	color: #2bc8b7;
}
.smock-feed-icon--purple {
	background: rgba(139, 92, 246, 0.12);
	color: #a78bfa;
}
.smock-feed-text {
	font-size: 0.4375rem;
	color: #a1a1aa;
	flex: 1;
}
.smock-feed-time {
	font-size: 0.375rem;
	color: #9ca3af;
	flex-shrink: 0;
	font-family: ui-monospace, monospace;
}
.dbsec__visual {
	display: flex;
	align-items: center;
	justify-content: center;
}
.db-wrap {
	position: relative;
	height: 350px;
	width: 100%;
	max-width: 500px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.db-svg {
	height: 100%;
	width: 100%;
	color: #27272a;
}
.db-box-wrap {
	position: absolute;
	bottom: 2.5rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.db-shadow {
	position: absolute;
	bottom: -1rem;
	height: 6.25rem;
	width: 62%;
	border-radius: 0.5rem;
	background: rgba(24, 24, 27, 0.35);
	z-index: 0;
}
.db-title-label {
	position: absolute;
	top: -0.875rem;
	z-index: 20;
	display: flex;
	align-items: center;
	gap: 0.375rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: #101112;
	padding: 0.25rem 0.625rem;
	font-size: 0.5625rem;
	color: var(--muted-foreground);
	white-space: nowrap;
}
.db-title-label svg {
	width: 0.6875rem;
	height: 0.6875rem;
	flex-shrink: 0;
	color: var(--muted-foreground);
}
.db-circle-badge {
	position: absolute;
	bottom: -2rem;
	z-index: 30;
	width: 3.75rem;
	height: 3.75rem;
	border-radius: 9999px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: #141516;
	display: grid;
	place-items: center;
	font-size: 0.6875rem;
	font-weight: 600;
	color: #e4e4e7;
	letter-spacing: 0.04em;
}
.db-box {
	position: relative;
	z-index: 10;
	height: 9.375rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.07);
	background: #08080a;
	box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}
.db-badge {
	position: absolute;
	z-index: 10;
	height: 1.75rem;
	border-radius: 9999px;
	background: #101112;
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 0 0.75rem;
	font-size: 0.6875rem;
	display: flex;
	align-items: center;
	gap: 0.375rem;
	color: var(--muted-foreground);
	white-space: nowrap;
}
.db-badge--left {
	bottom: 2rem;
	left: 3rem;
}
.db-badge--right {
	bottom: 2rem;
	right: 4rem;
}
.db-badge svg {
	width: 0.875rem;
	height: 0.875rem;
	flex-shrink: 0;
}
.db-pulse {
	position: absolute;
	border-radius: 9999px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(255, 255, 255, 0.012);
}
.db-pulse-1 {
	width: 6.25rem;
	height: 6.25rem;
	bottom: -3.5rem;
	animation: db-pulse-anim 2s ease-in-out infinite;
}
.db-pulse-2 {
	width: 9.0625rem;
	height: 9.0625rem;
	bottom: -5rem;
	animation: db-pulse-anim 2s ease-in-out 0.22s infinite;
}
.db-pulse-3 {
	width: 11.875rem;
	height: 11.875rem;
	bottom: -6.25rem;
	animation: db-pulse-anim 2s ease-in-out 0.44s infinite;
}
.db-pulse-4 {
	width: 14.6875rem;
	height: 14.6875rem;
	bottom: -7.5rem;
	animation: db-pulse-anim 2s ease-in-out 0.66s infinite;
}
@keyframes db-pulse-anim {
	0%,
	100% {
		transform: scale(0.98);
	}
	50% {
		transform: scale(1.02);
	}
}
.database {
	offset-anchor: 10px 0px;
	animation-name: database-animation-path;
	animation-iteration-count: infinite;
	animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
	animation-duration: 4s;
	animation-delay: 1s;
}
.db-light-1 {
	offset-path: path("M 31 10 v 15 q 0 5 5 5 h 59 q 5 0 5 5 v 25");
}
.db-light-2 {
	offset-path: path("M 77 10 v 10 q 0 5 5 5 h 13 q 5 0 5 5 v 25");
}
.db-light-3 {
	offset-path: path("M 124 10 v 10 q 0 5 -5 5 h -14 q -5 0 -5 5 v 25");
}
.db-light-4 {
	offset-path: path("M 170 10 v 15 q 0 5 -5 5 h -60 q -5 0 -5 5 v 25");
}
@keyframes database-animation-path {
	0% {
		offset-distance: 0%;
	}
	100% {
		offset-distance: 100%;
	}
}
.dg {
	background: var(--background);
	padding-block: 5rem 7rem;
}
.dg__container,
.bp__container,
.caseband__container {
	margin-inline: auto;
	max-width: 72rem;
	padding-inline: 1.5rem;
}
.dg__eyebrow {
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	color: #52525b;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}
.dg__h2,
.feat__h2,
.caseband__title,
.unified-h2 {
	font-family: var(--font-sans);
	font-weight: 700;
	font-style: normal;
	font-size: 40px;
	line-height: 1.15;
	letter-spacing: -0.02em;
}
.dg__h2 {
	color: var(--foreground);
	margin-bottom: 2.5rem;
}
.dg__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
@media (max-width: 768px) {
	.dg__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 1rem;
		margin-inline: -1.5rem;
		padding-inline: 1.5rem;
		scroll-padding-inline: 1.5rem;
	}
	.dg__grid::-webkit-scrollbar {
		display: none;
	}
.svc-card {
	flex: 0 0 calc(100% - 3rem);
	scroll-snap-align: center;
}
}
@media (min-width: 769px) and (max-width: 900px) {
	.dg__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 640px) {
	.dg-illu {
		display: none;
	}
}
.dg-illu {
	position: relative;
	height: 8.5rem;
	border-radius: 0.5rem;
	overflow: hidden;
	margin-bottom: 1.25rem;
	background: #060608;
	border: 1px solid #1c1c20;
	flex-shrink: 0;
}
.dg-illu__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(
			to right,
			rgba(255, 255, 255, 0.04) 1px,
			transparent 1px
		),
		linear-gradient(
			to bottom,
			rgba(255, 255, 255, 0.04) 1px,
			transparent 1px
		);
	background-size: 20px 20px;
	pointer-events: none;
}
.dg-illu::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 100% 100% at 50% 110%,
		transparent 55%,
		#060608 100%
	);
	pointer-events: none;
	z-index: 5;
}
.illu-code {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.3125rem;
	padding: 0.875rem 1rem;
	font-family: ui-monospace, "SFMono-Regular", "SF Mono", Consolas, "Liberation Mono", monospace;
	font-size: 0.6875rem;
	line-height: 1.5;
	z-index: 2;
}
.illu-code__line {
	display: flex;
	gap: 0.375rem;
	align-items: baseline;
}
.illu-code__ln {
	color: #3f3f46;
	min-width: 1rem;
	text-align: right;
	flex-shrink: 0;
}
.illu-code__kw {
	color: #2bc8b7;
}
.illu-code__fn {
	color: #6366f1;
}
.illu-code__str {
	color: #f59e0b;
}
.illu-code__cm {
	color: #3f3f46;
	font-style: italic;
}
.illu-code__ok {
	color: #22c55e;
}
.illu-code__cursor {
	display: inline-block;
	width: 0.4375rem;
	height: 0.875rem;
	background: #2bc8b7;
	animation: blink-cursor 1s step-end infinite;
	vertical-align: text-bottom;
	opacity: 0.85;
}
@keyframes blink-cursor {
	0%,
	100% {
		opacity: 0.85;
	}
	50% {
		opacity: 0;
	}
}
.illu-log {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.3125rem;
	padding: 0.75rem 0.875rem;
	font-family: ui-monospace, "SFMono-Regular", "SF Mono", Consolas, "Liberation Mono", monospace;
	font-size: 0.625rem;
	line-height: 1.5;
	z-index: 2;
}
.illu-log__row {
	display: flex;
	gap: 0.4375rem;
	align-items: center;
}
.illu-log__ts {
	color: #3f3f46;
	flex-shrink: 0;
}
.illu-log__lvl {
	padding: 0 0.25rem;
	border-radius: 0.1875rem;
	font-weight: 700;
	flex-shrink: 0;
	font-size: 0.5625rem;
	letter-spacing: 0.04em;
}
.illu-log__lvl--ok {
	background: rgba(34, 197, 94, 0.15);
	color: #4ade80;
}
.illu-log__lvl--warn {
	background: rgba(245, 158, 11, 0.15);
	color: #fbbf24;
}
.illu-log__lvl--crit {
	background: rgba(239, 68, 68, 0.18);
	color: #f87171;
}
.illu-log__msg {
	color: #71717a;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.illu-log__dot {
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 9999px;
	background: #ef4444;
	flex-shrink: 0;
	animation: log-pulse 1.6s ease-in-out infinite;
}
@keyframes log-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
	}
	50% {
		box-shadow: 0 0 0 4px rgba(239, 68, 68, 0);
	}
}
.illu-ms {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}
.illu-ms__wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.25rem;
	width: 3.75rem;
	height: 3.75rem;
	transition: transform 0.3s;
}

.illu-ms__sq {
	border-radius: 0.1875rem;
	transition: opacity 0.3s;
}

.illu-ms__sq--r {
	background: #f25022;
	opacity: 0.7;
}
.illu-ms__sq--g {
	background: #7fba00;
	opacity: 0.7;
}
.illu-ms__sq--b {
	background: #00a4ef;
	opacity: 0.7;
}
.illu-ms__sq--y {
	background: #ffb900;
	opacity: 0.7;
}
.illu-befa {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	z-index: 2;
}
.illu-befa__row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.625rem;
}
.illu-befa__label {
	color: #52525b;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	min-width: 2.5rem;
}
.illu-befa__tags {
	display: flex;
	gap: 0.25rem;
	flex-wrap: wrap;
}
.illu-befa__tag {
	padding: 0.125rem 0.4375rem;
	border-radius: 0.25rem;
	font-size: 0.5625rem;
	font-weight: 500;
}
.illu-befa__tag--before {
	background: rgba(113, 113, 122, 0.15);
	color: #71717a;
	border: 1px solid var(--border);
}
.illu-befa__tag--after {
	background: rgba(43, 200, 183, 0.12);
	color: #2bc8b7;
	border: 1px solid rgba(43, 200, 183, 0.25);
}
.illu-befa__arrow {
	color: #3f3f46;
	font-size: 0.75rem;
	margin: 0 auto;
}
.cs__img-wrap {
	position: relative;
	margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
	.cs__img-wrap {
		margin-bottom: 0;
	}
}
.cs__img-card {
	position: relative;
	border-radius: 1rem;
	padding: 1px;
	background: linear-gradient(to bottom, #3f3f46, transparent);
	aspect-ratio: 76 / 59;
	overflow: hidden;
}
.cs__img-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: calc(1rem - 1px);
}
	height: 1.125rem;
	width: auto;
	filter: invert(1) brightness(0.65);
}
.eci {
	width: 100%;
	height: 100%;
	background: #09090b;
	border-radius: calc(1rem - 1px);
	padding: 0.875rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 0.5625rem;
	color: var(--muted-foreground);
	overflow: hidden;
}
.eci-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #1e1e22;
	flex-shrink: 0;
}
.eci-title {
	font-size: 0.5rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: #3f3f46;
	display: flex;
	align-items: center;
	gap: 0.375rem;
}
.eci-title-dot {
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 9999px;
	background: #2bc8b7;
	animation: pulse-dot 2s ease-in-out infinite;
}
.eci-live {
	font-size: 0.4375rem;
	font-weight: 600;
	color: #22c55e;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}
.eci-live::before {
	content: "";
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 9999px;
	background: #22c55e;
	flex-shrink: 0;
}
.eci-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
	flex: 1;
	min-height: 0;
}
.eci-card {
	background: #111113;
	border: 1px solid #1e1e22;
	border-radius: 0.5rem;
	padding: 0.625rem 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	overflow: hidden;
}
.eci-card-label {
	font-size: 0.4375rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #3f3f46;
	display: flex;
	align-items: center;
	gap: 0.3rem;
	margin-bottom: 0.1rem;
}
.eci-card-label-dot {
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 9999px;
	flex-shrink: 0;
}
.eci-dot--cyan {
	background: #2bc8b7;
}
.eci-dot--green {
	background: #22c55e;
}
.eci-dot--blue {
	background: #3b82f6;
}
.eci-dot--purple {
	background: #8b5cf6;
}
.eci-badge {
	font-size: 0.375rem;
	padding: 0.1rem 0.35rem;
	border-radius: 9999px;
	font-weight: 600;
	margin-left: auto;
	flex-shrink: 0;
}
.eci-badge--cyan {
	background: rgba(43, 200, 183, 0.12);
	color: #2bc8b7;
	border: 1px solid rgba(43, 200, 183, 0.25);
}
.eci-badge--green {
	background: rgba(34, 197, 94, 0.1);
	color: #4ade80;
	border: 1px solid rgba(34, 197, 94, 0.2);
}
.eci-badge--blue {
	background: rgba(59, 130, 246, 0.12);
	color: #60a5fa;
	border: 1px solid rgba(59, 130, 246, 0.2);
}
.eci-badge--purple {
	background: rgba(139, 92, 246, 0.12);
	color: #a78bfa;
	border: 1px solid rgba(139, 92, 246, 0.2);
}
.eci-proj-name {
	font-size: 0.5rem;
	color: #d4d4d8;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 0.1rem;
}
.eci-prog-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.eci-prog-bar {
	flex: 1;
	height: 0.25rem;
	border-radius: 9999px;
	background: #27272a;
	overflow: hidden;
}
.eci-prog-fill {
	height: 100%;
	border-radius: 9999px;
	background: linear-gradient(to right, #2bc8b7, #3b82f6);
}
.eci-prog-pct {
	font-size: 0.4375rem;
	font-weight: 600;
	color: #2bc8b7;
	flex-shrink: 0;
}
.eci-meta-row {
	display: flex;
	justify-content: space-between;
	margin-top: 0.15rem;
}
.eci-meta {
	font-size: 0.375rem;
	color: #52525b;
}
.eci-big-num {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--foreground);
	letter-spacing: -0.04em;
	line-height: 1;
}
.eci-sub {
	font-size: 0.4rem;
	color: #52525b;
	margin-top: -0.05rem;
}
.eci-event-log {
	display: flex;
	flex-direction: column;
	gap: 0.175rem;
	margin-top: auto;
}
.eci-event-row {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	background: #0c0c0e;
	border: 1px solid #1a1a1d;
	border-radius: 0.2rem;
	padding: 0.15rem 0.3rem;
}
.eci-event-time {
	font-size: 0.3125rem;
	color: #3f3f46;
	font-family: ui-monospace, monospace;
	flex-shrink: 0;
}
.eci-event-desc {
	font-size: 0.35rem;
	color: #71717a;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.eci-ms-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.25rem;
	flex: 1;
}
.eci-ms-item {
	background: #0c0c0e;
	border: 1px solid #1a1a1d;
	border-radius: 0.3rem;
	padding: 0.3rem 0.375rem;
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}
.eci-ms-name {
	font-size: 0.4375rem;
	font-weight: 600;
	color: #d4d4d8;
}
.eci-ms-sub {
	font-size: 0.35rem;
	color: #52525b;
}
.eci-msft-logo {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.1rem;
	width: 0.875rem;
	margin-bottom: 0.15rem;
}
.eci-msft-sq {
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 0.05rem;
}
.eci-ba-block {
	background: #0c0c0e;
	border: 1px solid #1a1a1d;
	border-radius: 0.3rem;
	padding: 0.3rem 0.375rem;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}
.eci-ba-title {
	font-size: 0.35rem;
	color: #3f3f46;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.eci-ba-row {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}
.eci-ba-side {
	display: flex;
	flex-direction: column;
	gap: 0.05rem;
	flex: 1;
}
.eci-ba-lbl {
	font-size: 0.3125rem;
	color: #3f3f46;
}
.eci-ba-val {
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.02em;
}
.eci-ba-val--old {
	color: #3f3f46;
	text-decoration: line-through;
}
.eci-ba-val--new {
	color: #2bc8b7;
}
.eci-ba-arrow {
	font-size: 0.4375rem;
	color: #27272a;
	flex-shrink: 0;
}
.eci-chat {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	margin-top: 0.1rem;
}
.eci-prompt {
	background: #0c0c0e;
	border: 1px solid #1a1a1d;
	border-radius: 0.25rem 0.25rem 0.25rem 0;
	padding: 0.2rem 0.3rem;
	font-size: 0.375rem;
	color: #71717a;
}
.eci-response {
	background: #131317;
	border: 1px solid var(--border);
	border-radius: 0.25rem 0.25rem 0 0.25rem;
	padding: 0.2rem 0.3rem;
	font-size: 0.375rem;
	color: var(--muted-foreground);
	align-self: flex-end;
	width: 90%;
}
.eci-response::before {
	content: "↳ ";
	color: #2bc8b7;
}
.cform {
	position: relative;
	background: var(--background);
	padding-block: 5rem 8rem;
	overflow: hidden;
}
.cform::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url(/assets/illustrations/wireframe-bg.svg) center / cover no-repeat;
	opacity: 0.5;
	pointer-events: none;
}
.cform__container {
	position: relative;
	z-index: 1;
	max-width: 64rem;
	margin-inline: auto;
	padding-inline: 1.5rem;
}
.cform__container {
	max-width: 64rem;
	margin-inline: auto;
	padding-inline: 1.5rem;
	text-align: center;
}
.cform__h2 {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--foreground);
	margin-bottom: 1rem;
	line-height: 1.15;
}
.cform__desc {
	font-size: 1.0625rem;
	color: var(--muted-foreground);
	max-width: 42rem;
	margin-inline: auto;
	line-height: 1.7;
	margin-bottom: 2.5rem;
}
.cform__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}
.cform__btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 2rem;
	border-radius: var(--radius);
	font-size: 1rem;
	font-weight: 600;
	background: var(--foreground);
	color: var(--background);
	text-decoration: none;
	transition:
		opacity 0.15s,
		transform 0.15s;
}
.cform__btn-primary:hover {
	opacity: 0.88;
	transform: translateY(-1px);
}
.cform__btn-primary:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}
.cform__btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 1.75rem;
	border-radius: var(--radius);
	font-size: 1rem;
	font-weight: 500;
	border: 1px solid var(--border);
	color: var(--muted-foreground);
	text-decoration: none;
	transition:
		background 0.15s,
		color 0.15s,
		border-color 0.15s;
}
.cform__btn-secondary:hover {
	background: var(--muted);
	color: var(--foreground);
	border-color: #3f3f46;
}
.cform__btn-secondary:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}
.cform__note {
	margin-top: 1.25rem;
	font-size: 0.8125rem;
	color: var(--muted-foreground);
}
@property --hbg-a {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
}
.hbg-btn {
	position: relative;
	display: inline-flex;
	border-radius: 9999px;
	text-decoration: none;
	cursor: pointer;
	isolation: isolate;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.hbg-btn::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: 9999px;
	background: conic-gradient(
		from var(--hbg-a) at 50% 50%,
		transparent 0deg,
		rgba(255, 255, 255, 0.9) 20deg,
		transparent 40deg
	);
	filter: blur(2px);
	animation: hbg-spin 2s linear infinite;
	z-index: 0;
}
.hbg-btn::after {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: 9999px;
	background: #080808;
	z-index: 1;
}
.hbg-btn:hover::before {
	background: conic-gradient(
		from var(--hbg-a) at 50% 50%,
		transparent 0deg,
		#3275f8 30deg,
		transparent 60deg
	);
	filter: blur(3px);
}
@keyframes hbg-spin {
	to {
		--hbg-a: 360deg;
	}
}
.hbg-inner {
	position: relative;
	z-index: 10;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.75rem;
	color: var(--foreground);
	font-family: var(--font-sans);
	font-size: 0.9375rem;
	font-weight: 600;
	white-space: nowrap;
	border-radius: 9999px;
}
.hbg-inner svg {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}
[data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].revealed {
	opacity: 1;
	transform: translateY(0);
}
[data-reveal][data-delay="1"] {
	transition-delay: 0.12s;
}
[data-reveal][data-delay="2"] {
	transition-delay: 0.24s;
}
[data-reveal][data-delay="3"] {
	transition-delay: 0.36s;
}
@media (max-width: 767px) {
	[data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
.wa-sticky {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 100;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #16a34a;
	color: #fff;
	border-radius: 9999px;
	padding: 0.75rem 1.25rem 0.75rem 1rem;
	font-family: var(--font-sans);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 24px rgba(22, 163, 74, 0.35);
	transition:
		background 0.18s,
		box-shadow 0.18s,
		transform 0.18s;
}
.wa-sticky:hover {
	background: #15803d;
	box-shadow: 0 6px 32px rgba(22, 163, 74, 0.45);
	transform: translateY(-2px);
}
.wa-sticky svg {
	width: 1.125rem;
	height: 1.125rem;
	flex-shrink: 0;
}
.wa-sticky__dot {
	width: 0.4375rem;
	height: 0.4375rem;
	border-radius: 9999px;
	background: #86efac;
	flex-shrink: 0;
	animation: wa-pulse 2s ease-in-out infinite;
}
@keyframes wa-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(134, 239, 172, 0.6);
	}
	50% {
		box-shadow: 0 0 0 5px rgba(134, 239, 172, 0);
	}
}
@media (max-width: 639px) {
	.wa-sticky span.wa-label {
		display: none;
	}
	.wa-sticky {
		padding: 0.875rem;
	}
}
.bp {
	padding-block: 6rem;
	background: #0a0a0a;
	border-top: 1px solid #18181b;
}

.bp__head {
	text-align: center;
	margin-bottom: 3rem;
}
.bp__h2 {
	font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--foreground);
	margin: 0 0 1rem;
}
.bp__desc {
	margin: 0 auto;
	font-size: 1.0625rem;
	color: var(--muted-foreground);
	max-width: 46rem;
	line-height: 1.7;
}
.bp__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}
@media (max-width: 768px) {
	.bp__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 1rem;
		margin-inline: -1.5rem;
		padding-inline: 1.5rem;
		scroll-padding-inline: 1.5rem;
	}
	.bp__grid::-webkit-scrollbar {
		display: none;
	}
	.bp__card {
		flex: 0 0 calc(100% - 3rem);
		scroll-snap-align: center;
	}
}
.bp__card {
	display: flex;
	flex-direction: column;
	background: #0f0f12;
	border: 1px solid var(--border);
	border-radius: 1rem;
	overflow: hidden;
	text-decoration: none;
	transition:
		border-color 0.2s,
		transform 0.2s,
		box-shadow 0.2s;
}
.bp__card:hover {
	border-color: #3f3f46;
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.55);
}
.bp__card-body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 0.75rem;
}
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	padding: 0.25rem 0.625rem;
	border-radius: 9999px;
	width: fit-content;
}
	background: rgba(239, 68, 68, 0.1);
	color: #f87171;
	border: 1px solid rgba(239, 68, 68, 0.2);
}
	background: rgba(0, 120, 212, 0.1);
	color: #60a5fa;
	border: 1px solid rgba(0, 120, 212, 0.2);
}
	background: rgba(13, 148, 136, 0.1);
	color: #2bc8b7;
	border: 1px solid rgba(13, 148, 136, 0.2);
}
	background: rgba(139, 92, 246, 0.1);
	color: #a78bfa;
	border: 1px solid rgba(139, 92, 246, 0.2);
}
.bp__card-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--foreground);
	line-height: 1.4;
}
.bp__card:hover .bp__card-title {
	color: #2bc8b7;
	transition: color 0.2s;
}
.bp__card-desc {
	font-size: 0.875rem;
	color: #71717a;
	line-height: 1.6;
	flex: 1;
}
.bp__card-foot {
	padding: 1rem 1.5rem;
	border-top: 1px solid #18181b;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.bp__card-read {
	font-size: 0.8125rem;
	font-weight: 500;
	color: #52525b;
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	transition: color 0.2s;
}
.bp__card:hover .bp__card-read {
	color: #2bc8b7;
}
.bp__card-read svg {
	width: 14px;
	height: 14px;
	transition: transform 0.2s;
}
.bp__card:hover .bp__card-read svg {
	transform: translateX(3px);
}
.bp__footer {
	margin-top: 2.5rem;
	display: flex;
	justify-content: center;
}
.bp__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	height: 2.625rem;
	padding-inline: 1.5rem;
	border: 1px solid var(--border);
	border-radius: 0.75rem;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--foreground);
	text-decoration: none;
	transition:
		border-color 0.2s,
		background 0.2s;
}
.bp__btn:hover {
	border-color: #2bc8b7;
	background: rgba(43, 200, 183, 0.06);
	color: #2bc8b7;
}
.bp__btn svg {
	width: 15px;
	height: 15px;
}

.caseband {
	padding-block: 5.5rem;
	background: var(--background);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.caseband__head {
	text-align: center;
	margin-bottom: 3rem;
}
.caseband__title {
	color: var(--foreground);
	margin: 0 0 1rem;
}
.caseband__lead {
	margin: 0 auto;
	max-width: 46rem;
	color: var(--muted-foreground);
	line-height: 1.7;
	font-size: 1.0625rem;
}
.caseband__grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1.5rem;
}
@media (max-width: 768px) {
	.caseband__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 1rem;
		margin-inline: -1.5rem;
		padding-inline: 1.5rem;
		scroll-padding-inline: 1.5rem;
	}
	.caseband__grid::-webkit-scrollbar {
		display: none;
	}
	.caseband__card {
		flex: 0 0 calc(100% - 3rem);
		scroll-snap-align: center;
	}
}
@media (min-width: 769px) {
	.caseband__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.caseband__card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--border);
	border-radius: 1rem;
	background: #0d0d10;
	overflow: hidden;
	transition: border-color 0.2s, box-shadow 0.2s;
	text-decoration: none;
}
.caseband__card:hover {
	border-color: rgba(255, 255, 255, 0.15);
	box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 8px 24px rgba(0,0,0,.35);
}
.caseband__card-image {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 9;
	background: #0a0a0b;
	border-bottom: 1px solid var(--border);
	padding: 1.5rem;
}
.caseband__card-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}
.caseband__card-image img[src*="fp.svg"] {
	filter: invert(1);
}
.caseband__card-info {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.caseband__card-title {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--foreground);
	letter-spacing: -0.01em;
}
.caseband__card-desc {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--muted-foreground);
	line-height: 1.65;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.unified-showcase {
	background: var(--background);
	padding-block: 5rem 7rem;
	overflow: hidden;
}
.unified-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 3rem;
	align-items: start;
}
.unified-left {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
}
.unified-selector {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding-top: 0.5rem;
	flex-shrink: 0;
}
.unified-bar {
	position: relative;
	width: 3px;
	height: 48px;
	background: #27272a;
	border: none;
	border-radius: 2px;
	cursor: pointer;
	padding: 0;
	overflow: hidden;
	transition: background 0.2s;
}
.unified-bar:hover {
	background: #3f3f46;
}
.unified-bar.is-active {
	background: #3f3f46;
}
.unified-bar-fill {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: #fafafa;
	border-radius: 2px;
	transition: height 0.15s linear;
}
.unified-bar.is-active .unified-bar-fill {
	height: 100%;
	transition: height 5s linear;
}
.unified-bar-fill.instant {
	transition: none !important;
}
.unified-text-wrap {
	position: relative;
	height: 260px;
	overflow: hidden;
}
.unified-slide-text {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.5s ease, transform 0.5s ease;
	pointer-events: none;
	will-change: transform, opacity;
}
.unified-slide-text.is-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	position: relative;
}
.unified-h2 {
	color: var(--foreground);
	margin-bottom: 1rem;
}
.unified-slogan {
	font-size: 1.0625rem;
	color: var(--muted-foreground);
	line-height: 1.7;
	max-width: 38rem;
	margin-bottom: 1.75rem;
}
.unified-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--foreground);
	border: 1px solid var(--border);
	border-radius: 0.5rem;
	padding: 0.625rem 1.25rem;
	transition: border-color 0.2s, color 0.2s;
	text-decoration: none;
}
.unified-cta:hover {
	border-color: #2bc8b7;
	color: #2bc8b7;
}
.unified-cta svg {
	width: 1rem;
	height: 1rem;
}
.unified-right {
	position: relative;
	height: 400px;
	overflow: hidden;
}
.unified-visual {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	pointer-events: none;
	will-change: transform, opacity;
}
.unified-visual.is-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	position: relative;
}
@media (max-width: 900px) {
	.unified-layout {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.unified-right {
		min-height: 300px;
		order: -1;
	}
	.unified-h2 {
		font-size: clamp(1.75rem, 5vw, 2.5rem);
	}
}

.hero {
	position: relative;
	top: auto;
	display: flex;
	align-items: center;
	min-height: 50svh;
	min-height: 50dvh;
	padding-block: 3rem 2.5rem;
	overflow: hidden;
}

.hero__content {
	width: 100%;
	max-width: 64rem;
	padding-top: clamp(5rem, 8vh, 6rem);
	padding-bottom: clamp(1rem, 3vh, 1.5rem);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero__layout {
	position: relative;
	display: block;
	width: 100%;
}

.nf-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0.45;
	background-image:
		linear-gradient(
			to right,
			rgba(161, 161, 170, 0.1) 1px,
			transparent 1px
		),
		linear-gradient(
			to bottom,
			rgba(161, 161, 170, 0.2) 1px,
			transparent 1px
		);
	background-size: 32px 32px;
	mask-image: radial-gradient(
		ellipse 60% 40% at 50% 0%,
		black 0%,
		transparent 100%
	);
	-webkit-mask-image: radial-gradient(
		ellipse 60% 40% at 50% 0%,
		black 0%,
		transparent 100%
	);
}
@media (min-width: 768px) {
	.nf-bg {
		background-size: 48px 48px;
		mask-image: radial-gradient(
			ellipse 30% 35% at 50% 20%,
			black 0%,
			transparent 100%
		);
		-webkit-mask-image: radial-gradient(
			ellipse 30% 35% at 50% 20%,
			black 0%,
			transparent 100%
		);
	}
}

.hero__text {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	max-width: 58%;
	padding-top: 0.5rem;
}

@media (max-width: 959px) {
	.hero__text {
		max-width: 100%;
	}
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.8rem;
	margin: 0 0 1.1rem;
	border-radius: 10px;
	background: #ffffff0d;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1.2;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero__h1 {
	display: block;
	margin-top: 0;
	max-width: 28ch;
	margin-bottom: 1.1rem;
	font-family: var(--font-sans);
	font-size: clamp(2rem, 3vw, 3rem);;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -0.02em;
	background: linear-gradient(90deg, #d4d4d8 0%, #f4f4f5 35%, #fafafa 50%, #f4f4f5 65%, #d4d4d8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero__subtitle {
	max-width: 40rem;
	margin-bottom: 2.25rem;
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	font-family: var(--font-sans);
	color: var(--muted-foreground);
	line-height: 1.65;
}

.hero__cta-wrap {
	justify-content: flex-start;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.hero__cta-wrap .btn,
.hero__cta-wrap .cform__btn-secondary {
	height: 2.75rem;
	padding-inline: 1.75rem;
	font-size: 0.9375rem;
	font-family: var(--font-sans);
	border-radius: var(--radius);
	font-weight: 600;
}

.hero__service-marquee {
	position: relative;
	width: 100%;
	max-width: 52rem;
	overflow: hidden;
	-webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hero__service-track {
	display: flex;
	width: max-content;
	animation: service-scroll 22s linear infinite;
}

.hero__service-track:hover {
	animation-play-state: paused;
}

.hero__service-group {
	display: flex;
	align-items: center;
	gap: 0;
	flex-shrink: 0;
}

.hero__service-link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding-inline: 1.25rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--muted-foreground);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s;
}

.hero__service-link:hover {
	color: #2bc8b7;
}

.hero__service-dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #3f3f46;
	flex-shrink: 0;
}

@keyframes service-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.hero__service-track {
		animation: none;
	}
}

.hero-scroll {
	height: auto;
}

.hero-exit {
	display: none;
}
