/* ----- Hero ----- */
.section-hero {
  padding: var(--space-section-top) 24px var(--space-section-bottom);
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px circle at 50% -8%, rgba(26, 115, 232, 0.12) 0%, rgba(26, 115, 232, 0) 62%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.section-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: min(120px, 22vw);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mv-blue), #10d164);
  opacity: 0.75;
}

.section-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-hero-kicker {
  margin: 0 0 10px;
  font-size: clamp(1.28rem, 3.6vw, 1.85rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.section-hero-title {
  margin: 0 0 clamp(30px, 3.6vw, 42px);
  font-size: clamp(2.05rem, 5.6vw, 3.1rem);
  font-weight: 800;
  line-height: 1.2;
  color: transparent;
  background: linear-gradient(90deg, #1a73e8 0%, #0f62d0 42%, #10d164 100%);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: 0.02em;
}

.section-hero-lead {
  margin: 0 0 clamp(28px, 3.2vw, 38px);
  color: var(--blue-heading);
}

.section-hero-lead p {
  margin: 0;
}

.section-hero-lead-highlight {
  font-size: clamp(1.24rem, 3.5vw, 1.72rem);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--blue-heading);
}

.section-hero-lead p + p {
  margin-top: 0.58em;
  font-size: clamp(1rem, 2.2vw, 1.16rem);
  font-weight: 700;
  line-height: 1.72;
  color: #2a67c5;
}

.section-hero-lead p.section-hero-lead-highlight + p {
  margin-top: 0.6em;
}

.section-hero-body {
  margin: 0;
  font-size: clamp(0.95rem, 1.45vw, 1.03rem);
  line-height: 2;
  color: #5a6778;
  text-align: left;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

@media (min-width: 600px) {
  .section-hero-body {
    text-align: center;
  }
}
