:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  color: #111827;
}

body {
  margin: 0;
  min-height: 100%;
  background: #fff;
  color: #111827;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid #111827;
  outline-offset: 3px;
}

.page {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 42px 20px 64px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  font-size: 0.86rem;
}

.brand {
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #4b5563;
}

.nav-links a {
  text-decoration-color: #d1d5db;
  text-underline-offset: 4px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.35rem, 8vw, 4.65rem);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.45rem, 4.5vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 610px;
  margin-top: 24px;
  color: #4b5563;
  font-size: 1.04rem;
  line-height: 1.65;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  background: #111827;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  border: 1px solid #d1d5db;
  background: #fff;
  color: #111827;
}

.section {
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid #e5e7eb;
}

.steps,
.links {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 14px;
}

.number {
  color: #9ca3af;
  font-size: 0.78rem;
  font-weight: 760;
}

.muted {
  margin-top: 6px;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.58;
}

.faq {
  margin-top: 22px;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

details {
  padding: 18px 0;
}

details + details {
  border-top: 1px solid #e5e7eb;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

.links a {
  color: #111827;
  font-weight: 700;
  text-decoration-color: #d1d5db;
  text-underline-offset: 4px;
}

.fineprint {
  margin-top: 52px;
  color: #6b7280;
  font-size: 0.78rem;
  line-height: 1.55;
}

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

  .nav {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 38px;
  }
}
