:root {
	--bg: #0a0e1f;
	--panel: rgba(255,255,255,0.05);
	--panel-hover: rgba(255,255,255,0.08);
	--border: rgba(255,255,255,0.1);
	--border-hover: rgba(255,255,255,0.15);
	--text: #f8fbff;
	--text-secondary: #e0e7f1;
	--muted: #c1cbda;
	--accent: #8ef3c5;
	--accent-2: #ffc45a;
	--accent-rgb: 142, 243, 197;
	--accent-2-rgb: 255, 196, 90;
	--shadow: 0 24px 70px rgba(0,0,0,0.45);
	--shadow-lg: 0 40px 120px rgba(0,0,0,0.55);
	--shadow-hover: 0 30px 90px rgba(142,243,197,0.15);
	--gradient: radial-gradient(140% 140% at 20% 20%, rgba(142,243,197,0.16), transparent 45%),
			radial-gradient(120% 120% at 80% 10%, rgba(255,196,90,0.16), transparent 40%),
			linear-gradient(135deg, #0c182a 0%, #0d1221 55%, #0a0f1c 100%);
}
* { box-sizing: border-box; }
body {
	margin: 0;
	background: var(--gradient);
	color: var(--text);
	font-family: 'Sora', sans-serif;
	min-height: 100vh;
	line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
	from { opacity: 0; transform: translateX(-20px); }
	to { opacity: 1; transform: translateX(0); }
}
@keyframes glow {
	0%, 100% { box-shadow: 0 0 20px rgba(142,243,197,0.3), inset 0 0 20px rgba(142,243,197,0.05); }
	50% { box-shadow: 0 0 40px rgba(142,243,197,0.5), inset 0 0 20px rgba(142,243,197,0.1); }
}
.page { max-width: 1200px; margin: 0 auto; padding: 32px 20px 72px; }
header {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding: 12px 18px; margin-bottom: 28px;
	border: 1px solid var(--border); border-radius: 14px;
	background: var(--panel); backdrop-filter: blur(12px); box-shadow: var(--shadow);
}
.logo { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: 0.3px; }
.logo-mark {
	width: 44px; height: 44px; border-radius: 12px;
	background: linear-gradient(135deg, #8ef3c5, #ffc45a);
	display: grid; place-items: center; color: #0b1220; font-weight: 800; font-size: 20px;
}
.nav {
	display: flex; gap: 12px; flex-wrap: wrap; font-size: 14px; color: var(--muted);
	position: relative; align-items: center;
}
.nav a {
	color: inherit; text-decoration: none; padding: 8px 10px; border-radius: 10px;
	display: inline-flex; align-items: center; gap: 6px; border: 1px solid transparent;
}
.nav a:hover { background: var(--panel); border: 1px solid var(--border); }
.hero {
	padding: 50px 28px; border-radius: 20px; border: 1px solid var(--border);
	background: rgba(255,255,255,0.04); box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.hero::after {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(circle at 70% 20%, rgba(142,243,197,0.12), transparent 35%),
			radial-gradient(circle at 20% 80%, rgba(255,196,90,0.12), transparent 32%);
	pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 12px; background: rgba(255,255,255,0.08);
	border-radius: 999px; border: 1px solid var(--border); font-size: 13px; color: var(--muted);
}
h1 { font-family: 'Space Grotesk', 'Sora', sans-serif; font-size: clamp(32px, 4vw, 44px); margin: 12px 0 10px; letter-spacing: -0.4px; }
.lead { color: var(--muted); font-size: 17px; max-width: 680px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.btn { padding: 13px 16px; border-radius: 14px; border: 1px solid transparent; font-weight: 600; cursor: pointer; transition: 150ms ease; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary { background: linear-gradient(135deg, #8ef3c5, #ffc45a); color: #0b1220; box-shadow: 0 12px 30px rgba(0,0,0,0.28); }
.btn-ghost { border: 1px solid var(--border); color: var(--text); background: var(--panel); }
.section { margin-top: 48px; }
.section h2 { font-family: 'Space Grotesk', 'Sora', sans-serif; margin: 0 0 12px; letter-spacing: -0.2px; }
.section p { margin: 0 0 12px; color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.card {
	padding: 18px; border-radius: 14px; background: var(--panel); border: 1px solid var(--border);
	min-height: 180px; box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: space-between;
}
.card h3 { margin: 4px 0 8px; }
.pill { display: inline-flex; padding: 6px 10px; border-radius: 10px; background: rgba(255,255,255,0.08); border: 1px solid var(--border); font-size: 12px; color: var(--muted); }
@keyframes neon-glow { 0%, 100% { box-shadow: 0 0 10px rgba(142,243,197,0.6), inset 0 0 10px rgba(142,243,197,0.1); } 50% { box-shadow: 0 0 20px rgba(142,243,197,0.9), inset 0 0 10px rgba(142,243,197,0.2); } }
.pill.best { background: rgba(142,243,197,0.25); border: 1px solid rgba(142,243,197,0.7); color: #8ef3c5; font-weight: 600; animation: neon-glow 2s ease-in-out infinite; }
.list { margin: 8px 0 0; padding-left: 18px; color: var(--muted); }
.list li { margin-bottom: 6px; }
.footer {
	margin-top: 56px; padding: 48px 20px; color: var(--text); border-top: 1px solid var(--border);
}
.footer-content {
	max-width: 1200px; margin: 0 auto;
	display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px;
}
.footer-section h4 { margin: 0 0 12px; font-family: 'Space Grotesk', 'Sora', sans-serif; font-size: 15px; font-weight: 600; }
.footer-section p, .footer-section a { margin: 0 0 8px; display: block; color: var(--muted); font-size: 14px; line-height: 1.6; }
.footer-section a { color: var(--accent); text-decoration: none; transition: 150ms; }
.footer-section a:hover { color: var(--accent-2); }
.footer-copyright { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border); text-align: center; color: var(--muted); font-size: 13px; }
.lang-switcher { display: flex; gap: 6px; align-items: center; }
.lang-btn { min-width: 36px; height: 32px; border: 1px solid var(--border); border-radius: 8px; background: var(--panel); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; transition: 200ms; opacity: 0.5; color: var(--text); }
.lang-btn:hover { background: rgba(255,255,255,0.08); opacity: 0.7; }
.lang-btn.active { opacity: 1; border-color: var(--accent); background: rgba(142,243,197,0.1); }
@media (max-width: 720px) { header { flex-direction: column; align-items: flex-start; } }
