﻿/* ==========================================================================
   Devworxs Theme — Electric Purple brand system
   ========================================================================== */

:root {
	/* Brand palette */
	--brand-primary: #7B00D4;
	--brand-secondary: #A800E8;
	--brand-dark: #0f172a;
	--brand-surface: #1e293b;
	--brand-text: #FFFFFF;
	--brand-text-secondary: #B8B3C2;
	--brand-accent: #C45AFF;

	/* Mapped tokens */
	--navy-900: var(--brand-dark);
	--navy-800: var(--brand-surface);
	--navy-700: #243047;
	--navy-600: #334155;
	--navy-500: #475569;
	--purple-700: var(--brand-secondary);
	--purple-600: var(--brand-primary);
	--purple-500: var(--brand-primary);
	--purple-400: var(--brand-accent);
	--purple-rgb: 123, 0, 212;
	--secondary-rgb: 168, 0, 232;
	--accent-rgb: 196, 90, 255;
	--purple-glow: rgba(123, 0, 212, 0.38);
	--accent-blue: var(--brand-secondary);
	--white: var(--brand-text);
	--gray-100: #f6f3fa;
	--gray-200: #e8e4ef;
	--gray-300: #d4cede;
	--gray-400: #a39dad;
	--gray-500: #6b6578;
	--text-primary: var(--brand-text);
	--text-secondary: var(--brand-text-secondary);
	--text-muted: #8f879c;
	--border-light: rgba(255, 255, 255, 0.08);
	--border-medium: rgba(123, 0, 212, 0.24);
	--card-bg: rgba(255, 255, 255, 0.04);
	--gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 48%, #243047 100%);
	--gradient-logo: linear-gradient(90deg, #7B00D4 0%, #A800E8 50%, #C45AFF 100%);
	--gradient-purple: linear-gradient(135deg, #7B00D4 0%, #A800E8 55%, #C45AFF 100%);
	--gradient-blue: linear-gradient(135deg, #1e293b, #334155);
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
	--shadow-md: 0 8px 30px rgba(0, 0, 0, 0.32);
	--shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.42);
	--shadow-purple: 0 8px 32px var(--purple-glow);
	/* Studio lighting — purple/magenta only */
	--light-key: rgba(255, 255, 255, 0.12);
	--light-fill: rgba(168, 0, 232, 0.14);
	--light-rim: rgba(196, 90, 255, 0.18);
	--light-beam: rgba(123, 0, 212, 0.2);
	--surface-highlight: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(196, 90, 255, 0.04) 38%, transparent 62%);
	--surface-shadow: 0 18px 50px rgba(0, 0, 0, 0.38), 0 2px 0 rgba(255, 255, 255, 0.04) inset;
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 32px;
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--header-height: 88px;
	--header-height-mobile: 72px;
	--header-top-height: 2.5rem;
	--header-stack: calc(var(--header-height) + var(--header-top-height));
	--header-stack-mobile: calc(var(--header-height-mobile) + env(safe-area-inset-top, 0px));
	--container-max: 1280px;
	--font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-display: 'Outfit', var(--font);
	/* Light section palette (alternating bands with dark) */
	--light-bg: #ffffff;
	--light-bg-muted: #f6f3fa;
	--light-text: #0f172a;
	--light-text-secondary: #4a4458;
	--light-text-muted: #6b6578;
	--light-border: rgba(15, 23, 42, 0.08);
	--light-card-bg: #ffffff;
	--light-card-border: rgba(15, 23, 42, 0.08);
	--light-card-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
	--light-card-shadow-hover: 0 16px 44px rgba(123, 0, 212, 0.16);

	/* ?? Design system: 8px spacing scale ?? */
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.25rem;
	--space-6: 1.5rem;
	--space-8: 2rem;
	--space-10: 2.5rem;
	--space-12: 3rem;
	--space-16: 4rem;
	--space-20: 5rem;
	--section-y: clamp(3rem, 8vw, 6rem);
	--container-x: clamp(1.25rem, 4vw, 2rem);

	/* ?? Design system: modular type scale (1.25 ratio) ?? */
	--text-xs: 0.8125rem;
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-lg: 1.125rem;
	--text-xl: 1.25rem;
	--text-h3: clamp(1.25rem, 2vw, 1.75rem);
	--text-h2: clamp(1.75rem, 3.5vw, 2.75rem);
	--text-display: clamp(2.25rem, 5vw, 3.75rem);
	--leading-body: 1.6;
	--leading-heading: 1.2;
	--leading-ui: 1.4;
	--prose-max: 65ch;

	/* ?? Focus & interaction ?? */
	--focus-ring: 2px solid var(--purple-400);
	--focus-offset: 2px;
	--focus-shadow: 0 0 0 4px rgba(123, 0, 212, 0.28);
	--touch-min: 2.75rem;
}

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

html {
	scroll-behavior: smooth;
	font-size: 16px;
	overflow-x: hidden;
	scroll-padding-top: calc(var(--header-height) + var(--space-4));
}

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

body {
	font-family: var(--font);
	background: var(--navy-900);
	color: var(--text-primary);
	font-size: var(--text-base);
	line-height: var(--leading-body);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	font-optical-sizing: auto;
}

/* Soft preloader-style atmosphere behind the site */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		radial-gradient(ellipse 48% 42% at 12% 8%, rgba(248, 250, 252, 0.1), transparent 58%),
		radial-gradient(ellipse 55% 45% at 18% 20%, rgba(123, 0, 212, 0.24), transparent 65%),
		radial-gradient(ellipse 42% 38% at 88% 18%, rgba(168, 0, 232, 0.16), transparent 60%),
		radial-gradient(ellipse 45% 40% at 85% 78%, rgba(196, 90, 255, 0.1), transparent 60%),
		radial-gradient(ellipse 70% 50% at 50% 100%, rgba(15, 23, 42, 0.92), transparent 55%),
		linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

body::after {
	content: '';
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	opacity: 0.5;
	background-image:
		linear-gradient(rgba(123, 0, 212, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(123, 0, 212, 0.08) 1px, transparent 1px);
	background-size: 32px 32px;
	-webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 0%, transparent 78%);
	mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 0%, transparent 78%);
}

/* Skip link ? first focusable element (WCAG) */
.skip-link {
	position: absolute;
	top: -100%;
	left: var(--space-4);
	z-index: 10000;
	padding: var(--space-3) var(--space-6);
	background: var(--purple-600);
	color: var(--white);
	font-weight: 600;
	font-size: var(--text-sm);
	border-radius: var(--radius-sm);
	text-decoration: none;
	transition: top var(--transition);
}

.skip-link:focus {
	top: var(--space-4);
	outline: var(--focus-ring);
	outline-offset: var(--focus-offset);
}

/* Global focus ? keyboard only */
:focus { outline: none; }

:focus-visible {
	outline: var(--focus-ring);
	outline-offset: var(--focus-offset);
	box-shadow: var(--focus-shadow);
}

h1, h2, h3, h4 {
	text-wrap: balance;
	line-height: var(--leading-heading);
}

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

a {
	color: var(--purple-600);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover { color: var(--purple-400); }

/* Prose links ? underline on interaction (WCAG) */
.prose a:not(.btn):hover,
.prose a:not(.btn):focus-visible,
.content-main a:not(.btn):hover,
.content-main a:not(.btn):focus-visible {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-x);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	min-height: var(--touch-min);
	padding: var(--space-3) var(--space-8);
	font-family: var(--font);
	font-size: var(--text-sm);
	font-weight: 600;
	line-height: var(--leading-ui);
	border-radius: var(--radius-sm);
	border: 2px solid transparent;
	cursor: pointer;
	transition: all var(--transition);
	text-decoration: none;
	white-space: nowrap;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.btn-primary {
	background: var(--gradient-purple);
	color: var(--white);
	border-color: var(--purple-500);
	box-shadow: var(--shadow-purple);
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px var(--purple-glow);
	color: var(--white);
}

.btn-outline {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--purple-400);
	color: var(--white);
}

.btn-ghost {
	background: transparent;
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
	background: rgba(var(--purple-rgb), 0.12);
	border-color: var(--purple-400);
	color: var(--white);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* Header ? matches preloader navy + white logo */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
	background: rgba(15, 23, 42, 0.88);
	backdrop-filter: blur(18px);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.site-header.scrolled .header-main {
	border-bottom-color: rgba(196, 90, 255, 0.18);
	background: transparent;
}

.header-top {
	background: rgba(21, 16, 31, 0.92);
	border-bottom: 1px solid rgba(196, 90, 255, 0.16);
	font-size: 0.8125rem;
}

.header-top-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 24px;
}

.header-contact, .header-social {
	display: flex;
	gap: 24px;
	align-items: center;
}

.header-contact a, .header-social a {
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.8125rem;
}
.header-contact a:hover, .header-social a:hover { color: var(--white); }
.header-contact .icon { margin-right: 6px; color: var(--purple-400); }

.header-main {
	position: relative;
	background: rgba(15, 23, 42, 0.72);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-main-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 24px;
	min-height: var(--header-height);
}

.site-logo img {
	height: 68px;
	width: auto;
	max-width: 280px;
}

.main-nav { flex: 1; display: flex; justify-content: center; }

.nav-menu {
	display: flex;
	list-style: none;
	gap: 4px;
	align-items: center;
}

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

.nav-menu > li > a {
	display: block;
	padding: 10px 16px;
	color: rgba(226, 232, 240, 0.9);
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a {
	color: var(--white);
	background: rgba(var(--purple-rgb), 0.16);
}

.nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	background: rgba(21, 16, 31, 0.96);
	border: 1px solid rgba(196, 90, 255, 0.22);
	border-radius: var(--radius-md);
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all var(--transition);
	box-shadow: var(--shadow-lg);
	list-style: none;
	z-index: 100;
	backdrop-filter: blur(16px);
}

.nav-menu li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-menu .sub-menu a {
	display: block;
	padding: 10px 16px;
	color: rgba(203, 213, 225, 0.92);
	font-size: 0.875rem;
	border-radius: var(--radius-sm);
}
.nav-menu .sub-menu a:hover {
	background: rgba(var(--purple-rgb), 0.16);
	color: var(--white);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.mobile-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(196, 90, 255, 0.22);
	border-radius: 12px;
	cursor: pointer;
	min-width: var(--touch-min);
	min-height: var(--touch-min);
	padding: var(--space-2);
	transition: background 0.2s ease, border-color 0.2s ease;
}
.mobile-toggle:hover,
.mobile-toggle:focus-visible {
	background: rgba(123, 0, 212, 0.18);
	border-color: rgba(196, 90, 255, 0.45);
	outline: none;
}
.mobile-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: #e2e8f0;
	transition: transform 0.25s ease, opacity 0.2s ease;
	border-radius: 2px;
}

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

@media (min-width: 769px) {
	.main-nav {
		position: fixed;
		left: 50%;
		top: calc(var(--header-top-height) + (var(--header-height) / 2));
		transform: translate(-50%, -50%);
		width: auto;
		height: auto;
		max-height: none;
		padding: 0;
		margin: 0;
		overflow: visible;
		visibility: visible;
		pointer-events: auto;
		background: none;
		border: none;
		box-shadow: none;
		z-index: 1001;
	}

	.mobile-nav-sheet {
		display: contents;
	}

	.mobile-nav-head,
	.mobile-nav-quick,
	.mobile-nav-close,
	.mobile-nav-logo,
	.mobile-nav-secondary {
		display: none !important;
	}

	.mobile-nav-links {
		display: contents;
	}

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

	.mobile-nav-overlay {
		display: none !important;
	}
}

.site-main { padding-top: calc(var(--header-stack) + 0.5rem); }

/* Hero Section */
.hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	background: var(--gradient-hero);
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 20% 50%, rgba(var(--purple-rgb), 0.15) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 20%, rgba(168, 0, 232, 0.1) 0%, transparent 40%);
	pointer-events: none;
}

.hero-bg-video {
	position: absolute;
	inset: 0;
	overflow: hidden;
	opacity: 0.12;
}
.hero-bg-video iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 120vw;
	height: 120vh;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	padding: 80px 0;
}

.hero-content h1 {
	font-size: var(--text-display);
	font-weight: 800;
	line-height: var(--leading-heading);
	margin-bottom: var(--space-6);
	background: linear-gradient(135deg, var(--white) 0%, var(--purple-600) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: var(--text-xl);
	color: var(--text-secondary);
	margin-bottom: var(--space-4);
	font-weight: 400;
	line-height: var(--leading-body);
	max-width: var(--prose-max);
}

.hero-text {
	color: var(--text-muted);
	font-size: var(--text-base);
	margin-bottom: var(--space-8);
	max-width: var(--prose-max);
	line-height: var(--leading-body);
}

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

.hero-visual {
	position: relative;
}

.hero-image-wrap {
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(var(--purple-rgb), 0.2);
}

.hero-image-wrap img,
.hero-image-wrap .illustration-img {
	width: 100%;
	height: 420px;
	object-fit: cover;
}

/* 3D Illustrations */
.illustration-img {
	display: block;
	width: 100%;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-purple);
	border: 1px solid rgba(var(--purple-rgb), 0.15);
	background: var(--navy-900);
}

.section-light .illustration-img,
.section-light-muted .illustration-img {
	border-color: var(--light-card-border);
	box-shadow: var(--light-card-shadow-hover);
}

.tab-panel-image .illustration-img {
	aspect-ratio: 4 / 3;
	height: auto;
	object-fit: cover;
}

.trusted-image .illustration-img {
	height: 400px;
	object-fit: cover;
}

.blog-card-image .illustration-img {
	height: 200px;
	object-fit: cover;
	border-radius: 0;
	border: none;
	box-shadow: none;
}

.portfolio-item .illustration-img {
	width: 100%;
	height: 100%;
	min-height: 260px;
	object-fit: cover;
	border-radius: var(--radius-md);
}

.hero-badge {
	position: absolute;
	bottom: -20px;
	left: -20px;
	background: var(--navy-800);
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-md);
	padding: 20px 28px;
	box-shadow: var(--shadow-purple);
}

.hero-badge strong {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	color: var(--purple-600);
}
.hero-badge span { font-size: 0.875rem; color: var(--text-muted); }

/* Rotating Text (Utande-style) */
.hero-rotator {
	padding: 60px 0;
	text-align: center;
}

