:root {
  --bg: #060b14;
  --surface: #0b1321;
  --surface-2: #0f1a2c;
  --line: #233654;
  --line-soft: #1b2e4a;
  --text: #e8eefb;
  --muted: #9ab0d4;
  --accent: #8fb2ff;
  --good: #31d9a1;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
}
a { color: #a7c0ff; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1240px, 92vw);
  margin: 0 auto;
}
.container.narrow { width: min(860px, 92vw); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(6, 11, 20, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #122038;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.01em;
}
.brand img { width: 30px; height: 30px; }
.brand span { font-size: 1.28rem; font-weight: 800; letter-spacing: 0.003em; }

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 16px;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: linear-gradient(180deg, #15325f 0%, #112848 100%);
  border-color: #335282;
  color: #f3f7ff;
}
.btn-primary:hover { border-color: #4a6c9f; }
.btn-outline {
  background: #0d1627;
  color: #dbe7ff;
}
.btn-outline:hover { border-color: #3a5783; }
.btn.full { width: 100%; }

.hero {
  padding: 84px 0 66px;
  border-bottom: 1px solid #122038;
  background: radial-gradient(1200px 640px at 75% -10%, #10274a 0%, transparent 58%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: start;
}
.eyebrow {
  margin: 0 0 12px;
  color: #89a6dd;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
}
h1 {
  margin: 0;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  max-width: 760px;
}
.hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.positioning {
  margin: 14px 0 0;
  color: #dfe8fb;
  font-size: 17px;
  font-weight: 700;
}
.disclaimer-small {
  color: #7f96bf;
  font-size: 12px;
  margin-top: 14px;
}

/* removed outer boxed wrapper look */
.kpi-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.kpi {
  background: #101b2f;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px 12px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.kpi-label {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #8ea8d4;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.kpi-label i.bi {
  font-size: 26px;
  line-height: 1;
  color: #9cb7e1;
  opacity: 0.95;
}
.kpi strong {
  display: block;
  margin-top: 20px;
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section {
  padding: 72px 0;
}
.section-alt {
  background: #081120;
  border-top: 1px solid #122038;
  border-bottom: 1px solid #122038;
}
.section-head {
  margin-bottom: 28px;
}
h2 {
  margin: 0;
  font-size: clamp(26px, 3.8vw, 38px);
  letter-spacing: -0.012em;
  line-height: 1.05;
}
.section-intro {
  margin-top: 16px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.42;
  max-width: 1200px;
}

.cards {
  display: grid;
  gap: 14px;
}
.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 24px 28px;
}
.card h3 {
  margin: 0 0 12px;
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.08;
}
.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 16px;
}
.card.emphasis {
  border-color: #35527e;
  background: linear-gradient(145deg, #101c31 0%, #0b1321 100%);
}

.card-icon {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  border: 1px solid #294264;
  background: linear-gradient(180deg, #121f34 0%, #0f1a2d 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.card-icon i.bi {
  color: #d3def3;
  font-size: 36px;
  line-height: 1;
}
.card-title {
  margin: 0 0 12px;
  line-height: 1.08;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.list-clean {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}
.list-clean li + li { margin-top: 8px; }

.legal-links {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  border-top: 1px solid #122038;
  padding: 24px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer p {
  margin: 0;
  color: #8ca5d2;
  font-size: 13px;
}

.legal-page {
  padding: 64px 0;
}
.legal-page h1 {
  font-size: clamp(28px, 4.2vw, 40px);
  margin-bottom: 18px;
}
.legal-page p {
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .hero-grid, .grid-2 { grid-template-columns: 1fr; }
  .cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cols-3 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .topbar-inner { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; gap: 10px; }
  .brand img { width: 28px; height: 28px; }
  .brand span { font-size: 1.16rem; }

  .hero { padding: 64px 0 52px; }
  h1 { font-size: 42px; }
  .lead { font-size: 16px; }

  .kpi strong { font-size: 18px; }

  .section { padding: 54px 0; }
  .section-head { margin-bottom: 20px; }
  h2 { font-size: 32px; }
  .section-intro { font-size: 16px; }

  .cols-4 { grid-template-columns: 1fr; }

  .card h3 { font-size: 22px; }
  .card p { font-size: 16px; }
  .card-icon { width: 56px; height: 56px; margin-bottom: 22px; }
  .card-icon i.bi { font-size: 28px; }
}
