:root {
  --bg: #0b1020;
  --panel: #131a2e;
  --panel-2: #0f1530;
  --text: #eef2ff;
  --muted: #b7c2e0;
  --line: rgba(255,255,255,0.10);
  --brand: #6ea8fe;
  --brand-2: #8b5cf6;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 20px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(110,168,254,0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(139,92,246,0.16), transparent 28%),
    linear-gradient(180deg, #07101f 0%, #0a1224 45%, #0b1020 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(7, 16, 31, 0.78);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  font-size: 18px;
}

nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

nav a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 12px;
  transition: 0.2s ease;
}

nav a:hover,
nav a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 34px rgba(110,168,254,0.28);
}
.btn-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.hero {
  padding: 76px 0 42px;
}

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

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(110,168,254,0.12);
  color: #cfe0ff;
  border: 1px solid rgba(110,168,254,0.18);
  font-size: 14px;
  margin-bottom: 18px;
}

h1, h2, h3 {
  margin: 0 0 14px;
  line-height: 1.08;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.1rem; }

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

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

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

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

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

.stat,
.feature,
.faq-item,
.contact-item,
.trouble-item,
.legal-block,
.timeline-step {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.kicker {
  color: #cfe0ff;
  font-weight: 700;
  margin-bottom: 8px;
}

.big {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.section {
  padding: 28px 0 54px;
}

.section-header {
  margin-bottom: 24px;
  max-width: 760px;
}

ul.clean {
  padding-left: 18px;
  margin: 10px 0 0;
  color: var(--muted);
}

ul.clean li { margin-bottom: 8px; line-height: 1.65; }

.callout {
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(110,168,254,0.14), rgba(139,92,246,0.12));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
}

.footer {
  padding: 30px 0 48px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 28px;
}

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

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

.label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.label.green { background: rgba(34,197,94,0.14); color: #b8f7cb; }
.label.amber { background: rgba(245,158,11,0.14); color: #f9db9b; }
.label.red { background: rgba(239,68,68,0.14); color: #ffc1c1; }

.page-hero {
  padding: 56px 0 18px;
}

.page-hero .card {
  padding: 30px;
}

.small { font-size: 14px; color: var(--muted); }

.timeline {
  display: grid;
  gap: 14px;
}

hr.sep {
  border: none;
  height: 1px;
  background: var(--line);
  margin: 22px 0;
}

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

  .nav-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  nav {
    justify-content: center;
  }
}
