:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172033;
  background: #f5f7fb;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
}

a {
  color: #1f4ed8;
}

a:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.25);
  outline-offset: 3px;
  border-radius: 4px;
}

.page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 72px;
}

.brand {
  font-weight: 800;
  color: #172033;
  text-decoration: none;
}

.backLink {
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  max-width: 780px;
  margin-bottom: 64px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #53627c;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 7vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.lede,
.section p,
.section li {
  line-height: 1.75;
  color: #53627c;
}

.lede {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: 1.08rem;
}

.cta {
  display: inline-block;
  border-radius: 11px;
  padding: 13px 18px;
  font-weight: 800;
  color: #fff;
  background: #1f4ed8;
  text-decoration: none;
}

.cta:hover {
  background: #173fae;
}

.section {
  margin-top: 56px;
}

.section > p {
  max-width: 760px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.card {
  border: 1px solid #d9dfeb;
  border-radius: 16px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(31, 45, 77, 0.06);
}

.card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.steps {
  max-width: 760px;
  padding-left: 1.4rem;
}

.steps li + li {
  margin-top: 10px;
}

.note {
  border-left: 4px solid #cbd3e1;
  margin-top: 24px;
  padding: 2px 0 2px 18px;
}

.note p {
  margin-bottom: 0;
}

.faq details {
  border-top: 1px solid #d9dfeb;
  padding: 18px 0;
}

.faq details:last-child {
  border-bottom: 1px solid #d9dfeb;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq details p {
  margin: 12px 0 0;
}

.footer {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid #d9dfeb;
  font-size: 0.9rem;
  color: #69758a;
}

@media (max-width: 720px) {
  .page {
    padding-top: 32px;
  }

  .topbar {
    margin-bottom: 52px;
  }

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