:root {
  color-scheme: light;
  --navy: #0b1f3a;
  --navy-2: #12345c;
  --blue: #1d6fd6;
  --teal: #16a39a;
  --green: #16875f;
  --ink: #132238;
  --muted: #5f6f84;
  --line: #dbe4ef;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(11, 31, 58, 0.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;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 228, 239, 0.8);
  backdrop-filter: blur(14px);
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  font-size: 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}

.hero {
  padding: 72px 0 64px;
  background:
    radial-gradient(circle at top left, rgba(29, 111, 214, 0.12), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 6px 10px;
  border: 1px solid rgba(22, 163, 154, 0.24);
  border-radius: 999px;
  color: var(--green);
  background: rgba(22, 163, 154, 0.08);
  font-size: 14px;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 72px);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 4vw, 44px);
}

h3 {
  font-size: 21px;
}

.lead {
  margin: 22px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button-primary {
  color: var(--white);
  background: var(--navy);
}

.button-secondary {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.hero-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
}

.hero-image {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(219, 228, 239, 0.9);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding: 72px 0;
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.card p,
.content-card p,
.content-card li {
  color: var(--muted);
}

.trust-band {
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 64%, #0f6a74 100%);
}

.trust-band h2 {
  color: var(--white);
}

.trust-band p {
  max-width: 820px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.page-hero {
  padding: 64px 0 46px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(36px, 5vw, 56px);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.content {
  padding: 48px 0 72px;
}

.content-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.content-card + .content-card {
  margin-top: 18px;
}

.content-card h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.content-card h3 {
  margin-top: 22px;
}

.content-card ul,
.content-card ol {
  padding-left: 22px;
}

.content-card a {
  color: var(--blue);
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fbfdff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-grid,
  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 18px;
  }

  .section,
  .content {
    padding: 46px 0;
  }

  .content-card,
  .card,
  .trust-band {
    padding: 22px;
  }
}
