:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #17202b;
  background: #f9fafc;
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: #315c80;
  text-underline-offset: 0.2em;
}
a:focus-visible {
  outline: 3px solid #658dab;
  outline-offset: 5px;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  padding: 1rem;
  background: white;
  z-index: 3;
}
.skip-link:focus {
  top: 1rem;
}
.site-nav,
footer {
  max-width: 75rem;
  margin: auto;
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #17202b;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.nav-link {
  color: #344456;
  text-decoration: none;
  font-size: 0.9375rem;
}
main {
  max-width: 47rem;
  margin: auto;
  padding: 0 1.5rem 4rem;
}
.intro {
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid #dfe5ed;
}
.eyebrow,
.step {
  font-size: 0.875rem;
  font-weight: 500;
  color: #52677c;
}
h1 {
  font-size: clamp(2.7rem, 6vw, 4.25rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 580;
  margin: 1.35rem 0 1.6rem;
}
h1 span {
  color: #6b7f94;
}
.lead {
  font-size: 1.25rem;
  line-height: 1.65;
  color: #47596c;
  max-width: 36rem;
}
.byline {
  font-size: 0.875rem;
  color: #5b6c7e;
  margin: 1.8rem 0;
}
.download {
  display: inline-flex;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.35rem;
  border-radius: 1.3rem;
  background: #ffffffc9;
  border: 1px solid #fff;
  box-shadow:
    0 5px 25px #20334b08,
    0 0 0 1px #20334b0d;
  font-weight: 500;
  text-decoration: none;
}
.download-note {
  font-size: 0.875rem;
  color: #5b6c7e;
}
section {
  padding: 2rem 0 0;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0.6rem 0 1.1rem;
}
p,
li,
dd {
  font-size: 1.0625rem;
  line-height: 1.8;
}
section p,
li,
dd {
  color: #445466;
}
.example {
  margin: 1.75rem 0;
  padding: 1.5rem;
  border: 1px solid #dee5ed;
  border-radius: 1.4rem;
  background: linear-gradient(145deg, #fff, #eef3f8);
}
.example-label {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: #52677c;
}
dl {
  margin: 0;
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem 1.25rem;
}
dt {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 600;
}
dd {
  margin: 0;
}
.fields {
  padding-left: 1.4rem;
}
.fields li {
  padding-left: 0.3rem;
  margin: 0.8rem 0;
}
strong {
  color: #253649;
  font-weight: 600;
}
blockquote {
  margin: 1.75rem 0;
  padding: 0.1rem 0 0.1rem 1.4rem;
  border-left: 3px solid #859bb1;
  color: #344b62;
  font-size: 1.0625rem;
  line-height: 1.85;
}
.cta {
  margin-top: 3.5rem;
  padding: 2rem;
  border: 1px solid #e0e7ef;
  background: #f0f4f9;
  border-radius: 1.8rem;
}
.cta p {
  color: #47596c;
}
.primary {
  display: inline-flex;
  gap: 1.5rem;
  align-items: center;
  background: #263f56;
  color: #fff;
  padding: 1rem 1.3rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 500;
}
.example-link {
  display: block;
  margin-top: 1.25rem;
}
.offer-note {
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 1.5rem 0 0;
}
footer {
  border-top: 1px solid #e2e7ee;
  font-size: 0.9375rem;
}
footer a {
  color: #52677c;
}
@media (max-width: 36rem) {
  .site-nav,
  footer {
    padding: 1.5rem;
  }
  .intro {
    padding-top: 2.25rem;
  }
  .lead {
    font-size: 1.125rem;
  }
  dl {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  dd {
    margin-bottom: 0.8rem;
  }
  .cta {
    padding: 1.5rem;
  }
}
@media print {
  .site-nav,
  footer,
  .download,
  .download-note,
  .skip-link,
  .cta {
    display: none;
  }
  :root {
    color: #000;
    background: #fff;
  }
  main {
    max-width: none;
    padding: 0;
  }
  .intro {
    padding-top: 0;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    break-after: avoid;
  }
  .example,
  blockquote {
    break-inside: avoid;
  }
}
