:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #dce5ec;
  --surface: #ffffff;
  --soft: #f2f8fc;
  --blue: #087ff5;
  --blue-dark: #0061c9;
  --cyan: #00a8c6;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(8, 127, 245, 0.38);
  outline-offset: 4px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--max));
  min-height: 76px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--blue-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 72px;
  min-height: 760px;
  padding: 88px max(24px, calc((100% - var(--max)) / 2));
  overflow: hidden;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
}

.lede {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 750;
}

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

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  background: white;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.trust-list li::before {
  margin-right: 7px;
  color: var(--cyan);
  content: "✓";
  font-weight: 900;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-self: end;
}

.hero-visual img {
  display: block;
  width: min(100%, 410px);
  max-height: 690px;
  object-fit: cover;
  object-position: top;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 26px 55px rgba(25, 72, 108, 0.18);
}

.feature-band,
.faq-section {
  padding: 96px max(24px, calc((100% - var(--max)) / 2));
}

.section-heading {
  max-width: 650px;
  margin-bottom: 42px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-grid article {
  min-height: 270px;
  padding: 32px;
  background: white;
}

.feature-grid p,
.faq-list p,
.policy p {
  color: var(--muted);
}

.feature-number {
  display: block;
  margin-bottom: 48px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.document-main {
  min-height: 70vh;
}

.document-hero {
  padding: 96px max(24px, calc((100% - var(--max)) / 2));
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.document-hero h1 {
  margin-bottom: 20px;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(calc(100% - 48px), var(--max));
  margin: 48px auto 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-strip div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  padding: 24px;
  background: white;
}

.contact-strip span {
  color: var(--muted);
  font-size: 13px;
}

.contact-strip a {
  overflow-wrap: anywhere;
  color: var(--blue-dark);
  font-weight: 700;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.faq-list article {
  padding: 28px;
  background: white;
}

.policy {
  width: min(calc(100% - 48px), 860px);
  margin: 0 auto;
  padding: 72px 0 96px;
}

.policy section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.policy h2 {
  font-size: 24px;
}

.policy a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 48px;
  padding: 48px max(24px, calc((100% - var(--max)) / 2));
  color: var(--muted);
  background: #0e1724;
  font-size: 13px;
}

footer strong {
  color: white;
}

footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: white;
}

footer > p {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .brand span:last-child {
    display: none;
  }

  nav {
    gap: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-top: 64px;
  }

  .hero-visual {
    align-self: auto;
  }

  .hero-visual img {
    max-height: 560px;
  }

  .feature-grid,
  .contact-strip,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: auto;
  }

  .feature-number {
    margin-bottom: 24px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 42px;
  }

  .lede {
    font-size: 17px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer > p {
    grid-column: auto;
  }
}
