:root {
	--bg: #030717; /* darker navy */
	--bg-2: #060d24; /* deep dark blue */
	--accent: #1e5fe0;
	--muted: #94a8d6;
	--card: #0b1635;
	--glass: rgba(255, 255, 255, 0.02);
	--glass-hovered: rgba(255, 255, 255, 0.07);
	--radius: 18px;
	--max: 900px;
	--shadow: 0 8px 40px rgba(1, 3, 12, 0.8);
	color-scheme: dark;
}

* {
	box-sizing: border-box;
}
html,
body {
	min-height: 100%;
}
body {
	margin: 0;
	font-family: Inter, system-ui, sans-serif;
	background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
	color: #e6eefb;
	line-height: 1.6;
	font-size: 18px;
}

.container {
	max-width: var(--max);
	margin: 0 auto;
	padding: 40px 24px;
	position: relative;
	z-index: 1;
}

canvas#particles {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, #0a0f2c 0%, #040818 100%);
}

header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 40px;
}
.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	font-size: 22px;
	letter-spacing: 0.6px;
}
.mark {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--accent), #2b3fd9);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	color: white;
	font-family: monospace;
	box-shadow: 0 6px 20px rgba(30, 95, 224, 0.2), inset 0 -6px 18px rgba(0, 0, 0, 0.3);
}
.image {
	object-fit: contain;
	display: block;
	width: 100%;
	height: 100%;
}
main {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.hero {
	background: var(--card);
	padding: 36px;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.kicker {
	color: var(--muted);
	font-size: 14px;
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
h1 {
	margin: 0 0 16px;
	font-size: 36px;
}
p.lead {
	margin: 0 0 20px;
	color: #cfe1ff;
	opacity: 0.95;
}

.features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 24px;
}
.feature {
	background: var(--glass);
	padding: 16px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.03);
	transition: all 0.4s ease-in-out;
}
.feature:hover {
	background: var(--glass-hovered);
}
.feature h4 {
	margin: 0 0 8px;
	font-size: 18px;
}
.feature p {
	margin: 0;
	font-size: 16px;
	color: var(--muted);
}

.how {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.step {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.step .num {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: linear-gradient(135deg, #132e6d, #163b91);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}
.step p {
	margin: 4px 0 0;
	color: var(--muted);
}

.testimonial {
	font-style: italic;
	color: #cfe1ff;
	opacity: 0.9;
	border-left: 3px solid rgba(30, 95, 224, 0.16);
	padding: 16px 20px;
	margin-top: 20px;
	border-radius: 10px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
	transition: all 0.4s ease-in-out;
}
.testimonial:hover {
	border-left: 10px solid rgba(30, 95, 224, 0.35);
}
footer {
	margin-top: 60px;
	color: var(--muted);
	font-size: 15px;
	text-align: center;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}