.rotator-label {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 300;
	color: var(--text-muted);
	margin-bottom: 8px;
}

.rotator-label strong {
	color: var(--purple-600);
	font-weight: 700;
}

.rotator-text {
	font-size: clamp(1.25rem, 2.5vw, 2rem);
	font-weight: 600;
	color: var(--white);
	min-height: 3em;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rotator-word {
	display: none;
	animation: fadeInUp 0.6s ease;
}
.rotator-word.active { display: block; }

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

/* Section Styles */
.section {
	padding: var(--section-y) 0;
	position: relative;
}

.section-dark { background: var(--navy-900); }
.section-navy { background: var(--navy-800); }
.section-gradient {
	background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
}

.section-light {
	background: var(--light-bg);
	color: var(--light-text);
}

.section-light-muted {
	background: var(--light-bg-muted);
	color: var(--light-text);
}

/* Light section typography */
.section-light .section-title,
.section-light-muted .section-title {
	color: var(--light-text);
}

.section-light .section-desc,
.section-light-muted .section-desc {
	color: var(--light-text-muted);
}

.section-light .trusted-content h2,
.section-light-muted .trusted-content h2 {
	color: var(--light-text);
}

.section-light .trusted-content p,
.section-light-muted .trusted-content p {
	color: var(--light-text-secondary);
}

.section-light .tab-panel-content h3,
.section-light-muted .tab-panel-content h3 {
	color: var(--light-text);
}

.section-light .tab-panel-content p,
.section-light-muted .tab-panel-content p,
.section-light .feature-list li,
.section-light-muted .feature-list li {
	color: var(--light-text-secondary);
}

.section-light .rotator-label,
.section-light-muted .rotator-label {
	color: var(--light-text-muted);
}

.section-light .rotator-text,
.section-light-muted .rotator-text {
	color: var(--light-text);
}

/* Light section interactive elements */
.section-light .tab-btn,
.section-light-muted .tab-btn {
	background: var(--light-bg-muted);
	border-color: var(--light-border);
	color: var(--light-text-secondary);
}

.section-light .tab-btn:hover,
.section-light .tab-btn.active,
.section-light-muted .tab-btn:hover,
.section-light-muted .tab-btn.active {
	background: rgba(var(--purple-rgb), 0.1);
	border-color: var(--purple-600);
	color: var(--purple-700);
}

.section-light .value-card,
.section-light-muted .value-card {
	background: var(--light-card-bg);
	border-color: var(--light-card-border);
	box-shadow: var(--light-card-shadow);
}

.section-light .value-card p,
.section-light-muted .value-card p {
	color: var(--light-text-muted);
}

.section-light .product-card,
.section-light-muted .product-card {
	background: var(--light-card-bg);
	border-color: var(--light-card-border);
	box-shadow: var(--light-card-shadow);
	color: var(--light-text);
}

.section-light .product-card:hover,
.section-light-muted .product-card:hover {
	box-shadow: var(--light-card-shadow-hover);
}

.section-light .product-card h4,
.section-light-muted .product-card h4 {
	color: var(--light-text);
}

.section-light .btn-outline,
.section-light-muted .btn-outline {
	color: var(--purple-600);
	border-color: var(--purple-600);
}

.section-light .btn-outline:hover,
.section-light-muted .btn-outline:hover {
	background: var(--purple-600);
	border-color: var(--purple-600);
	color: var(--white);
}

.section-light .faq-question,
.section-light-muted .faq-question {
	color: var(--light-text);
}

.section-light .faq-item,
.section-light-muted .faq-item {
	border-bottom-color: var(--light-border);
}

.section-light .faq-answer p,
.section-light-muted .faq-answer p {
	color: var(--light-text-muted);
}

.section-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto var(--space-16);
}

.section-label {
	display: inline-block;
	font-size: var(--text-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--purple-600);
	margin-bottom: var(--space-3);
}

.section-title {
	font-size: var(--text-h2);
	font-weight: 800;
	color: var(--white);
	margin-bottom: var(--space-4);
	line-height: var(--leading-heading);
}

.section-desc {
	font-size: var(--text-lg);
	color: var(--text-muted);
	line-height: var(--leading-body);
	max-width: var(--prose-max);
	margin-left: auto;
	margin-right: auto;
}

/* Trusted Partner */
.trusted-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.trusted-content h2 {
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.trusted-content p {
	color: var(--text-muted);
	margin-bottom: var(--space-4);
	font-size: var(--text-lg);
	max-width: var(--prose-max);
	line-height: var(--leading-body);
}

.trusted-highlight {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--purple-600);
	margin-top: 24px;
}

.trusted-image img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	width: 100%;
	height: 400px;
	object-fit: cover;
}

/* Services Tabs */
.services-tabs {
	/* Background set by parent section-light / section-dark */
}

.tab-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-bottom: 48px;
}

.tab-btn {
	padding: var(--space-3) var(--space-6);
	min-height: var(--touch-min);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-sm);
	color: var(--text-secondary);
	font-family: var(--font);
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
	background: rgba(var(--purple-rgb), 0.2);
	border-color: var(--purple-500);
	color: var(--white);
}

.tab-panel {
	display: none;
	animation: fadeInUp 0.4s ease;
}
.tab-panel.active { display: grid; }

.tab-panel[hidden] {
	display: none !important;
}

.tab-panel {
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.tab-panel-content h3 {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 16px;
}

.tab-panel-content p {
	color: var(--text-muted);
	margin-bottom: 24px;
}

.feature-list {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.feature-list li {
	padding: 8px 0 8px 28px;
	position: relative;
	color: var(--text-secondary);
	font-size: 0.9375rem;
}
.feature-list li::before {
	content: '?';
	position: absolute;
	left: 0;
	color: var(--purple-600);
	font-weight: 700;
}

.tab-panel-image img {
	border-radius: var(--radius-lg);
	width: 100%;
	height: 320px;
	object-fit: cover;
	box-shadow: var(--shadow-md);
}

/* Service Cards Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.service-card {
	background: var(--card-bg);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	padding: 32px;
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-purple);
	transform: scaleX(0);
	transition: transform var(--transition);
}

.service-card:hover {
	transform: translateY(-6px);
	border-color: rgba(var(--purple-rgb), 0.3);
	box-shadow: var(--shadow-purple);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
	width: 56px;
	height: 56px;
	background: rgba(var(--purple-rgb), 0.15);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 20px;
}

.service-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.service-card p {
	color: var(--text-muted);
	font-size: 0.9375rem;
	margin-bottom: 20px;
}

.service-card .link-arrow {
	color: var(--purple-600);
	font-weight: 600;
	font-size: 0.875rem;
}

/* Why Choose Us */
.why-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.why-item {
	text-align: center;
	padding: 28px 16px;
	background: var(--card-bg);
	border-radius: var(--radius-md);
	border: 1px solid var(--border-light);
	transition: all var(--transition);
}

.why-item:hover {
	border-color: rgba(var(--purple-rgb), 0.3);
	background: rgba(var(--purple-rgb), 0.08);
}

.why-icon {
	font-size: 2rem;
	margin-bottom: 12px;
}

.why-item h4 {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-secondary);
}

/* Stats Counter */
.stats-section {
	background: var(--gradient-purple);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.stats-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	position: relative;
	z-index: 1;
}

.stat-item { text-align: center; color: var(--white); }

.stat-number {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 0.9375rem;
	opacity: 0.9;
	font-weight: 500;
}

/* Industries */
.industries-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}

.industry-tag {
	padding: 16px;
	text-align: center;
	background: var(--card-bg);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-sm);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-secondary);
	transition: all var(--transition);
}

.industry-tag:hover {
	background: rgba(var(--purple-rgb), 0.15);
	border-color: var(--purple-500);
	color: var(--white);
	transform: translateY(-2px);
}

/* Products */
.products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.product-card {
	background: var(--navy-700);
	border-radius: var(--radius-md);
	padding: 24px;
	text-align: center;
	border: 1px solid var(--border-light);
	transition: all var(--transition);
}

.product-card:hover {
	border-color: var(--purple-500);
	transform: translateY(-4px);
}

.product-card .icon { font-size: 2rem; margin-bottom: 12px; }
.product-card h4 { font-size: 0.9375rem; font-weight: 600; }

/* Process Steps */
.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	counter-reset: step;
}

.process-step {
	position: relative;
	padding: 32px 24px;
	background: var(--card-bg);
	border-radius: var(--radius-md);
	border: 1px solid var(--border-light);
	text-align: center;
}

.process-step::before {
	counter-increment: step;
	content: counter(step);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: var(--gradient-purple);
	border-radius: 50%;
	font-weight: 800;
	font-size: 1.125rem;
	margin: 0 auto 16px;
}

.process-step h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.process-step p {
	font-size: 0.8125rem;
	color: var(--text-muted);
}

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
	border-bottom: 1px solid var(--border-light);
}

.faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: var(--touch-min);
	padding: var(--space-6) 0;
	background: none;
	border: none;
	color: var(--white);
	font-family: var(--font);
	font-size: 1.0625rem;
	font-weight: 600;
	cursor: pointer;
	text-align: left;
	transition: color var(--transition);
}

.faq-question:hover { color: var(--purple-400); }

.faq-icon {
	font-size: 1.5rem;
	color: var(--purple-600);
	transition: transform var(--transition);
	flex-shrink: 0;
	margin-left: 16px;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
	max-height: 300px;
	padding-bottom: 24px;
}

.faq-answer p {
	color: var(--text-muted);
	line-height: 1.7;
}

/* FAQ on light page content */
.page-content .faq-question {
	color: var(--light-text);
}

.page-content .faq-item {
	border-bottom-color: var(--light-border);
}

.page-content .faq-answer p {
	color: var(--light-text-muted);
}

/* Video Section */
.video-section {
	position: relative;
	padding: 100px 0;
}

.video-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(var(--purple-rgb), 0.2);
}

.video-wrapper iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Page Hero (inner pages) ? gradient + designs, no illustrations */
.page-hero {
	padding: calc(var(--header-stack) + var(--space-12)) 0 var(--space-12);
	background: var(--gradient-hero);
	position: relative;
	overflow: hidden;
}

.page-hero-atmosphere {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.page-hero-graph {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(123, 0, 212, 0.14) 1px, transparent 1px),
		linear-gradient(90deg, rgba(123, 0, 212, 0.14) 1px, transparent 1px),
		linear-gradient(rgba(168, 0, 232, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(168, 0, 232, 0.07) 1px, transparent 1px);
	background-size: 24px 24px, 24px 24px, 120px 120px, 120px 120px;
	background-position: -1px -1px;
	-webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 0%, transparent 78%);
	mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 0%, transparent 78%);
	opacity: 0.85;
}

.page-hero-glow {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 50% 45% at 14% 18%, rgba(248, 250, 252, 0.12), transparent 60%),
		radial-gradient(ellipse 55% 50% at 20% 40%, rgba(123, 0, 212, 0.28), transparent 65%),
		radial-gradient(ellipse 45% 45% at 85% 60%, rgba(168, 0, 232, 0.16), transparent 60%),
		radial-gradient(ellipse 40% 35% at 78% 18%, rgba(196, 90, 255, 0.14), transparent 62%);
}

.page-hero-particles {
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(1.5px 1.5px at 12% 22%, rgba(255, 255, 255, 0.55), transparent),
		radial-gradient(1.5px 1.5px at 28% 68%, rgba(196, 90, 255, 0.55), transparent),
		radial-gradient(1.5px 1.5px at 44% 18%, rgba(255, 255, 255, 0.35), transparent),
		radial-gradient(2px 2px at 62% 42%, rgba(168, 0, 232, 0.5), transparent),
		radial-gradient(1.5px 1.5px at 78% 76%, rgba(255, 255, 255, 0.4), transparent),
		radial-gradient(1.5px 1.5px at 88% 28%, rgba(196, 90, 255, 0.45), transparent),
		radial-gradient(1.5px 1.5px at 18% 88%, rgba(255, 255, 255, 0.3), transparent),
		radial-gradient(2px 2px at 52% 82%, rgba(123, 0, 212, 0.45), transparent),
		radial-gradient(1.5px 1.5px at 70% 12%, rgba(255, 255, 255, 0.35), transparent);
	opacity: 0.85;
}

.page-hero-inner,
.page-hero-grid {
	position: relative;
	z-index: 1;
}

.page-hero-inner {
	display: block;
	max-width: 820px;
}

.page-hero-grid {
	display: block;
}

.page-hero-content {
	text-align: left;
	max-width: 720px;
}

.page-hero-subtitle {
	color: var(--text-secondary);
	max-width: var(--prose-max);
	margin: var(--space-4) 0 var(--space-6);
	font-size: var(--text-lg);
	line-height: var(--leading-body);
}

.page-hero h1 {
	font-size: var(--text-h2);
	font-weight: 800;
	margin-bottom: var(--space-4);
	color: var(--white);
}

.page-content .sidebar-card-desc {
	color: var(--light-text-muted);
	font-size: var(--text-sm);
	margin-bottom: var(--space-4);
}

.page-content {
	padding: 80px 0;
	background: var(--light-bg);
	color: var(--light-text);
}

.content-main h2 {
	font-size: var(--text-h3);
	font-weight: 700;
	margin: var(--space-10) 0 var(--space-4);
	color: var(--light-text);
}

.content-main h2:first-child { margin-top: 0; }

.content-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
}

.content-main p {
	color: var(--light-text-secondary);
	margin-bottom: 16px;
	font-size: 1.0625rem;
}

.content-main ul {
	list-style: none;
	margin-bottom: 24px;
}

.content-main ul li {
	padding: 8px 0 8px 28px;
	position: relative;
	color: var(--light-text-secondary);
}

.content-main ul li::before {
	content: '?';
	position: absolute;
	left: 0;
	color: var(--purple-600);
}

.content-sidebar {
	position: sticky;
	top: 140px;
	align-self: start;
}

.sidebar-card {
	background: var(--light-card-bg);
	border: 1px solid var(--light-card-border);
	border-radius: var(--radius-md);
	padding: 32px;
	margin-bottom: 24px;
	box-shadow: var(--light-card-shadow);
}

.sidebar-card h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--light-text);
}

.sidebar-links {
	list-style: none;
}

