/* ══════════════════════════════════════════════════════════
   HERO SECTION
   assets/css/hero.css
══════════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 24px 60px;
  position: relative;
  overflow: hidden;
}

/* ── Ambient orbs ─────────────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}
.orb-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(123,47,255,.18) 0%, transparent 70%);
  top: -180px; left: -180px;
  animation: orbDrift1 14s ease-in-out infinite alternate;
}
.orb-2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(166,123,255,.13) 0%, transparent 70%);
  top: -100px; right: -140px;
  animation: orbDrift2 11s ease-in-out infinite alternate;
}
.orb-3 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(90,31,204,.11) 0%, transparent 70%);
  bottom: -80px; left: 50%;
  transform: translateX(-50%);
  animation: orbPulse 8s ease-in-out infinite;
}

/* ── Dot grid overlay ─────────────────────────────────── */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(123,47,255,.13) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

/* ── Aurora SVG ───────────────────────────────────────── */
.aurora-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.aurora-path {
  fill: none;
  stroke: url(#ag1);
  stroke-width: 1.5;
  opacity: .22;
  stroke-dasharray: 1200;
  animation: auroraFlow 7s ease-in-out infinite alternate;
}
.aurora-path-2 {
  fill: none;
  stroke: url(#ag2);
  stroke-width: 1;
  opacity: .13;
  stroke-dasharray: 900;
  animation: auroraFlow 10s ease-in-out infinite alternate-reverse;
}

/* ── Hero content ─────────────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

/* ── Badge ────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(123,47,255,.28);
  background: rgba(123,47,255,.06);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  animation: fadeUp .6s ease both;
}
.hero-badge::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(123,47,255,.12), transparent);
  transform: translateX(-100%);
  animation: badgeShimmer 4s ease-in-out infinite;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--iv-purple);
  animation: pulseDot 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-badge span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--iv-text-secondary);
  text-transform: uppercase;
}

/* ── Headline ─────────────────────────────────────────── */
.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--iv-text);
  margin-bottom: 22px;
  animation: fadeUp .75s .1s ease both;
  opacity: 0;
}
.hero-headline .accent {
  color: var(--iv-purple);
  text-shadow: 0 0 60px rgba(123,47,255,.3);
  position: relative;
  display: inline-block;
}
.hero-headline .accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--iv-purple), var(--iv-purple-light));
  border-radius: 2px;
  opacity: .5;
}

/* ── Sub ──────────────────────────────────────────────── */
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--iv-text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 36px;
  animation: fadeUp .75s .25s ease both;
  opacity: 0;
}

/* ── CTAs ─────────────────────────────────────────────── */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeUp .75s .4s ease both;
  opacity: 0;
}

/* ── Trust bar ────────────────────────────────────────── */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  animation: fadeUp .75s .55s ease both;
  opacity: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--iv-text-muted);
}
.trust-item svg {
  color: var(--iv-purple);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
  .hero               { padding: 70px 20px 40px; min-height: auto; }
  .hero-headline      { font-size: 38px; }
  .hero-sub           { font-size: 15px; }
  .hero-ctas          { flex-direction: column; align-items: stretch; }
  .hero-ctas a        { justify-content: center; }
  .hero-trust         { gap: 16px; }
}
