/**
 * Homepage-only layering: mesh gradients, trust band, separators.
 */

body.aash-front {
	position: relative;
}

body.aash-front::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	opacity: 0.045;
	z-index: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.28' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
	mix-blend-mode: multiply;
}

html[data-theme="dark"] body.aash-front::after {
	opacity: 0.12;
	mix-blend-mode: screen;
}

.site-main-home {
	position: relative;
	z-index: 2;
}

.section--hero {
	position: relative;
	overflow: clip;
	min-height: 78vh;
	display: flex;
	align-items: center;
}

.hero-home {
	position: relative;
	overflow: clip;
	min-height: 78vh;
}

.hero-mesh {
	position: absolute;
	inset: -18% -28% auto -35%;
	height: clamp(620px, 78vw, 920px);
	background:
		radial-gradient(35% 40% at 18% 10%, rgba(56, 189, 248, 0.6), transparent 55%),
		radial-gradient(40% 45% at 78% 6%, rgba(37, 99, 235, 0.8), transparent 60%),
		radial-gradient(45% 40% at 48% 80%, rgba(14, 165, 233, 0.35), transparent 55%),
		radial-gradient(60% 60% at 60% 30%, rgba(15, 23, 42, 0.4), transparent 70%);
	filter: saturate(132%) blur(0px);
	transform: translate3d(0, 0, 0);
	opacity: 0.95;
}

html[data-theme="dark"] .hero-mesh {
	opacity: 0.55;
	filter: saturate(140%) brightness(1.05);
}

.aash-orbs span {
	position: absolute;
	inset: auto;
	display: block;
	border-radius: 999px;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 60%);
	opacity: 0.35;
	transform: translate3d(0, 0, 0);
	box-shadow:
		0 0 140px rgba(56, 189, 248, 0.6),
		0 40px 90px rgba(37, 99, 235, 0.25);
	filter: blur(0.5px);
}

.aash-orb--xl {
	width: clamp(260px, 24vw, 420px);
	height: clamp(260px, 24vw, 420px);
	top: clamp(42px, 8vw, 120px);
	left: clamp(42px, 8vw, 120px);
}

.aash-orb--md {
	width: clamp(180px, 16vw, 280px);
	height: clamp(180px, 16vw, 280px);
	bottom: clamp(72px, 10vw, 160px);
	right: clamp(-40px, 4vw, 80px);
}

.trust-strip {
	position: relative;
	padding: clamp(1.05rem, 3vw, 1.85rem) 0;
	background: rgba(15, 23, 42, 0.04);
	border-block: 1px solid rgba(148, 163, 184, 0.2);
	overflow: hidden;
}

html[data-theme="dark"] .trust-strip {
	background: rgba(2, 6, 23, 0.6);
	border-color: rgba(148, 163, 184, 0.12);
}

.trust-strip__label {
	display: block;
	width: fit-content;
	margin: 0 auto 1rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--clr-muted);
}

.trust-marquee {
	overflow: hidden;
	width: 100%;
	mask-image: linear-gradient(90deg, transparent 0%, #fff 10%, #fff 90%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #fff 10%, #fff 90%, transparent 100%);
}

.trust-marquee__track {
	display: flex;
	width: max-content;
	align-items: center;
	gap: 0;
	animation: trust-marquee-x 42s linear infinite;
}

.trust-marquee:hover .trust-marquee__track {
	animation-play-state: paused;
}

@keyframes trust-marquee-x {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(-50%, 0, 0);
	}
}

.trust-logos--row {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: clamp(2rem, 5vw, 3.5rem);
	flex: 0 0 auto;
}

.trust-logos--row span {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: 0.06em;
	color: rgba(15, 23, 42, 0.5);
	flex: 0 0 auto;
	white-space: nowrap;
	text-align: center;
	font-size: 0.95rem;
	transition: transform 220ms ease, color 220ms ease, opacity 220ms ease;
}

html[data-theme="dark"] .trust-logos--row span {
	color: rgba(226, 232, 240, 0.5);
}