.sidebar-links li { margin-bottom: 8px; }
.sidebar-links a {
	color: var(--light-text-secondary);
	font-size: 0.9375rem;
	display: block;
	padding: 8px 12px;
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}
.sidebar-links a:hover {
	background: rgba(var(--purple-rgb), 0.08);
	color: var(--purple-600);
}

.page-content .sidebar-card p {
	color: var(--light-text-muted);
}

/* Contact Form */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.contact-form {
	background: var(--light-card-bg);
	border: 1px solid var(--light-card-border);
	border-radius: var(--radius-lg);
	padding: 40px;
	box-shadow: var(--light-card-shadow);
}

.contact-form h2 {
	color: var(--light-text);
}

.form-group label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 8px;
	color: var(--light-text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 14px 16px;
	background: var(--light-bg-muted);
	border: 1px solid var(--light-border);
	border-radius: var(--radius-sm);
	color: var(--light-text);
	font-family: var(--font);
	font-size: 0.9375rem;
	transition: border-color var(--transition);
}

.form-group { margin-bottom: 20px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--purple-500);
	box-shadow: 0 0 0 3px var(--purple-glow);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-success {
	background: rgba(34, 197, 94, 0.15);
	border: 1px solid rgba(34, 197, 94, 0.3);
	color: #86efac;
	padding: 16px;
	border-radius: var(--radius-sm);
	margin-bottom: 24px;
}

.contact-info-card {
	padding: 32px 0;
}

.contact-info-item {
	display: flex;
	gap: 16px;
	margin-bottom: 28px;
}

.contact-info-item .icon-wrap {
	width: 48px;
	height: 48px;
	background: rgba(var(--purple-rgb), 0.12);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	flex-shrink: 0;
}

.contact-info-card h2 {
	color: var(--light-text);
}

.contact-info-item h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 4px;
	color: var(--light-text);
}

/* Contact page */
.contact-hero-eyebrow {
	display: inline-block;
	margin-bottom: var(--space-3);
	font-size: var(--text-sm);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand-accent);
}

.contact-section {
	background: var(--light-bg-muted);
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(240px, 0.9fr);
	gap: clamp(32px, 5vw, 56px);
	align-items: start;
}

.contact-form-wrap {
	min-width: 0;
}

.contact-form-header {
	margin-bottom: var(--space-8);
}

.contact-form-header h2 {
	margin: 0 0 var(--space-2);
	font-size: var(--text-xl);
	font-weight: 700;
	color: var(--light-text);
}

.contact-form-header p {
	margin: 0;
	font-size: var(--text-base);
	color: var(--light-text-muted);
	line-height: var(--leading-body);
}

.contact-form-success {
	color: #166534;
	background: rgba(34, 197, 94, 0.12);
	border-color: rgba(34, 197, 94, 0.35);
}

.contact-form-fields .form-row {
	display: grid;
	gap: var(--space-5);
}

.contact-form-fields .form-row-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form-submit {
	width: 100%;
	margin-top: var(--space-2);
}

.contact-aside {
	position: sticky;
	top: 100px;
	padding: var(--space-8);
	background: var(--navy-800);
	color: var(--white);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(123, 0, 212, 0.28);
	box-shadow: var(--surface-shadow);
}

.contact-aside h2 {
	margin: 0 0 var(--space-6);
	font-size: 1.25rem;
	color: var(--white);
}

.contact-details {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--space-5);
}

.contact-details li {
	display: grid;
	gap: var(--space-1);
}

.contact-details-label {
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(184, 179, 194, 0.85);
}

.contact-details a,
.contact-details li > span:last-child {
	font-size: var(--text-base);
	color: var(--white);
	line-height: var(--leading-body);
}

.contact-details a {
	text-decoration: none;
	transition: color var(--transition);
}

.contact-details a:hover {
	color: var(--brand-accent);
}

.contact-aside-social {
	margin-top: var(--space-8);
	padding-top: var(--space-6);
	border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.contact-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-3);
	margin-top: var(--space-3);
}

.contact-social-links a {
	display: inline-flex;
	align-items: center;
	padding: var(--space-2) var(--space-4);
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--white);
	text-decoration: none;
	border: 1px solid rgba(196, 90, 255, 0.35);
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}

.contact-social-links a:hover {
	background: rgba(123, 0, 212, 0.2);
	border-color: var(--brand-accent);
	color: var(--brand-accent);
}

.contact-aside-note {
	margin-top: var(--space-8);
	padding-top: var(--space-6);
	border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.contact-aside-note p {
	margin: 0 0 var(--space-2);
	font-size: var(--text-sm);
	color: rgba(226, 232, 240, 0.72);
}

.contact-aside-note a {
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--brand-accent);
	text-decoration: none;
}

.contact-aside-note a:hover {
	text-decoration: underline;
}

@media (max-width: 900px) {
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.contact-aside {
		position: static;
		order: -1;
	}

	.contact-form-fields .form-row-2 {
		grid-template-columns: 1fr;
	}
}

/* Portfolio Grid */
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.portfolio-item {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	aspect-ratio: 4/3;
}

.portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.portfolio-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, transparent 60%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
	opacity: 0;
	transition: opacity var(--transition);
}

.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h3 { font-size: 1.125rem; font-weight: 700; color: var(--white); }
.portfolio-overlay p { font-size: 0.875rem; color: rgba(255, 255, 255, 0.85); }

/* Blog Grid */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.blog-card {
	background: var(--light-card-bg);
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--light-card-border);
	box-shadow: var(--light-card-shadow);
	transition: all var(--transition);
}

.blog-card:hover {
	transform: translateY(-4px);
	border-color: rgba(var(--purple-rgb), 0.3);
	box-shadow: var(--light-card-shadow-hover);
}

.blog-card-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.blog-card-body { padding: 24px; }

.blog-card-meta {
	font-size: 0.8125rem;
	color: var(--purple-600);
	margin-bottom: 8px;
}

.blog-card h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--light-text);
}

.blog-card p {
	color: var(--light-text-muted);
	font-size: 0.9375rem;
}

/* Values Carousel */
.values-carousel {
	padding: 60px 0;
	overflow: hidden;
}

.values-track {
	display: flex;
	gap: 24px;
	animation: scrollValues 30s linear infinite;
}

@keyframes scrollValues {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.value-card {
	flex: 0 0 320px;
	padding: 32px;
	background: var(--card-bg);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
}

.value-card h4 {
	color: var(--purple-600);
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.value-card p {
	color: var(--text-muted);
	font-size: 0.875rem;
}

/* Footer */
.site-footer { margin-top: 0; }

.footer-cta {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background: var(--navy-900);
	border-top: 1px solid var(--border-medium);
	padding: 60px 0;
}

.footer-cta-math {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.footer-cta-graph {
	position: absolute;
	inset: 0;
	background-color: var(--navy-900);
	background-image:
		linear-gradient(rgba(123, 0, 212, 0.16) 1px, transparent 1px),
		linear-gradient(90deg, rgba(123, 0, 212, 0.16) 1px, transparent 1px),
		linear-gradient(rgba(168, 0, 232, 0.1) 1px, transparent 1px),
		linear-gradient(90deg, rgba(168, 0, 232, 0.1) 1px, transparent 1px);
	background-size: 20px 20px, 20px 20px, 100px 100px, 100px 100px;
	background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
}

.footer-cta-formulas {
	position: absolute;
	inset: 0;
	font-family: ui-monospace, 'Courier New', Courier, monospace;
	font-size: clamp(0.7rem, 1.1vw, 0.9rem);
	color: rgba(196, 90, 255, 0.22);
	line-height: 1;
}

.footer-cta-formulas span {
	position: absolute;
	white-space: nowrap;
	user-select: none;
}

.footer-cta-formulas span:nth-child(1) { top: 18%; left: 5%; transform: rotate(-5deg); }
.footer-cta-formulas span:nth-child(2) { top: 22%; right: 8%; transform: rotate(4deg); }
.footer-cta-formulas span:nth-child(3) { bottom: 20%; left: 12%; transform: rotate(3deg); }
.footer-cta-formulas span:nth-child(4) { bottom: 18%; right: 10%; transform: rotate(-4deg); }

.footer-cta-inner-wrap {
	position: relative;
	z-index: 1;
}

.footer-cta-text h2 {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--white);
}

.footer-cta-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	padding: var(--space-6) var(--space-8);
	background: rgba(21, 16, 31, 0.55);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(123, 0, 212, 0.25);
	border-radius: var(--radius-md);
}

.footer-cta-text p { color: var(--text-muted); }

.footer-cta-actions {
	display: flex;
	gap: 16px;
	flex-shrink: 0;
}

.footer-main {
	background: var(--navy-900);
	padding: 80px 0 40px;
	border-top: 1px solid var(--border-light);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 48px;
}

.footer-brand p {
	color: var(--text-muted);
	font-size: 0.9375rem;
	line-height: 1.7;
}

.footer-logo { height: 56px; width: auto; margin-bottom: 8px; }

.footer-brand h4,
.footer-links h4,
.footer-contact h4,
.footer-tagline {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--white);
}

.footer-links ul,
.footer-contact ul {
	list-style: none;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
	color: var(--text-muted);
	font-size: 0.9375rem;
	transition: color var(--transition);
}
.footer-links a:hover { color: var(--purple-400); }

.footer-contact li {
	color: var(--text-muted);
	font-size: 0.9375rem;
	margin-bottom: 12px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.footer-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(var(--purple-rgb), 0.14);
	border: 1px solid rgba(123, 0, 212, 0.22);
	color: var(--brand-accent);
}

.footer-icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

.footer-contact a,
.footer-contact-text {
	color: var(--text-muted);
	font-size: 0.9375rem;
	line-height: 1.5;
	transition: color var(--transition);
}

.footer-contact a:hover {
	color: var(--brand-accent);
}

.footer-contact-text {
	padding-top: 6px;
}

.footer-social-icons {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}

.footer-social-icons a {
	width: 40px;
	height: 40px;
	background: rgba(var(--purple-rgb), 0.14);
	border: 1px solid rgba(123, 0, 212, 0.22);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-accent);
	transition: all var(--transition);
}

.footer-social-icons a svg {
	width: 18px;
	height: 18px;
	display: block;
}

.footer-social-icons a:hover {
	background: var(--gradient-purple);
	border-color: transparent;
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(123, 0, 212, 0.35);
}

.footer-bottom {
	background: var(--navy-900);
	border-top: 1px solid var(--border-light);
	padding: 20px 0;
}

.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-bottom p {
	color: var(--text-muted);
	font-size: 0.8125rem;
}

.footer-legal {
	display: flex;
	gap: 24px;
}

.footer-legal a {
	color: var(--text-muted);
	font-size: 0.8125rem;
}
.footer-legal a:hover { color: var(--purple-400); }

/* CTA Banner ? accent band after dark FAQ */
.cta-banner {
	padding: 80px 0;
	text-align: center;
	background: var(--gradient-purple);
	position: relative;
	overflow: hidden;
}

.cta-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner .container {
	position: relative;
	z-index: 1;
}

.cta-banner h2 {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 800;
	margin-bottom: 16px;
	color: var(--white);
}

.cta-banner p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.0625rem;
	max-width: 600px;
	margin: 0 auto 32px;
}

.cta-banner .btn-outline {
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.6);
}

.cta-banner .btn-outline:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--white);
	color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-grid,
	.trusted-grid,
	.tab-panel,
	.video-grid,
	.content-grid,
	.contact-grid,
	.home-solutions-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

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

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

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

	.home-hero-visual {
		order: -1;
	}

	.home-hero-img {
		max-height: 300px;
	}

	.home-hero-frame {
		max-width: 460px;
	}

	.home-testimonials-grid {
		grid-template-columns: 1fr;
		max-width: 640px;
		margin: 0 auto;
	}

	.page-hero-content {
		text-align: center;
		max-width: none;
	}

	.page-hero-subtitle {
		margin-left: auto;
		margin-right: auto;
	}

	.content-sidebar {
		position: static;
	}

	.services-grid { grid-template-columns: repeat(2, 1fr); }
	.why-grid { grid-template-columns: repeat(3, 1fr); }
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
	.industries-grid { grid-template-columns: repeat(3, 1fr); }
	.products-grid { grid-template-columns: repeat(3, 1fr); }
	.process-steps { grid-template-columns: repeat(2, 1fr); }
	.portfolio-grid,
	.blog-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-cta-inner {
		flex-direction: column;
		text-align: center;
		padding: var(--space-6);
	}

	.footer-cta-formulas {
		display: none;
	}

	.section {
		padding: 72px 0;
	}
}

