.hero {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(140, 198, 224, 0.28);
  overflow: hidden;
  padding: 2.28rem 2.1rem;
  background:
    radial-gradient(980px 560px at 8% -12%, rgba(29, 157, 198, 0.2), transparent 62%),
    radial-gradient(900px 560px at 96% -8%, rgba(14, 108, 142, 0.18), transparent 66%),
    linear-gradient(162deg, rgba(255, 255, 255, 0.97), rgba(245, 251, 255, 0.92));
  box-shadow: var(--shadow-soft);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-gfx {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block;
  pointer-events: none;
  z-index: 0;
  opacity: 0.96;
}

.hero h1 {
  color: var(--text-strong);
}

.hero .lead {
  margin-top: 0.28rem;
  max-width: 78ch;
  color: rgba(20, 69, 97, 0.92);
  font-size: 1.03rem;
}

.hero .cta-row {
  margin-top: 1.14rem;
}

@media (max-width: 720px) {
  .hero {
    padding: 1.9rem 1.12rem;
  }

  .hero .lead {
    font-size: 0.98rem;
  }
}