.trust-logos--row span:hover {
	color: rgba(37, 99, 235, 0.85);
	opacity: 0.92;
	transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
	.trust-marquee__track {
		animation: none;
		transform: none;
		justify-content: center;
		flex-wrap: wrap;
		width: 100%;
		max-width: 56rem;
		margin-inline: auto;
	}

	.trust-marquee {
		mask-image: none;
		-webkit-mask-image: none;
	}

	.trust-logos--duplicate {
		display: none;
	}

	.trust-logos--row {
		flex-wrap: wrap;
		justify-content: center;
		gap: 1.25rem 2rem;
	}
}

.section-divider {
	position: relative;
	height: clamp(52px, 8vw, 84px);
	pointer-events: none;
	overflow: hidden;
}

.section-divider svg {
	position: absolute;
	inset-inline: 0;
	top: auto;
	bottom: 0;
	width: 100%;
	height: clamp(52px, 8vw, 84px);
}

.section-divider--flip svg {
	top: 0;
	bottom: auto;
	transform: rotate(180deg);
}

.mid-cta {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(260px, 1.2fr);
	gap: 1.75rem;
	align-items: stretch;
	position: relative;
	overflow: clip;
	isolation: isolate;
}

.mid-cta::before {
	content: "";
	position: absolute;
	inset: -120px;
	background:
		conic-gradient(
			from 180deg at 50% 50%,
			rgba(56, 189, 248, 0),
			rgba(37, 99, 235, 0.4),
			rgba(56, 189, 248, 0.08),
			rgba(15, 23, 42, 0)
		);
	opacity: 0.5;
	animation: halo-spin 16s linear infinite;
	z-index: 0;
}

@keyframes halo-spin {
	to {
		transform: rotate(1turn);
	}
}

.mid-cta__inner {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}

@media (prefers-reduced-motion: reduce) {
	.mid-cta::before {
		animation: none;
		opacity: 0.2;
	}
}

.industry-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
}

.industry-card {
	padding: clamp(1.25rem, 2.5vw, 1.85rem);
}

.industry-card h3 {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.45rem;
}

.industry-dot {
	inline-size: 0.62rem;
	block-size: 0.62rem;
	border-radius: 999px;
	background: linear-gradient(120deg, #38bdf8, #2563eb);
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
	flex-shrink: 0;
}

.story-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1rem;
}

.story-card {
	display: grid;
	grid-template-rows: auto 1fr auto;
	min-height: 220px;
}

.story-metrics {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.35rem;
}

.story-metrics strong {
	display: inline-block;
	padding: 0.35rem 0.62rem;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.1);
	border: 1px solid rgba(37, 99, 235, 0.18);
	font-size: 0.74rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.engagement-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
}