@media (max-width: 768px) {
	:root {
		--header-height: var(--header-height-mobile);
		--section-y: clamp(2.5rem, 7vw, 4rem);
		--container-x: 1rem;
	}

	.container {
		padding: 0 var(--container-x);
		padding-left: max(var(--container-x), env(safe-area-inset-left));
		padding-right: max(var(--container-x), env(safe-area-inset-right));
	}

	.header-top {
		display: none;
	}

	.site-header {
		padding-top: env(safe-area-inset-top, 0);
	}

	.site-main {
		padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
	}

	.header-main-inner {
		padding: 10px max(16px, env(safe-area-inset-left)) 10px max(16px, env(safe-area-inset-right));
		min-height: var(--header-height-mobile);
	}

	.site-logo img {
		height: auto;
		max-height: 54px;
		max-width: min(220px, 58vw);
		width: auto;
	}

	.mobile-toggle {
		display: inline-flex;
		position: relative;
		z-index: 1101;
		min-width: 48px;
		min-height: 48px;
		align-items: center;
		justify-content: center;
	}

	.mobile-toggle.active {
		background: rgba(123, 0, 212, 0.22);
		border-color: rgba(196, 90, 255, 0.5);
	}

	.mobile-toggle.active span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.mobile-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.mobile-toggle.active span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	body.menu-open {
		position: fixed;
		width: 100%;
		overflow: hidden;
		touch-action: none;
	}

	body.menu-open .site-header {
		z-index: 1100;
	}

	body.menu-open .header-main,
	body.menu-open .site-header.scrolled {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.mobile-nav-overlay {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(2, 8, 18, 0.78);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.28s ease, visibility 0.28s ease;
		z-index: 1090;
	}

	.mobile-nav-overlay.active {
		opacity: 1;
		visibility: visible;
	}

	.main-nav {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 0;
		right: 0;
		left: auto;
		width: min(100vw, 400px);
		height: 100vh;
		height: 100dvh;
		padding: 0;
		margin: 0;
		transform: translate3d(100%, 0, 0);
		visibility: hidden;
		pointer-events: none;
		transition:
			transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
			visibility 0.32s step-end;
		overflow: hidden;
		z-index: 1110;
		background:
			radial-gradient(ellipse 80% 45% at 100% 0%, rgba(123, 0, 212, 0.28), transparent 58%),
			linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
		border-left: 1px solid rgba(196, 90, 255, 0.22);
		box-shadow: -24px 0 64px rgba(0, 0, 0, 0.5);
	}

	.main-nav.open {
		transform: translate3d(0, 0, 0);
		visibility: visible;
		pointer-events: auto;
		transition:
			transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
			visibility 0s;
	}

	@media (prefers-reduced-motion: reduce) {
		.main-nav,
		.mobile-nav-overlay {
			transition: none;
		}
	}

	.mobile-nav-sheet {
		display: flex;
		flex-direction: column;
		height: 100%;
		padding:
			max(0.85rem, env(safe-area-inset-top))
			max(1.15rem, env(safe-area-inset-right))
			max(1rem, env(safe-area-inset-bottom))
			max(1.15rem, env(safe-area-inset-left));
		overflow: hidden;
	}

	.mobile-nav-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
		padding-bottom: 1rem;
		margin-bottom: 0.35rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		flex-shrink: 0;
	}

	.mobile-nav-logo {
		display: block;
		line-height: 0;
	}

	.mobile-nav-logo img {
		height: auto;
		max-height: 44px;
		width: auto;
		max-width: min(170px, 52vw);
	}

	.mobile-nav-close {
		position: relative;
		width: 44px;
		height: 44px;
		border-radius: 12px;
		border: 1px solid rgba(196, 90, 255, 0.35);
		background: rgba(255, 255, 255, 0.05);
		cursor: pointer;
		flex-shrink: 0;
	}

	.mobile-nav-close span {
		position: absolute;
		left: 50%;
		top: 50%;
		width: 16px;
		height: 2px;
		border-radius: 2px;
		background: #f8fafc;
	}

	.mobile-nav-close span:first-child {
		transform: translate(-50%, -50%) rotate(45deg);
	}

	.mobile-nav-close span:last-child {
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	.mobile-nav-links {
		flex: 1 1 auto;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
		touch-action: pan-y;
		padding: 0.25rem 0;
		min-height: 0;
	}

	.nav-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0.15rem;
		margin: 0;
		padding: 0;
	}

	.nav-menu > li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	}

	.nav-menu > li > a,
	.nav-menu .sub-menu a {
		padding: 0.9rem 0.5rem;
		font-size: 1.0625rem;
		font-weight: 600;
		min-height: 50px;
		display: flex;
		align-items: center;
		color: #f8fafc;
		border-radius: 10px;
	}

	.nav-menu > li > a {
		justify-content: space-between;
		gap: 0.75rem;
	}

	.nav-menu > li > a:hover,
	.nav-menu > li > a:focus-visible,
	.nav-menu > li.current-menu-item > a,
	.nav-menu > li.current-menu-ancestor > a {
		color: #fff;
		background: rgba(123, 0, 212, 0.18);
		outline: none;
	}

	.nav-menu .menu-item-has-children > a::after {
		content: '';
		width: 0.55rem;
		height: 0.55rem;
		border-right: 2px solid rgba(196, 90, 255, 0.95);
		border-bottom: 2px solid rgba(196, 90, 255, 0.95);
		transform: rotate(45deg);
		transition: transform 0.22s ease;
		flex-shrink: 0;
		margin-right: 0.35rem;
	}

	.nav-menu .menu-item-has-children.menu-open > a::after {
		transform: rotate(225deg);
		margin-top: 0.2rem;
	}

	.nav-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		padding: 0 0 0.5rem 0.75rem;
		display: none;
		background: transparent;
		min-width: 0;
	}

	.nav-menu li.menu-open > .sub-menu {
		display: block;
	}

	.nav-menu .sub-menu a {
		font-size: 0.98rem;
		font-weight: 500;
		min-height: 44px;
		color: rgba(226, 232, 240, 0.95);
		padding-left: 0.35rem;
	}

	.nav-menu .sub-menu a:hover,
	.nav-menu .sub-menu a:focus-visible,
	.nav-menu .sub-menu .current-menu-item > a {
		color: #fff;
		background: rgba(123, 0, 212, 0.14);
		outline: none;
	}

	.mobile-nav-quick {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0.55rem;
		padding: 0.85rem 0 0.65rem;
		flex-shrink: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.mobile-nav-quick-link {
		display: flex;
		align-items: center;
		gap: 0.45rem;
		padding: 0.65rem 0.7rem;
		border-radius: 12px;
		border: 1px solid rgba(255, 255, 255, 0.1);
		background: rgba(255, 255, 255, 0.04);
		text-decoration: none;
		min-height: 46px;
		transition: border-color 0.2s ease, background 0.2s ease;
	}

	.mobile-nav-quick-link:hover,
	.mobile-nav-quick-link:focus-visible {
		border-color: rgba(196, 90, 255, 0.45);
		background: rgba(123, 0, 212, 0.14);
		outline: none;
	}

	.mobile-nav-quick-icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 1.15rem;
		height: 1.15rem;
		color: rgba(196, 90, 255, 0.95);
		flex-shrink: 0;
	}

	.mobile-nav-quick-icon svg {
		width: 100%;
		height: 100%;
	}

	.mobile-nav-quick-text {
		font-size: 0.72rem;
		font-weight: 600;
		color: #e2e8f0;
		line-height: 1.25;
		word-break: break-word;
	}

	.mobile-nav-cta {
		display: grid;
		gap: 0.55rem;
		padding-top: 0.65rem;
		flex-shrink: 0;
	}

	.mobile-nav-cta .btn {
		width: 100%;
		justify-content: center;
		min-height: 48px;
	}

	.mobile-nav-secondary {
		color: #f1f5f9 !important;
		border-color: rgba(196, 90, 255, 0.4) !important;
		background: transparent !important;
	}

	.mobile-nav-secondary:hover,
	.mobile-nav-secondary:focus-visible {
		background: rgba(123, 0, 212, 0.18) !important;
		border-color: rgba(196, 90, 255, 0.65) !important;
		color: #fff !important;
	}

	.header-actions .header-cta-btn {
		display: none;
	}

	.hero {
		min-height: auto;
	}

	.hero-bg-video {
		display: none;
	}

	.hero-grid {
		padding: 40px 0 48px;
		gap: 32px;
	}

	.hero-content {
		order: 1;
	}

	.hero-visual {
		order: 2;
	}

	.hero-content h1 {
		font-size: clamp(1.875rem, 8vw, 2.5rem);
	}

	.hero-subtitle {
		font-size: 1.0625rem;
	}

	.hero-image-wrap img {
		height: 260px;
	}

	.hero-badge {
		position: relative;
		bottom: auto;
		left: auto;
		margin-top: 16px;
		display: inline-block;
		padding: 16px 20px;
	}

	.hero-rotator {
		padding: 40px 0;
	}

	.rotator-text {
		font-size: clamp(1.0625rem, 4.5vw, 1.375rem);
		min-height: 2.5em;
		padding: 0 8px;
	}

	.section {
		padding: 56px 0;
	}

	.section-header {
		margin-bottom: 36px;
	}

	.section-title {
		font-size: clamp(1.625rem, 6vw, 2.125rem);
	}

	.trusted-content h2 {
		font-size: 1.75rem;
	}

	.trusted-image img {
		height: 260px;
	}

	.tab-buttons {
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		padding-bottom: 8px;
		margin-bottom: 32px;
		gap: 10px;
	}

	.tab-buttons::-webkit-scrollbar {
		display: none;
	}

	.tab-btn {
		flex: 0 0 auto;
		scroll-snap-align: start;
		padding: 12px 18px;
		min-height: 44px;
		white-space: nowrap;
	}

	.tab-panel {
		gap: 24px;
	}

	.tab-panel-content h3 {
		font-size: 1.375rem;
	}

	.tab-panel-image img {
		height: 220px;
	}

	.services-grid,
	.products-grid,
	.portfolio-grid,
	.blog-grid {
		grid-template-columns: 1fr;
	}

	.why-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.industries-grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.industry-tag {
		padding: 12px 10px;
		font-size: 0.8125rem;
	}

	.process-steps {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}

	.stats-section {
		padding: 56px 0;
	}

	.stat-number {
		font-size: clamp(2rem, 8vw, 2.75rem);
	}

	.value-card {
		flex: 0 0 280px;
	}

	.video-grid .section-title,
	.video-grid .section-desc {
		text-align: left !important;
	}

	.footer-cta {
		padding: 48px 0;
	}

	.footer-cta-actions,
	.footer-cta-actions .btn {
		width: 100%;
	}

	.footer-cta-actions {
		flex-direction: column;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.footer-main {
		padding: 56px 0 32px;
	}

	.footer-bottom-inner {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}

	.footer-legal {
		flex-wrap: wrap;
		justify-content: center;
		gap: 12px 20px;
	}

	.page-hero {
		padding: 48px 0 36px;
	}

	.page-hero h1 {
		font-size: clamp(1.75rem, 7vw, 2.25rem);
	}

	.page-content {
		padding: 48px 0;
	}

	.content-grid,
	.contact-grid,
	.video-grid,
	.trusted-grid,
	.tab-panel.active {
		grid-template-columns: 1fr;
	}

	.content-grid {
		gap: 32px;
	}

	.contact-form,
	.contact-info-card {
		padding: 0;
	}

	.contact-form {
		padding: 24px 20px;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		font-size: 16px;
		min-height: 48px;
	}

	.home-hero-grid,
	.home-solutions-grid,
	.home-pillars-grid,
	.home-process-grid,
	.home-proof-grid {
		grid-template-columns: 1fr;
	}

	.home-hero-content h1 {
		max-width: none;
		font-size: clamp(1.65rem, 7.5vw, 2.35rem);
		line-height: 1.15;
	}

	.home-hero-lead {
		font-size: var(--text-base);
		margin-bottom: var(--space-6);
	}

	.home-hero-badge {
		font-size: 0.6875rem;
		letter-spacing: 0.06em;
		padding: 5px 12px;
		max-width: 100%;
		flex-wrap: wrap;
	}

	.home-hero-trust {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--space-2);
	}

	.home-hero-cinematic {
		min-height: auto;
		padding: calc(var(--header-stack) + var(--space-8)) 0 var(--space-10);
	}

	.home-hero-cinematic .home-hero-inner,
	.home-hero-inner {
		display: flex;
		flex-direction: column;
		z-index: 3;
		grid-template-columns: none;
		gap: 1.25rem;
	}

	.home-hero-cinematic .home-hero-content {
		max-width: 100%;
		width: 100%;
	}

	.home-hero-canvas {
		opacity: 0.9;
	}

	.home-hero-code-terminal {
		position: relative;
		right: auto;
		bottom: auto;
		width: 100%;
		max-width: 100%;
		margin: var(--space-6) 0 0;
	}

	.home-hero-scrim {
		background:
			linear-gradient(180deg, rgba(15, 23, 42, 0.25) 0%, rgba(15, 23, 42, 0.72) 48%, var(--navy-900) 100%),
			linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.35) 100%);
	}

	.home-hero-frame {
		padding: var(--space-3);
	}

	.home-hero-float {
		padding: var(--space-2) var(--space-3);
	}

	.home-hero-float-top {
		top: var(--space-3);
		left: var(--space-3);
	}

	.home-hero-float-bottom {
		bottom: var(--space-3);
		right: var(--space-3);
	}

	.home-hero-actions {
		flex-direction: column;
	}

	.home-hero-actions .btn {
		width: 100%;
	}

	.home-solutions-grid {
		grid-template-columns: 1fr;
	}

	.home-pillars-grid {
		grid-template-columns: 1fr;
	}

	.home-pillars-formulas {
		display: none;
	}

	.home-process-grid {
		grid-template-columns: 1fr;
	}

	.home-pillar-card,
	.home-process-step,
	.home-testimonial-card {
		padding: var(--space-6) var(--space-5);
	}

	.home-solution-body {
		padding: var(--space-5);
	}

	.section-header,
	.section-header-compact {
		margin-bottom: var(--space-8);
	}

	.section-title {
		font-size: clamp(1.5rem, 5.5vw, 2rem);
	}

	.section-desc {
		font-size: var(--text-base);
	}

	.section {
		padding: var(--section-y) 0;
	}

	.footer-cta-text h2 {
		font-size: clamp(1.35rem, 5vw, 1.75rem);
	}

	.footer-cta-inner {
		gap: var(--space-6);
	}

	.mobile-nav-cta .btn {
		width: 100%;
	}

	.home-section-foot a {
		display: inline-flex;
		align-items: center;
		min-height: var(--touch-min);
		padding: var(--space-2) 0;
	}

	.home-section-foot span[aria-hidden="true"] {
		display: none;
	}

	.home-section-foot a + a {
		margin-left: var(--space-4);
	}

	.hero-actions .btn,
	.cta-banner .hero-actions .btn,
	.footer-cta-actions .btn {
		width: 100%;
		min-height: 48px;
	}

	.feature-list {
		grid-template-columns: 1fr;
	}

	.faq-question {
		font-size: 1rem;
		padding: 18px 0;
	}
}

@media (max-width: 480px) {
	:root {
		--container-x: 0.875rem;
	}

	.container {
		padding-left: max(0.875rem, env(safe-area-inset-left));
		padding-right: max(0.875rem, env(safe-area-inset-right));
	}

	.main-nav {
		width: 100vw;
		border-left: none;
	}

	.mobile-nav-quick {
		grid-template-columns: 1fr;
	}

	.site-logo img {
		max-width: min(180px, 52vw);
		max-height: 48px;
	}

	.why-grid,
	.industries-grid,
	.stats-grid,
	.home-proof-grid {
		grid-template-columns: 1fr;
	}

	.home-proof-item strong {
		font-size: clamp(1.5rem, 6vw, 2rem);
	}

	.home-hero-actions .btn-lg {
		padding: 14px 20px;
		font-size: 0.9375rem;
	}

	.home-section-foot {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: var(--space-1);
	}

	.home-section-foot a + a {
		margin-left: 0;
	}

	.hero-grid {
		padding: 32px 0 40px;
	}

	.service-card,
	.process-step,
	.sidebar-card {
		padding: 24px 20px;
	}

	.btn {
		padding: 12px 20px;
	}

	.btn-lg {
		padding: 14px 24px;
	}
}

