:root {
	--bg: #0c1024;
	--bg-muted: #10163a;
	--bg-alt: #0f1130;
	--fg: #f5f7fb;
	--accent: #8aecec;
	--accent-strong: #ad67ea;
	--accent-dark: #1b9aaa;
	--text: #d5d9e7;
	--text-muted: #9aa1bf;
	--border: rgba(255, 255, 255, 0.08);
	--shadow: 0 24px 60px -32px rgba(16, 24, 64, 0.75);
	--max-width: 1180px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
}

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

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(12, 16, 36, 0.92);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
}

.branding {
	display: flex;
	align-items: center;
	gap: 12px;
}

.branding .logo {
	height: auto;
}

.brand-name {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: var(--accent);
	text-transform: uppercase;
}

.main-nav {
	position: relative;
}

.nav-toggle {
	display: none;
	background: transparent;
	border: none;
	padding: 8px;
	cursor: pointer;
}

.nav-toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--fg);
	margin: 4px 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

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

.nav-list a {
	color: var(--text);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus {
	color: var(--accent);
}

.hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.hero-media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.hero-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.1);
	filter: blur(3px) saturate(0.9);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(12, 16, 36, 0.92), rgba(26, 34, 86, 0.88));
}

.hero-content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 48px;
	padding: 120px 0 80px 0;
}

.hero-intro h1 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(2.6rem, 4vw, 3.8rem);
	color: var(--fg);
	line-height: 1.2;
	margin-bottom: 20px;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.75rem;
	color: var(--accent);
	margin-bottom: 12px;
}

.lead {
	font-size: 1.05rem;
	color: var(--text-muted);
	max-width: 540px;
}

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

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 14px 26px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
	background: linear-gradient(135deg, var(--accent-strong), var(--accent));
	color: #081022;
	box-shadow: 0 15px 35px -18px rgba(138, 236, 236, 0.8);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 40px -18px rgba(138, 236, 236, 0.85);
}

.btn-ghost {
	background: transparent;
	color: var(--fg);
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
	transform: translateY(-2px);
	border-color: var(--accent);
	color: var(--accent);
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 20px;
	align-content: start;
}

.stat-card {
	background: rgba(255, 255, 255, 0.05);
	padding: 24px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	box-shadow: var(--shadow);
}

.stat-card .value {
	display: block;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 2.5rem;
	color: var(--accent);
	margin-bottom: 8px;
}

.stat-card .label {
	color: var(--text-muted);
	font-size: 0.9rem;
}

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

.section:nth-of-type(odd) {
	background: linear-gradient(135deg, rgba(15, 17, 48, 0.9), rgba(16, 28, 66, 0.9));
}

.section:nth-of-type(even) {
	background: radial-gradient(circle at top left, rgba(138, 236, 236, 0.12), transparent 55%), var(--bg-alt);
}

.section-head {
	max-width: 720px;
	margin-bottom: 48px;
}

.section-head h2 {
	font-family: 'Space Grotesk', sans-serif;
	color: var(--fg);
	line-height: 1.25;
}

.section-subtitle {
	color: var(--text-muted);
	font-size: 1rem;
}

.intro-grid {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 56px;
	align-items: start;
}

.pillars {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	margin-top: 32px;
}

.pillar {
	padding: 24px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.pillar h3 {
	font-family: 'Space Grotesk', sans-serif;
	color: var(--fg);
	margin-bottom: 12px;
}

.solutions .solution-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
}

.solution-card {
	background: rgba(255, 255, 255, 0.05);
	padding: 28px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.solution-card h3 {
	font-family: 'Space Grotesk', sans-serif;
	color: var(--fg);
	margin: 0;
}

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

.solution-card li {
	position: relative;
	padding-left: 22px;
	color: var(--text-muted);
	font-size: 0.95rem;
}

.solution-card li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--accent);
}

.industries .industries-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	align-items: start;
	gap: 40px;
}

