/* ==========================================================================
   03-HERO
   ========================================================================== */

.hero {
  padding-block: var(--space-2xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 143, 214, 0.14), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
}

.hero__title {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.hero__title-accent {
  color: var(--primary-color);
}

.hero__subtitle {
  font-size: var(--fs-md);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero__stack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
