:root {
	--bg: #0B0F1A;
	--bg-card: #141B2D;
	--text: #F0F4FF;
	--text-muted: #8E99B0;
	--text-dim: #5A6478;
	--accent: #5B8DEF;
	--accent-2: #4ECDC4;
	--accent-3: #A78BFA;
	--border: rgba(255, 255, 255, 0.08);
	--radius: 16px;
	--max: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

.container {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 24px;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(11, 15, 26, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--text);
	text-decoration: none;
	font-weight: 700;
	font-size: 1.125rem;
}

.logo:hover { text-decoration: none; }

.logo-mark {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1rem;
	color: #fff;
	box-shadow: 0 4px 16px rgba(91, 141, 239, 0.35);
}

.nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

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

.nav a:hover,
.nav a.active {
	color: var(--text);
	text-decoration: none;
}

.nav-cta {
	background: linear-gradient(135deg, var(--accent), #3A6FD8);
	color: #fff !important;
	padding: 8px 18px;
	border-radius: 999px;
	font-weight: 600;
}

.nav-cta:hover { opacity: 0.9; text-decoration: none; }

.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--text);
	font-size: 1.5rem;
	cursor: pointer;
}

/* Hero */
.hero {
	padding: 80px 0 64px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-glow {
	position: absolute;
	top: -120px;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 400px;
	background: radial-gradient(ellipse, rgba(91, 141, 239, 0.18), transparent 70%);
	pointer-events: none;
}

.hero-logo {
	width: 88px;
	height: 88px;
	border-radius: 24px;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	font-weight: 800;
	color: #fff;
	margin: 0 auto 28px;
	box-shadow: 0 12px 40px rgba(91, 141, 239, 0.4);
	animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { box-shadow: 0 12px 40px rgba(91, 141, 239, 0.4); }
	50% { box-shadow: 0 12px 48px rgba(78, 205, 196, 0.45); }
}

.hero h1 {
	font-size: clamp(2.25rem, 5vw, 3.25rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-bottom: 12px;
}

.hero .tagline {
	font-size: 1.25rem;
	color: var(--accent-2);
	font-weight: 600;
	margin-bottom: 20px;
}

.hero .lead {
	font-size: 1.125rem;
	color: var(--text-muted);
	max-width: 620px;
	margin: 0 auto 36px;
}

.hero-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 999px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.2s, opacity 0.2s;
	border: none;
	cursor: pointer;
}

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

.btn-primary {
	background: linear-gradient(135deg, var(--accent), #3A6FD8);
	color: #fff;
}

.btn-secondary {
	background: var(--bg-card);
	color: var(--text);
	border: 1px solid var(--border);
}

.hero-note {
	margin-top: 24px;
	font-size: 0.875rem;
	color: var(--text-dim);
}

/* Sections */
.section {
	padding: 64px 0;
}

.section-title {
	font-size: 1.75rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 12px;
}

.section-sub {
	text-align: center;
	color: var(--text-muted);
	max-width: 560px;
	margin: 0 auto 48px;
}

/* Feature grid */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	transition: border-color 0.2s;
}

.feature-card:hover {
	border-color: rgba(91, 141, 239, 0.3);
}

.feature-icon {
	font-size: 2rem;
	margin-bottom: 16px;
	display: block;
}

.feature-card h3 {
	font-size: 1.125rem;
	margin-bottom: 8px;
}

.feature-card p {
	color: var(--text-muted);
	font-size: 0.9375rem;
}

/* Pillars */
.pillar-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 14px;
}

.pillar-chip {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 20px 16px;
	text-align: center;
}

.pillar-chip .icon { font-size: 1.75rem; display: block; margin-bottom: 8px; }
.pillar-chip .name { font-weight: 600; font-size: 0.9375rem; }
.pillar-chip .desc { font-size: 0.75rem; color: var(--text-dim); margin-top: 4px; }

/* Privacy badge row */
.trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-top: 48px;
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 14px 20px;
	font-size: 0.875rem;
	color: var(--text-muted);
}

/* Legal / Support pages */
.page-hero {
	padding: 48px 0 32px;
	border-bottom: 1px solid var(--border);
	margin-bottom: 40px;
}

.page-hero h1 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.page-hero .meta {
	color: var(--text-dim);
	font-size: 0.875rem;
}

.legal-content,
.support-content {
	max-width: 720px;
	margin: 0 auto;
	padding-bottom: 64px;
}

.legal-content h2,
.support-content h2 {
	font-size: 1.25rem;
	margin: 36px 0 12px;
	color: var(--text);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p,
.legal-content li,
.support-content p,
.support-content li {
	color: var(--text-muted);
	font-size: 0.9375rem;
	margin-bottom: 12px;
}

.legal-content ul,
.support-content ul {
	padding-left: 1.25rem;
	margin-bottom: 16px;
}

.legal-content li { margin-bottom: 8px; }

.contact-card {
	background: linear-gradient(135deg, rgba(91, 141, 239, 0.12), rgba(78, 205, 196, 0.06));
	border: 1px solid rgba(91, 141, 239, 0.25);
	border-radius: var(--radius);
	padding: 32px;
	text-align: center;
	margin: 32px 0;
}

.contact-card .email {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--accent-2);
	word-break: break-all;
}

.contact-card .email a { color: var(--accent-2); }

.faq-item {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	margin-bottom: 14px;
}

.faq-item h3 {
	font-size: 1rem;
	margin-bottom: 8px;
}

.faq-item p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--text-muted);
}

/* Footer */
.site-footer {
	border-top: 1px solid var(--border);
	padding: 40px 0;
	margin-top: 40px;
}

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

.footer-brand {
	font-size: 0.875rem;
	color: var(--text-dim);
}

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

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

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

/* Mobile */
@media (max-width: 768px) {
	.menu-toggle { display: block; }

	.nav {
		display: none;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		flex-direction: column;
		background: var(--bg);
		border-bottom: 1px solid var(--border);
		padding: 16px 24px 24px;
		gap: 16px;
	}

	.nav.open { display: flex; }

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

	.footer-inner { flex-direction: column; text-align: center; }
}