.faq-strip details {
	transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.faq-strip details:hover {
	transform: translateY(-2px);
	border-color: rgba(37, 99, 235, 0.45);
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

html[data-theme="dark"] .faq-strip details:hover {
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.6);
	border-color: rgba(56, 189, 248, 0.45);
}

.final-cta {
	text-align: center;
	padding-block: clamp(3rem, 7vw, 5rem);
}

.final-cta h2 {
	font-size: clamp(2rem, 4vw, 3.2rem);
}

/* -------------------------------------------------------------------------
   AI hero + home sections
   ------------------------------------------------------------------------- */

.hero-home.hero-premium {
	position: relative;
	min-height: min(92vh, 980px);
	overflow: clip;
	isolation: isolate;
	color: #e2e8f0;
	background:
		radial-gradient(1000px 640px at 12% -8%, rgba(56, 189, 248, 0.32), transparent 57%),
		radial-gradient(820px 520px at 92% 8%, rgba(37, 99, 235, 0.28), transparent 55%),
		radial-gradient(520px 480px at 55% 100%, rgba(14, 165, 233, 0.12), transparent 58%),
		linear-gradient(165deg, #020617 0%, #071023 42%, #0b1228 72%, #020617 100%);
}

html[data-theme="dark"] .hero-home.hero-premium {
	background:
		radial-gradient(1000px 640px at 14% -6%, rgba(56, 189, 248, 0.26), transparent 56%),
		radial-gradient(760px 500px at 94% 6%, rgba(99, 102, 241, 0.16), transparent 54%),
		radial-gradient(520px 480px at 48% 98%, rgba(14, 165, 233, 0.1), transparent 56%),
		linear-gradient(165deg, #010409 0%, #030b16 45%, #050c1c 100%);
}

.hero-home.hero-premium .hero-ai-shimmer {
	opacity: 0.32;
	mix-blend-mode: overlay;
}

.hero-home.hero-premium .hero-mesh {
	opacity: 0.82;
	filter: saturate(148%) brightness(1.03);
}

html[data-theme="dark"] .hero-home.hero-premium .hero-mesh {
	opacity: 0.62;
}

.hero-premium__grid-lines {
	position: absolute;
	inset: -1px;
	pointer-events: none;
	opacity: 0.24;
	background-image:
		linear-gradient(rgba(148, 163, 184, 0.14) 1px, transparent 1px),
		linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 78% 68% at 55% 38%, #000 18%, transparent 72%);
	-webkit-mask-image: radial-gradient(ellipse 78% 68% at 55% 38%, #000 18%, transparent 72%);
}

.hero-premium__particles {
	position: absolute;
	inset: -8%;
	pointer-events: none;
	overflow: hidden;
	animation: hero-premium-particle-layer 52s linear infinite;
}

@keyframes hero-premium-particle-layer {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(-22px, -16px, 0);
	}
}

.hero-premium__dot {
	position: absolute;
	width: 3px;
	height: 3px;
	border-radius: 999px;
	background: rgba(186, 230, 253, 0.38);
	box-shadow: 0 0 18px rgba(56, 189, 248, 0.45);
	animation: hero-premium-dot 16s ease-in-out infinite;
}

.hero-premium__dot:nth-child(1) { left: 6%; top: 18%; animation-delay: 0s; }
.hero-premium__dot:nth-child(2) { left: 12%; top: 62%; animation-delay: 1.1s; }
.hero-premium__dot:nth-child(3) { left: 22%; top: 36%; animation-delay: 0.4s; }
.hero-premium__dot:nth-child(4) { left: 28%; top: 84%; animation-delay: 2.2s; }
.hero-premium__dot:nth-child(5) { left: 38%; top: 12%; animation-delay: 1.6s; }
.hero-premium__dot:nth-child(6) { left: 44%; top: 52%; animation-delay: 0.8s; }
.hero-premium__dot:nth-child(7) { left: 52%; top: 28%; animation-delay: 2.8s; }
.hero-premium__dot:nth-child(8) { left: 58%; top: 76%; animation-delay: 0.2s; }
.hero-premium__dot:nth-child(9) { left: 66%; top: 18%; animation-delay: 1.9s; }
.hero-premium__dot:nth-child(10) { left: 72%; top: 44%; animation-delay: 1.2s; }
.hero-premium__dot:nth-child(11) { left: 78%; top: 88%; animation-delay: 2.4s; }
.hero-premium__dot:nth-child(12) { left: 86%; top: 32%; animation-delay: 0.6s; }
.hero-premium__dot:nth-child(13) { left: 91%; top: 66%; animation-delay: 1.4s; }
.hero-premium__dot:nth-child(14) { left: 16%; top: 42%; animation-delay: 2.6s; }
.hero-premium__dot:nth-child(15) { left: 34%; top: 70%; animation-delay: 0.9s; }
.hero-premium__dot:nth-child(16) { left: 48%; top: 14%; animation-delay: 2.1s; }
.hero-premium__dot:nth-child(17) { left: 62%; top: 58%; animation-delay: 0.3s; }
.hero-premium__dot:nth-child(18) { left: 74%; top: 24%; animation-delay: 1.7s; }
.hero-premium__dot:nth-child(19) { left: 8%; top: 90%; animation-delay: 2.9s; }
.hero-premium__dot:nth-child(20) { left: 54%; top: 92%; animation-delay: 1.1s; }
.hero-premium__dot:nth-child(21) { left: 92%; top: 12%; animation-delay: 0.5s; }
.hero-premium__dot:nth-child(22) { left: 40%; top: 48%; animation-delay: 2.3s; }

@keyframes hero-premium-dot {
	0%,
	100% {
		opacity: 0.15;
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		opacity: 0.85;
		transform: translate3d(0, -14px, 0) scale(1.25);
	}
}

.hero-premium__orbs {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero-premium__orb-accent {
	background: radial-gradient(circle at 35% 35%, rgba(125, 211, 252, 0.55), transparent 62%) !important;
	box-shadow:
		0 0 90px rgba(56, 189, 248, 0.55),
		0 30px 70px rgba(37, 99, 235, 0.28) !important;
}

.hero.hero--premium {
	grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.96fr);
	gap: clamp(1.25rem, 4vw, 3.5rem);
	align-items: center;
	padding-block: clamp(0.5rem, 2vw, 1.5rem);
}

.hero-premium__copy {
	max-width: 38rem;
}

.hero-premium__badge-row {
	margin-bottom: 1.15rem;
}

.hero-premium-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.45rem 0.85rem 0.45rem 0.55rem;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.22);
	background: rgba(15, 23, 42, 0.45);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(226, 232, 240, 0.88);
}

.hero-premium-badge__pulse {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(135deg, #38bdf8, #2563eb);
	box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.55);
	animation: hero-premium-pulse 2.6s ease-out infinite;
}

@keyframes hero-premium-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.45);
	}
	70% {
		box-shadow: 0 0 0 12px rgba(56, 189, 248, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
	}
}

