:root {
  color-scheme: light;
  --bg: #f6f9fc;
  --surface: #ffffff;
  --surface-2: #eef6fc;
  --text: #12202f;
  --muted: #5d6f80;
  --line: #d8e5ef;
  --brand: #00519e;
  --brand-2: #0ea5e9;
  --brand-soft: rgba(0, 81, 158, .1);
  --shadow: 0 18px 45px rgba(0, 81, 158, .14);
}
* { 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;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 34%, #ffffff 100%);
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--brand); }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 81, 158, .08);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}
.brand img {
  width: clamp(260px, 30vw, 380px);
  max-width: 100%;
  height: auto;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 18px; font-size: .95rem; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 650; }
.nav-links a:hover { color: var(--brand); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 40px;
  align-items: center;
  padding: 76px 0 48px;
}
.kicker {
  color: var(--brand);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
  font-weight: 800;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 14px; letter-spacing: 0; }
h1 { font-size: clamp(2.15rem, 4.2vw, 4rem); max-width: 780px; overflow-wrap: normal; hyphens: manual; }
h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); margin-top: 0; }
h2[id] { scroll-margin-top: 132px; }
h3 { font-size: 1.1rem; }
p { margin: 0 0 16px; }
.lead { color: var(--muted); font-size: 1.15rem; max-width: 760px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(0, 81, 158, .22);
  white-space: nowrap;
  flex: 0 0 auto;
}
.hero > div { min-width: 0; }
.button.secondary {
  background: #ffffff;
  color: var(--brand);
  border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--line));
  box-shadow: none;
}
.fact-box {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.fact-box dl { margin: 0; display: grid; gap: 12px; }
.fact-box dt { color: var(--muted); font-size: .8rem; text-transform: uppercase; }
.fact-box dd { margin: 2px 0 0; font-weight: 700; }
section { padding: 44px 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card, .quote {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(0, 81, 158, .09);
}
.card p, .quote p { color: var(--muted); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; min-width: 620px; background: var(--surface); }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--text); width: 28%; background: var(--surface-2); }
td { color: var(--muted); }
.faq { display: grid; gap: 14px; }
.faq article { border: 1px solid var(--line); border-radius: 8px; padding: 18px; background: var(--surface); box-shadow: 0 12px 28px rgba(0, 81, 158, .08); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote strong { color: var(--brand); }
.cta-band {
  margin: 44px 0;
  border: 1px solid color-mix(in srgb, var(--brand) 20%, var(--line));
  background: linear-gradient(135deg, rgba(0, 81, 158, .1), rgba(14, 165, 233, .16));
  border-radius: 8px;
  padding: clamp(24px, 5vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}
.roadmap-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 650;
}
footer { border-top: 1px solid var(--line); padding: 28px 0; color: var(--muted); background: #ffffff; }
footer .wrap { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
footer a { color: var(--muted); margin-right: 14px; }
@media (max-width: 900px) {
  .hero, .grid, .quotes, .cta-band { grid-template-columns: 1fr; display: grid; }
  .nav { align-items: flex-start; flex-direction: column; min-height: 0; padding: 16px 0; }
  .brand img { width: min(72vw, 320px); }
  .nav-links { flex-wrap: wrap; gap: 12px; }
  h1 { max-width: 100%; }
}
@media (max-width: 420px) {
  .brand img { width: min(78vw, 280px); }
  .nav-links { font-size: .9rem; }
  .button { font-size: .9rem; padding: 0 14px; }
}