/* ?? Homepage (focused conversion layout) ?? */
.home .site-main {
	padding-top: 0;
}

@media (max-width: 768px) {
	.home .site-main {
		padding-top: 0;
	}
}

.home-hero {
	position: relative;
	padding: calc(var(--header-stack) + var(--space-12)) 0 var(--space-12);
	background: var(--gradient-hero);
	overflow: hidden;
}

.home-hero-glow {
	position: absolute;
	top: 10%;
	right: -10%;
	width: min(560px, 70vw);
	height: min(560px, 70vw);
	background: radial-gradient(circle, rgba(var(--purple-rgb), 0.22) 0%, transparent 70%);
	pointer-events: none;
}

/* Layered CSS mesh gradient ? slow, low-noise drift */
.home-hero-mesh {
	position: absolute;
	inset: -20%;
	pointer-events: none;
	background:
		radial-gradient(38% 44% at 18% 22%, rgba(123, 0, 212, 0.35) 0%, transparent 60%),
		radial-gradient(34% 40% at 82% 18%, rgba(168, 0, 232, 0.24) 0%, transparent 62%),
		radial-gradient(46% 50% at 68% 82%, rgba(109, 40, 217, 0.28) 0%, transparent 60%),
		radial-gradient(30% 36% at 30% 88%, rgba(139, 92, 246, 0.20) 0%, transparent 60%);
	filter: blur(10px);
	animation: heroMeshDrift 32s ease-in-out infinite alternate;
}

@keyframes heroMeshDrift {
	0%   { transform: translate3d(0, 0, 0) scale(1); }
	50%  { transform: translate3d(2%, -1.5%, 0) scale(1.05); }
	100% { transform: translate3d(-1.5%, 2%, 0) scale(1.08); }
}

/* Faint technical grid, fading toward edges */
.home-hero-pattern {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 48px 48px;
	-webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 0%, transparent 78%);
	mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 0%, transparent 78%);
}

/* ==========================================================================
   Cinematic hero ? 3D key-art + code-driven motion (From Code to Impact)
   ========================================================================== */
.home-hero-cinematic {
	position: relative;
	min-height: min(90vh, 780px);
	display: flex;
	align-items: center;
	padding: calc(var(--header-stack) + var(--space-12)) 0 var(--space-16);
	background: var(--gradient-hero);
	overflow: hidden;
	isolation: isolate;
}

/* WebGL scene canvas (drawn over the static poster) */
.home-hero-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 1;
}

/* Live code terminal — beside hero copy in the right column */
.home-hero-cinematic .home-hero-inner {
	position: relative;
	z-index: 4;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
	gap: clamp(var(--space-6), 4vw, var(--space-12));
	align-items: center;
	width: 100%;
}

.home-hero-code-terminal {
	position: relative;
	right: auto;
	bottom: auto;
	width: 100%;
	z-index: 4;
	pointer-events: none;
	align-self: center;
}

.code-terminal {
	background: rgba(6, 14, 28, 0.55);
	border: 1px solid rgba(123, 0, 212, 0.45);
	border-radius: var(--radius-md);
	box-shadow:
		0 0 0 1px rgba(123, 0, 212, 0.12),
		0 16px 40px rgba(15, 23, 42, 0.45);
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.code-terminal-chrome {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	background: rgba(15, 23, 42, 0.65);
	border-bottom: 1px solid rgba(123, 0, 212, 0.2);
}

.code-terminal-chrome .dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	flex-shrink: 0;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #fbbf24; }
.dot-green { background: #22c55e; }

.code-terminal-title {
	margin-left: auto;
	font-family: ui-monospace, 'Courier New', monospace;
	font-size: var(--text-xs);
	font-weight: 600;
	color: var(--text-muted);
	letter-spacing: 0.04em;
}

.code-terminal-body {
	margin: 0;
	padding: 14px 14px 16px;
	font-family: ui-monospace, 'Courier New', monospace;
	font-size: clamp(0.75rem, 0.95vw, 0.8125rem);
	line-height: 1.65;
	color: #e2e8f0;
	height: 11.5em;
	min-height: 11.5em;
	max-height: 11.5em;
	overflow: hidden;
	white-space: pre-wrap;
	word-break: break-word;
	box-sizing: border-box;
}

.code-terminal-cursor {
	display: inline-block;
	width: 10px;
	height: 1.15em;
	margin-left: 2px;
	vertical-align: text-bottom;
	background: var(--purple-400);
	box-shadow: 0 0 12px rgba(196, 90, 255, 0.9);
	animation: codeCursorBlink 0.85s step-end infinite;
}

@keyframes codeCursorBlink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.code-terminal-cursor {
		animation: none;
		opacity: 1;
	}
}

.home-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

/* Graph-paper layer ? math notebook grid */
.home-hero-graph {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-color: var(--navy-900);
	background-image:
		linear-gradient(rgba(123, 0, 212, 0.14) 1px, transparent 1px),
		linear-gradient(90deg, rgba(123, 0, 212, 0.14) 1px, transparent 1px),
		linear-gradient(rgba(168, 0, 232, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(168, 0, 232, 0.08) 1px, transparent 1px);
	background-size: 20px 20px, 20px 20px, 100px 100px, 100px 100px;
	background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
	-webkit-mask-image: radial-gradient(ellipse 95% 85% at 58% 45%, #000 0%, transparent 88%);
	mask-image: radial-gradient(ellipse 95% 85% at 58% 45%, #000 0%, transparent 88%);
}

/* Readability scrim — dark on the left for copy; right stays open for the animation */
.home-hero-scrim {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	background:
		linear-gradient(90deg, var(--navy-900) 0%, rgba(15, 23, 42, 0.92) 28%, rgba(15, 23, 42, 0.35) 52%, rgba(15, 23, 42, 0.08) 78%, transparent 100%),
		linear-gradient(0deg, var(--navy-900) 0%, transparent 32%),
		radial-gradient(ellipse 55% 45% at 70% 40%, transparent 20%, rgba(15, 23, 42, 0.35) 100%);
}

/* Studio lights over the hero (key / fill / rim / soft beam) */
.home-hero-lights {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	overflow: hidden;
}

.site-light {
	position: absolute;
	display: block;
	pointer-events: none;
}

.site-light-key {
	width: min(70vw, 720px);
	height: min(70vw, 720px);
	left: -8%;
	top: -18%;
	background: radial-gradient(circle, rgba(248, 250, 252, 0.2) 0%, rgba(196, 90, 255, 0.1) 35%, transparent 68%);
	filter: blur(8px);
	animation: siteLightPulse 9s ease-in-out infinite;
}

.site-light-fill {
	width: min(55vw, 520px);
	height: min(55vw, 520px);
	right: -6%;
	top: 18%;
	background: radial-gradient(circle, rgba(168, 0, 232, 0.22) 0%, transparent 68%);
	filter: blur(10px);
	animation: siteLightPulse 11s ease-in-out infinite reverse;
}

.site-light-rim {
	width: min(48vw, 440px);
	height: min(48vw, 440px);
	right: 12%;
	bottom: -10%;
	background: radial-gradient(circle, rgba(123, 0, 212, 0.28) 0%, transparent 70%);
	filter: blur(12px);
	animation: siteLightPulse 13s ease-in-out infinite;
}

.site-light-beam {
	left: 8%;
	top: -20%;
	width: min(42vw, 380px);
	height: 140%;
	background: linear-gradient(118deg, transparent 0%, rgba(248, 250, 252, 0.05) 42%, rgba(196, 90, 255, 0.08) 50%, transparent 62%);
	transform: rotate(18deg);
	opacity: 0.7;
	mix-blend-mode: screen;
}

@keyframes siteLightPulse {
	0%, 100% { opacity: 0.75; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.06); }
}

/* Drifting light particles */
.home-hero-particles {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.hp {
	position: absolute;
	bottom: -12px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(196, 181, 253, 0.95) 0%, rgba(123, 0, 212, 0) 70%);
	opacity: 0;
	animation: heroParticle linear infinite;
}

@keyframes heroParticle {
	0%   { transform: translateY(0) scale(0.6); opacity: 0; }
	12%  { opacity: 0.85; }
	88%  { opacity: 0.4; }
	100% { transform: translateY(-86vh) scale(1.1); opacity: 0; }
}

.hp-1  { left: 8%;  width: 3px; height: 3px; animation-duration: 14s; animation-delay: 0s; }
.hp-2  { left: 15%; width: 5px; height: 5px; animation-duration: 18s; animation-delay: 2s; }
.hp-3  { left: 22%; width: 3px; height: 3px; animation-duration: 12s; animation-delay: 5s; }
.hp-4  { left: 30%; width: 4px; height: 4px; animation-duration: 16s; animation-delay: 1s; }
.hp-5  { left: 38%; width: 6px; height: 6px; animation-duration: 20s; animation-delay: 3s; }
.hp-6  { left: 45%; width: 3px; height: 3px; animation-duration: 13s; animation-delay: 6s; }
.hp-7  { left: 52%; width: 4px; height: 4px; animation-duration: 17s; animation-delay: 0.5s; }
.hp-8  { left: 60%; width: 5px; height: 5px; animation-duration: 15s; animation-delay: 4s; }
.hp-9  { left: 66%; width: 3px; height: 3px; animation-duration: 19s; animation-delay: 2.5s; }
.hp-10 { left: 72%; width: 4px; height: 4px; animation-duration: 14s; animation-delay: 7s; }
.hp-11 { left: 80%; width: 6px; height: 6px; animation-duration: 21s; animation-delay: 1.5s; }
.hp-12 { left: 86%; width: 3px; height: 3px; animation-duration: 12s; animation-delay: 5.5s; }
.hp-13 { left: 92%; width: 4px; height: 4px; animation-duration: 18s; animation-delay: 3.5s; }
.hp-14 { left: 96%; width: 5px; height: 5px; animation-duration: 16s; animation-delay: 8s; }

.home-hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
}

.home-hero-cinematic .home-hero-content {
	max-width: 620px;
}

.home-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: var(--space-12);
	align-items: center;
}

.home-hero-eyebrow {
	display: inline-block;
	font-size: var(--text-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--purple-400);
	margin-bottom: var(--space-4);
}

.home-hero-content h1,
.home-hero-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 0.015em;
	color: rgba(255, 255, 255, 0.94);
	margin-bottom: var(--space-5);
	max-width: none;
}

.home-hero-title-line {
	display: inline;
}

.home-hero-type {
	display: inline;
	white-space: nowrap;
	font-family: inherit;
	font-weight: 300;
}

.home-hero-type-text {
	display: inline;
	font-family: inherit;
	font-weight: 300;
	letter-spacing: inherit;
	background: var(--gradient-logo);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.home-hero-type-cursor {
	display: inline-block;
	width: 2px;
	height: 0.88em;
	margin-left: 3px;
	vertical-align: -0.05em;
	background: rgba(196, 90, 255, 0.85);
	box-shadow: 0 0 8px rgba(196, 90, 255, 0.5);
	animation: codeCursorBlink 0.85s step-end infinite;
}

@media (prefers-reduced-motion: reduce) {
	.home-hero-type-cursor {
		animation: none;
		opacity: 0.85;
	}
}

/* Hero entrance — only when motion is welcome */
@media (prefers-reduced-motion: no-preference) {
	.home-hero-content > *,
	.home-hero-visual {
		opacity: 0;
		animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	}

	.home-hero-badge   { animation-delay: 0.05s; }
	.home-hero-title   { animation-delay: 0.15s; }
	.home-hero-lead    { animation-delay: 0.25s; }
	.home-hero-actions { animation-delay: 0.35s; }
	.home-hero-trust   { animation-delay: 0.45s; }
	.home-hero-visual  { animation-delay: 0.30s; }
}

@keyframes heroFadeUp {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: none; }
}

.home-hero-lead {
	font-size: var(--text-lg);
	color: var(--text-secondary);
	line-height: var(--leading-body);
	max-width: var(--prose-max);
	margin-bottom: var(--space-8);
}

.home-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
	margin-bottom: var(--space-5);
}

.home-hero-note {
	font-size: var(--text-sm);
	color: var(--text-muted);
}

.home-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	padding: 6px 14px;
	margin-bottom: var(--space-5);
	border-radius: 100px;
	background: rgba(var(--purple-rgb), 0.12);
	border: 1px solid rgba(var(--purple-rgb), 0.3);
	color: var(--text-secondary);
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.home-hero-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--purple-400);
	box-shadow: 0 0 0 4px rgba(var(--purple-rgb), 0.25);
}

/* Rotating gradient keyword — legacy rotator (inner pages) */
.home-hero-rotator {
	display: inline-grid;
	vertical-align: bottom;
}

.home-hero-rotator-word {
	grid-area: 1 / 1;
	opacity: 0;
	transform: translateY(0.35em);
	transition: opacity 0.5s ease, transform 0.5s ease;
	background: var(--gradient-logo);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	white-space: nowrap;
}

.home-hero-rotator-word.is-active {
	opacity: 1;
	transform: translateY(0);
}

.home-hero-trust {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	flex-wrap: wrap;
}

.home-hero-avatars {
	display: inline-flex;
}

.home-hero-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-left: -10px;
	border-radius: 50%;
	background: var(--gradient-purple);
	border: 2px solid var(--navy-800);
	color: var(--white);
	font-size: var(--text-xs);
	font-weight: 700;
}

.home-hero-avatar:first-child { margin-left: 0; }

.home-hero-trust-meta {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.home-hero-reviews-link {
	text-decoration: none;
	color: inherit;
	transition: opacity var(--transition);
}

.home-hero-reviews-link:hover {
	opacity: 0.9;
	color: inherit;
}

.home-hero-reviews-link:hover .home-hero-trust-text,
.home-hero-reviews-link:hover .home-hero-reviews-cta {
	color: var(--purple-400);
}

.home-hero-reviews-cta {
	margin-top: 2px;
	font-size: var(--text-xs);
	font-weight: 600;
	color: var(--purple-400);
	letter-spacing: 0.02em;
}

.home-hero-stars {
	color: #fbbf24;
	font-size: var(--text-sm);
	letter-spacing: 2px;
}

.home-hero-trust-text {
	font-size: var(--text-sm);
	color: var(--text-muted);
	font-weight: 500;
}

/* Browser-chrome bar on hero visual (product-forward feel) */
.home-hero-chrome {
	display: flex;
	gap: 7px;
	padding: 0 var(--space-2) var(--space-3);
}

.home-hero-chrome span {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.22);
}