.hero-premium__title {
	margin: 0 0 1.1rem;
	font-family: var(--font-display);
	font-size: clamp(2.35rem, 4.4vw + 0.85rem, 3.85rem);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1.08;
	color: #f8fafc;
}

.hero-premium__title-line {
	display: inline;
}

.hero-premium__title-dot {
	color: rgba(148, 163, 184, 0.35);
}

.hero-premium__title-spin {
	display: inline-flex;
	vertical-align: bottom;
	min-width: min(100%, 12.5ch);
	max-width: 100%;
	height: 1.08em;
	overflow: hidden;
	line-height: 1.08;
	position: relative;
	margin-inline: 0.04em;
}

.hero-premium__title-spin-inner {
	display: flex;
	flex-direction: column;
	animation: hero-premium-spin 11s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.hero-premium__title-word {
	flex: 0 0 auto;
	line-height: 1.08;
	min-height: 1.08em;
	display: inline-flex;
	align-items: center;
	background: linear-gradient(115deg, #bae6fd 0%, #38bdf8 35%, #2563eb 68%, #93c5fd 100%);
	background-size: 180% 180%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: hero-premium-grad 8s ease-in-out infinite;
}

@keyframes hero-premium-spin {
	0%,
	18% {
		transform: translateY(0);
	}
	25%,
	43% {
		transform: translateY(-25%);
	}
	50%,
	68% {
		transform: translateY(-50%);
	}
	75%,
	93% {
		transform: translateY(-75%);
	}
	100% {
		transform: translateY(0);
	}
}

@keyframes hero-premium-grad {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.hero-premium__lead {
	margin: 0 0 1.65rem;
	font-size: clamp(1rem, 0.45vw + 0.93rem, 1.125rem);
	line-height: 1.72;
	max-width: 52ch;
	color: rgba(203, 213, 225, 0.9);
}

.hero-premium__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.15rem;
}

.hero-premium__btn--glass {
	color: rgba(241, 245, 249, 0.95);
	background: rgba(15, 23, 42, 0.32);
	border-color: rgba(148, 163, 184, 0.32);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hero-premium__btn--glass:hover {
	border-color: rgba(56, 189, 248, 0.55);
	color: #fff;
	transform: translateY(-3px);
	box-shadow:
		0 0 0 1px rgba(56, 189, 248, 0.15) inset,
		0 22px 50px rgba(15, 23, 42, 0.5),
		0 0 36px rgba(56, 189, 248, 0.2);
}

.hero-premium__rush {
	margin: 0 0 0.72rem;
	font-size: 0.95rem;
	font-weight: 650;
	color: rgba(226, 232, 240, 0.82);
	letter-spacing: -0.01em;
}

.hero-premium-tech {
	list-style: none;
	margin: 0 0 1.35rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 0.75rem;
	font-size: 0.74rem;
	font-weight: 600;
	color: rgba(148, 163, 184, 0.78);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hero-premium-tech__item {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.hero-premium-tech__item::after {
	content: "•";
	opacity: 0.35;
	font-weight: 700;
}

.hero-premium-tech__item:last-child::after {
	content: none;
}

.hero-premium-trust {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 0.65rem;
}

.hero-premium-trust__item {
	display: inline-flex;
	align-items: center;
	gap: 0.38rem;
	padding: 0.38rem 0.65rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 600;
	color: rgba(226, 232, 240, 0.86);
	background: rgba(15, 23, 42, 0.38);
	border: 1px solid rgba(148, 163, 184, 0.16);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.hero-premium-trust__tick {
	color: #22d3ee;
	font-size: 0.85rem;
	line-height: 1;
}

.hero-premium-proof {
	margin: 0;
	font-size: 0.88rem;
	color: rgba(148, 163, 184, 0.88);
	max-width: 46ch;
	line-height: 1.55;
}

.hero-premium__visual-shell {
	position: relative;
	padding: 0;
	min-height: clamp(360px, 52vw, 520px);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	border: none;
	overflow: visible;
}

.hero-premium__visual-shell::before {
	content: none;
}

.hero-premium-shape {
	position: absolute;
	border-radius: 999px;
	filter: blur(0.5px);
	pointer-events: none;
	z-index: 0;
}

.hero-premium-shape--1 {
	width: clamp(180px, 28vw, 280px);
	height: clamp(180px, 28vw, 280px);
	top: -6%;
	right: 4%;
	background: radial-gradient(circle at 40% 40%, rgba(56, 189, 248, 0.35), transparent 68%);
	opacity: 0.75;
	animation: hero-premium-shape 18s ease-in-out infinite;
}

.hero-premium-shape--2 {
	width: clamp(120px, 18vw, 200px);
	height: clamp(120px, 18vw, 200px);
	bottom: 6%;
	left: -4%;
	background: radial-gradient(circle at 55% 35%, rgba(99, 102, 241, 0.32), transparent 70%);
	opacity: 0.55;
	animation: hero-premium-shape 14s ease-in-out infinite reverse;
}

@keyframes hero-premium-shape {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(8px, -12px, 0) scale(1.05);
	}
}

.hero-premium-float {
	position: absolute;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.55rem 0.78rem;
	border-radius: 1rem;
	border: 1px solid rgba(148, 163, 184, 0.18);
	background: rgba(15, 23, 42, 0.55);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow:
		0 18px 50px rgba(0, 0, 0, 0.45),
		0 0 0 1px rgba(255, 255, 255, 0.04) inset;
	font-size: 0.78rem;
	color: #e2e8f0;
	animation: hero-premium-float 7s ease-in-out infinite;
}

.hero-premium-float strong {
	display: block;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.hero-premium-float small {
	display: block;
	font-size: 0.68rem;
	color: rgba(148, 163, 184, 0.9);
	font-weight: 600;
}

.hero-premium-float__icon {
	font-size: 1.15rem;
	line-height: 1;
}

.hero-premium-float--1 {
	top: -2%;
	right: -2%;
	animation-delay: 0s;
}

.hero-premium-float--2 {
	top: 26%;
	left: -4%;
	animation-delay: 1.1s;
}

.hero-premium-float--3 {
	bottom: 38%;
	right: -6%;
	animation-delay: 0.55s;
}

.hero-premium-float--4 {
	bottom: -4%;
	left: 8%;
	animation-delay: 1.65s;
}

@keyframes hero-premium-float {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(0, -10px, 0);
	}
}

.hero-dash {
	position: relative;
	z-index: 2;
	width: min(520px, 100%);
	margin-inline: auto;
}

.hero-dash-glass.hero-dash__frame.glass-card,
.hero-dash__frame.glass-card.hero-dash-glass {
	padding: clamp(0.65rem, 2vw, 0.95rem);
	border-radius: 1.45rem;
	background: rgba(10, 16, 32, 0.55);
	border: 1px solid rgba(148, 163, 184, 0.22);
	backdrop-filter: blur(26px);
	-webkit-backdrop-filter: blur(26px);
	box-shadow:
		0 40px 100px rgba(0, 0, 0, 0.55),
		0 0 0 1px rgba(56, 189, 248, 0.08) inset;
}

.hero-dash__ambient {
	position: absolute;
	inset: 10% -8% auto -12%;
	height: 48%;
	background: radial-gradient(ellipse at 50% 0%, rgba(56, 189, 248, 0.22), transparent 62%);
	pointer-events: none;
	z-index: 0;
}

.hero-dash__topbar {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 0.55rem;
	padding-bottom: 0.55rem;
	border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.hero-dash__dots {
	display: inline-flex;
	gap: 5px;
}

.hero-dash__dots i {
	width: 8px;
	height: 8px;
	border-radius: 99px;
	background: rgba(148, 163, 184, 0.28);
}

.hero-dash__dots i:nth-child(1) {
	background: #fb7185;
}
.hero-dash__dots i:nth-child(2) {
	background: #fbbf24;
}
.hero-dash__dots i:nth-child(3) {
	background: #34d399;
}

.hero-dash__title {
	flex: 1;
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(226, 232, 240, 0.65);
}

.hero-dash__pill {
	font-size: 0.65rem;
	font-weight: 700;
	padding: 0.22rem 0.55rem;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.12);
	color: #4ade80;
	border: 1px solid rgba(74, 222, 128, 0.28);
}

.hero-dash__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.22fr) minmax(0, 1fr);
	gap: 0.65rem;
	align-items: start;
}

.hero-dash__sidebar {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 0.25rem 0;
}

.hero-dash-nav {
	font-size: 0.68rem;
	font-weight: 650;
	color: rgba(148, 163, 184, 0.75);
	padding: 0.32rem 0.45rem;
	border-radius: 0.55rem;
}

.hero-dash-nav--active {
	color: #f8fafc;
	background: rgba(56, 189, 248, 0.12);
	border: 1px solid rgba(56, 189, 248, 0.25);
}

.hero-dash__main {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	min-width: 0;
}

.hero-dash-metrics {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.45rem;
}

.hero-dash-metric {
	padding: 0.48rem 0.55rem;
	border-radius: 0.85rem;
	background: rgba(15, 23, 42, 0.55);
	border: 1px solid rgba(148, 163, 184, 0.12);
}

.hero-dash-metric small {
	display: block;
	font-size: 0.58rem;
	font-weight: 650;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(148, 163, 184, 0.75);
	margin-bottom: 0.12rem;
}

.hero-dash-metric strong {
	display: block;
	font-size: 1.02rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #f1f5f9;
}

.hero-dash-metric span {
	display: block;
	font-size: 0.6rem;
	color: rgba(148, 163, 184, 0.82);
	margin-top: 0.06rem;
}

.hero-dash-metric--up strong {
	background: linear-gradient(90deg, #7dd3fc, #2563eb);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-dash-chart {
	border-radius: 0.95rem;
	border: 1px solid rgba(148, 163, 184, 0.12);
	background: rgba(2, 6, 23, 0.45);
	overflow: hidden;
}

.hero-dash-chart__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.45rem 0.62rem;
	font-size: 0.62rem;
	font-weight: 650;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(203, 213, 225, 0.8);
	border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.hero-dash-chart__range {
	opacity: 0.55;
}

.hero-dash-chart__svg {
	display: block;
	width: 100%;
	height: clamp(92px, 18vw, 118px);
}

.hero-dash__split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
	gap: 0.5rem;
	align-items: stretch;
}

.hero-dash-cards__label {
	margin: 0 0 0.35rem;
	font-size: 0.62rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(148, 163, 184, 0.82);
}

.hero-dash-card {
	padding: 0.48rem 0.52rem;
	border-radius: 0.75rem;
	font-size: 0.72rem;
	font-weight: 650;
	color: #e2e8f0;
	background: rgba(15, 23, 42, 0.5);
	border: 1px solid rgba(148, 163, 184, 0.12);
	margin-bottom: 0.42rem;
}

.hero-dash-card em {
	display: block;
	margin-top: 0.28rem;
	font-style: normal;
	font-size: 0.62rem;
	font-weight: 600;
	color: rgba(148, 163, 184, 0.85);
}

.hero-dash-card--accent {
	border-color: rgba(56, 189, 248, 0.35);
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(15, 23, 42, 0.55));
}

.hero-dash-chat {
	padding: 0.52rem !important;
	border-radius: 0.98rem !important;
	background: rgba(8, 12, 24, 0.68) !important;
	border-color: rgba(148, 163, 184, 0.16) !important;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4) !important;
}

.hero-dash-chat__head {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 0.42rem;
	font-size: 0.68rem;
	font-weight: 750;
	color: #f1f5f9;
}

.hero-dash-chat__badge {
	width: 8px;
	height: 8px;
	border-radius: 99px;
	background: linear-gradient(135deg, #38bdf8, #6366f1);
	box-shadow: 0 0 16px rgba(56, 189, 248, 0.5);
	flex-shrink: 0;
}

.hero-dash-chat__tag {
	margin-left: auto;
	font-size: 0.58rem;
	font-weight: 700;
	padding: 0.16rem 0.45rem;
	border-radius: 999px;
	color: #4ade80;
	background: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(74, 222, 128, 0.22);
}

.hero-dash-chat__msg {
	padding: 0.45rem 0.55rem;
	border-radius: 0.65rem;
	font-size: 0.65rem;
	line-height: 1.45;
	margin-bottom: 0.35rem;
	max-width: 100%;
}

.hero-dash-chat__msg--them {
	background: rgba(30, 41, 59, 0.78);
	color: rgba(226, 232, 240, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.12);
}

.hero-dash-chat__msg--ai {
	background: rgba(37, 99, 235, 0.16);
	border: 1px solid rgba(56, 189, 248, 0.22);
	color: rgba(224, 242, 254, 0.95);
}

.hero-dash-chat__composer {
	height: 24px;
	border-radius: 0.55rem;
	background: rgba(15, 23, 42, 0.65);
	border: 1px solid rgba(148, 163, 184, 0.12);
}

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

	.hero-premium__visual-shell {
		min-height: 0;
		margin-top: 0.5rem;
	}

	.hero-premium-float--1 {
		top: 2%;
		right: 2%;
	}
	.hero-premium-float--2 {
		top: 22%;
		left: 2%;
	}
	.hero-premium-float--3 {
		bottom: 30%;
		right: 2%;
	}
	.hero-premium-float--4 {
		bottom: 2%;
		left: 12%;
	}
}

@media (max-width: 640px) {
	.hero-premium__title-spin {
		min-width: min(100%, 10.5ch);
		display: inline-flex;
	}

	.hero-dash__grid {
		grid-template-columns: 1fr;
	}

	.hero-dash__sidebar {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 0.35rem;
	}

	.hero-dash-metrics {
		grid-template-columns: 1fr;
	}

	.hero-dash__split {
		grid-template-columns: 1fr;
	}

	.hero-premium-float {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-premium-badge__pulse {
		animation: none;
		box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.3);
	}

	.hero-premium__title-spin-inner {
		animation: none;
		transform: translateY(0);
	}

	.hero-premium__title-word {
		animation: none;
	}

	.hero-premium__dot {
		animation: none;
		opacity: 0.35;
	}

	.hero-premium-float,
	.hero-premium-shape {
		animation: none;
	}

	.hero-home.hero-premium .hero-ai-shimmer {
		animation: none;
		opacity: 0.2;
	}

	.hero-premium__particles {
		animation: none;
		transform: none;
	}
}

.hero-ai-shimmer {
	position: absolute;
	inset: -40%;
	background: linear-gradient(
		115deg,
		rgba(255, 255, 255, 0) 38%,
		rgba(255, 255, 255, 0.07) 48%,
		rgba(255, 255, 255, 0) 58%
	);
	background-size: 200% 200%;
	animation: aash-hero-shimmer 18s linear infinite;
	pointer-events: none;
	opacity: 0.55;
	mix-blend-mode: soft-light;
}

@keyframes aash-hero-shimmer {
	0% {
		background-position: 0% 0%;
	}
	100% {
		background-position: 200% 200%;
	}
}

.aash-orb--sm {
	width: 120px;
	height: 120px;
	filter: blur(36px);
	opacity: 0.55;
}


.ai-capabilities {
	position: relative;
	overflow: clip;
}

.ai-capabilities::before {
	content: "";
	position: absolute;
	inset: -2px;
	background-image:
		linear-gradient(rgba(23, 37, 84, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(23, 37, 84, 0.06) 1px, transparent 1px);
	background-size: 48px 48px;
	opacity: 0.45;
	pointer-events: none;
}

html[data-theme="dark"] .ai-capabilities::before {
	background-image:
		linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
}

.aash-ai-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
}

.ai-surface {
	position: relative;
	padding: 1.35rem 1.35rem 1.25rem;
	border-radius: 1rem;
	border: 1px solid var(--border);
	background-color: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
	transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

html[data-theme="dark"] .ai-surface {
	background-color: rgba(15, 23, 42, 0.55);
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.ai-surface:hover {
	transform: translateY(-4px);
	border-color: rgba(37, 99, 235, 0.38);
	box-shadow: 0 30px 80px rgba(37, 99, 235, 0.14);
}

.ai-workflows {
	margin-block-start: clamp(2rem, 5vw, 3.25rem);
}

.aash-ai-workflow {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.2rem;
	align-items: start;
}

.ai-workflow-step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.85rem 1rem;
	align-items: start;
	padding: 1.2rem;
	border-radius: 1rem;
	border: 1px solid var(--border);
	background-color: color-mix(in srgb, var(--clr-surface) 88%, transparent);
	box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}

html[data-theme="dark"] .ai-workflow-step {
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.ai-workflow-step__badge,
.ai-workflow-step__idx {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.9rem;
	color: #fff;
	background: linear-gradient(135deg, #2563eb, #06b6d4);
	box-shadow: 0 12px 30px rgba(37, 99, 235, 0.32);
}

/* Homepage contact — premium inquiry panel (styles in contact-premium.css) */
#contact-home .contact-form-panel.contact-form-panel--premium {
	box-shadow:
		var(--shadow-lg),
		0 42px 100px rgba(0, 0, 0, 0.42) !important;
}

#contact-home.section--light .contact-form-panel.contact-form-panel--premium {
	background:
		radial-gradient(120% 90% at 100% -8%, rgba(56, 189, 248, 0.14), transparent 48%),
		linear-gradient(165deg, rgba(15, 23, 42, 0.92), rgba(6, 10, 22, 0.98)) !important;
	border-color: rgba(129, 140, 248, 0.18) !important;
}

#contact-home .contact-form-home {
	min-width: 0;
}
