:root {
	--color-bg: #08111f;
	--color-surface: #0f1d31;
	--color-surface-alt: #f5f7fb;
	--color-text: #ebf1ff;
	--color-text-dark: #102038;
	--color-muted: #98a7c0;
	--color-border-dark: rgba(16, 32, 56, 0.12);
	--color-accent: #2dd4bf;
	--color-accent-dark: #0b7c6d;
	--color-white: #ffffff;
	--color-black: #050914;
	--shadow-lg: 0 24px 60px rgba(3, 10, 22, 0.26);
	--shadow-md: 0 16px 30px rgba(3, 10, 22, 0.14);
	--radius-xl: 32px;
	--radius-lg: 24px;
	--radius-md: 18px;
	--container: 1200px;
	--gutter: 24px;
	--font-heading: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	--font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	--header-height: 88px;
}

html {
	scroll-behavior: smooth;
}

body {
	background:
		radial-gradient(circle at top left, rgba(45, 212, 191, 0.18), transparent 28%),
		radial-gradient(circle at top right, rgba(71, 105, 255, 0.14), transparent 32%),
		var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
}

body.menu-open {
	overflow: hidden;
}

.site-shell {
	min-height: 100vh;
	overflow: clip;
}

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

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

p,
ul,
ol {
	margin: 0;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-heading);
	letter-spacing: -0.04em;
	line-height: 1.05;
	margin: 0;
}

main {
	display: block;
}

.container {
	margin: 0 auto;
	max-width: calc(var(--container) + (var(--gutter) * 2));
	padding-inline: var(--gutter);
	width: 100%;
}

.section {
	padding: 112px 0;
	position: relative;
}