.home-hero-chrome span:first-child { background: rgba(239, 68, 68, 0.65); }
.home-hero-chrome span:nth-child(2) { background: rgba(251, 191, 36, 0.65); }
.home-hero-chrome span:nth-child(3) { background: rgba(34, 197, 94, 0.6); }

/* Accessible visually-hidden utility */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.home-hero-visual {
	display: flex;
	justify-content: center;
}

.home-hero-frame {
	position: relative;
	width: 100%;
	max-width: 520px;
	padding: var(--space-4);
	border-radius: var(--radius-xl);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(var(--purple-rgb), 0.28);
	box-shadow: 0 32px 80px rgba(var(--purple-rgb), 0.28);
}

.home-hero-img {
	width: 100%;
	max-height: 400px;
	object-fit: contain;
	border-radius: var(--radius-lg);
}

.home-hero-float {
	position: absolute;
	display: flex;
	align-items: center;
	gap: var(--space-3);
	padding: var(--space-3) var(--space-4);
	background: rgba(21, 16, 31, 0.92);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(var(--purple-rgb), 0.3);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
}

.home-hero-float-top {
	top: var(--space-6);
	left: calc(var(--space-6) * -1);
}

.home-hero-float-bottom {
	bottom: var(--space-6);
	right: calc(var(--space-6) * -1);
}

.home-hero-float-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: var(--radius-sm);
	background: var(--gradient-purple);
	color: var(--white);
	font-size: var(--text-base);
	font-weight: 700;
}

.home-hero-float strong {
	display: block;
	font-size: var(--text-sm);
	font-weight: 700;
	color: var(--white);
	line-height: 1.2;
}

.home-hero-float span {
	font-size: var(--text-xs);
	color: var(--text-muted);
}

/* ?? Testimonials ?? */
.home-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-6);
}

.home-testimonial-card {
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
	padding: var(--space-8);
	margin: 0;
	background: var(--light-card-bg);
	border: 1px solid var(--light-card-border);
	border-radius: var(--radius-md);
	box-shadow: var(--light-card-shadow);
	transition: box-shadow var(--transition), transform var(--transition);
}

.home-testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--light-card-shadow-hover);
}

.home-testimonial-stars {
	color: #fbbf24;
	font-size: var(--text-base);
	letter-spacing: 2px;
}

.home-testimonial-card blockquote {
	margin: 0;
	font-size: var(--text-base);
	line-height: var(--leading-body);
	color: var(--light-text-secondary);
	flex: 1;
}

.home-testimonial-card blockquote::before { content: '?'; }
.home-testimonial-card blockquote::after { content: '?'; }

.home-testimonial-author {
	display: flex;
	align-items: center;
	gap: var(--space-3);
}

.home-testimonial-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--gradient-purple);
	color: var(--white);
	font-weight: 800;
	font-size: var(--text-lg);
}

.home-testimonial-photo {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.home-google-reviews-empty {
	text-align: center;
	max-width: 520px;
	margin: 0 auto;
	padding: var(--space-8);
	color: var(--light-text-secondary);
}

.home-google-reviews-setup {
	margin-top: var(--space-4);
	font-size: var(--text-sm);
	color: var(--light-text-muted);
}

.home-testimonial-meta {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.home-testimonial-meta strong {
	font-size: var(--text-sm);
	font-weight: 700;
	color: var(--light-text);
}

.home-testimonial-meta span {
	font-size: var(--text-xs);
	color: var(--light-text-muted);
}

.home-proof {
	padding: var(--space-8) 0;
	border-bottom: 1px solid var(--light-border);
}

.home-proof-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-6);
	text-align: center;
}

.home-proof-item strong {
	display: block;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 800;
	color: var(--purple-600);
	line-height: 1;
	margin-bottom: var(--space-2);
}

.home-proof-item span {
	font-size: var(--text-sm);
	color: var(--light-text-muted);
	font-weight: 500;
}

.section-header-compact {
	margin-bottom: var(--space-12);
}

.home-solutions-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-6);
}

.home-solution-card {
	display: flex;
	flex-direction: column;
	background: var(--light-card-bg);
	border: 1px solid var(--light-card-border);
	border-radius: var(--radius-md);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: all var(--transition);
	box-shadow: var(--light-card-shadow);
}

.home-solution-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--light-card-shadow-hover);
	border-color: rgba(var(--purple-rgb), 0.25);
}

.home-solution-thumb {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--navy-900);
}

.home-solution-thumb .illustration-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.home-solution-body {
	padding: var(--space-6);
	flex: 1;
	display: flex;
	flex-direction: column;
}

.home-solution-body h3 {
	font-size: var(--text-xl);
	font-weight: 700;
	color: var(--light-text);
	margin-bottom: var(--space-2);
}

.home-solution-body p {
	font-size: var(--text-sm);
	color: var(--light-text-muted);
	line-height: var(--leading-body);
	margin-bottom: var(--space-4);
	flex: 1;
}

.home-solution-link {
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--purple-600);
}

.home-section-foot {
	text-align: center;
	margin-top: var(--space-10);
	font-size: var(--text-sm);
}

.home-section-foot a {
	color: var(--purple-600);
	font-weight: 600;
}

.home-section-foot span {
	margin: 0 var(--space-3);
	color: var(--light-text-muted);
}

.home-section-foot-dark a {
	color: var(--purple-400);
}

.home-pillars {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.section-dark.home-pillars {
	background: var(--navy-900);
}

.section-light.home-pillars {
	background: var(--light-bg);
}

.home-pillars-math {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.home-pillars-graph {
	position: absolute;
	inset: 0;
	background-color: transparent;
	background-image:
		linear-gradient(rgba(123, 0, 212, 0.16) 1px, transparent 1px),
		linear-gradient(90deg, rgba(123, 0, 212, 0.16) 1px, transparent 1px),
		linear-gradient(rgba(168, 0, 232, 0.1) 1px, transparent 1px),
		linear-gradient(90deg, rgba(168, 0, 232, 0.1) 1px, transparent 1px);
	background-size: 20px 20px, 20px 20px, 100px 100px, 100px 100px;
	background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
	opacity: 0.9;
}

.section-dark.home-pillars .home-pillars-graph {
	background-color: var(--navy-900);
}

.section-light.home-pillars .home-pillars-graph {
	background-image:
		linear-gradient(rgba(123, 0, 212, 0.1) 1px, transparent 1px),
		linear-gradient(90deg, rgba(123, 0, 212, 0.1) 1px, transparent 1px),
		linear-gradient(rgba(168, 0, 232, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(168, 0, 232, 0.06) 1px, transparent 1px);
	opacity: 0.7;
}

.home-pillars-formulas {
	position: absolute;
	inset: 0;
	font-family: ui-monospace, 'Courier New', Courier, monospace;
	font-size: clamp(0.7rem, 1.1vw, 0.9rem);
	color: rgba(196, 90, 255, 0.22);
	line-height: 1;
}

.section-light.home-pillars .home-pillars-formulas {
	color: rgba(123, 0, 212, 0.14);
}

.home-pillars-formulas span {
	position: absolute;
	white-space: nowrap;
	user-select: none;
}

.home-pillars-formulas span:nth-child(1) { top: 12%; left: 6%; transform: rotate(-6deg); }
.home-pillars-formulas span:nth-child(2) { top: 18%; right: 8%; transform: rotate(4deg); }
.home-pillars-formulas span:nth-child(3) { top: 48%; left: 4%; transform: rotate(3deg); }
.home-pillars-formulas span:nth-child(4) { top: 55%; right: 6%; transform: rotate(-5deg); font-size: 1.05em; color: rgba(139, 92, 246, 0.28); }
.home-pillars-formulas span:nth-child(5) { bottom: 16%; left: 10%; transform: rotate(-3deg); }
.home-pillars-formulas span:nth-child(6) { bottom: 12%; right: 10%; transform: rotate(5deg); }

.section-light.home-pillars .home-pillars-formulas span:nth-child(4) {
	color: rgba(123, 0, 212, 0.2);
}

.home-pillars-inner {
	position: relative;
	z-index: 1;
}

.home-pillars-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-6);
}

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

.home-pillar-card {
	padding: var(--space-8) var(--space-6);
	background: rgba(21, 16, 31, 0.72);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(123, 0, 212, 0.22);
	border-radius: var(--radius-md);
	transition: border-color var(--transition), box-shadow var(--transition);
}

.section-light.home-pillars .home-pillar-card {
	background: var(--light-card-bg);
	border-color: var(--light-card-border);
	box-shadow: var(--light-card-shadow);
}

.home-pillar-card:hover {
	border-color: rgba(var(--purple-rgb), 0.45);
	box-shadow: 0 12px 40px rgba(123, 0, 212, 0.12);
}

.home-pillar-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--radius-sm);
	background: rgba(var(--purple-rgb), 0.15);
	color: var(--purple-400);
	font-size: var(--text-sm);
	font-weight: 800;
	margin-bottom: var(--space-5);
}

.home-pillar-card h3 {
	font-size: var(--text-lg);
	font-weight: 700;
	color: var(--white);
	margin-bottom: var(--space-3);
	line-height: var(--leading-heading);
}

.home-pillar-card p {
	font-size: var(--text-sm);
	color: var(--text-muted);
	line-height: var(--leading-body);
}

.section-light.home-pillars .home-pillar-card h3 {
	color: var(--light-text);
}

.section-light.home-pillars .home-pillar-card p {
	color: var(--light-text-muted);
}

.section-light.home-pillars .home-pillar-num {
	background: rgba(var(--purple-rgb), 0.1);
	color: var(--purple-600);
}

/* Dark-band solutions / testimonials / process */
.section-dark.home-solutions .section-title,
.section-dark.home-testimonials .section-title,
.section-dark.home-process .section-title {
	color: var(--white);
}

.section-dark.home-solutions .section-desc,
.section-dark.home-testimonials .section-desc,
.section-dark.home-process .section-desc {
	color: var(--text-secondary);
}

.section-dark.home-solutions .section-label,
.section-dark.home-testimonials .section-label,
.section-dark.home-process .section-label {
	color: var(--purple-400);
}

.section-dark.home-solutions .home-solution-card {
	background: rgba(21, 16, 31, 0.72);
	border-color: rgba(123, 0, 212, 0.22);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
	background-image: var(--surface-highlight);
}

.section-dark.home-solutions .home-solution-body h3 {
	color: var(--white);
}

.section-dark.home-solutions .home-solution-body p {
	color: var(--text-muted);
}

.section-dark.home-solutions .home-solution-link {
	color: var(--purple-400);
}

.section-dark.home-solutions .home-section-foot a,
.section-dark.home-testimonials .home-section-foot a {
	color: var(--purple-400);
}

.section-dark.home-testimonials .home-testimonial-card {
	background: rgba(21, 16, 31, 0.72);
	border-color: rgba(123, 0, 212, 0.22);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
	background-image: var(--surface-highlight);
}

.section-dark.home-testimonials .home-testimonial-card blockquote {
	color: var(--text-secondary);
}

.section-dark.home-testimonials .home-testimonial-meta strong {
	color: var(--white);
}

.section-dark.home-testimonials .home-testimonial-meta span {
	color: var(--text-muted);
}

.section-dark.home-testimonials .home-google-reviews-empty {
	background: rgba(21, 16, 31, 0.55);
	border-color: rgba(123, 0, 212, 0.25);
	color: var(--text-secondary);
}

.section-dark.home-process .home-process-step {
	background: rgba(21, 16, 31, 0.72);
	border-color: rgba(123, 0, 212, 0.22);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
	background-image: var(--surface-highlight);
}

.section-dark.home-process .home-process-step h3 {
	color: var(--white);
}

.section-dark.home-process .home-process-step p {
	color: var(--text-muted);
}

.home-process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-6);
	counter-reset: home-step;
}

.home-process-step {
	padding: var(--space-8) var(--space-6);
	background: var(--light-card-bg);
	border: 1px solid var(--light-card-border);
	border-radius: var(--radius-md);
	box-shadow: var(--light-card-shadow);
}

.home-process-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--gradient-purple);
	color: var(--white);
	font-weight: 800;
	font-size: var(--text-lg);
	margin-bottom: var(--space-5);
}

.home-process-step h3 {
	font-size: var(--text-lg);
	font-weight: 700;
	color: var(--light-text);
	margin-bottom: var(--space-2);
}

.home-process-step p {
	font-size: var(--text-sm);
	color: var(--light-text-muted);
	line-height: var(--leading-body);
}

.home-process-cta {
	text-align: center;
	margin-top: var(--space-12);
}

/* Process page — clean 8-step layout */
.process-page-steps .home-process-grid-8 {
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-6);
}

.process-page-steps .home-process-step {
	display: flex;
	gap: var(--space-5);
	align-items: flex-start;
	text-align: left;
	padding: var(--space-6) var(--space-6);
}

.process-page-steps .home-process-num {
	flex-shrink: 0;
	margin-bottom: 0;
}

.process-page-steps .home-process-step h3 {
	font-size: var(--text-base);
	margin-bottom: var(--space-2);
}

.process-page-steps .section-header-compact {
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.process-page-agile {
	position: relative;
	overflow: hidden;
}

.process-agile-inner {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.process-agile-header {
	margin-bottom: var(--space-8);
}

.process-agile-header .section-title,
.process-agile-header .section-desc {
	color: var(--text-primary);
}

.process-agile-header .section-desc {
	color: var(--text-secondary);
}

.process-agile-list {
	list-style: none;
	margin: 0;
	padding: var(--space-8);
	display: grid;
	gap: var(--space-4);
	text-align: left;
	background: rgba(21, 16, 31, 0.85);
	border: 1px solid rgba(123, 0, 212, 0.22);
	border-radius: var(--radius-md);
	box-shadow: var(--surface-shadow);
}

.process-agile-list li {
	position: relative;
	padding-left: 1.75rem;
	color: var(--text-secondary);
	font-size: var(--text-base);
	line-height: var(--leading-body);
}

.process-agile-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--gradient-purple);
	box-shadow: 0 0 10px rgba(123, 0, 212, 0.45);
}

