/*
   HERO
*/

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

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: var(--max-width);
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neon-dim);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: var(--neon);
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-name {
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 16px;
  letter-spacing: -1px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-name .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--neon);
}

.hero-name .solid {
  color: var(--text-primary);
}

.hero-role {
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--cyan);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-role .prompt {
  color: var(--text-muted);
  margin-right: 8px;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--neon);
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 44px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.btn-primary {
  background: var(--neon);
  color: var(--bg-primary);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-mono);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 1px solid var(--neon);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: transparent;
  color: var(--neon);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  font-size: 14px;
  font-family: var(--font-mono);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  border: 1px solid var(--border-card);
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--neon), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

.hero-tech {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-tech span {
  font-size: 12px;
  color: var(--text-muted);
  padding: 4px 10px;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.hero-tech span:hover {
  color: var(--neon);
  border-color: var(--border);
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 24px 80px;
    text-align: center;
  }
  .hero-desc { margin: 0 auto 44px; }
  .hero-actions { justify-content: center; }
  .hero-tech { justify-content: center; }
}
