* {
  box-sizing: border-box;
}

html {
  font-family: Arial, Helvetica, sans-serif;
  color: #0f172a;
  background: #f8fafc;
}

body {
  margin: 0;
}

a {
  color: #2563eb;
}

.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 28%),
    linear-gradient(180deg, #eff6ff 0%, #f8fafc 32%, #ffffff 100%);
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #2563eb;
  color: #ffffff;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.hero {
  padding: 40px;
  border-radius: 32px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.18);
}

.eyebrow {
  margin: 0 0 12px;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(40px, 7vw, 64px);
  line-height: 1.02;
}

.hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #dbeafe;
  font-size: 20px;
  line-height: 1.7;
}

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

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

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

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.grid {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

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

.card {
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.card h2,
.card h3 {
  margin-top: 0;
}

.list {
  padding-left: 20px;
  line-height: 1.8;
}

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

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li {
  position: relative;
  padding-left: 56px;
  min-height: 36px;
}

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

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 24px 28px;
  border-radius: 24px;
  background: #0f172a;
  color: #ffffff;
}

.cta-strip p {
  margin: 0;
  color: #cbd5e1;
}

.faq-item + .faq-item {
  margin-top: 18px;
}

.faq-item h3 {
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  font-size: 14px;
}

@media (max-width: 820px) {
  .page-wrap {
    width: min(100% - 24px, 1080px);
  }

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

  .hero,
  .card {
    padding: 24px;
  }

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