.process-page-cta-inner {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
}

.process-page-cta-inner h2 {
	font-size: var(--text-h3);
	font-weight: 800;
	color: var(--light-text);
	margin-bottom: var(--space-3);
}

.process-page-cta-inner > p {
	color: var(--light-text-muted);
	margin-bottom: var(--space-8);
	font-size: var(--text-lg);
}

.process-page-cta .home-process-cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-4);
	margin-top: 0;
	margin-bottom: var(--space-8);
}

.process-page-cta .btn-outline {
	color: var(--light-text);
	border-color: rgba(123, 0, 212, 0.35);
}

@media (max-width: 768px) {
	.process-page-steps .home-process-grid-8 {
		grid-template-columns: 1fr;
	}

	.process-page-cta .home-process-cta {
		flex-direction: column;
		align-items: stretch;
	}

	.process-page-cta .home-process-cta .btn {
		width: 100%;
	}
}

/* Why Devworxs page */
.why-hero-eyebrow {
	display: inline-block;
	margin-bottom: var(--space-3);
	font-size: var(--text-sm);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand-accent);
}

.why-page-proof {
	border-bottom: 1px solid var(--light-border);
}

.why-page-header {
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.why-reasons-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-6);
}

.why-reason-card {
	display: flex;
	gap: var(--space-5);
	align-items: flex-start;
	padding: var(--space-6);
	background: var(--light-card-bg);
	border: 1px solid var(--light-card-border);
	border-radius: var(--radius-md);
	box-shadow: var(--light-card-shadow);
	transition: border-color var(--transition), box-shadow var(--transition);
}

.why-reason-card:hover {
	border-color: rgba(123, 0, 212, 0.28);
	box-shadow: var(--light-card-shadow-hover);
}

.why-reason-num {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--gradient-purple);
	color: var(--white);
	font-weight: 800;
	font-size: var(--text-sm);
}

.why-reason-body h3 {
	margin: 0 0 var(--space-2);
	font-size: var(--text-base);
	font-weight: 700;
	color: var(--light-text);
	line-height: var(--leading-ui);
}

.why-reason-body p {
	margin: 0;
	font-size: var(--text-sm);
	color: var(--light-text-muted);
	line-height: var(--leading-body);
}

.why-page-commitment {
	position: relative;
	overflow: hidden;
}

.why-commitment-inner {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.why-commitment-header .section-title,
.why-commitment-header .section-desc {
	color: var(--text-primary);
}

.why-commitment-header .section-desc {
	color: var(--text-secondary);
}

.why-commitment-list {
	list-style: none;
	margin: 0;
	padding: var(--space-8);
	display: grid;
	gap: var(--space-4);
	text-align: left;
	background: rgba(30, 41, 59, 0.85);
	border: 1px solid rgba(123, 0, 212, 0.22);
	border-radius: var(--radius-md);
	box-shadow: var(--surface-shadow);
}

.why-commitment-list li {
	position: relative;
	padding-left: 1.75rem;
	color: var(--text-secondary);
	font-size: var(--text-base);
	line-height: var(--leading-body);
}

.why-commitment-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--gradient-purple);
	box-shadow: 0 0 10px rgba(123, 0, 212, 0.45);
}

.why-page-cta-inner {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
}

.why-page-cta-inner h2 {
	font-size: var(--text-h3);
	font-weight: 800;
	color: var(--light-text);
	margin-bottom: var(--space-3);
}

.why-page-cta-inner > p {
	color: var(--light-text-muted);
	margin-bottom: var(--space-8);
	font-size: var(--text-lg);
}

.why-page-cta .home-process-cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-4);
	margin-top: 0;
	margin-bottom: var(--space-8);
}

.why-page-cta .btn-outline {
	color: var(--light-text);
	border-color: rgba(123, 0, 212, 0.35);
}

@media (max-width: 768px) {
	.why-reasons-grid {
		grid-template-columns: 1fr;
	}

	.why-page-cta .home-process-cta {
		flex-direction: column;
		align-items: stretch;
	}

	.why-page-cta .home-process-cta .btn {
		width: 100%;
	}
}

.home .section-light .section-title {
	color: var(--light-text);
}

