/* ══════════════════════════════════════════════════════════════════════════
   ASHBORN — Hero Section
   ══════════════════════════════════════════════════════════════════════════ */

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

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

/* Animated gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,48,255,0.2) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation: float 12s infinite ease-in-out;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,64,32,0.15) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  animation: float 15s infinite ease-in-out reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.hero-content.centered {
  display: block;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content.centered .hero-badge,
.hero-content.centered .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.hero-image-col {
  display: flex;
  justify-content: center;
  animation: fadeIn 1s ease backwards 0.2s;
}

.hero-text-col {
  text-align: left;
}

.hero-badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(184,48,255,0.1);
  border: 1px solid rgba(184,48,255,0.2);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease backwards;
}

.hero-logo {
  width: 100%;
  max-width: 450px;
  height: auto;
  filter: drop-shadow(0 0 50px rgba(184,48,255,0.4));
  animation: heroFloat 4s infinite ease-in-out;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeIn 1s ease backwards 0.4s;
}

.hero h1 .gradient-text {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6;
  animation: fadeIn 1s ease backwards 0.6s;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeIn 1s ease backwards 0.8s;
}

.hero-stats {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  margin-top: 48px;
  animation: fadeIn 1s ease backwards 1s;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}
