/* ============================================================
   NORTH HORIZON PARTNERS — hero.css
   ============================================================ */

.section-hero {
  position: relative;
  padding-top: calc(var(--section-py) + var(--nav-h));
  padding-bottom: var(--section-py);
  overflow: hidden;
}

/* ── Floating gradient orbs ─────────────────────────────────── */
.section-hero::before {
  content: '';
  position: absolute;
  top: -160px;
  left: -80px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(200, 255, 0, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
  animation: float-orb-center 9s ease-in-out infinite;
}

.section-hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -60px;
  width: 480px;
  height: 480px;
  background: radial-gradient(ellipse at center,
    rgba(200, 255, 0, 0.04) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
  animation: float-orb-side 13s ease-in-out infinite;
}

/* ── Hero inner content ─────────────────────────────────────── */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-headline {
  line-height: var(--h1-line-height);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  padding-top: 0.25rem;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .section-hero::before {
    width: 400px;
    height: 400px;
  }

  .section-hero::after {
    display: none;
  }
}
