:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f8fb;
  color: #05070d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(47, 105, 255, 0.14), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(150, 229, 255, 0.22), transparent 32%),
    #f6f8fb;
}

a {
  color: inherit;
}

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

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: clamp(28px, 6vw, 64px);
}

.brand,
.back-link,
.pill {
  border: 1px solid rgba(5, 7, 13, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 60px -42px rgba(5, 7, 13, 0.46);
}

.brand {
  padding: 12px 18px;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-decoration: none;
  color: #05070d;
}

.back-link {
  padding: 12px 16px;
  color: rgba(5, 7, 13, 0.72);
  font-weight: 800;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}

.eyebrow {
  color: #0e2ac5;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 18px 0 0;
  max-width: 820px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.lead {
  margin: 24px 0 0;
  max-width: 680px;
  color: rgba(5, 7, 13, 0.68);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-card,
.section-card,
.faq-item {
  border: 1px solid rgba(5, 7, 13, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    radial-gradient(circle at 16% 0%, rgba(47, 105, 255, 0.1), transparent 38%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 28px 90px -58px rgba(5, 7, 13, 0.56);
  backdrop-filter: blur(22px);
}

.hero-card {
  border-radius: 32px;
  padding: clamp(22px, 4vw, 36px);
}

.hero-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.hero-card ul,
.section-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.hero-card li,
.section-card li {
  margin: 0.55rem 0;
  color: rgba(5, 7, 13, 0.66);
  line-height: 1.45;
}

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

.cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  background: #05070d;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.ghost {
  background: rgba(255, 255, 255, 0.72);
  color: #05070d;
  border: 1px solid rgba(5, 7, 13, 0.1);
}

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

.section-card {
  border-radius: 28px;
  padding: clamp(22px, 3vw, 32px);
}

.section-card h2,
.faq h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  letter-spacing: -0.035em;
}

.section-card p,
.faq-item p {
  color: rgba(5, 7, 13, 0.66);
  line-height: 1.62;
}

.wide {
  grid-column: span 2;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  padding: 10px 14px;
  color: rgba(5, 7, 13, 0.68);
  font-size: 0.9rem;
  font-weight: 800;
}

.faq {
  margin-top: clamp(44px, 7vw, 84px);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.faq-item {
  border-radius: 22px;
  padding: 22px;
}

.faq-item h3 {
  margin: 0;
  font-size: 1.08rem;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(5, 7, 13, 0.1);
  color: rgba(5, 7, 13, 0.58);
  font-weight: 700;
}

@media (max-width: 860px) {
  .hero,
  .grid {
    grid-template-columns: 1fr;
  }

  .wide {
    grid-column: auto;
  }

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

  .brand,
  .back-link {
    width: max-content;
  }
}

@media (max-width: 520px) {
  .page {
    width: min(100% - 24px, 1120px);
    padding-top: 22px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.8rem);
  }

  .actions {
    display: grid;
  }

  .cta {
    width: 100%;
  }
}
