/* ============================================================
   hero.css — Full-Screen Hero Section
============================================================ */

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(5,8,16,0.2) 0%, rgba(5,8,16,0.65) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--space-5);
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-xs);
  color: var(--solar-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  opacity: 0;
  animation: fadeSlideUp 1s 0.5s var(--ease-silk) forwards;
}
.hero-badge::before,
.hero-badge::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--solar-gold);
}

/* Name */
.hero-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(var(--text-xl), 7vw, var(--text-3xl));
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--stellar-white);
  opacity: 0;
  animation: fadeSlideUp 1s 0.8s var(--ease-silk) forwards;
}
.hero-name .highlight {
  background: linear-gradient(135deg, var(--solar-gold) 0%, var(--gold-bright) 50%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

/* Titles row */
.hero-titles {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
  opacity: 0;
  animation: fadeSlideUp 1s 1.1s var(--ease-silk) forwards;
}
.hero-title-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(var(--text-xs), 1.5vw, var(--text-sm));
  color: var(--cool-grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-title-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--solar-gold);
  opacity: 0.6;
}

/* Tagline */
.hero-tagline {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(var(--text-md), 2.2vw, var(--text-lg));
  font-style: italic;
  font-weight: 300;
  color: rgba(232,238,248,0.7);
  margin: var(--space-5) auto 0;
  line-height: 1.618;
  max-width: 620px;
  opacity: 0;
  animation: fadeSlideUp 1s 1.4s var(--ease-silk) forwards;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-6);
  opacity: 0;
  animation: fadeSlideUp 1s 1.7s var(--ease-silk) forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-5);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  opacity: 0;
  animation: fadeIn 1s 2.5s forwards;
}
.scroll-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-xs);
  color: var(--cool-grey);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--solar-gold), transparent);
  animation: scrollPulse 2s infinite;
}

@media (max-width: 768px) {
  .hero-buttons { flex-direction: column; align-items: center; }
}
