/* css/hero.css */
#hero {
  min-height: 100vh;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Glow orbs */
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
.hero-glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.18) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.hero-glow-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  bottom: 0; left: 5%;
  animation-duration: 8s;
  animation-direction: reverse;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.07); }
}

/* Content */
.hero-content { position: relative; z-index: 1; }

.hero-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.tag-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 9vw, 9rem);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 960px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.4s forwards;
}
.headline-stroke {
  display: block;
  background: linear-gradient(135deg, var(--purple-bright) 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  margin-top: 32px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.6s forwards;
}

.hero-actions {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.8s forwards;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 44px; left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.2s forwards;
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, var(--text-dim));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* Stats */
.hero-stats {
  position: absolute;
  bottom: 44px; right: 60px;
  display: flex;
  gap: 52px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1s forwards;
}
.stat-item { text-align: right; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 5px;
}
