:root {
	--night: #010712;
	--deep: #050f26;
	--ink: #e0f2ff;
	--muted: #92a2c7;
	--glow-start: #00d1b2;
	--glow-end: #0b5fff;
	--accent: #f8bf3c;
	--panel: rgba(4, 13, 32, 0.72);
	--border: rgba(255, 255, 255, 0.08);
	--radius: 18px;
	--shadow: 0 20px 60px rgba(2, 15, 35, 0.6);
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
	margin: 0;
	min-height: 100vh;
	background: radial-gradient(circle at top, var(--deep), var(--night) 55%);
	color: var(--ink);
	font-size: 17px;
	line-height: 1.6;
}

html {
	scroll-padding-top: 140px;
}

canvas#constellation {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	z-index: -2;
	background: transparent;
}

.noise-overlay {
	position: fixed;
	inset: 0;
	z-index: -1;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.08"/></svg>');
	mix-blend-mode: screen;
	opacity: 0.3;
	pointer-events: none;
}

.page-shell {
	position: relative;
	z-index: 1;
	padding: 40px clamp(20px, 5vw, 72px) 80px;
	max-width: 1200px;
	margin: 0 auto;
}

.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 28px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: rgba(2, 9, 24, 0.75);
	backdrop-filter: blur(18px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	position: sticky;
	top: 20px;
	margin-bottom: 40px;
	z-index: 100;
}

.wordmark {
	display: flex;
	align-items: center;
	gap: 14px;
}

.logo-mark {
	width: 48px;
	height: 48px;
}

.company-name {
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 0;
	position: relative;
	padding-bottom: 6px;
}

.company-name::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 48px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(120deg, var(--glow-start), var(--glow-end));
	box-shadow: 0 0 12px rgba(11, 95, 255, 0.55);
}

.company-tagline {
	margin: 0;
	font-size: 0.8rem;
	color: var(--ink);
	text-transform: uppercase;
	letter-spacing: 0.24em;
	opacity: 0.7;
}

nav {
	display: flex;
	gap: 20px;
	font-size: 0.95rem;
}

nav a {
	color: var(--muted);
	text-decoration: none;
	transition: color 0.2s ease;
}

nav a:hover {
	color: var(--ink);
}

.cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	border: 1px solid transparent;
}

.cta.primary {
	background: linear-gradient(120deg, var(--glow-start), var(--glow-end));
	color: #010712;
	box-shadow: 0 15px 30px rgba(8, 89, 255, 0.45);
}

.cta.secondary {
	border-color: rgba(255, 255, 255, 0.3);
	color: var(--ink);
}

.cta.ghost {
	border-color: rgba(255, 255, 255, 0.25);
	color: var(--ink);
	font-size: 0.95rem;
}

.cta:hover {
	transform: translateY(-2px);
}

.hero {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
	padding: 40px;
	border-radius: calc(var(--radius) * 1.2);
	background: var(--panel);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	margin-bottom: 48px;
	position: relative;
	overflow: hidden;
}

.hero::after {
	content: '';
	position: absolute;
	inset: 20px;
	border-radius: inherit;
	background: radial-gradient(circle at top right, rgba(11, 95, 255, 0.25), transparent 50%);
	pointer-events: none;
}

.hero-text {
	position: relative;
	z-index: 1;
}

.eyebrow {
	text-transform: uppercase;
	font-size: 0.78rem;
	letter-spacing: 0.3em;
	color: var(--muted);
	margin-bottom: 16px;
}

h1,
h2,
h3 {
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	margin-top: 0;
	color: var(--ink);
	line-height: 1.2;
}

h1 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 16px;
}

.lede {
	color: var(--muted);
	font-size: 1.05rem;
	margin-bottom: 28px;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 28px;
}

.hero-metrics {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.hero-metrics li {
	background: rgba(255, 255, 255, 0.04);
	border-radius: var(--radius);
	padding: 16px 20px;
	border: 1px solid var(--border);
}

.hero-metrics strong {
	display: block;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--accent);
}

.hero-card {
	position: relative;
	z-index: 1;
	padding: 28px;
	border-radius: var(--radius);
	background: rgba(3, 16, 36, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 0 30px rgba(11, 95, 255, 0.2);
}

.hero-card .badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 4px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	font-size: 0.8rem;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.2em;
}

.hero-card ul {
	padding-left: 18px;
	margin-bottom: 0;
	color: var(--muted);
}

.section {
	margin-bottom: 60px;
	padding: 40px;
	background: rgba(2, 9, 24, 0.85);
	border: 1px solid var(--border);
	border-radius: calc(var(--radius) * 1.1);
	box-shadow: var(--shadow);
}

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

.section-heading {
	max-width: 760px;
	margin-bottom: 36px;
}

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

.capability-grid article {
	padding: 24px;
	border-radius: var(--radius);
	background: rgba(8, 24, 54, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.06);
	min-height: 180px;
}

.capability-grid article h3 {
	font-size: 1.15rem;
	margin-bottom: 10px;
}

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

.velocity-grid article {
	padding: 24px;
	border-radius: var(--radius);
	background: rgba(5, 18, 44, 0.9);
	border: 1px solid rgba(11, 95, 255, 0.2);
	box-shadow: inset 0 0 25px rgba(0, 209, 178, 0.1);
}

.velocity-grid article h3 {
	font-size: 1.1rem;
	margin-bottom: 12px;
}

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

.about-card {
	padding: 24px;
	border-radius: var(--radius);
	background: rgba(4, 14, 36, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.08);
	min-height: 200px;
}

.about-card ul {
	padding-left: 20px;
	margin: 0;
	color: var(--muted);
}

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

.engagement-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.engagement-list li {
	padding: 18px;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.callout {
	padding: 24px;
	border-radius: var(--radius);
	background: linear-gradient(120deg, rgba(0, 209, 178, 0.12), rgba(11, 95, 255, 0.12));
	border: 1px solid rgba(0, 209, 178, 0.3);
	font-style: italic;
	color: var(--muted);
}

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

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-form label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 0.95rem;
	color: var(--muted);
}

.contact-form input,
.contact-form textarea {
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(3, 10, 25, 0.9);
	color: var(--ink);
	padding: 12px 14px;
	font-size: 1rem;
	font-family: inherit;
	resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: 2px solid var(--glow-end);
}

.site-footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 24px 0;
	color: var(--muted);
	font-size: 0.85rem;
}

.footer-links {
	display: flex;
	gap: 16px;
}

.footer-links a {
	color: var(--muted);
	text-decoration: none;
}

.microcopy {
	margin: 0;
	color: rgba(255, 255, 255, 0.5);
}

p {
	margin: 0 0 1rem;
}

@media (max-width: 900px) {
	.site-header {
		flex-wrap: wrap;
		position: static;
	}

	nav {
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero,
	.section {
		padding: 28px;
	}
}

@media (max-width: 600px) {
	.hero-metrics {
		flex-direction: column;
	}

	.footer-links {
		width: 100%;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
}
