:root {
  --bg: #f6f8fc;
  --bg-strong: #0c1630;
  --text: #14213d;
  --muted: #4b5a78;
  --card: #ffffff;
  --line: #d8e0ef;
  --brand: #2563eb;
  --brand-dark: #1e40af;
  --accent: #ff8f5e;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(20, 35, 70, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 5% 0%, #e9f0ff 0%, transparent 35%),
    radial-gradient(circle at 98% 20%, #fff1e8 0%, transparent 32%),
    var(--bg);
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(65px);
  z-index: -1;
  pointer-events: none;
}

.orb-a {
  width: 280px;
  height: 280px;
  background: rgba(37, 99, 235, 0.26);
  top: 6%;
  right: -70px;
}

.orb-b {
  width: 240px;
  height: 240px;
  background: rgba(255, 143, 94, 0.25);
  bottom: 10%;
  left: -80px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(246, 248, 252, 0.82);
  border-bottom: 1px solid rgba(216, 224, 239, 0.75);
}

.nav-wrap {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--brand-dark);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.86rem 1.35rem;
  background: linear-gradient(135deg, var(--brand), #3b82f6);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 22px rgba(30, 64, 175, 0.28);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  font-size: 0.95rem;
  padding: 0.65rem 1rem;
}

.btn-outline {
  background: transparent;
  color: var(--brand-dark);
  border: 1px solid rgba(30, 64, 175, 0.35);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--brand-dark);
  border: 1px solid rgba(20, 33, 61, 0.2);
  box-shadow: none;
}

.btn-ghost.light {
  color: #eef3ff;
  border-color: rgba(238, 243, 255, 0.45);
}

.btn-block {
  width: 100%;
}

.hero {
  padding: 4.6rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-dark);
  margin-bottom: 0.9rem;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.22);
  padding: 0.3rem 0.58rem;
  border-radius: 999px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.04;
  max-width: 15.5ch;
}

.lead {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 54ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-trust {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-trust span {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.76rem;
  color: #263757;
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-card {
  background: linear-gradient(180deg, #ffffff, #f5f8ff);
  border: 1px solid #dbe5fb;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.card-kicker {
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.88rem;
}

.hero-card h3 {
  margin-top: 0.46rem;
  font-size: 1.5rem;
}

.hero-card ul {
  margin: 1rem 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.logos {
  padding: 1rem 0 2.7rem;
}

.logos-grid {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.95rem 1.15rem;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logos-grid p {
  color: #2c3f66;
  font-weight: 600;
  font-size: 0.95rem;
}

.logo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.logo-tags span {
  color: #24385f;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  font-size: 0.85rem;
}

.section {
  padding: 4.2rem 0;
}

.section.alt {
  background: linear-gradient(180deg, #f3f7ff, #fff5ef);
  border-top: 1px solid #e3e9f6;
  border-bottom: 1px solid #e3e9f6;
}

.section-head {
  max-width: 650px;
}

.section-head h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.5rem);
  margin-top: 0.25rem;
}

.feature-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem;
}

.feature-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.62;
}

.steps {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  background: #fff;
  border: 1px solid #dce4f3;
  border-radius: 14px;
  padding: 1.1rem;
}

.step span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #14213d;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.38rem;
}

.step p {
  color: var(--muted);
}

.faq-list {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.75rem;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

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

details p {
  margin-top: 0.7rem;
  color: var(--muted);
  line-height: 1.6;
}

.cta-section {
  padding-top: 2.4rem;
}

.cta-wrap {
  border-radius: 22px;
  padding: 2.4rem 1rem;
  text-align: center;
  color: #f3f6ff;
  background: linear-gradient(145deg, #101a35, #193a7a 65%, #2563eb);
  box-shadow: 0 22px 50px rgba(16, 26, 53, 0.35);
}

.cta-wrap h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.cta-wrap p {
  color: #dce6ff;
  max-width: 62ch;
  margin: 0.8rem auto 0;
  line-height: 1.62;
}

.cta-wrap .hero-cta {
  justify-content: center;
}

.site-footer {
  padding: 1.6rem 0 2rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4a5b7e;
  font-size: 0.93rem;
  border-top: 1px solid #dae2f0;
  padding-top: 1rem;
  gap: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a:hover {
  color: var(--brand-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

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

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .logos-grid {
    border-radius: 18px;
    justify-content: flex-start;
  }

  .logos-grid p {
    width: 100%;
  }

  .section {
    padding: 3.4rem 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: 92%;
  }

  .nav-wrap {
    height: 66px;
  }

  .btn-small {
    font-size: 0.88rem;
    padding: 0.55rem 0.85rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 9vw, 2.3rem);
  }

  .lead {
    font-size: 1rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-card {
    padding: 1.2rem;
  }

  .section {
    padding: 3rem 0;
  }

  .feature-card,
  .step,
  details {
    padding: 1rem;
  }

  .cta-wrap {
    padding: 2rem 0.95rem;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-top: 2.7rem;
  }

  .hero-trust span,
  .logo-tags span {
    font-size: 0.8rem;
  }

  .btn {
    padding: 0.8rem 1rem;
  }
}
