
/* ==============================
   HERO
============================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 24px;
}

/* Subtle grid bg */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* Purple glow orbs */
.hero-grid-bg::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 30%;
  width: 400px;
  height: 400px;
  background: rgba(124, 58, 237, 0.06);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-grid-bg::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 25%;
  width: 300px;
  height: 300px;
  background: rgba(167, 139, 250, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--purple-border);
  border-radius: 100px;
  padding: 6px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 28px;
  background: rgba(124, 58, 237, 0.06);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

#hero h1 {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -2px;
}

.typing-wrapper {
  font-family: var(--font-mono);
  font-size: clamp(16px, 3vw, 22px);
  color: var(--text-secondary);
  margin-bottom: 24px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.cursor {
  color: var(--purple-light);
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-desc {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats row in hero */
.hero-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--lavender);
}

.hero-stat p {
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}