:root {
  --bg: #0b1020;
  --bg-soft: #121933;
  --card: rgba(255,255,255,0.08);
  --line: rgba(255,255,255,0.12);
  --text: #f5f7ff;
  --muted: #b7c0e0;
  --brand: #6ea8fe;
  --brand-2: #7ef0c7;
  --accent: #8b5cf6;
  --shadow: 0 20px 40px rgba(0,0,0,0.25);
  --radius: 20px;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 20%, rgba(110,168,254,0.18), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(126,240,199,0.16), transparent 22%),
    linear-gradient(180deg, #0a1022 0%, #0b1020 55%, #0d1329 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(8, 12, 26, 0.75);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 16px 0;
}
.brand {
  display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: 0.2px;
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: grid; place-items: center; box-shadow: var(--shadow);
  font-size: 18px; font-weight: 800;
}
.nav { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); }
.nav a:hover { color: var(--text); }
.hero { padding: 72px 0 48px; }
.hero-grid {
  display: grid; grid-template-columns: 1.25fr 0.95fr; gap: 28px; align-items: center;
}
.eyebrow {
  display: inline-flex; gap: 8px; align-items: center;
  padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--brand-2); background: rgba(255,255,255,0.04); font-size: 14px;
}
.hero h1 {
  margin: 18px 0 12px; font-size: clamp(36px, 7vw, 62px); line-height: 1.02;
}
.hero p {
  color: var(--muted); font-size: 18px; line-height: 1.7; max-width: 720px;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 20px; border-radius: 14px; font-weight: 700; transition: 160ms ease;
  border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--accent)); box-shadow: var(--shadow); }
.btn-secondary { border-color: var(--line); background: rgba(255,255,255,0.03); color: var(--text); }
.btn:hover { transform: translateY(-1px); }
.hero-card, .card {
  border: 1px solid var(--line); background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: 22px; }
.stat-grid, .services, .benefits {
  display: grid; gap: 16px;
}
.stat-grid { grid-template-columns: repeat(2, 1fr); margin-top: 18px; }
.stat {
  padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,0.04);
}
.stat strong { display: block; font-size: 30px; margin-bottom: 6px; }
.section { padding: 24px 0 18px; }
.section-title { font-size: 32px; margin: 0 0 10px; }
.section-subtitle { color: var(--muted); line-height: 1.7; margin: 0 0 24px; }
.services { grid-template-columns: repeat(3, 1fr); }
.card { padding: 22px; }
.card h3 { margin: 0 0 10px; font-size: 20px; }
.card p, .card li { color: var(--muted); line-height: 1.7; }
.card ul { padding-left: 18px; margin: 12px 0 0; }
.benefits { grid-template-columns: repeat(2, 1fr); }
.cta-banner {
  margin: 30px 0 48px; padding: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
}
footer {
  border-top: 1px solid var(--line); margin-top: 30px;
  padding: 24px 0 40px; color: var(--muted);
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 10px; }
.legal-page { padding: 56px 0 72px; }
.legal-page .card { max-width: 900px; margin: 0 auto; }
.legal-page h1 { font-size: 42px; margin: 0 0 12px; }
.legal-page h2 { margin-top: 28px; }
.legal-page p, .legal-page li { color: var(--muted); line-height: 1.8; }
.small { font-size: 14px; color: var(--muted); }
.highlight { color: var(--brand-2); }
@media (max-width: 920px) {
  .hero-grid, .services, .benefits { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .topbar-inner { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: 44px; }
  .stat-grid { grid-template-columns: 1fr; }
}
