:root {
  color-scheme: light;
  --blue: #1030b0;
  --blue-deep: #101030;
  --teal: #0f948b;
  --ink: #12172f;
  --muted: #58677e;
  --bg: #ffffff;
  --paper: #ffffff;
  --soft: #f4f8fd;
  --line: #dfe8f3;
  --shadow: 0 18px 46px rgba(18, 32, 78, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.utility {
  background: var(--blue-deep);
  color: #ffffff;
  font-size: 13px;
}

.utility .container,
.nav-inner,
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility .container {
  min-height: 38px;
}

.utility-left,
.utility-right,
.menu,
.hero-actions,
.source-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.utility-pill {
  color: #dce7ff;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.nav-inner {
  min-height: 78px;
}

.site-logo-img {
  display: block;
  width: 230px;
  max-width: 38vw;
  height: auto;
}

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

.menu a {
  padding: 10px 0;
  text-decoration: none;
}

.menu a:hover,
.menu a.active {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 16px;
  background: transparent;
  color: var(--ink);
  font-weight: 820;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #2038c7);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 48, 176, 0.23);
}

.btn-outline {
  border-color: rgba(16, 48, 176, 0.32);
  background: var(--paper);
  color: var(--blue);
}

.subhero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(16, 48, 176, 0.1), transparent 45%),
    linear-gradient(180deg, var(--soft), #ffffff);
}

.subhero-inner {
  min-height: 380px;
  padding: 68px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 42px;
  align-items: center;
}

.kicker {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--blue-deep);
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
}

.lead {
  max-width: 800px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.hero-actions {
  margin-top: 28px;
}

.hero-facts {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 22px;
}

.hero-facts strong {
  color: var(--blue-deep);
  font-size: 18px;
}

.hero-fact {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--soft);
}

.section-head {
  max-width: 820px;
  margin-bottom: 26px;
}

.section h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.12;
}

.section-head p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 22px;
}

.card small {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card strong {
  display: block;
  color: var(--blue-deep);
  font-size: 18px;
  line-height: 1.25;
}

.card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.process-step {
  border-left: 3px solid var(--blue);
  background: var(--paper);
  padding: 18px;
}

.process-step strong {
  display: block;
  color: var(--blue-deep);
  margin-bottom: 7px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.source-links {
  margin-top: 18px;
}

.source-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--blue);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), #2038c7);
  color: #ffffff;
  padding: 30px;
  box-shadow: var(--shadow);
}

.cta-panel strong {
  display: block;
  font-size: 25px;
  line-height: 1.2;
}

.cta-panel p {
  margin: 8px 0 0;
  color: #dce7ff;
  line-height: 1.6;
}

.cta-panel .btn {
  background: #ffffff;
  color: var(--blue);
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
  padding: 30px 0;
  font-size: 13px;
}

.footer .legal {
  margin-top: 12px;
}

.footer strong {
  color: var(--blue-deep);
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  color: var(--blue);
}

@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .subhero-inner,
  .card-grid,
  .process,
  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .utility .container,
  .footer .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }

  .nav-inner {
    min-height: auto;
    padding: 12px 0;
  }

  .site-logo-img {
    width: 190px;
    max-width: 48vw;
  }

  .subhero-inner,
  .section {
    padding: 52px 0;
  }

  h1 {
    font-size: clamp(36px, 11vw, 54px);
  }
}
