:root {
  --bg: #0b1220;
  --surface: #111a2b;
  --surface-soft: #f5f7fb;
  --text: #0f172a;
  --text-light: #e5ecf7;
  --muted: #5c6b82;
  --line: #d8dfeb;
  --accent: #2f6fed;
  --accent-dark: #194bb3;
  --max: 1120px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.site-header {
  background: var(--bg);
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
}
.brand { font-size: 1.4rem; font-weight: 800; }
.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #93a7cc;
  margin-bottom: 4px;
}
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
.nav-links a { color: #dbe6fb; }

.hero {
  background: linear-gradient(180deg, var(--bg) 0%, #13203a 100%);
  color: var(--text-light);
  padding: 72px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 14px;
}
.lead {
  font-size: 1.05rem;
  color: #d7e3fa;
  max-width: 700px;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.status-note { margin-top: 14px; color: #aac0e8; font-size: 0.95rem; }

.section { padding: 64px 0; }
.section.muted { background: var(--surface-soft); }
.section-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.05);
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
  box-shadow: none;
}
.feature-list { padding-left: 18px; }
.feature-list.compact li { margin-bottom: 10px; }
.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { border: 1px solid rgba(255,255,255,0.24); color: white; }

.site-footer {
  background: #0f172a;
  color: #d7dff0;
  padding: 26px 0;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }

.legal-page {
  background: var(--surface-soft);
}
.legal-shell {
  max-width: 880px;
  margin: 0 auto;
  padding: 32px 16px 64px;
}
.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.legal-card h1 { margin-top: 0; }
.legal-card h2 { margin-top: 28px; }
.back-link {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-weight: 700;
}

@media (max-width: 820px) {
  .hero-grid, .two-col, .feature-grid, .cta-panel, .footer-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }
  .nav { flex-direction: column; align-items: flex-start; }
}