.industry-cards {
	display: grid;
	gap: 20px;
}

.industry-card {
	padding: 24px;
	border-radius: 18px;
	background: rgba(12, 16, 36, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: var(--shadow);
}

.industry-card h3 {
	margin: 0 0 10px 0;
	font-family: 'Space Grotesk', sans-serif;
	color: var(--accent);
}

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

.approach-step {
	padding: 28px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.approach-step .step-index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: rgba(138, 236, 236, 0.18);
	color: var(--accent);
	font-weight: 700;
	margin-bottom: 14px;
}

.approach-step h3 {
	margin: 0 0 12px 0;
	font-family: 'Space Grotesk', sans-serif;
	color: var(--fg);
}

.results-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.result-card {
	padding: 30px;
	border-radius: 22px;
	background: radial-gradient(circle at top, rgba(138, 236, 236, 0.18), rgba(12, 16, 36, 0.85));
	border: 1px solid rgba(138, 236, 236, 0.25);
	color: var(--fg);
}

.result-card .metric {
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 14px;
	font-size: 0.82rem;
}

.result-card .attribution {
	display: block;
	margin-top: 18px;
	font-size: 0.85rem;
	color: var(--text-muted);
}

.insights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.insight-card {
	padding: 28px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-direction: column;
	gap: 14px;
	box-shadow: var(--shadow);
}

.insight-card .category {
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.7rem;
	color: var(--accent);
}

.link-arrow {
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: transform 0.2s ease;
}

.link-arrow::after {
	content: "→";
	font-size: 1rem;
}

.link-arrow:hover {
	transform: translateX(4px);
}

.tech-stack .stack-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-top: 32px;
}

.tech-stack .stack-cloud span {
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--fg);
	font-size: 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
	align-items: start;
}

.contact-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 35px;
	box-shadow: var(--shadow);
	display: grid;
	gap: 32px;
}

.contact-details ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 12px;
}

.contact-details strong {
	color: var(--fg);
}

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

.hours,
.support-note {
	color: var(--text-muted);
	font-size: 0.9rem;
}

.contact-form {
	display: grid;
	gap: 18px;
}

.form-feedback {
	padding: 14px 18px;
	border-radius: 12px;
	font-size: 0.95rem;
}

.form-feedback.success {
	background: rgba(138, 236, 236, 0.18);
	border: 1px solid rgba(138, 236, 236, 0.45);
	color: var(--fg);
}

.form-feedback.error {
	background: rgba(228, 87, 87, 0.15);
	border: 1px solid rgba(228, 87, 87, 0.4);
	color: #ffb3b3;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 14px 16px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(12, 16, 36, 0.6);
	color: var(--fg);
	font-size: 0.95rem;
	font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: 0;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(138, 236, 236, 0.18);
}

.footnote {
	font-size: 0.85rem;
	color: var(--text-muted);
}

.footnote a {
	color: var(--accent);
	text-decoration: none;
}

.site-footer {
	padding: 48px 0;
	background: #080a1c;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.footer-nav {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

.footer-nav a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s ease;
}

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

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

	.hero-stats {
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	}

	.intro-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 800px) {
	.nav-toggle {
		display: block;
	}

	.nav-list {
		position: absolute;
		top: calc(100% + 16px);
		right: 0;
		background: rgba(8, 11, 27, 0.95);
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 16px;
		padding: 18px 24px;
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		min-width: 220px;
		box-shadow: var(--shadow);
		opacity: 0;
		transform: translateY(-12px);
		pointer-events: none;
		transition: opacity 0.2s ease, transform 0.2s ease;
	}

	.nav-list.open {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}
}

@media (max-width: 600px) {
	body {
		font-size: 0.95rem;
	}

	.hero-intro h1 {
		font-size: clamp(2.2rem, 6vw, 3rem);
	}

	.section {
		padding: 90px 0;
	}

	.solution-card,
	.result-card,
	.contact-card {
		padding: 24px;
	}
}