/* ?? Mobile: overflow & readable content ?? */
@media (max-width: 768px) {
	.content-main,
	.prose,
	.page-content {
		overflow-wrap: anywhere;
		word-wrap: break-word;
	}

	table {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	pre,
	code {
		max-width: 100%;
		overflow-x: auto;
	}

	.home-solution-card {
		-webkit-tap-highlight-color: transparent;
	}

	.home-hero-graph {
		-webkit-mask-image: radial-gradient(ellipse 120% 85% at 50% 55%, #000 0%, transparent 78%);
		mask-image: radial-gradient(ellipse 120% 85% at 50% 55%, #000 0%, transparent 78%);
	}
}

/* ?? Reduced motion (WCAG) ?? */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.values-track {
		animation: none;
	}

	.btn-primary:hover {
		transform: none;
	}

	.service-card:hover,
	.industry-tag:hover,
	.product-card:hover {
		transform: none;
	}

	.home-hero-particles {
		display: none;
	}

	.home-hero-mesh {
		animation: none;
	}
}

/* ??? Start a Project intake ??? */
.start-project-eyebrow {
	display: inline-block;
	margin: 0 0 var(--space-3);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--purple-400, #C45AFF);
}

.start-project-section {
	background: var(--light-bg, #f8fafc);
}

.start-project-layout {
	display: grid;
	grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.6fr);
	gap: clamp(32px, 5vw, 56px);
	align-items: start;
}

.start-project-aside {
	position: sticky;
	top: 100px;
	padding: var(--space-8);
	background: var(--navy-800);
	color: var(--white);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(123, 0, 212, 0.28);
}

.start-project-aside h2 {
	margin: 0 0 var(--space-6);
	font-size: 1.25rem;
	color: var(--white);
}

.start-project-next-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: next-step;
}

.start-project-next-steps li {
	counter-increment: next-step;
	position: relative;
	padding: 0 0 var(--space-5) 2.5rem;
	border-left: 1px solid rgba(196, 90, 255, 0.25);
	margin-left: 0.7rem;
}

.start-project-next-steps li:last-child {
	padding-bottom: 0;
	border-left-color: transparent;
}

.start-project-next-steps li::before {
	content: counter(next-step);
	position: absolute;
	left: -0.7rem;
	top: 0;
	width: 1.4rem;
	height: 1.4rem;
	border-radius: 50%;
	background: var(--purple-600, #7B00D4);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	display: grid;
	place-items: center;
}

.start-project-next-steps strong {
	display: block;
	margin-bottom: 4px;
	color: var(--white);
}

.start-project-next-steps span {
	display: block;
	font-size: 0.875rem;
	line-height: 1.55;
	color: rgba(226, 232, 240, 0.72);
}

.start-project-aside-note {
	margin-top: var(--space-8);
	padding-top: var(--space-6);
	border-top: 1px solid rgba(148, 163, 184, 0.2);
	font-size: 0.9rem;
}

.start-project-aside-note a {
	color: var(--brand-accent);
}

.start-project-form-wrap {
	min-width: 0;
}

.start-project-form {
	background: var(--light-card-bg);
	border: 1px solid var(--light-card-border);
	border-radius: var(--radius-lg);
	padding: clamp(24px, 4vw, 40px);
	box-shadow: var(--light-card-shadow);
}

.project-progress {
	margin-bottom: var(--space-8);
}

.project-progress-bar {
	height: 6px;
	border-radius: 999px;
	background: var(--light-bg-muted, #eef2f7);
	overflow: hidden;
	margin-bottom: var(--space-4);
}

.project-progress-fill {
	display: block;
	height: 100%;
	width: 25%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
	transition: width 0.35s ease;
}

.project-progress-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.project-progress-steps li {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--light-text-muted, #94a3b8);
	text-align: center;
}

.project-progress-steps li.is-active,
.project-progress-steps li.is-done {
	color: var(--purple-700, #A800E8);
}

.project-step {
	border: 0;
	margin: 0;
	padding: 0;
	min-width: 0;
	display: none !important;
}

.project-step.is-active,
.project-step[data-step].is-active {
	display: block !important;
}

.project-step[hidden]:not(.is-active) {
	display: none !important;
}

.project-step-title {
	padding: 0;
	margin: 0 0 8px;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--light-text, #0f172a);
}

.project-step-counter {
	margin: 0 0 10px;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--purple-700, #A800E8);
}

.project-step-lead {
	margin: 0 0 var(--space-6);
	color: var(--light-text-secondary, #475569);
	font-size: 0.95rem;
}

.form-row-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 10px;
	color: var(--light-text-secondary);
}

.form-hint {
	display: block;
	margin-top: 8px;
	font-size: 0.8125rem;
	color: var(--light-text-muted, #64748b);
}

.req {
	color: #dc2626;
}

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

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

.choice-card {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 14px 16px;
	border: 1px solid var(--light-border, #e2e8f0);
	border-radius: var(--radius-md);
	background: var(--light-bg-muted, #f8fafc);
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
	min-height: var(--touch-min, 44px);
}

.choice-card input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.choice-card:hover,
.choice-card.is-selected,
.choice-card:has(input:checked) {
	border-color: var(--purple-500, #C45AFF);
	background: rgba(123, 0, 212, 0.16);
	box-shadow: 0 0 0 1px rgba(123, 0, 212, 0.28);
}

.choice-card-title {
	font-size: 0.9rem;
	font-weight: 650;
	color: var(--light-text, #0f172a);
}

.choice-card-hint {
	font-size: 0.78rem;
	line-height: 1.4;
	color: var(--light-text-muted, #64748b);
}

.form-check label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.9rem;
	color: var(--light-text-secondary);
	cursor: pointer;
}

.form-check input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	flex-shrink: 0;
	accent-color: var(--purple-600, #7B00D4);
}

.project-form-nav {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	margin-top: var(--space-8);
	padding-top: var(--space-6);
	border-top: 1px solid var(--light-border, #e2e8f0);
}

.project-step-actions {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: var(--space-8);
	padding-top: var(--space-6);
	border-top: 1px solid var(--light-border, #e2e8f0);
}

.project-step-actions .btn[hidden],
.project-form-nav .btn[hidden],
.btn.project-btn-submit[disabled] {
	display: none !important;
}

/* Submit exists only inside the final step panel ? keep it invisible while that panel is hidden */
.project-step:not(.is-active) .project-btn-submit,
.project-step[hidden] .project-btn-submit,
.start-project-form:not(.is-final-step) .project-btn-submit {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.start-project-form.is-final-step .project-step.is-active .project-btn-submit {
	display: inline-flex !important;
	visibility: visible !important;
	pointer-events: auto !important;
}

.project-form-error {
	margin: 12px 0 0;
	color: #b91c1c;
	font-size: 0.875rem;
}

.start-project-success {
	text-align: center;
	padding: clamp(40px, 6vw, 64px) 32px;
	background: var(--light-card-bg);
	border: 1px solid var(--light-card-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--light-card-shadow);
}

.start-project-success-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 20px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(16, 185, 129, 0.12);
	color: #059669;
	font-size: 1.5rem;
	font-weight: 700;
}

.start-project-success h2 {
	margin: 0 0 12px;
	color: var(--light-text);
}

.start-project-success p {
	max-width: 42ch;
	margin: 0 auto 28px;
	color: var(--light-text-secondary);
}

.start-project-success-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

@media (max-width: 960px) {
	.start-project-layout {
		grid-template-columns: 1fr;
	}

	.start-project-aside {
		position: static;
	}

	.choice-grid,
	.choice-grid-compact {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.form-row-2,
	.choice-grid,
	.choice-grid-compact {
		grid-template-columns: 1fr;
	}

	.project-progress-steps {
		grid-template-columns: 1fr 1fr;
		gap: 6px 10px;
	}

	.project-form-nav {
		flex-direction: column-reverse;
	}

	.project-form-nav .btn,
	.project-step-actions .btn {
		width: 100%;
	}

	.project-step-actions {
		flex-direction: column-reverse;
	}
}

/* =========================================================
   Mobile homepage polish (must stay LAST ? overrides
   homepage component rules that appear after earlier
   @media blocks and were winning on small screens)
   ========================================================= */
.btn-label-short { display: none; }

@media (max-width: 768px) {
	.btn-label-full { display: none; }
	.btn-label-short { display: inline; }

	/* Hero: full-width single column — desktop two-col grid must not win */
	.home-hero.home-hero-cinematic {
		min-height: auto;
		align-items: flex-start;
		padding:
			calc(var(--header-stack-mobile) + 1.5rem)
			0
			1.5rem;
		overflow: hidden;
	}

	.home-hero-cinematic .home-hero-inner {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 1.25rem;
		width: 100%;
		grid-template-columns: none;
	}

	.home-hero-cinematic .home-hero-content {
		max-width: 100%;
		width: 100%;
	}

	.home-hero-content h1,
	.home-hero-title {
		max-width: 100%;
		width: 100%;
		font-size: clamp(1.75rem, 7vw, 2.25rem);
		font-weight: 300;
		line-height: 1.3;
		letter-spacing: 0.01em;
		margin-bottom: 1.25rem;
	}

	.home-hero-title-line {
		display: inline;
		white-space: normal;
	}

	.home-hero-type {
		display: inline;
		white-space: nowrap;
	}

	.home-hero-rotator {
		display: inline-flex;
		vertical-align: baseline;
		margin-top: 0.15em;
	}

	.home-hero-actions {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0.75rem;
		margin: 0 0 1rem;
		width: 100%;
	}

	.home-hero-actions .btn {
		width: 100%;
		justify-content: center;
		min-height: 50px;
		text-align: center;
	}

	.home-hero-trust {
		width: 100%;
		margin-top: 0;
	}

	.home-hero-reviews-link {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.35rem;
		padding: 0.85rem 1rem;
		background: rgba(21, 16, 31, 0.45);
		border: 1px solid rgba(123, 0, 212, 0.28);
		border-radius: var(--radius-md);
		backdrop-filter: blur(8px);
		width: 100%;
		box-sizing: border-box;
	}

	.home-hero-trust-text {
		font-size: 0.875rem;
		line-height: 1.4;
	}

	/* Terminal under copy, full width — never beside text on mobile */
	.home-hero-cinematic .home-hero-code-terminal {
		position: relative !important;
		right: auto !important;
		bottom: auto !important;
		left: auto !important;
		width: 100% !important;
		max-width: 100%;
		margin: 0;
		z-index: 4;
		pointer-events: none;
		align-self: stretch;
	}

	.home-hero .code-terminal {
		width: 100%;
		border-radius: 12px;
	}

	.home-hero .code-terminal-body {
		height: 8.5em;
		min-height: 8.5em;
		max-height: 8.5em;
		padding: 12px 14px;
		font-size: 0.72rem;
		line-height: 1.55;
	}

	.home-hero-canvas {
		opacity: 0.55;
	}

	.home-hero-scrim {
		background:
			linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.78) 42%, var(--navy-900) 100%),
			linear-gradient(90deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.55) 100%) !important;
	}

	/* ?? Proof stats: readable 2?2 ?? */
	.home-proof {
		padding: 1.5rem 0;
	}

	.home-proof-grid {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 1rem 0.75rem !important;
	}

	.home-proof-item {
		padding: 0.75rem 0.5rem;
		border-radius: var(--radius-sm);
		background: rgba(123, 0, 212, 0.04);
	}

	.home-proof-item strong {
		font-size: clamp(1.5rem, 6vw, 1.85rem);
		margin-bottom: 0.35rem;
	}

	.home-proof-item span {
		font-size: 0.75rem;
		line-height: 1.35;
		display: block;
		padding: 0 0.25rem;
	}

	/* ?? Solutions: one full-width card ?? */
	.home-solutions .section-header,
	.home-solutions .section-header-compact {
		text-align: left;
		margin-bottom: 1.5rem;
	}

	.home-solutions-grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 1rem !important;
	}

	.home-solution-card {
		border-radius: 14px;
		box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
	}

	.home-solution-card:hover {
		transform: none;
	}

	.home-solution-thumb {
		aspect-ratio: 16 / 9;
	}

	.home-solution-body {
		padding: 1.15rem 1.15rem 1.25rem !important;
	}

	.home-solution-body h3 {
		font-size: 1.125rem;
		margin-bottom: 0.35rem;
	}

	.home-solution-body p {
		font-size: 0.9rem;
		margin-bottom: 0.85rem;
	}

	.home-section-foot {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0.5rem;
		margin-top: 1.5rem;
	}

	.home-section-foot a {
		justify-content: center;
		min-height: 44px;
		padding: 0.65rem 1rem;
		border-radius: 10px;
		background: rgba(123, 0, 212, 0.08);
		margin-left: 0 !important;
	}

	.home-section-foot span[aria-hidden='true'] {
		display: none;
	}

	/* ?? Pillars ?? */
	.home-pillars-grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 0.85rem !important;
	}

	.home-pillars-grid-wide {
		grid-template-columns: 1fr !important;
	}

	.home-pillar-card {
		padding: 1.25rem 1.15rem !important;
	}

	.home-pillars-formulas {
		display: none !important;
	}

	/* ?? Testimonials ?? */
	.home-testimonials-grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		max-width: none;
		gap: 1rem !important;
	}

	.home-testimonial-card {
		padding: 1.25rem 1.15rem !important;
	}

	.home-testimonial-card:hover {
		transform: none;
	}

	.home-google-reviews-empty {
		padding: 1.5rem 1rem;
		border: 1px dashed rgba(123, 0, 212, 0.25);
		border-radius: 14px;
		background: var(--light-card-bg);
	}

	/* ?? Process ?? */
	.home-process-grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 0.85rem !important;
	}

	.home-process-step {
		display: grid;
		grid-template-columns: auto 1fr;
		grid-template-rows: auto auto;
		column-gap: 0.9rem;
		row-gap: 0.25rem;
		align-items: start;
		padding: 1.15rem !important;
	}

	.home-process-num {
		grid-row: 1 / span 2;
		width: 44px;
		height: 44px;
		font-size: 1rem;
	}

	.home-process-step h3 {
		margin: 0;
		align-self: end;
	}

	.home-process-step p {
		margin: 0;
		grid-column: 2;
	}

	.home-process-cta {
		margin-top: 1.5rem;
	}

	.home-process-cta .btn {
		width: 100%;
		min-height: 50px;
	}

	/* ?? Footer CTA ?? */
	.footer-cta {
		padding: 2rem 0;
	}

	.footer-cta-inner {
		flex-direction: column;
		align-items: stretch;
		text-align: left;
		gap: 1.25rem;
		padding: 1.25rem !important;
	}

	.footer-cta-text h2 {
		font-size: clamp(1.35rem, 5.5vw, 1.65rem);
		line-height: 1.25;
	}

	.footer-cta-text p {
		font-size: 0.9375rem;
		line-height: 1.55;
	}

	.footer-cta-actions {
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
		width: 100%;
	}

	.footer-cta-actions .btn {
		width: 100%;
		min-height: 50px;
		justify-content: center;
	}

	.footer-cta-formulas {
		display: none !important;
	}

	/* ?? Footer columns ?? */
	.footer-main {
		padding: 2.5rem 0 1.75rem;
	}

	.footer-grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 1.75rem !important;
	}

	.footer-brand h4,
	.footer-links h4,
	.footer-contact h4,
	.footer-tagline {
		font-size: 0.9375rem !important;
		font-weight: 700 !important;
		color: var(--white) !important;
		margin-bottom: 0.85rem !important;
		line-height: 1.35;
	}

	.footer-brand p {
		font-size: 0.9rem;
		margin-top: 0;
	}

	.footer-links li,
	.footer-contact li {
		margin-bottom: 0.55rem;
	}

	.footer-links a,
	.footer-contact a {
		display: inline-flex;
		min-height: 40px;
		align-items: center;
		font-size: 0.9375rem;
	}

	.footer-social-icons {
		margin-top: 1rem;
		gap: 0.65rem;
	}

	.footer-social-icons a {
		width: 44px;
		height: 44px;
	}

	.footer-bottom-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
		text-align: left;
	}

	.footer-legal {
		display: flex;
		flex-wrap: wrap;
		gap: 0.75rem 1rem;
	}
}

@media (max-width: 480px) {
	.home-hero.home-hero-cinematic {
		padding-bottom: 1.25rem;
	}

	.home-hero-content h1,
	.home-hero-title {
		font-size: clamp(1.6rem, 7.5vw, 1.95rem);
		line-height: 1.32;
	}

	.home-hero-cinematic .home-hero-code-terminal {
		display: none;
	}

	.home-proof-item span {
		font-size: 0.7rem;
	}

	.section-title {
		font-size: clamp(1.4rem, 6vw, 1.75rem);
	}
}
/* =========================================================
   Scroll reveal animations
   ========================================================= */
.reveal {
	opacity: 0;
	will-change: opacity, transform;
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--reveal-delay, 0s);
}

.reveal-up {
	transform: translate3d(0, 28px, 0);
}

.reveal-left {
	transform: translate3d(-24px, 14px, 0);
}

.reveal-right {
	transform: translate3d(24px, 14px, 0);
}

.reveal-scale {
	transform: translate3d(0, 16px, 0) scale(0.96);
}

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

/* Keep hover lift after reveal completes */
.reveal.is-visible.home-solution-card:hover,
.reveal.is-visible.home-testimonial-card:hover,
.reveal.is-visible.service-card:hover,
.reveal.is-visible.product-card:hover {
	transform: translateY(-4px);
}

@media (max-width: 768px) {
	.reveal-up,
	.reveal-left,
	.reveal-right {
		transform: translate3d(0, 20px, 0);
	}

	.reveal-scale {
		transform: translate3d(0, 12px, 0) scale(0.98);
	}

	.reveal.is-visible.home-solution-card:hover,
	.reveal.is-visible.home-testimonial-card:hover,
	.reveal.is-visible.service-card:hover,
	.reveal.is-visible.product-card:hover {
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.reveal,
	.reveal-up,
	.reveal-left,
	.reveal-right,
	.reveal-scale {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}
/* =========================================================
   Site preloader ? brand mark + progress
   ========================================================= */
.site-preloader {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: grid;
	place-items: center;
	overflow: hidden;
	background: #0f172a;
	color: #FFFFFF;
	transition: opacity 0.55s ease, visibility 0.55s ease, transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

.preloader-atmosphere {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.preloader-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.65;
	will-change: transform;
}

.preloader-glow-a {
	width: min(68vw, 480px);
	height: min(68vw, 480px);
	left: 50%;
	top: 42%;
	translate: -50% -50%;
	background: radial-gradient(circle, rgba(123, 0, 212, 0.45) 0%, rgba(123, 0, 212, 0) 70%);
	animation: preloaderGlowDriftA 10s ease-in-out infinite;
}

.preloader-glow-b {
	width: min(52vw, 380px);
	height: min(52vw, 380px);
	left: 62%;
	top: 62%;
	translate: -50% -50%;
	background: radial-gradient(circle, rgba(168, 0, 232, 0.32) 0%, rgba(168, 0, 232, 0) 70%);
	animation: preloaderGlowDriftB 12s ease-in-out infinite;
}

.preloader-grid {
	position: absolute;
	inset: -2px;
	background-image:
		linear-gradient(rgba(123, 0, 212, 0.1) 1px, transparent 1px),
		linear-gradient(90deg, rgba(123, 0, 212, 0.1) 1px, transparent 1px);
	background-size: 32px 32px;
	-webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 48%, #000 0%, transparent 75%);
	mask-image: radial-gradient(ellipse 70% 65% at 50% 48%, #000 0%, transparent 75%);
	opacity: 0.75;
}

.preloader-vignette {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 75% 65% at 50% 45%, transparent 15%, rgba(15, 23, 42, 0.5) 68%, rgba(15, 23, 42, 0.94) 100%);
}

.preloader-stage {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.35rem;
	width: min(300px, 82vw);
	text-align: center;
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-preloader.is-active .preloader-stage {
	opacity: 1;
	transform: none;
}

.preloader-logo-wrap {
	position: relative;
	display: grid;
	place-items: center;
	width: min(280px, 78vw);
	padding: 1.25rem 1rem;
}

.preloader-mark-ring {
	position: absolute;
	inset: 0;
	border-radius: 20px;
	border: 1.5px solid rgba(196, 90, 255, 0.22);
	border-top-color: #C45AFF;
	border-right-color: rgba(168, 0, 232, 0.55);
	animation: preloaderSpin 1.15s linear infinite;
	pointer-events: none;
}

.preloader-logo {
	position: relative;
	z-index: 1;
	display: block;
	width: min(240px, 70vw);
	height: auto;
	max-height: 88px;
	object-fit: contain;
	filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.4));
}

.preloader-track {
	width: 100%;
	height: 2px;
	border-radius: 999px;
	background: rgba(148, 163, 184, 0.18);
	overflow: hidden;
}

.preloader-bar {
	height: 100%;
	width: 0%;
	border-radius: inherit;
	background: linear-gradient(90deg, #7B00D4, #A800E8);
	box-shadow: 0 0 16px rgba(123, 0, 212, 0.45);
	transition: width 0.05s linear;
}

.preloader-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	margin: 0;
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(203, 213, 225, 0.72);
}

.preloader-pct {
	font-variant-numeric: tabular-nums;
	font-weight: 700;
	color: #e2e8f0;
	letter-spacing: 0.04em;
}

.preloader-tagline {
	font-weight: 500;
	letter-spacing: 0.08em;
	opacity: 0.85;
}

.preloader-skip {
	position: absolute;
	right: max(1rem, env(safe-area-inset-right));
	bottom: max(1rem, env(safe-area-inset-bottom));
	z-index: 3;
	border: 1px solid rgba(196, 90, 255, 0.28);
	background: rgba(21, 16, 31, 0.55);
	color: rgba(226, 232, 240, 0.78);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.55rem 0.9rem;
	border-radius: 999px;
	cursor: pointer;
	backdrop-filter: blur(10px);
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.preloader-skip:hover,
.preloader-skip:focus-visible {
	color: #fff;
	border-color: rgba(196, 90, 255, 0.65);
	background: rgba(123, 0, 212, 0.25);
	outline: none;
}

.site-preloader.is-complete .preloader-mark-ring {
	animation: none;
	border-color: rgba(196, 90, 255, 0.55);
}

.site-preloader.is-exiting {
	transform: translateY(-8%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.site-preloader.is-gone {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

body.is-preloading .site-header,
body.is-preloading .site-main,
body.is-preloading .site-footer {
	opacity: 0;
	pointer-events: none;
}

body.preloader-exiting .site-header,
body.preloader-exiting .site-main,
body.preloader-exiting .site-footer,
html.preloader-done .site-header,
html.preloader-done .site-main,
html.preloader-done .site-footer {
	opacity: 1;
	pointer-events: auto;
	transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes preloaderGlowDriftA {
	0%, 100% { transform: translate(-5%, -3%) scale(1); }
	50% { transform: translate(3%, 4%) scale(1.06); }
}

@keyframes preloaderGlowDriftB {
	0%, 100% { transform: translate(4%, 2%) scale(1); }
	50% { transform: translate(-5%, -3%) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
	.preloader-glow-a,
	.preloader-glow-b,
	.preloader-mark-ring {
		animation: none;
	}

	.preloader-stage,
	.site-preloader {
		transition: opacity 0.2s ease !important;
		transform: none !important;
	}

	.site-light-key,
	.site-light-fill,
	.site-light-rim {
		animation: none;
	}
}

/* =========================================================
   Studio lighting polish — elevated surfaces
   ========================================================= */
.section-dark .service-card,
.section-dark .sidebar-card,
.section-dark .home-solution-card,
.section-dark .blog-card,
.section-dark .product-card,
.section-dark .contact-form,
.section-dark .start-project-form,
.section-dark .contact-info-card,
.section-dark .home-testimonial-card,
.section-dark .home-process-step {
	background-image: var(--surface-highlight);
}

.section-light .home-solution-card,
.section-light-muted .home-solution-card,
.section-light .home-process-step,
.section-light-muted .home-process-step,
.section-light .home-testimonial-card,
.section-light-muted .home-testimonial-card,
.section-light .sidebar-card,
.page-content .sidebar-card,
.page-content .contact-form,
.page-content .service-card,
.start-project-form,
.blog-card {
	background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 243, 250, 0.9) 100%);
	box-shadow: var(--light-card-shadow);
}

.header-main {
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}