/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 5% 5rem;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, var(--hero-glow-1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, var(--hero-glow-2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, var(--hero-glow-3) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hero-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  opacity: 0.6;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero-badge i {
  font-size: 0.85em;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 900;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 5rem;
  flex-wrap: wrap;
}

@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.js .hero-content > * {
  animation: heroEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.js .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.js .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.js .hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.js .hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.js .hero-content > *:nth-child(5) { animation-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .js .hero-content > * {
    animation: none;
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: "Outfit", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
