/* VibeTheWorld — Hero / Globe Styles */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
}

.hero-overlay > * {
  pointer-events: auto;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 4px;
  margin-bottom: 12px;
  text-shadow: 0 0 40px var(--green-glow);
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: var(--green);
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 1;
}

.hero-stats .grid-4 {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.hero-stat .stat-value {
  font-size: 1.6rem;
}

/* Scanline overlay on hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  z-index: 2;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
  color: var(--text-dim);
  font-size: 0.75rem;
  text-align: center;
}

.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 24px;
  background: var(--text-dim);
  margin: 8px auto 0;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 768px) {
  .hero { min-height: 500px; }
  .hero-stats { bottom: 24px; }
  .hero-stat .stat-value { font-size: 1.2rem; }
  .scroll-hint { display: none; }
}
