:root {
  --bg: #0b1220;
  --surface: #111a2d;
  --surface-2: #f5f7fb;
  --text: #0d1728;
  --muted: #667085;
  --white: #ffffff;
  --line: #dce2ea;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

* { 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: var(--white);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(11, 18, 32, .92);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  box-shadow: 0 8px 24px rgba(37,99,235,.3);
}
nav { display: flex; gap: 24px; }
nav a { color: #cbd5e1; font-size: .92rem; }
nav a:hover { color: white; }

.hero {
  color: white;
  background:
    radial-gradient(circle at 80% 15%, rgba(37,99,235,.22), transparent 32%),
    linear-gradient(180deg, #0b1220 0%, #10192c 100%);
  padding: 92px 0 84px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 72px;
}
.eyebrow {
  margin: 0 0 14px;
  color: #4f83ff;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.hero .eyebrow { color: #8eb0ff; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: .96;
  letter-spacing: -.055em;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
h3 { margin-bottom: 8px; font-size: 1.15rem; }
.lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: #c6cfdd;
  font-size: 1.14rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
}
.button.primary { background: var(--accent); color: white; }
.button.primary:hover { background: var(--accent-dark); }
.button.secondary { border-color: #34445f; color: #eef3fb; }
.button.secondary:hover { background: rgba(255,255,255,.05); }
.status-note { margin: 22px 0 0; color: #8f9bb0; font-size: .83rem; }

.flow-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.flow-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  column-gap: 14px;
}
.flow-step span {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #b9ccff;
  background: rgba(37,99,235,.16);
  font-size: .75rem;
  font-weight: 800;
}
.flow-step strong { font-size: .98rem; }
.flow-step small { color: #8f9bb0; }
.flow-line { height: 18px; margin-left: 20px; border-left: 1px solid #34445f; }

.section { padding: 88px 0; }
.section.alt { background: var(--surface-2); }
.cards {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 30px rgba(15,23,42,.05);
}
.card .number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 36px;
  place-items: center;
  border-radius: 10px;
  color: var(--accent);
  background: #eef4ff;
  font-weight: 800;
}
.card p, .prose p, .legal p, .contact p { color: var(--muted); }
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
}
.prose { font-size: 1.05rem; }
.prose p:last-child { margin-bottom: 0; }

.contact { padding-top: 30px; }
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 42px;
  border-radius: var(--radius);
  color: white;
  background: var(--bg);
  box-shadow: var(--shadow);
}
.contact-box h2 { margin-bottom: 8px; }
.contact-box p { color: #b7c1d1; }
.contact-meta { align-self: center; }
.contact-meta p:last-child { margin-bottom: 0; }

.legal { padding: 72px 0; }
.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.legal h2 { font-size: 1.2rem; letter-spacing: -.02em; }

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
}
.footer-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 820px) {
  nav { display: none; }
  .hero { padding-top: 64px; }
  .hero-grid, .split, .contact-box, .legal-grid { grid-template-columns: 1fr; gap: 36px; }
  .cards { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .shell { width: min(100% - 28px, 1120px); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .flow-card { padding: 20px; }
  .contact-box { padding: 28px; }
  .footer-inner { min-height: 96px; flex-direction: column; justify-content: center; gap: 4px; }
}
