* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
}

.nav {
  border-bottom: 1px solid #e2e8f0;
  background: #ffffff;
}

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

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  font-size: 26px;
  font-weight: 800;
  text-decoration: none;
  color: #2563eb;
}

.nav-link {
  font-weight: 700;
  text-decoration: none;
  color: #334155;
}

.hero {
  padding: 88px 0 64px;
  background: linear-gradient(135deg, #020617 0%, #172554 55%, #312e81 100%);
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 16px;
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p.lead {
  max-width: 780px;
  margin: 28px 0 0;
  color: #dbeafe;
  font-size: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: #2563eb;
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  color: #0f172a;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: #f8fafc;
}

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

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

p {
  margin: 0;
  color: #475569;
}

.card {
  min-width: 0;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 26px;
  background: #ffffff;
}

.card p,
.checklist li,
.faq p {
  color: #475569;
}

.checklist {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
}

.checklist li {
  list-style: none;
  padding-left: 28px;
  position: relative;
}

.checklist li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2563eb;
  position: absolute;
  left: 0;
  top: 9px;
}

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

.footer {
  padding: 36px 0;
  background: #020617;
  color: #ffffff;
}

.footer p {
  color: #94a3b8;
}

@media (max-width: 800px) {
  .nav-inner,
  .two-col {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero,
  .section {
    padding: 56px 0;
  }
}
