body.home .hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 80px 24px 84px;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(120% 95% at -6% -14%, rgba(45, 90, 142, 0.34) 0%, rgba(45, 90, 142, 0.1) 30%, rgba(45, 90, 142, 0) 63%),
    radial-gradient(100% 78% at 108% 10%, rgba(42, 110, 63, 0.28) 0%, rgba(42, 110, 63, 0.08) 34%, rgba(42, 110, 63, 0) 66%),
    linear-gradient(135deg, #edf3fb 0%, #f7f6f2 48%, #edf5ef 100%);
}

body.home .hero .hero-inner {
  width: min(100%, 660px);
  margin-inline: auto;
}

body.home .hero::before,
body.home .hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

body.home .hero::before {
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(26, 26, 26, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(26, 26, 26, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.16;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 72%, rgba(0, 0, 0, 0) 100%);
}

body.home .hero::after {
  inset: -20% -12% auto -12%;
  height: 72%;
  background:
    radial-gradient(70% 100% at 16% 18%, rgba(45, 90, 142, 0.22) 0%, rgba(45, 90, 142, 0.05) 34%, rgba(45, 90, 142, 0) 62%),
    radial-gradient(62% 90% at 84% 22%, rgba(111, 99, 255, 0.17) 0%, rgba(111, 99, 255, 0.04) 36%, rgba(111, 99, 255, 0) 68%);
  filter: blur(8px);
  opacity: 0.76;
  animation: hero-ambient-shift 16s ease-in-out infinite alternate;
}

body.home .hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-serif);
  font-size: var(--text-hero);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

body.home .hero h1 em {
  font-style: italic;
}

body.home .hero-sub {
  max-width: 500px;
  margin: 0 auto 34px;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

body.home .hero .form-status {
  text-align: center;
}

body.home .hero .social-proof-text {
  margin: 0;
  font-size: 13px;
  color: var(--color-text-secondary);
}

body.home .hero .social-proof-text strong {
  font-weight: 600;
  color: var(--color-text-primary);
}

@keyframes hero-ambient-shift {
  0%,
  100% {
    opacity: 0.72;
    transform: translate3d(-1.6%, 0, 0) scale(1);
  }

  50% {
    opacity: 0.92;
    transform: translate3d(1.2%, 3%, 0) scale(1.04);
  }
}

@media (max-width: 640px) {
  body.home .hero::before {
    background-size: 46px 46px;
    opacity: 0.12;
  }

  body.home .hero::after {
    inset: -24% -16% auto -16%;
    height: 78%;
    filter: blur(6px);
    opacity: 0.7;
  }
}

.lanes-section {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: var(--space-18) 24px;
}

.inside-section {
  padding: var(--space-18) 24px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-deep);
}

.testimonials-section {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--space-18) 24px;
}
