:root {
	--bg: #03060d;
	--bg-alt: #070c18;
	--accent: #4fd1c5;
	--accent-strong: #0ff0fc;
	--text: #f8fbff;
	--muted: #98a0b3;
	--border: rgba(255, 255, 255, 0.1);
	--card: rgba(255, 255, 255, 0.03);
	--container: min(1200px, 90vw);
	font-size: 16px;
}

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

body {
	margin: 0;
	background: radial-gradient(circle at top, rgba(79, 209, 197, 0.05), transparent 55%), var(--bg);
	color: var(--text);
	font-family: "Inter", system-ui, sans-serif;
	line-height: 1.6;
}

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

a:hover {
	text-decoration: underline;
}

.container {
	width: var(--container);
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	background: rgba(3, 6, 13, 0.95);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border);
	z-index: 10;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 1rem 0;
	gap: 1rem;
}

.branding {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.branding img {
	height: 48px;
	width: auto;
}

.title-group {
	display: flex;
	flex-direction: column;
}

.site-title {
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--text);
}

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

.primary-nav ul {
	display: flex;
	list-style: none;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
}

.primary-nav a {
	color: var(--text);
	font-weight: 500;
}

.cta-button {
	border: none;
	color: #03060d;
	background: linear-gradient(135deg, var(--accent), var(--accent-strong));
	padding: 0.8rem 1.75rem;
	border-radius: 999px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(94, 234, 212, 0.25);
}

.cta-button.secondary {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: var(--text);
}

.cta-button--small {
	padding: 0.55rem 1.2rem;
	font-size: 0.9rem;
}

.hero {
	padding: 5rem 0 4rem;
}

.hero-inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
	align-items: center;
}

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

.hero h1 {
	font-family: "Space Grotesk", "Inter", sans-serif;
	font-size: clamp(2.75rem, 5vw, 3.75rem);
	line-height: 1.1;
	margin: 0 0 1rem;
}

.subheadline {
	color: var(--muted);
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.hero-ctas {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.hero-panel {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 1.5rem;
	padding: 2rem;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-badge {
	display: inline-flex;
	padding: 0.35rem 1rem;
	border-radius: 999px;
	background: rgba(79, 209, 197, 0.1);
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.metrics {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.metrics li {
	flex: 1;
	min-width: 120px;
}

.metrics .value {
	font-size: 2rem;
	font-weight: 700;
	display: block;
}

.metrics .label {
	color: var(--muted);
	font-size: 0.85rem;
}

.hero-note {
	color: var(--muted);
	margin-top: 1.5rem;
}

.section {
	padding: 4rem 0;
	border-top: 1px solid var(--border);
}

.section-heading {
	max-width: 720px;
	margin-bottom: 2.5rem;
}

.section-heading h2 {
	margin: 0 0 0.5rem;
	font-size: 2rem;
}

.section-description {
	color: var(--muted);
	margin: 0;
	font-size: 1.05rem;
}

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

.service-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 1rem;
	padding: 1.5rem;
	min-height: 240px;
}

.service-card h3 {
	margin: 0 0 0.5rem;
	font-size: 1.4rem;
}

.service-card p {
	margin-top: 0;
}

.service-badge {
	font-size: 0.8rem;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.15em;
}

.service-highlight {
	color: var(--muted);
	font-size: 0.9rem;
}

.section--split {
	background: var(--bg-alt);
}

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

.pill-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.pill-list li {
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.03);
}

.pill-list--stacked {
	flex-direction: column;
}

.badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.badge {
	padding: 0.35rem 0.75rem;
	border-radius: 0.75rem;
	background: rgba(79, 209, 197, 0.1);
	color: var(--accent);
	font-weight: 600;
	font-size: 0.85rem;
}

.process-list {
	counter-reset: steps;
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0;
	display: grid;
	gap: 1rem;
}

.process-list li {
	padding-left: 3rem;
	position: relative;
}

.process-list li::before {
	counter-increment: steps;
	content: counter(steps, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 700;
	color: var(--accent);
}

.cta-strip {
	padding: 3rem 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: linear-gradient(135deg, rgba(79, 209, 197, 0.12), rgba(3, 6, 13, 0.95));
}

.cta-strip-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.cta-actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.contact {
	background: radial-gradient(circle at 20% 20%, rgba(15, 240, 252, 0.09), transparent 60%), var(--bg);
}

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

.contact-list {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.contact-panel {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 1.25rem;
	padding: 2rem;
}

.panel-title {
	font-weight: 600;
	margin-top: 0;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1rem;
}

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

.contact-form input,
.contact-form textarea {
	padding: 0.75rem 0.9rem;
	border-radius: 0.5rem;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.02);
	color: var(--text);
	font-size: 1rem;
	font-family: inherit;
}

.site-footer {
	padding: 3rem 0 1.5rem;
	background: #010309;
	border-top: 1px solid var(--border);
}

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

.footer-heading {
	font-weight: 600;
}

.footer-domains {
	color: var(--muted);
}

.footer-meta {
	margin-top: 2rem;
	text-align: center;
	color: var(--muted);
	font-size: 0.85rem;
}

@media (max-width: 768px) {
	.primary-nav ul {
		flex-wrap: wrap;
	}

	.site-header {
		position: static;
	}
}
