/* ===== HERO SECTION ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(3,8,15,0.05) 0%,
    rgba(3,8,15,0.6) 40%,
    rgba(3,8,15,0.9) 65%,
    rgba(3,8,15,1) 100%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--teal);
  border-radius: 100px;
  background: rgba(0,153,153,0.08);
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeSlideDown 0.8s ease both;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeSlideDown 0.8s 0.1s ease both;
}
.hero-title .line-teal {
  display: block;
  background: linear-gradient(135deg, var(--teal) 0%, #00cccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .line-gold {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, #e8c460 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.6em;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-sub {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeSlideDown 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideDown 0.8s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  animation: fadeSlideDown 0.8s 0.4s ease both;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.hero-stat .lbl { font-size: 0.75rem; color: var(--gray); margin-top: 2px; }
.hero-stat-divider { width: 1px; background: var(--glass-border); }

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gray);
  font-size: 0.72rem;
  animation: fadeSlideDown 1s 0.8s ease both;
  z-index: 2;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--gray-dim);
  border-radius: 11px;
  position: relative;
}
.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--teal);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-anim 1.8s infinite;
}
@keyframes scroll-anim {
  0%   { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}