.section--dark {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.section--muted,
.page-hero--internal {
	background: var(--color-surface-alt);
	color: var(--color-text-dark);
}

.section-heading {
	display: grid;
	gap: 18px;
	margin-bottom: 48px;
	max-width: 760px;
}

.section-heading--left {
	margin-bottom: 40px;
}

.section-heading--split {
	align-items: end;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	max-width: none;
}

.section-heading h2,
.section-heading h1,
.page-hero h1,
.hero h1,
.cta-panel h2 {
	font-size: clamp(2.6rem, 5vw, 5rem);
}

.section-intro {
	font-size: 1.125rem;
	max-width: 60ch;
	opacity: 0.82;
}

.eyebrow {
	color: var(--color-accent);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

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

.button,
.text-link {
	align-items: center;
	display: inline-flex;
	font-weight: 700;
	gap: 10px;
	transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.button {
	background: var(--color-accent);
	border: 1px solid transparent;
	border-radius: 999px;
	color: var(--color-black);
	justify-content: center;
	min-height: 54px;
	padding: 0 24px;
}

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

.button--small {
	min-height: 46px;
	padding-inline: 20px;
}

.button--ghost,
.button--ghost-light {
	background: transparent;
}

.button--ghost {
	border-color: rgba(255, 255, 255, 0.16);
	color: var(--color-white);
}

.button--ghost-light {
	border-color: rgba(255, 255, 255, 0.28);
	color: var(--color-white);
}

.button--ghost:hover,
.button--ghost-light:hover,
.button--ghost:focus-visible,
.button--ghost-light:focus-visible {
	background: rgba(255, 255, 255, 0.08);
}

.text-link {
	color: var(--color-accent);
	font-size: 0.98rem;
}

.text-link::after {
	content: "→";
}

.text-link:hover,
.text-link:focus-visible {
	transform: translateX(4px);
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.screen-reader-text:focus {
	background: var(--color-white);
	clip: auto;
	clip-path: none;
	color: var(--color-black);
	height: auto;
	left: 16px;
	padding: 12px 16px;
	top: 16px;
	width: auto;
	z-index: 9999;
}

.site-header {
	backdrop-filter: blur(18px);
	background: rgba(8, 17, 31, 0.78);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	left: 0;
	position: sticky;
	right: 0;
	top: 0;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	z-index: 1000;
}

.site-header.is-scrolled {
	background: rgba(6, 13, 24, 0.92);
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 14px 40px rgba(1, 8, 20, 0.34);
}

.site-header__inner {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	min-height: var(--header-height);
	transition: min-height 0.3s ease;
}

.site-branding__text {
	display: inline-grid;
	gap: 4px;
}

.site-branding__name,
.site-footer__logo {
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: -0.04em;
}

.site-branding__tag {
	color: var(--color-muted);
	font-size: 0.85rem;
}

.site-header__nav-wrap {
	align-items: center;
	display: flex;
	gap: 20px;
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.primary-nav__menu,
.site-footer__menu,
.site-footer__list {
	display: flex;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav__menu a {
	color: rgba(235, 241, 255, 0.82);
	font-weight: 600;
	position: relative;
}

.primary-nav__menu a:hover,
.primary-nav__menu a:focus-visible {
	color: var(--color-white);
}

.primary-nav__menu a::after {
	background: var(--color-accent);
	border-radius: 999px;
	bottom: -10px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.25s ease;
	width: 100%;
}

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

.nav-toggle {
	background: transparent;
	border: 0;
	display: none;
	padding: 0;
}

.nav-toggle span {
	background: var(--color-white);
	border-radius: 999px;
	display: block;
	height: 2px;
	margin: 5px 0;
	transition: transform 0.25s ease, opacity 0.25s ease;
	width: 28px;
}

.hero {
	overflow: hidden;
	padding: 72px 0 96px;
	position: relative;
}

.hero__grid {
	align-items: center;
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	padding-top: 36px;
}

.hero__content {
	display: grid;
	gap: 24px;
	max-width: 760px;
}

.hero__copy {
	color: rgba(235, 241, 255, 0.84);
	font-size: 1.15rem;
	max-width: 58ch;
}

.hero__trust-text {
	color: var(--color-muted);
	font-size: 0.98rem;
}

.hero__panel {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
		var(--color-surface);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	display: grid;
	gap: 18px;
	padding: 30px;
	position: relative;
}

.hero__orb {
	border-radius: 999px;
	filter: blur(8px);
	pointer-events: none;
	position: absolute;
}

.hero__orb--one {
	animation: kmcodetech-float 12s ease-in-out infinite;
	background: radial-gradient(circle, rgba(45, 212, 191, 0.28), rgba(45, 212, 191, 0));
	height: 320px;
	left: -80px;
	top: 40px;
	width: 320px;
}

.hero__orb--two {
	animation: kmcodetech-float 14s ease-in-out infinite reverse;
	background: radial-gradient(circle, rgba(78, 118, 255, 0.2), rgba(78, 118, 255, 0));
	height: 280px;
	right: -60px;
	top: 120px;
	width: 280px;
}

.hero-stat,
.hero-card,
.service-card,
.project-card,
.testimonial-card,
.process-card,
.feature-panel,
.contact-card,
.entry-card {
	border-radius: var(--radius-lg);
}

.hero-stat {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: grid;
	gap: 8px;
	padding: 22px;
}

.hero-stat__value {
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -0.05em;
}

.hero-card {
	background: linear-gradient(180deg, rgba(45, 212, 191, 0.14), rgba(45, 212, 191, 0.05));
	border: 1px solid rgba(45, 212, 191, 0.2);
	display: grid;
	gap: 14px;
	padding: 24px;
}

.hero-card__eyebrow,
.feature-panel__eyebrow {
	color: var(--color-accent);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.trust-bar {
	padding: 0 0 40px;
}

.trust-bar__inner {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-xl);
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, 1fr);
	overflow: hidden;
}

.trust-bar__item {
	background: rgba(255, 255, 255, 0.02);
	display: grid;
	gap: 8px;
	padding: 24px;
}

.trust-bar__item strong {
	font-size: 1.2rem;
	letter-spacing: -0.03em;
}

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

.card-grid--services,
.card-grid--projects,
.card-grid--testimonials {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.testimonial-card,
.process-card,
.entry-card,
.contact-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: grid;
	gap: 18px;
	padding: 28px;
}

.service-card,
.project-card,
.testimonial-card,
.process-card,
.feature-panel {
	transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover,
.project-card:hover,
.testimonial-card:hover,
.process-card:hover,
.feature-panel:hover {
	border-color: rgba(45, 212, 191, 0.25);
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.why-us {
	display: grid;
	gap: 42px;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.why-us__intro {
	display: grid;
	gap: 18px;
}

.why-us__list {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-panel {
	background: var(--color-white);
	border: 1px solid var(--color-border-dark);
	color: var(--color-text-dark);
	display: grid;
	gap: 14px;
	padding: 28px;
}

.project-card {
	background: var(--color-white);
	border: 1px solid var(--color-border-dark);
	color: var(--color-text-dark);
	overflow: hidden;
}

.project-card__media {
	align-items: center;
	aspect-ratio: 4 / 3;
	background:
		linear-gradient(140deg, rgba(45, 212, 191, 0.12), rgba(16, 32, 56, 0.08)),
		linear-gradient(180deg, #edf3ff, #dde8ff);
	display: flex;
	justify-content: center;
}

.project-card__media span {
	color: rgba(16, 32, 56, 0.48);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.project-card__media img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.project-card__body {
	display: grid;
	gap: 14px;
	padding: 24px;
}

.project-card__platform {
	color: var(--color-accent-dark);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.process-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-card__step {
	color: var(--color-accent);
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.testimonial-card__quote {
	font-size: 1.05rem;
}

.testimonial-card__meta {
	display: grid;
	gap: 4px;
}

.cta-panel {
	align-items: center;
	background:
		radial-gradient(circle at top left, rgba(45, 212, 191, 0.24), transparent 30%),
		linear-gradient(135deg, #101d33, #0c1423);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-xl);
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: 40px;
}

.cta-panel p {
	color: rgba(235, 241, 255, 0.82);
	max-width: 56ch;
}

.cta-panel__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

.site-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 32px 0 20px;
}

.site-footer__grid {
	display: grid;
	gap: 30px;
	grid-template-columns: 1.35fr 1fr 1fr 1fr;
	padding-bottom: 24px;
}

.site-footer__brand {
	display: grid;
	gap: 14px;
	max-width: 34ch;
}

.site-footer__title {
	font-size: 1rem;
	margin-bottom: 12px;
}

.site-footer__menu,
.site-footer__list {
	color: var(--color-muted);
	flex-direction: column;
	gap: 10px;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--color-muted);
	padding-top: 20px;
}

.page-main {
	min-height: 50vh;
}

.page-hero {
	padding: 100px 0 72px;
}

.page-hero__inner,
.error-page__inner {
	display: grid;
	gap: 18px;
}

.page-hero__content {
	display: grid;
	gap: 18px;
	max-width: 860px;
}

.split-content,
.contact-layout,
.service-detail {
	display: grid;
	gap: 28px;
}

.split-content,
.contact-layout {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stack,
.stack-lg,
.prose-content {
	display: grid;
}

.stack {
	gap: 20px;
}

.stack-lg {
	gap: 28px;
}

.prose-content {
	color: var(--color-text-dark);
	gap: 20px;
	max-width: 760px;
}

.prose-content h1,
.prose-content h2,
.prose-content h3,
.prose-content h4 {
	color: var(--color-text-dark);
}

.prose-content a {
	color: var(--color-accent-dark);
	text-decoration: underline;
}

.service-detail {
	align-items: start;
	background: var(--color-white);
	border: 1px solid var(--color-border-dark);
	border-radius: var(--radius-xl);
	grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
	padding: 32px;
}

.service-detail__body {
	display: grid;
	gap: 16px;
}

.contact-card {
	background: var(--color-white);
	border: 1px solid var(--color-border-dark);
	color: var(--color-text-dark);
}

.contact-sidebar {
	display: grid;
	gap: 22px;
}

.form-embed {
	border: 1px solid rgba(16, 32, 56, 0.1);
	border-radius: var(--radius-md);
	padding: 24px;
}

.form-placeholder {
	align-items: center;
	background: linear-gradient(180deg, #f4f8ff, #ebf1fa);
	border: 1px dashed rgba(16, 32, 56, 0.2);
	border-radius: var(--radius-md);
	color: rgba(16, 32, 56, 0.62);
	display: flex;
	justify-content: center;
	min-height: 240px;
	padding: 24px;
	text-align: center;
}

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

.entry-card {
	background: var(--color-white);
	border: 1px solid var(--color-border-dark);
	color: var(--color-text-dark);
}

.entry-card__title {
	font-size: 1.5rem;
}

.entry-card__title a:hover,
.entry-card__title a:focus-visible {
	color: var(--color-accent-dark);
}

.entry-card__meta {
	color: rgba(16, 32, 56, 0.62);
}

.error-page__inner {
	justify-items: start;
	max-width: 700px;
}

[data-reveal] {
	opacity: 0;
	transform: translate3d(0, 24px, 0);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

[data-reveal="left"] {
	transform: translate3d(24px, 0, 0);
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

@keyframes kmcodetech-float {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}

	50% {
		transform: translate3d(0, -18px, 0);
	}
}

@media (max-width: 1100px) {
	.card-grid--services,
	.card-grid--projects,
	.card-grid--testimonials,
	.why-us__list,
	.process-grid,
	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero__grid,
	.why-us,
	.cta-panel,
	.service-detail,
	.split-content,
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.cta-panel__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 860px) {
	:root {
		--gutter: 18px;
		--header-height: 78px;
	}

	.section {
		padding: 86px 0;
	}

	.site-header__nav-wrap {
		background: rgba(8, 17, 31, 0.98);
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 24px;
		left: var(--gutter);
		opacity: 0;
		padding: 18px;
		pointer-events: none;
		position: absolute;
		right: var(--gutter);
		top: calc(100% + 10px);
		transform: translateY(-8px);
		visibility: hidden;
	}

	.site-header__nav-wrap.is-open {
		display: grid;
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
		visibility: visible;
	}

	.primary-nav__menu {
		flex-direction: column;
	}

	.nav-toggle {
		display: inline-block;
	}

	.nav-toggle.is-active span:first-child {
		transform: translateY(7px) rotate(45deg);
	}

	.nav-toggle.is-active span:last-child {
		transform: translateY(-7px) rotate(-45deg);
	}

	.hero {
		padding-top: 46px;
	}

	.hero__panel,
	.cta-panel,
	.service-detail,
	.project-card__body,
	.service-card,
	.process-card,
	.testimonial-card,
	.feature-panel,
	.contact-card {
		padding: 24px;
	}

	.trust-bar__inner,
	.card-grid--services,
	.card-grid--projects,
	.card-grid--testimonials,
	.why-us__list,
	.process-grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.section-heading--split {
		align-items: start;
		flex-direction: column;
	}
}

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

	*,
	*::before,
	*::after {
		animation: none !important;
		transition-duration: 0.01ms !important;
		transition-delay: 0ms !important;
	}

	[data-reveal] {
		opacity: 1;
		transform: none;
	}
}

/* Homepage redesign */
.page-main--home {
	background:
		radial-gradient(circle at top right, rgba(45, 212, 191, 0.08), transparent 24%),
		radial-gradient(circle at 15% 18%, rgba(73, 98, 255, 0.12), transparent 28%),
		linear-gradient(180deg, #07111f 0%, #091523 38%, #08111f 100%);
}

.page-main--home .section,
.home-hero,
.home-proof,
.home-services,
.home-projects,
.home-why,
.home-process,
.home-testimonials,
.home-cta {
	position: relative;
}

.home-section__eyebrow {
	color: var(--color-accent);
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.home-section-heading {
	display: grid;
	gap: 18px;
	margin-bottom: 54px;
	max-width: 760px;
}

.home-section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.home-section-heading--split {
	align-items: end;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	max-width: none;
}

.home-section-heading h2 {
	font-size: clamp(2.4rem, 4.2vw, 4.4rem);
	line-height: 1.04;
}

.home-section-heading p {
	color: rgba(235, 241, 255, 0.72);
	font-size: 1.06rem;
	max-width: 70ch;
}

.home-button {
	min-width: 184px;
}

.home-button--solid {
	box-shadow: 0 16px 30px rgba(45, 212, 191, 0.18);
}

.home-button:hover,
.home-button:focus-visible {
	transform: translateY(-4px) scale(1.01);
}

.home-inline-link {
	color: var(--color-white);
	display: inline-flex;
	font-size: 0.95rem;
	font-weight: 700;
	gap: 10px;
	position: relative;
}

.home-inline-link::after {
	content: "->";
	transition: transform 0.25s ease;
}

.home-inline-link:hover::after,
.home-inline-link:focus-visible::after {
	transform: translateX(4px);
}

.home-hero {
	overflow: hidden;
	padding: 120px 0 92px;
}

.home-hero__glow {
	border-radius: 999px;
	filter: blur(10px);
	position: absolute;
}

.home-hero__glow--one {
	animation: km-home-glow 14s ease-in-out infinite;
	background: radial-gradient(circle, rgba(45, 212, 191, 0.22), rgba(45, 212, 191, 0));
	height: 440px;
	left: -120px;
	top: -60px;
	width: 440px;
}

.home-hero__glow--two {
	animation: km-home-glow 18s ease-in-out infinite reverse;
	background: radial-gradient(circle, rgba(90, 111, 255, 0.2), rgba(90, 111, 255, 0));
	height: 520px;
	right: -140px;
	top: 120px;
	width: 520px;
}

.home-hero__grid {
	align-items: center;
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.home-hero__content {
	display: grid;
	gap: 24px;
	max-width: 680px;
}

.home-hero__title {
	font-size: clamp(3.2rem, 6vw, 6rem);
	line-height: 0.95;
	max-width: 11ch;
}

.home-hero__copy {
	color: rgba(235, 241, 255, 0.78);
	font-size: 1.16rem;
	max-width: 48ch;
}

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

.home-hero__meta {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-hero__metric {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 22px;
	display: grid;
	gap: 8px;
	padding: 18px 20px;
}

.home-hero__metric strong {
	font-size: 1.15rem;
	letter-spacing: -0.03em;
}

.home-hero__metric span {
	color: rgba(235, 241, 255, 0.74);
	font-size: 0.96rem;
}

.home-hero__visual {
	min-height: 720px;
	position: relative;
}

.home-hero__image,
.home-why__image {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 30px;
	box-shadow: 0 28px 70px rgba(3, 10, 22, 0.28);
	overflow: hidden;
	position: absolute;
}

.home-hero__image img,
.home-why__image img,
.home-project-card__media img,
.home-cta__background img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.home-hero__image--primary {
	animation: km-home-float 10s ease-in-out infinite;
	height: 480px;
	right: 0;
	top: 84px;
	width: 68%;
}

.home-hero__image--secondary {
	animation: km-home-float 14s ease-in-out infinite reverse;
	height: 260px;
	left: 0;
	top: 0;
	width: 42%;
	z-index: 2;
}

.home-hero__image--tertiary {
	animation: km-home-float 12s ease-in-out infinite;
	bottom: 0;
	height: 230px;
	left: 10%;
	width: 34%;
	z-index: 3;
}

.home-hero__floating-card {
	backdrop-filter: blur(16px);
	background: rgba(8, 17, 31, 0.74);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	box-shadow: 0 24px 46px rgba(2, 10, 22, 0.24);
	display: grid;
	gap: 8px;
	max-width: 240px;
	padding: 18px 20px;
	position: absolute;
	z-index: 4;
}

.home-hero__floating-card span {
	color: rgba(45, 212, 191, 0.9);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.home-hero__floating-card strong {
	font-size: 0.98rem;
	line-height: 1.35;
}

.home-hero__floating-card--top {
	right: 8%;
	top: 36px;
}

.home-hero__floating-card--bottom {
	bottom: 38px;
	right: 0;
}

.home-proof {
	padding: 0 0 60px;
}

.home-proof__inner {
	backdrop-filter: blur(16px);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 30px;
	display: grid;
	gap: 28px;
	padding: 28px 32px;
	text-align: center;
}

.home-proof__title {
	color: rgba(235, 241, 255, 0.76);
	font-size: 0.96rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

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

.home-proof__logo {
	align-items: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 22px;
	color: rgba(255, 255, 255, 0.66);
	display: flex;
	gap: 12px;
	justify-content: center;
	min-height: 78px;
	padding: 16px;
	transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.home-proof__logo:hover,
.home-proof__logo:focus-within {
	border-color: rgba(45, 212, 191, 0.28);
	color: var(--color-white);
	transform: scale(1.03);
}

.home-proof__logo-mark {
	background: rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.8rem;
	font-weight: 700;
	height: 36px;
	justify-content: center;
	width: 36px;
	align-items: center;
}

.home-services,
.home-projects,
.home-process,
.home-testimonials {
	padding: 96px 0;
}

.home-services__grid,
.home-projects__grid,
.home-testimonials__grid {
	display: grid;
	gap: 24px;
}

.home-services__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-service-card {
	backdrop-filter: blur(20px);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
		rgba(10, 19, 33, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 28px;
	display: grid;
	gap: 16px;
	min-height: 280px;
	padding: 28px;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-service-card:hover,
.home-service-card:focus-within {
	border-color: rgba(45, 212, 191, 0.28);
	box-shadow: 0 24px 50px rgba(2, 10, 22, 0.28);
	transform: translateY(-8px);
}

.home-service-card__icon {
	align-items: center;
	background: linear-gradient(135deg, rgba(45, 212, 191, 0.24), rgba(83, 100, 255, 0.24));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	display: inline-flex;
	font-size: 1rem;
	font-weight: 800;
	height: 56px;
	justify-content: center;
	width: 56px;
}

.home-service-card h3 {
	font-size: 1.42rem;
	line-height: 1.08;
}

.home-service-card p {
	color: rgba(235, 241, 255, 0.74);
}

.home-projects {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
		radial-gradient(circle at 80% 20%, rgba(45, 212, 191, 0.08), transparent 28%);
}

.home-projects__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-project-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 30px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-project-card:hover,
.home-project-card:focus-within {
	border-color: rgba(45, 212, 191, 0.24);
	box-shadow: 0 28px 54px rgba(2, 10, 22, 0.28);
	transform: translateY(-8px);
}

.home-project-card__media {
	display: block;
	height: 320px;
	overflow: hidden;
	position: relative;
}

.home-project-card__overlay {
	background: linear-gradient(180deg, rgba(5, 9, 20, 0), rgba(5, 9, 20, 0.72));
	inset: 0;
	opacity: 0.7;
	position: absolute;
	transition: opacity 0.3s ease;
}

.home-project-card__cta {
	bottom: 24px;
	color: var(--color-white);
	font-size: 0.94rem;
	font-weight: 700;
	left: 24px;
	opacity: 0;
	position: absolute;
	transform: translateY(12px);
	transition: transform 0.3s ease, opacity 0.3s ease;
	z-index: 2;
}

.home-project-card:hover .home-project-card__media img,
.home-project-card:focus-within .home-project-card__media img {
	transform: scale(1.05);
}

.home-project-card:hover .home-project-card__overlay,
.home-project-card:focus-within .home-project-card__overlay {
	opacity: 1;
}

.home-project-card:hover .home-project-card__cta,
.home-project-card:focus-within .home-project-card__cta {
	opacity: 1;
	transform: translateY(0);
}

.home-project-card__media img {
	transition: transform 0.5s ease;
}

.home-project-card__body {
	display: grid;
	gap: 14px;
	padding: 24px 26px 28px;
}

.home-project-card__label {
	color: rgba(45, 212, 191, 0.9);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.home-project-card__body h3 {
	font-size: 1.62rem;
	line-height: 1.06;
}

.home-project-card__body p {
	color: rgba(235, 241, 255, 0.72);
}

.home-why {
	padding: 108px 0;
}

.home-why__grid {
	align-items: center;
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.home-why__content {
	display: grid;
	gap: 20px;
}

.home-why__content h2 {
	font-size: clamp(2.3rem, 4vw, 4.2rem);
	line-height: 1.05;
}

.home-why__content p {
	color: rgba(235, 241, 255, 0.74);
}

.home-why__points {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-why__point {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	display: grid;
	gap: 10px;
	padding: 22px;
}

.home-why__point h3 {
	font-size: 1.04rem;
}

.home-why__visual {
	min-height: 640px;
	position: relative;
}

.home-why__image--primary {
	height: 520px;
	left: 0;
	top: 0;
	width: 76%;
}

.home-why__image--secondary {
	bottom: 0;
	height: 240px;
	right: 0;
	width: 40%;
	z-index: 2;
}

.home-why__badge {
	backdrop-filter: blur(18px);
	background: rgba(8, 17, 31, 0.76);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	display: grid;
	gap: 8px;
	max-width: 240px;
	padding: 20px 22px;
	position: absolute;
	right: 12%;
	top: 24px;
	z-index: 3;
}

.home-why__badge strong {
	font-size: 1.05rem;
}

.home-why__badge span {
	color: rgba(235, 241, 255, 0.72);
	font-size: 0.92rem;
}

.home-process__timeline {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	position: relative;
}

.home-process__timeline::before {
	background: linear-gradient(90deg, rgba(45, 212, 191, 0), rgba(45, 212, 191, 0.22), rgba(45, 212, 191, 0));
	content: "";
	height: 1px;
	left: 6%;
	position: absolute;
	right: 6%;
	top: 34px;
}

.home-process__card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 28px;
	display: grid;
	gap: 14px;
	padding: 74px 24px 28px;
	position: relative;
	transition: transform 0.28s ease, border-color 0.28s ease;
}

.home-process__card:hover,
.home-process__card:focus-within {
	border-color: rgba(45, 212, 191, 0.24);
	transform: translateY(-8px);
}

.home-process__number {
	align-items: center;
	background: linear-gradient(135deg, rgba(45, 212, 191, 0.24), rgba(83, 100, 255, 0.24));
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	display: inline-flex;
	font-size: 0.88rem;
	font-weight: 800;
	height: 46px;
	justify-content: center;
	left: 24px;
	position: absolute;
	top: 16px;
	width: 46px;
}

.home-process__card p {
	color: rgba(235, 241, 255, 0.72);
}

.home-testimonials {
	background:
		radial-gradient(circle at 12% 20%, rgba(45, 212, 191, 0.08), transparent 24%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.home-testimonials__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-testimonial-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 28px;
	display: grid;
	gap: 24px;
	padding: 28px;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-testimonial-card:hover,
.home-testimonial-card:focus-within {
	border-color: rgba(45, 212, 191, 0.24);
	box-shadow: 0 26px 48px rgba(2, 10, 22, 0.28);
	transform: translateY(-8px);
}

.home-testimonial-card__top {
	align-items: center;
	display: flex;
	gap: 16px;
}

.home-testimonial-card__top img {
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	height: 64px;
	object-fit: cover;
	width: 64px;
}

.home-testimonial-card__top h3 {
	font-size: 1.08rem;
}

.home-testimonial-card__top p,
.home-testimonial-card blockquote {
	color: rgba(235, 241, 255, 0.72);
}

.home-testimonial-card blockquote {
	font-size: 1.02rem;
	line-height: 1.7;
	margin: 0;
}

.home-cta {
	padding: 108px 0 116px;
}

.home-cta__panel {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 34px;
	min-height: 430px;
	overflow: hidden;
	position: relative;
}

.home-cta__background {
	inset: 0;
	position: absolute;
}

.home-cta__background::after {
	background:
		radial-gradient(circle at top left, rgba(45, 212, 191, 0.32), transparent 28%),
		linear-gradient(135deg, rgba(4, 9, 18, 0.12), rgba(4, 9, 18, 0.84));
	content: "";
	inset: 0;
	position: absolute;
}

.home-cta__content {
	align-items: center;
	display: grid;
	gap: 20px;
	justify-items: center;
	margin: 0 auto;
	max-width: 760px;
	min-height: 430px;
	padding: 48px 28px;
	position: relative;
	text-align: center;
	z-index: 1;
}

.home-cta__content h2 {
	font-size: clamp(2.6rem, 5vw, 4.8rem);
	line-height: 1;
}

.home-cta__content p {
	color: rgba(235, 241, 255, 0.78);
	font-size: 1.08rem;
	max-width: 54ch;
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

.reveal.fade-left {
	transform: translateX(-28px);
}

.reveal.fade-right {
	transform: translateX(28px);
}

.reveal.active {
	opacity: 1;
	transform: translate(0, 0);
}

.site-footer a {
	position: relative;
}

.site-footer a::after {
	background: var(--color-accent);
	bottom: -4px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.25s ease;
	width: 100%;
}

.site-footer a:hover::after,
.site-footer a:focus-visible::after {
	transform: scaleX(1);
}

@keyframes km-home-float {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-14px);
	}
}

@keyframes km-home-glow {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}

	50% {
		transform: translate3d(18px, -12px, 0) scale(1.05);
	}
}

@media (max-width: 1100px) {
	.home-proof__logos,
	.home-services__grid,
	.home-projects__grid,
	.home-testimonials__grid,
	.home-process__timeline,
	.home-why__points {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-hero__grid,
	.home-why__grid,
	.home-section-heading--split {
		grid-template-columns: 1fr;
	}

	.home-section-heading--split {
		display: grid;
	}

	.home-hero__visual {
		min-height: 640px;
	}
}

@media (max-width: 860px) {
	.home-hero {
		padding: 88px 0 72px;
	}

	.home-hero__meta,
	.home-services__grid,
	.home-projects__grid,
	.home-testimonials__grid,
	.home-process__timeline,
	.home-why__points,
	.home-proof__logos {
		grid-template-columns: 1fr;
	}

	.home-hero__visual {
		min-height: auto;
		padding-top: 24px;
	}

	.home-hero__image,
	.home-why__image,
	.home-hero__floating-card,
	.home-why__badge {
		position: relative;
	}

	.home-hero__image--primary,
	.home-hero__image--secondary,
	.home-hero__image--tertiary,
	.home-why__image--primary,
	.home-why__image--secondary {
		height: auto;
		inset: auto;
		margin-bottom: 18px;
		width: 100%;
	}

	.home-hero__floating-card--top,
	.home-hero__floating-card--bottom {
		bottom: auto;
		right: auto;
		top: auto;
	}

	.home-why__visual {
		min-height: auto;
	}

	.home-process__timeline::before {
		display: none;
	}
}

@media (max-width: 560px) {
	.home-hero__title,
	.home-section-heading h2,
	.home-why__content h2,
	.home-cta__content h2 {
		font-size: 2.4rem;
	}

	.home-hero__actions {
		flex-direction: column;
	}

	.home-service-card,
	.home-project-card__body,
	.home-testimonial-card,
	.home-process__card,
	.home-proof__inner,
	.home-why__point,
	.home-cta__content {
		padding: 22px;
	}
}

@media (max-width: 560px) {
	.button,
	.button--small {
		width: 100%;
	}

	.hero__copy,
	.section-intro {
		font-size: 1rem;
	}

	.cta-panel,
	.service-detail,
	.hero__panel,
	.project-card__body,
	.service-card,
	.process-card,
	.testimonial-card,
	.feature-panel,
	.contact-card {
		padding: 22px;
	}
}

/* Homepage rebuild v2 */
.page-main--home {
	background:
		radial-gradient(circle at 18% 12%, rgba(74, 99, 255, 0.12), transparent 26%),
		radial-gradient(circle at 82% 18%, rgba(45, 212, 191, 0.09), transparent 24%),
		linear-gradient(180deg, #07111f 0%, #081320 42%, #091624 100%);
	overflow: hidden;
}

.home .site-header {
	background: rgba(8, 17, 31, 0.36);
	border-color: rgba(255, 255, 255, 0.04);
}

.home .site-header.is-scrolled {
	background: rgba(6, 13, 24, 0.92);
}

.home-hero,
.home-tech-strip,
.home-capabilities,
.home-work,
.home-why,
.home-process,
.home-testimonials,
.home-metrics,
.home-cta {
	padding: 92px 0;
	position: relative;
}

.home-section__eyebrow {
	color: var(--color-accent);
	display: inline-flex;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.home-section-heading {
	display: grid;
	gap: 18px;
	margin-bottom: 50px;
	max-width: 760px;
}

.home-section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.home-section-heading--split {
	align-items: end;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	max-width: none;
}

.home-section-heading h2,
.home-why__content h2,
.home-process__content h2,
.home-cta__content h2 {
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.home-section-heading p,
.home-why__content p,
.home-cta__content p,
.home-process__step p,
.home-capability-card p,
.home-work-card p,
.home-testimonial-card blockquote,
.home-metric-card__label {
	color: rgba(235, 241, 255, 0.74);
	font-size: 1rem;
	line-height: 1.7;
}

.home-inline-link {
	align-items: center;
	color: var(--color-white);
	display: inline-flex;
	font-size: 0.94rem;
	font-weight: 700;
	gap: 10px;
	transition: color 0.25s ease, transform 0.25s ease;
}

.home-inline-link::after {
	content: "->";
	transition: transform 0.25s ease;
}

.home-inline-link:hover,
.home-inline-link:focus-visible {
	color: var(--color-accent);
}

.home-inline-link:hover::after,
.home-inline-link:focus-visible::after {
	transform: translateX(5px);
}

.home-button {
	border-radius: 999px;
	min-width: 182px;
	overflow: hidden;
	position: relative;
	transform: translateZ(0);
}

.home-button span {
	position: relative;
	z-index: 2;
}

.home-button::before,
.home-button::after {
	content: "";
	inset: 0;
	position: absolute;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.home-button::before {
	background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
	opacity: 0;
	transform: translateX(-120%);
}

.home-button:hover::before,
.home-button:focus-visible::before {
	opacity: 1;
	transform: translateX(120%);
}

.home-button:hover,
.home-button:focus-visible {
	box-shadow: 0 20px 40px rgba(45, 212, 191, 0.2);
	transform: translateY(-3px) scale(1.02);
}

.home-button--outline {
	backdrop-filter: blur(12px);
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: var(--color-white);
}

.home-button--outline:hover,
.home-button--outline:focus-visible {
	border-color: rgba(45, 212, 191, 0.36);
}

.home-button--shimmer::after {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
	opacity: 0.75;
	transform: translateX(-130%);
}

.home-button--shimmer:hover::after,
.home-button--shimmer:focus-visible::after {
	transform: translateX(130%);
}

.home-hero {
	min-height: calc(100vh - 96px);
	padding-top: 126px;
}

.home-hero__backdrop {
	background:
		radial-gradient(circle at 24% 18%, rgba(45, 212, 191, 0.14), transparent 28%),
		radial-gradient(circle at 82% 30%, rgba(74, 99, 255, 0.14), transparent 30%),
		url("../images/demo/home-grid.svg") center/cover no-repeat;
	inset: 0;
	opacity: 0.72;
	position: absolute;
}

.home-hero__grid {
	align-items: center;
	display: grid;
	gap: 54px;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	position: relative;
	z-index: 1;
}

.home-hero__content {
	display: grid;
	gap: 24px;
	max-width: 620px;
}

.home-hero__title {
	display: grid;
	gap: 4px;
	margin: 0;
}

.home-hero__title-line {
	display: block;
	font-size: clamp(3rem, 5vw, 4.8rem);
	letter-spacing: -0.035em;
	line-height: 1.02;
}

.home-hero__copy {
	color: rgba(235, 241, 255, 0.76);
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	line-height: 1.6;
	max-width: 620px;
}

.home-hero__actions,
.home-hero__trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.home-hero__trust-row span {
	backdrop-filter: blur(12px);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	color: rgba(235, 241, 255, 0.78);
	font-size: 0.88rem;
	padding: 10px 14px;
}

.home-hero__visual {
	min-height: 740px;
	position: relative;
}

.home-hero__mesh {
	background: url("../images/demo/home-mesh.svg") center/cover no-repeat;
	inset: 8% 4% 4% 10%;
	opacity: 0.95;
	position: absolute;
}

.home-hero__orb {
	border-radius: 999px;
	filter: blur(16px);
	position: absolute;
}

.home-hero__orb--one {
	animation: km-orb-drift 16s ease-in-out infinite;
	background: radial-gradient(circle, rgba(45, 212, 191, 0.34), rgba(45, 212, 191, 0));
	height: 280px;
	left: 4%;
	top: 10%;
	width: 280px;
}

.home-hero__orb--two {
	animation: km-orb-drift 14s ease-in-out infinite reverse;
	background: radial-gradient(circle, rgba(74, 99, 255, 0.3), rgba(74, 99, 255, 0));
	height: 360px;
	right: -6%;
	top: 24%;
	width: 360px;
}

.home-hero__mockup,
.home-why__photo,
.home-process__visual {
	background: rgba(8, 17, 31, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 32px;
	box-shadow: 0 34px 80px rgba(2, 10, 22, 0.3);
	overflow: hidden;
	position: absolute;
	transform-style: preserve-3d;
}

.home-hero__mockup img,
.home-why__photo img,
.home-process__visual img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.home-hero__mockup--primary {
	animation: km-float-card 12s ease-in-out infinite;
	height: 520px;
	right: 0;
	top: 84px;
	width: 70%;
}

.home-hero__mockup--secondary {
	animation: km-float-card 14s ease-in-out infinite reverse;
	height: 270px;
	left: 0;
	top: 24px;
	width: 42%;
}

.home-hero__card,
.home-capability-card,
.home-work-card,
.home-process__step,
.home-testimonial-card,
.home-metric-card,
.home-why__stat {
	--mx: 50%;
	--my: 50%;
	background:
		radial-gradient(circle at var(--mx) var(--my), rgba(45, 212, 191, 0.14), transparent 46%),
		rgba(10, 18, 32, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 28px;
	position: relative;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-hero__card:hover,
.home-hero__card:focus-within,
.home-capability-card:hover,
.home-capability-card:focus-within,
.home-work-card:hover,
.home-work-card:focus-within,
.home-process__step:hover,
.home-process__step:focus-within,
.home-testimonial-card:hover,
.home-testimonial-card:focus-within,
.home-metric-card:hover,
.home-metric-card:focus-within,
.home-why__stat:hover,
.home-why__stat:focus-within {
	border-color: rgba(45, 212, 191, 0.28);
	box-shadow: 0 28px 54px rgba(2, 10, 22, 0.28);
	transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
}

.home-hero__card {
	backdrop-filter: blur(16px);
	box-shadow: 0 24px 48px rgba(2, 10, 22, 0.24);
	display: grid;
	gap: 10px;
	max-width: 260px;
	padding: 18px 20px;
	position: absolute;
}

.home-hero__card--stats {
	bottom: 138px;
	left: 3%;
}

.home-hero__card--project {
	bottom: 32px;
	right: 4%;
}

.home-hero__card-label,
.home-why__stat span,
.home-process__visual-card span {
	color: rgba(45, 212, 191, 0.92);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.home-hero__card strong,
.home-why__stat strong,
.home-process__visual-card strong {
	font-size: 1rem;
	line-height: 1.4;
}

.home-hero__card p,
.home-why__stat p {
	color: rgba(235, 241, 255, 0.74);
	font-size: 0.92rem;
	line-height: 1.55;
}

.home-tech-strip {
	padding-top: 18px;
	padding-bottom: 34px;
}

.home-tech-strip__inner {
	backdrop-filter: blur(14px);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
		url("../images/demo/home-dots.svg") center/360px repeat;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 28px;
	display: grid;
	gap: 26px;
	padding: 26px 30px;
}

.home-tech-strip__top {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	padding-bottom: 14px;
	text-align: center;
}

.home-tech-strip__title {
	color: rgba(235, 241, 255, 0.74);
	font-size: 0.92rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.home-tech-strip__track {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(8, minmax(0, 1fr));
}

.home-tech-strip__item {
	align-items: center;
	display: grid;
	gap: 10px;
	justify-items: center;
	min-height: 76px;
	padding: 8px 10px;
	transition: transform 0.3s ease;
}

.home-tech-strip__item img {
	filter: brightness(0) saturate(100%) invert(91%) sepia(7%) saturate(307%) hue-rotate(185deg) brightness(88%) opacity(0.58);
	height: 30px;
	transition: filter 0.3s ease, transform 0.3s ease;
	width: 30px;
}

.home-tech-strip__item span {
	color: rgba(235, 241, 255, 0.6);
	font-size: 0.82rem;
}

.home-tech-strip__item:hover,
.home-tech-strip__item:focus-within {
	transform: translateY(-4px);
}

.home-tech-strip__item:hover img,
.home-tech-strip__item:focus-within img {
	filter: brightness(0) saturate(100%) invert(100%) opacity(1) drop-shadow(0 0 12px rgba(45, 212, 191, 0.25));
	transform: scale(1.06);
}

.home-tech-strip__item:hover span,
.home-tech-strip__item:focus-within span {
	color: var(--color-white);
}

.home-capabilities,
.home-work,
.home-why,
.home-process,
.home-testimonials,
.home-metrics {
	padding-top: 96px;
	padding-bottom: 96px;
}

.home-capabilities__grid,
.home-work__grid,
.home-testimonials__grid,
.home-metrics__grid {
	display: grid;
	gap: 24px;
}

.home-capabilities__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-capability-card {
	backdrop-filter: blur(16px);
	display: grid;
	gap: 16px;
	min-height: 292px;
	overflow: hidden;
	padding: 28px;
}

.home-capability-card__pattern {
	background:
		linear-gradient(135deg, rgba(45, 212, 191, 0.16), transparent 40%),
		url("../images/demo/home-dots.svg") right top/220px no-repeat;
	inset: 0;
	opacity: 0.5;
	position: absolute;
}

.home-capability-card__icon {
	align-items: center;
	background: linear-gradient(135deg, rgba(45, 212, 191, 0.25), rgba(74, 99, 255, 0.24));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	display: inline-flex;
	font-size: 1rem;
	font-weight: 800;
	height: 58px;
	justify-content: center;
	position: relative;
	transition: transform 0.3s ease;
	width: 58px;
	z-index: 1;
}

.home-capability-card:hover .home-capability-card__icon,
.home-capability-card:focus-within .home-capability-card__icon {
	transform: rotate(4deg) scale(1.04);
}

.home-capability-card h3,
.home-work-card h3,
.home-process__step h3,
.home-testimonial-card h3 {
	font-size: 1.18rem;
	line-height: 1.2;
	position: relative;
	z-index: 1;
}

.home-capability-card .home-inline-link {
	margin-top: auto;
	position: relative;
	z-index: 1;
}

.home-work {
	background:
		radial-gradient(circle at 82% 18%, rgba(45, 212, 191, 0.09), transparent 24%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.home-work__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-work-card {
	overflow: hidden;
}

.home-work-card__media {
	display: block;
	height: 330px;
	overflow: hidden;
	position: relative;
}

.home-work-card__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
	width: 100%;
}

.home-work-card__overlay {
	background: linear-gradient(180deg, rgba(5, 9, 20, 0.12), rgba(5, 9, 20, 0.82));
	inset: 0;
	opacity: 0.58;
	position: absolute;
	transition: opacity 0.35s ease, background 0.35s ease;
}

.home-work-card__body {
	display: grid;
	gap: 14px;
	padding: 26px 28px 30px;
}

.home-work-card__label {
	color: rgba(45, 212, 191, 0.92);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.home-work-card:hover .home-work-card__media img,
.home-work-card:focus-within .home-work-card__media img {
	filter: brightness(1.04);
	transform: scale(1.06);
}

.home-work-card:hover .home-work-card__overlay,
.home-work-card:focus-within .home-work-card__overlay {
	background: linear-gradient(180deg, rgba(5, 9, 20, 0.04), rgba(5, 9, 20, 0.78));
	opacity: 0.78;
}

.home-why__grid {
	align-items: center;
	display: grid;
	gap: 52px;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.home-why__content {
	display: grid;
	gap: 20px;
}

.home-why__points {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-why__point {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	display: grid;
	gap: 10px;
	padding: 22px;
}

.home-why__point h3 {
	font-size: 1.06rem;
	line-height: 1.25;
}

.home-why__visual {
	min-height: 660px;
	position: relative;
}

.home-why__photo {
	height: 540px;
	left: 0;
	top: 36px;
	width: 76%;
}

.home-why__stat {
	display: grid;
	gap: 8px;
	max-width: 240px;
	padding: 18px 20px;
	position: absolute;
}

.home-why__stat--one {
	right: 0;
	top: 70px;
}

.home-why__stat--two {
	bottom: 94px;
	right: 6%;
}

.home-why__code-card {
	backdrop-filter: blur(14px);
	background: rgba(8, 17, 31, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	left: 10%;
	max-width: 260px;
	padding: 16px 18px 20px;
	position: absolute;
	top: 0;
}

.home-why__code-top {
	display: flex;
	gap: 8px;
	margin-bottom: 14px;
}

.home-why__code-top span {
	background: rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	display: block;
	height: 8px;
	width: 8px;
}

.home-why__code-card code {
	color: rgba(235, 241, 255, 0.82);
	display: block;
	font-family: Consolas, "Courier New", monospace;
	font-size: 0.88rem;
	line-height: 1.7;
	white-space: pre-line;
}

.home-process__grid {
	align-items: center;
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.home-process__visual {
	height: 620px;
	position: relative;
}

.home-process__visual-card {
	backdrop-filter: blur(16px);
	background: rgba(8, 17, 31, 0.74);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 22px;
	bottom: 24px;
	display: grid;
	gap: 8px;
	left: 24px;
	max-width: 260px;
	padding: 18px 20px;
	position: absolute;
}

.home-process__content {
	display: grid;
	gap: 20px;
}

.home-process__steps {
	display: grid;
	gap: 18px;
	padding-left: 26px;
	position: relative;
}

.home-process__line {
	background: linear-gradient(180deg, rgba(45, 212, 191, 0.12), rgba(45, 212, 191, 0.72), rgba(45, 212, 191, 0.1));
	border-radius: 999px;
	bottom: 0;
	left: 10px;
	position: absolute;
	top: 10px;
	width: 2px;
}

.home-process__step {
	display: grid;
	padding: 22px 22px 22px 26px;
}

.home-process__marker {
	align-items: center;
	background: linear-gradient(135deg, rgba(45, 212, 191, 0.3), rgba(74, 99, 255, 0.28));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.8rem;
	font-weight: 800;
	height: 42px;
	justify-content: center;
	left: -20px;
	position: absolute;
	top: 22px;
	width: 42px;
}

.home-process__step-content {
	display: grid;
	gap: 10px;
}

.home-testimonials {
	background:
		radial-gradient(circle at 18% 18%, rgba(45, 212, 191, 0.08), transparent 24%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.home-testimonials__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-testimonial-card {
	display: grid;
	gap: 22px;
	padding: 28px;
}

.home-testimonial-card__top {
	align-items: center;
	display: flex;
	gap: 16px;
}

.home-testimonial-card__top img {
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	height: 68px;
	object-fit: cover;
	width: 68px;
}

.home-testimonial-card__top p {
	color: rgba(235, 241, 255, 0.66);
	font-size: 0.88rem;
	line-height: 1.5;
}

.home-testimonial-card__stars {
	color: #f8d26d;
	display: flex;
	gap: 6px;
	font-size: 0.95rem;
}

.home-testimonial-card blockquote {
	margin: 0;
}

.home-metrics {
	overflow: hidden;
}

.home-metrics__glow {
	animation: km-orb-drift 18s ease-in-out infinite;
	background: radial-gradient(circle, rgba(45, 212, 191, 0.14), rgba(45, 212, 191, 0));
	border-radius: 999px;
	filter: blur(18px);
	height: 340px;
	left: 50%;
	position: absolute;
	top: 6%;
	transform: translateX(-50%);
	width: 340px;
}

.home-metrics__inner {
	backdrop-filter: blur(14px);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
		url("../images/demo/home-grid.svg") center/cover no-repeat;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 34px;
	padding: 40px 34px;
	position: relative;
}

.home-metrics__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-metric-card {
	display: grid;
	gap: 12px;
	padding: 28px 22px 24px;
	text-align: center;
}

.home-metric-card__value {
	font-size: clamp(2rem, 3vw, 2.8rem);
	letter-spacing: -0.04em;
	line-height: 1;
}

.home-metric-card__label {
	font-size: 0.95rem;
}

.home-metric-card__line {
	background: linear-gradient(90deg, rgba(45, 212, 191, 0.08), rgba(45, 212, 191, 0.72), rgba(45, 212, 191, 0.08));
	border-radius: 999px;
	display: block;
	height: 3px;
	margin: 6px auto 0;
	transform: scaleX(0.4);
	transform-origin: center;
	transition: transform 0.4s ease;
	width: 70%;
}

.home-metric-card.active .home-metric-card__line,
.home-metric-card:hover .home-metric-card__line,
.home-metric-card:focus-within .home-metric-card__line {
	transform: scaleX(1);
}

.home-cta {
	padding-bottom: 118px;
	padding-top: 104px;
}

.home-cta__panel {
	background: linear-gradient(135deg, rgba(10, 18, 32, 0.84), rgba(6, 12, 22, 0.94));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 34px;
	min-height: 420px;
	overflow: hidden;
	position: relative;
}

.home-cta__mesh,
.home-cta__dots {
	inset: 0;
	position: absolute;
}

.home-cta__mesh {
	animation: km-mesh-drift 18s ease-in-out infinite;
	background: url("../images/demo/home-mesh.svg") center/cover no-repeat;
	opacity: 0.72;
}

.home-cta__dots {
	background: url("../images/demo/home-dots.svg") center/420px repeat;
	opacity: 0.18;
}

.home-cta__orb {
	border-radius: 999px;
	filter: blur(24px);
	position: absolute;
}

.home-cta__orb--one {
	animation: km-orb-drift 14s ease-in-out infinite;
	background: radial-gradient(circle, rgba(45, 212, 191, 0.24), rgba(45, 212, 191, 0));
	height: 260px;
	left: -80px;
	top: 40px;
	width: 260px;
}

.home-cta__orb--two {
	animation: km-orb-drift 16s ease-in-out infinite reverse;
	background: radial-gradient(circle, rgba(74, 99, 255, 0.22), rgba(74, 99, 255, 0));
	bottom: -60px;
	height: 320px;
	right: -70px;
	width: 320px;
}

.home-cta__content {
	align-items: center;
	display: grid;
	gap: 20px;
	justify-items: center;
	margin: 0 auto;
	max-width: 760px;
	min-height: 420px;
	padding: 46px 28px;
	position: relative;
	text-align: center;
	z-index: 1;
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

.reveal.fade-left {
	transform: translateX(-26px);
}

.reveal.fade-right {
	transform: translateX(26px);
}

.reveal.active {
	opacity: 1;
	transform: translate(0, 0);
}

.site-footer {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
		url("../images/demo/home-dots.svg") center/420px repeat,
		#07111f;
}

.site-footer a {
	position: relative;
}

.site-footer a::after {
	background: var(--color-accent);
	bottom: -4px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.25s ease;
	width: 100%;
}

.site-footer a:hover::after,
.site-footer a:focus-visible::after {
	transform: scaleX(1);
}

@keyframes km-float-card {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

@keyframes km-orb-drift {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}

	50% {
		transform: translate3d(24px, -18px, 0);
	}
}

@keyframes km-mesh-drift {
	0%,
	100% {
		transform: scale(1) translate3d(0, 0, 0);
	}

	50% {
		transform: scale(1.04) translate3d(10px, -12px, 0);
	}
}

@media (max-width: 1200px) {
	.home-tech-strip__track {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.home-capabilities__grid,
	.home-testimonials__grid,
	.home-metrics__grid,
	.home-work__grid,
	.home-why__points {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1100px) {
	.home-hero__grid,
	.home-why__grid,
	.home-process__grid,
	.home-section-heading--split {
		grid-template-columns: 1fr;
	}

	.home-section-heading--split {
		display: grid;
	}

	.home-hero__visual {
		min-height: 660px;
	}

	.home-why__visual {
		min-height: 620px;
	}
}

@media (max-width: 860px) {
	.home-hero {
		min-height: auto;
		padding-top: 96px;
	}

	.home-hero__title-line {
		font-size: clamp(2.4rem, 8vw, 3.4rem);
	}

	.home-tech-strip__track,
	.home-capabilities__grid,
	.home-work__grid,
	.home-why__points,
	.home-testimonials__grid,
	.home-metrics__grid {
		grid-template-columns: 1fr;
	}

	.home-hero__visual,
	.home-why__visual {
		min-height: auto;
	}

	.home-hero__mockup,
	.home-hero__card,
	.home-why__photo,
	.home-why__stat,
	.home-why__code-card {
		position: relative;
	}

	.home-hero__mockup--primary,
	.home-hero__mockup--secondary,
	.home-why__photo {
		height: auto;
		inset: auto;
		margin-bottom: 18px;
		width: 100%;
	}

	.home-hero__card--stats,
	.home-hero__card--project,
	.home-why__stat--one,
	.home-why__stat--two {
		bottom: auto;
		left: auto;
		right: auto;
		top: auto;
	}

	.home-hero__card,
	.home-why__stat,
	.home-why__code-card {
		margin-bottom: 16px;
		max-width: none;
	}

	.home-process__grid {
		gap: 32px;
	}
}

@media (max-width: 560px) {
	.home-hero,
	.home-tech-strip,
	.home-capabilities,
	.home-work,
	.home-why,
	.home-process,
	.home-testimonials,
	.home-metrics,
	.home-cta {
		padding-bottom: 76px;
		padding-top: 76px;
	}

	.home-hero__actions,
	.home-hero__trust-row {
		flex-direction: column;
	}

	.home-capability-card,
	.home-work-card__body,
	.home-testimonial-card,
	.home-process__step,
	.home-metric-card,
	.home-tech-strip__inner,
	.home-metrics__inner,
	.home-cta__content {
		padding: 22px;
	}
}

/* Light design system refresh */

:root {
	--color-bg: #f6f9fc;
	--color-surface: #ffffff;
	--color-surface-alt: #f3f7fb;
	--color-surface-muted: #ecf3f8;
	--color-text: #12233f;
	--color-text-dark: #102038;
	--color-heading: #0f1d36;
	--color-muted: #62718c;
	--color-border-dark: rgba(17, 36, 64, 0.1);
	--color-border-soft: rgba(17, 36, 64, 0.07);
	--color-accent: #13c8d6;
	--color-accent-dark: #1084a5;
	--color-orange: #ff9c51;
	--color-purple: #8e7bf5;
	--color-white: #ffffff;
	--color-black: #08111f;
	--shadow-lg: 0 30px 70px rgba(20, 43, 73, 0.12);
	--shadow-md: 0 18px 40px rgba(20, 43, 73, 0.08);
}

body {
	background:
		radial-gradient(circle at 0 0, rgba(19, 200, 214, 0.1), transparent 24%),
		radial-gradient(circle at 100% 10%, rgba(255, 156, 81, 0.1), transparent 20%),
		radial-gradient(circle at 88% 92%, rgba(142, 123, 245, 0.08), transparent 24%),
		linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
	color: var(--color-text);
}

body::before {
	background:
		linear-gradient(rgba(17, 36, 64, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(17, 36, 64, 0.03) 1px, transparent 1px);
	background-position: center top;
	background-size: 72px 72px;
	content: "";
	inset: 0;
	mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.78), transparent 88%);
	opacity: 0.55;
	pointer-events: none;
	position: fixed;
	z-index: -2;
}

.site-shell {
	background:
		radial-gradient(circle at 12% 10%, rgba(19, 200, 214, 0.08), transparent 24%),
		radial-gradient(circle at 84% 18%, rgba(255, 156, 81, 0.08), transparent 20%);
	position: relative;
}

.site-shell::before {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 249, 252, 0.78));
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: -1;
}

h1,
h2,
h3,
h4,
.page-hero h1,
.hero h1,
.cta-panel h2,
.section-heading h1,
.section-heading h2 {
	color: var(--color-heading);
}

.section {
	padding: 104px 0;
}

.section--dark,
.section--muted,
.page-hero--internal {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(240, 245, 251, 0.95)),
		radial-gradient(circle at top right, rgba(19, 200, 214, 0.08), transparent 28%);
	color: var(--color-text-dark);
}

.section-heading,
.page-hero__content,
.hero__content,
.why-us__intro,
.feature-panel,
.project-card__body,
.contact-card,
.service-detail__body,
.prose-content {
	color: var(--color-text);
}

.section-intro {
	color: rgba(18, 35, 63, 0.72);
}

.eyebrow,
.feature-panel__eyebrow,
.project-card__platform {
	color: var(--color-accent-dark);
}

.button {
	background: linear-gradient(135deg, var(--color-accent), #39ddde);
	box-shadow: 0 18px 34px rgba(19, 200, 214, 0.22);
	color: #041019;
}

.button:hover,
.button:focus-visible {
	background: linear-gradient(135deg, #0fc8d4, #4ae2e1);
	box-shadow: 0 24px 40px rgba(19, 200, 214, 0.28);
}

.button--ghost,
.button--ghost-light {
	background: rgba(255, 255, 255, 0.66);
	border-color: rgba(17, 36, 64, 0.14);
	color: var(--color-text-dark);
}

.button--ghost:hover,
.button--ghost-light:hover,
.button--ghost:focus-visible,
.button--ghost-light:focus-visible {
	background: rgba(255, 255, 255, 0.92);
}

.text-link {
	color: var(--color-accent-dark);
}

.text-link::after {
	content: "->";
}

.site-header {
	backdrop-filter: blur(18px);
	background: rgba(255, 255, 255, 0.78);
	border-bottom: 1px solid rgba(17, 36, 64, 0.08);
	box-shadow: 0 10px 26px rgba(17, 36, 64, 0.05);
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.92);
	border-color: rgba(17, 36, 64, 0.1);
	box-shadow: 0 18px 42px rgba(17, 36, 64, 0.09);
}

.site-branding__logo-image,
.site-footer__logo-image {
	filter: drop-shadow(0 12px 24px rgba(20, 43, 73, 0.12));
}

.site-branding__name,
.site-footer__logo,
.site-footer__title {
	color: var(--color-heading);
}

.site-branding__tag,
.site-footer__brand,
.site-footer__menu,
.site-footer__list,
.site-footer__bottom,
.entry-card__meta,
.testimonial-card__meta,
.hero__trust-text {
	color: var(--color-muted);
}

.primary-nav__menu a {
	color: rgba(18, 35, 63, 0.78);
}

.primary-nav__menu a:hover,
.primary-nav__menu a:focus-visible,
.current-menu-item > a {
	color: var(--color-heading);
}

.nav-toggle span {
	background: var(--color-heading);
}

.hero {
	padding: 76px 0 92px;
}

.hero__copy {
	color: rgba(18, 35, 63, 0.76);
}

.hero__panel,
.hero-stat,
.hero-card,
.trust-bar__inner,
.service-card,
.project-card,
.testimonial-card,
.process-card,
.feature-panel,
.contact-card,
.entry-card,
.service-detail,
.form-embed,
.form-placeholder,
.cta-panel {
	backdrop-filter: blur(12px);
	border: 1px solid var(--color-border-soft);
	box-shadow: var(--shadow-md);
}

.hero__panel,
.hero-stat,
.trust-bar__inner,
.service-card,
.testimonial-card,
.process-card,
.entry-card,
.contact-card,
.service-detail,
.form-embed,
.feature-panel {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.92)),
		radial-gradient(circle at top right, rgba(19, 200, 214, 0.06), transparent 26%);
	color: var(--color-text-dark);
}

.hero-card {
	background:
		linear-gradient(180deg, rgba(19, 200, 214, 0.12), rgba(255, 255, 255, 0.9)),
		linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(243, 247, 251, 0.95));
	border-color: rgba(19, 200, 214, 0.18);
}

.trust-bar__item {
	background: rgba(255, 255, 255, 0.74);
}

.service-card:hover,
.project-card:hover,
.testimonial-card:hover,
.process-card:hover,
.feature-panel:hover {
	border-color: rgba(19, 200, 214, 0.18);
	box-shadow: var(--shadow-lg);
}

.project-card {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.96)),
		radial-gradient(circle at top right, rgba(19, 200, 214, 0.05), transparent 30%);
}

.project-card__media {
	background:
		radial-gradient(circle at 18% 18%, rgba(19, 200, 214, 0.14), transparent 26%),
		radial-gradient(circle at 86% 16%, rgba(255, 156, 81, 0.12), transparent 22%),
		linear-gradient(180deg, #f7fbff, #ecf3fb);
}

.project-card__media span {
	color: rgba(16, 32, 56, 0.54);
}

.cta-panel {
	background:
		radial-gradient(circle at top left, rgba(19, 200, 214, 0.18), transparent 28%),
		radial-gradient(circle at bottom right, rgba(142, 123, 245, 0.12), transparent 26%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 251, 0.98));
	border-color: rgba(17, 36, 64, 0.08);
}

.cta-panel p {
	color: rgba(18, 35, 63, 0.74);
}

.site-footer {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 246, 252, 0.96)),
		radial-gradient(circle at 10% 0, rgba(19, 200, 214, 0.07), transparent 24%);
	border-top: 1px solid rgba(17, 36, 64, 0.08);
}

.site-footer__bottom {
	border-top: 1px solid rgba(17, 36, 64, 0.08);
}

.site-footer a {
	color: inherit;
}

.site-footer a::after {
	background: rgba(19, 200, 214, 0.22);
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: var(--color-heading);
}

.page-hero {
	padding: 92px 0 64px;
}

.page-hero--internal {
	overflow: hidden;
	position: relative;
}

.page-hero--internal::before {
	background:
		radial-gradient(circle at 12% 16%, rgba(19, 200, 214, 0.08), transparent 24%),
		radial-gradient(circle at 90% 12%, rgba(255, 156, 81, 0.08), transparent 22%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.page-hero__content,
.error-page__inner,
.split-content,
.contact-layout,
.service-detail,
.stack-lg,
.card-grid,
.why-us,
.why-us__list,
.process-grid {
	position: relative;
	z-index: 1;
}

.prose-content,
.prose-content h1,
.prose-content h2,
.prose-content h3,
.prose-content h4,
.contact-card h2,
.service-detail h2 {
	color: var(--color-text-dark);
}

.prose-content p,
.prose-content li,
.contact-card p,
.service-detail p,
.feature-panel p,
.service-card p,
.testimonial-card p,
.entry-card p {
	color: rgba(18, 35, 63, 0.76);
}

.prose-content a,
.entry-card__title a:hover,
.entry-card__title a:focus-visible {
	color: var(--color-accent-dark);
}

.form-placeholder {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 246, 252, 0.96)),
		radial-gradient(circle at top left, rgba(19, 200, 214, 0.08), transparent 26%);
	color: rgba(16, 32, 56, 0.62);
}

[data-reveal] {
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 1100px) {
	.section {
		padding: 88px 0;
	}

	.cta-panel {
		grid-template-columns: 1fr;
	}

	.cta-panel__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 860px) {
	.site-header__nav-wrap {
		background: rgba(255, 255, 255, 0.96);
		border: 1px solid rgba(17, 36, 64, 0.08);
		box-shadow: 0 22px 44px rgba(17, 36, 64, 0.12);
	}

	.primary-nav__menu a {
		color: var(--color-heading);
	}

	.primary-nav__menu a::after {
		bottom: -6px;
	}
}

@media (max-width: 640px) {
	.section {
		padding: 74px 0;
	}

	.hero,
	.page-hero {
		padding-top: 78px;
	}
}

/* Art direction upgrade */

:root {
	--surface-blur: blur(14px);
}

body::after {
	animation: km-global-orb 22s ease-in-out infinite;
	background:
		radial-gradient(circle at 16% 18%, rgba(19, 200, 214, 0.08), transparent 20%),
		radial-gradient(circle at 82% 24%, rgba(255, 156, 81, 0.06), transparent 18%),
		radial-gradient(circle at 74% 84%, rgba(142, 123, 245, 0.06), transparent 20%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: fixed;
	z-index: -1;
}

.section,
.page-hero,
.site-footer {
	isolation: isolate;
	overflow: clip;
	position: relative;
}

.section::before,
.page-hero::before {
	background:
		radial-gradient(circle at 12% 18%, rgba(19, 200, 214, 0.08), transparent 20%),
		radial-gradient(circle at 88% 22%, rgba(255, 156, 81, 0.06), transparent 18%);
	content: "";
	inset: 0;
	opacity: 0.42;
	pointer-events: none;
	position: absolute;
	transform: translate3d(0, 24px, 0);
	transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: -1;
}

.section.is-inview::before,
.page-hero.is-inview::before,
.site-footer.is-inview::before {
	opacity: 0.9;
	transform: translate3d(0, 0, 0);
}

.section::after,
.page-hero::after {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(19, 200, 214, 0.04), rgba(255, 255, 255, 0));
	content: "";
	height: 1px;
	left: max(24px, calc((100vw - var(--container)) / 2 + 24px));
	opacity: 0.7;
	position: absolute;
	right: max(24px, calc((100vw - var(--container)) / 2 + 24px));
	top: 0;
	z-index: 1;
}

.site-header {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
		radial-gradient(circle at top left, rgba(19, 200, 214, 0.08), transparent 30%);
}

.site-header.is-scrolled {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84)),
		radial-gradient(circle at top left, rgba(19, 200, 214, 0.1), transparent 30%);
	box-shadow: 0 22px 46px rgba(17, 36, 64, 0.1);
}

.primary-nav__menu a {
	transition: color 0.25s ease, transform 0.25s ease;
}

.primary-nav__menu a:hover,
.primary-nav__menu a:focus-visible {
	transform: translateY(-1px);
}

.button {
	position: relative;
}

.button::before {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
	content: "";
	inset: 0;
	opacity: 0;
	position: absolute;
	transform: translateX(-120%);
	transition: transform 0.55s ease, opacity 0.3s ease;
}

.button:hover::before,
.button:focus-visible::before {
	opacity: 1;
	transform: translateX(115%);
}

.button--ghost::before,
.button--ghost-light::before {
	background: linear-gradient(90deg, rgba(19, 200, 214, 0), rgba(19, 200, 214, 0.16), rgba(19, 200, 214, 0));
}

.feature-panel,
.project-card,
.service-detail,
.contact-card,
.entry-card,
.cta-panel,
.form-embed,
.form-placeholder {
	backdrop-filter: var(--surface-blur);
	position: relative;
}

.feature-panel::before,
.project-card::before,
.service-detail::before,
.contact-card::before,
.entry-card::before,
.cta-panel::before,
.form-embed::before {
	background: linear-gradient(90deg, rgba(19, 200, 214, 0.42), rgba(142, 123, 245, 0.24), rgba(255, 156, 81, 0.28));
	content: "";
	height: 2px;
	left: 28px;
	opacity: 0.7;
	position: absolute;
	right: 28px;
	top: 0;
}

.feature-panel:hover,
.project-card:hover,
.service-detail:hover,
.contact-card:hover,
.entry-card:hover {
	transform: translateY(-6px);
}

.project-card__body,
.service-detail__body,
.contact-card,
.feature-panel,
.entry-card {
	gap: 16px;
}

.project-card__body .text-link,
.entry-card .text-link {
	transition: transform 0.25s ease, letter-spacing 0.25s ease;
}

.project-card:hover .text-link,
.entry-card:hover .text-link,
.feature-panel:hover .text-link {
	letter-spacing: 0.01em;
	transform: translateX(4px);
}

.page-hero {
	background:
		radial-gradient(circle at 0 0, rgba(19, 200, 214, 0.12), transparent 26%),
		radial-gradient(circle at 100% 8%, rgba(255, 156, 81, 0.08), transparent 22%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.92));
}

.page-hero__content {
	max-width: 900px;
}

.section--muted {
	background:
		radial-gradient(circle at 14% 18%, rgba(19, 200, 214, 0.08), transparent 22%),
		radial-gradient(circle at 86% 22%, rgba(142, 123, 245, 0.06), transparent 18%),
		linear-gradient(180deg, rgba(247, 250, 252, 0.96), rgba(242, 246, 250, 0.94));
}

.site-footer {
	background:
		radial-gradient(circle at top left, rgba(19, 200, 214, 0.18), transparent 22%),
		radial-gradient(circle at bottom right, rgba(142, 123, 245, 0.14), transparent 20%),
		linear-gradient(180deg, #08111f, #0d1727);
	border-top-color: rgba(255, 255, 255, 0.08);
	color: rgba(235, 241, 255, 0.72);
}

.site-footer::before {
	background:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 64px 64px;
	content: "";
	inset: 0;
	mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.85), transparent 85%);
	opacity: 0.36;
	pointer-events: none;
	position: absolute;
	z-index: -1;
}

.site-footer__title,
.site-footer__logo {
	color: var(--color-white);
}

.site-footer__brand,
.site-footer__menu,
.site-footer__list,
.site-footer__bottom,
.site-footer a {
	color: rgba(235, 241, 255, 0.72);
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: var(--color-white);
}

@keyframes km-global-orb {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}

	50% {
		transform: translate3d(14px, -18px, 0) scale(1.03);
	}
}

@media (max-width: 860px) {
	.section::after,
	.page-hero::after {
		left: 24px;
		right: 24px;
	}
}

/* Fully light refinement */

.section::before,
.page-hero::before {
	background:
		radial-gradient(circle at 12% 18%, rgba(19, 200, 214, 0.07), transparent 20%),
		radial-gradient(circle at 88% 22%, rgba(255, 156, 81, 0.05), transparent 18%);
}

.section::after,
.page-hero::after {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(19, 200, 214, 0.06), rgba(255, 255, 255, 0));
}

.site-header {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78)),
		radial-gradient(circle at top left, rgba(19, 200, 214, 0.06), transparent 30%);
}

.site-header.is-scrolled {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
		radial-gradient(circle at top left, rgba(19, 200, 214, 0.08), transparent 30%);
}

.section--muted {
	background:
		radial-gradient(circle at 14% 18%, rgba(19, 200, 214, 0.06), transparent 22%),
		radial-gradient(circle at 86% 22%, rgba(142, 123, 245, 0.04), transparent 18%),
		linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(244, 247, 250, 0.96));
}

.site-footer {
	background:
		radial-gradient(circle at top left, rgba(19, 200, 214, 0.1), transparent 24%),
		radial-gradient(circle at bottom right, rgba(255, 156, 81, 0.08), transparent 22%),
		linear-gradient(180deg, #ffffff, #f4f8fb);
	border-top-color: rgba(17, 36, 64, 0.08);
	color: rgba(18, 35, 63, 0.72);
}

.site-footer::before {
	background:
		linear-gradient(rgba(17, 36, 64, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(17, 36, 64, 0.03) 1px, transparent 1px);
	opacity: 0.34;
}

.site-footer__title,
.site-footer__logo,
.site-footer__brand,
.site-footer__menu,
.site-footer__list,
.site-footer__bottom,
.site-footer a {
	color: var(--color-text);
}

.site-footer__menu,
.site-footer__list,
.site-footer__bottom,
.site-footer__brand p {
	color: rgba(18, 35, 63, 0.7);
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: var(--color-accent-dark);
}
