/* ============================================
   GLOBE.CSS — 3D globe & hero section styles
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-globe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-globe.visible {
  opacity: 1;
}

#globe-canvas {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-name {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  min-height: 1.5em;
}

.hero-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero-socials a {
  color: var(--text-dim);
  font-size: 1.2rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hero-socials a:hover {
  color: var(--cyan);
  text-shadow: var(--cyan-glow);
}

.hero-scroll {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: bounce-down 2s ease-in-out infinite;
  cursor: pointer;
}

.hero-scroll:hover {
  color: var(--cyan);
}

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

/* Highlights strip */
.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(3, 7, 18, 0.8);
  position: relative;
  z-index: 2;
}

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

.highlight-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan);
}

.highlight-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .hero-highlights {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .highlight-item {
    flex: 0 0 45%;
  }
}
