body {
  margin: 0;
  background: #f8fafc;
  color: #172033;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 20px;
}

.logo {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #111827;
  color: #fff;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  padding: 72px 0 56px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}

.eyebrow {
  color: #5b21b6;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  max-width: 880px;
  margin: 14px 0 18px;
  color: #0f172a;
  font-size: clamp(40px, 6vw, 72px);
  line-height: .98;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  color: #475569;
  font-size: 20px;
  line-height: 1.55;
}

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

.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  color: #334155;
  padding: 11px 17px;
  font-weight: 800;
  text-decoration: none;
}

section {
  padding: 56px 0;
}

h2 {
  margin: 0 0 16px;
  color: #0f172a;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 18px;
}

p {
  color: #475569;
  line-height: 1.65;
}

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

.card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.band {
  background: #eef2ff;
  border-block: 1px solid #dbe3ff;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.links a {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  color: #334155;
  padding: 10px 14px;
  font-weight: 700;
  text-decoration: none;
}

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

.faq summary {
  cursor: pointer;
  color: #0f172a;
  font-weight: 800;
}

footer {
  border-top: 1px solid #e2e8f0;
  background: #fff;
  padding: 32px 0;
  color: #64748b;
  font-size: 14px;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 44px;
  }

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