/* ============================================================
   G-IA · hero.css
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* ---- Fondo ---- */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 15, 26, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 15, 26, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 40%, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 65% at 50% 40%, #000 40%, transparent 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero__orb--violet {
  width: 460px;
  height: 460px;
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.5), transparent 70%);
}
.hero__orb--cyan {
  width: 440px;
  height: 440px;
  bottom: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.42), transparent 70%);
}

/* ---- Contenido ---- */
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 60px;
}

.hero__title {
  margin-top: 26px;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  max-width: 14ch;
}
.hero__title .grad-text { display: inline-block; }

.hero__subtitle {
  margin-top: 22px;
  max-width: 56ch;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  color: var(--text2);
}

.hero__actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---- Stats ---- */
.hero__stats {
  margin-top: 56px;
  width: 100%;
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero__stat-num {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -1px;
}
.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 520px) {
  .hero__stats { grid-template-columns: 1fr; gap: 22px; }
  .hero__actions .btn { width: 100%; }
}
