:root {
	--bg: #0a0f1a;
	--bg-soft: #0f1724;
	--panel: #121a27;
	--panel-border: rgba(255,255,255,0.08);
	--text: #f3f4f6;
	--muted: #b8c1cc;
	--subtle: #7f8b99;
	--accent: #4f8cff;
	--accent-hover: #6b9dff;
	--shadow: 0 16px 40px rgba(0,0,0,0.28);
	--radius: 16px;
	--max: 1120px;
	--danger-bg: rgba(239,68,68,0.12);
	--danger-border: rgba(239,68,68,0.28);
	--success-bg: rgba(34,197,94,0.12);
	--success-border: rgba(34,197,94,0.28);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	color: var(--text);
	background:
		linear-gradient(180deg, #0b1020 0%, #0a0f1a 100%);
	line-height: 1.6;
}

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

a:hover {
	text-decoration: underline;
}

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

.narrow {
	max-width: 860px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	backdrop-filter: blur(10px);
	background: rgba(10,15,26,0.82);
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 0;
}

.brand,
.brand a {
	font-weight: 700;
	letter-spacing: 0.2px;
	color: #fff;
	font-size: 1.1rem;
	text-decoration: none;
}

.nav-links {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.nav-links a {
	color: var(--muted);
	font-size: 0.95rem;
}

.hero {
	padding: 88px 0 56px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 28px;
	align-items: stretch;
}

.card {
	background: linear-gradient(180deg, rgba(18,26,39,0.96) 0%, rgba(15,23,36,0.96) 100%);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.hero-copy {
	padding: 42px;
}

.eyebrow,
.kicker {
	color: var(--accent);
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

h1, h2, h3 {
	margin: 0 0 14px;
	line-height: 1.15;
	color: #fff;
}

h1 {
	font-size: clamp(2.5rem, 4vw, 4.4rem);
	line-height: 1.02;
	letter-spacing: -0.03em;
}

h2 {
	font-size: clamp(1.75rem, 2.5vw, 2.5rem);
	line-height: 1.08;
	letter-spacing: -0.02em;
}

h3 {
	font-size: 1.05rem;
	letter-spacing: -0.01em;
}

p {
	margin: 0 0 16px;
	color: var(--muted);
	line-height: 1.7;
}

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

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 18px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 600;
	cursor: pointer;
	transition: 0.2s ease;
	text-decoration: none;
	font-size: 16px;
}

.btn-primary {
	background: var(--accent);
	color: #ffffff;
	border: 1px solid rgba(255,255,255,0.06);
}

.btn-primary:hover {
	background: var(--accent-hover);
	text-decoration: none;
	transform: translateY(-1px);
}

.btn-secondary {
	border-color: rgba(255,255,255,0.1);
	color: #fff;
	background: transparent;
}

.btn-secondary:hover {
	text-decoration: none;
	background: rgba(255,255,255,0.04);
}

.hero-side {
	padding: 28px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 18px;
}

.stat {
	padding: 18px 0;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stat:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.stat-label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--subtle);
	margin-bottom: 8px;
}

.stat-value {
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
}

section {
	padding: 26px 0 54px;
}

.section-head {
	max-width: 760px;
	margin-bottom: 22px;
}

.grid-3,
.grid-2 {
	display: grid;
	gap: 22px;
}

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

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

.feature,
.product,
.contact-card {
	padding: 26px;
}

.list {
	padding-left: 18px;
	margin: 12px 0 0;
	color: var(--muted);
}

.list li {
	margin-bottom: 8px;
}

form {
	display: grid;
	gap: 14px;
}

label {
	display: block;
	font-weight: 600;
	color: #fff;
	margin-bottom: 6px;
	font-size: 0.95rem;
}

input,
textarea {
	width: 100%;
	padding: 14px 15px;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.14);
	background: rgba(255,255,255,0.05);
	color: #fff;
	font: inherit;
}

input::placeholder,
textarea::placeholder {
	color: #94a3b8;
}

input:focus,
textarea:focus {
	outline: none;
	border-color: rgba(56,189,248,0.65);
	box-shadow: 0 0 0 4px rgba(56,189,248,0.14);
}

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

.contact-meta p {
	margin-bottom: 10px;
}

.legal {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 16px;
	font-size: 0.95rem;
}

.alert {
	padding: 14px 16px;
	border-radius: 12px;
	margin-bottom: 16px;
	font-weight: 600;
}

.alert-success {
	background: var(--success-bg);
	border: 1px solid var(--success-border);
	color: #d1fae5;
}

.alert-error {
	background: var(--danger-bg);
	border: 1px solid var(--danger-border);
	color: #fecaca;
}

.honeypot {
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

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

.content-page h1 {
	margin-bottom: 24px;
}

.content-page h2 {
	font-size: 1.3rem;
	margin-top: 28px;
}

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

.footer-inner {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 22px 0 38px;
	color: var(--subtle);
	font-size: 0.95rem;
}

.footer-sep {
	margin: 0 8px;
	color: var(--subtle);
}

@media (max-width: 900px) {
	.hero-grid,
	.grid-3,
	.grid-2 {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 64px;
	}

	.hero-copy,
	.hero-side,
	.feature,
	.product,
	.contact-card {
		padding: 24px;
	}
}

@media (max-width: 640px) {
	.nav {
		align-items: flex-start;
		flex-direction: column;
	}

	.nav-links {
		gap: 14px;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.btn {
		width: 100%;
	}
}
