/* ─────────────────────────────────────────
   hero.css — Hero / landing section
───────────────────────────────────────── */

#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* ── Background grid ── */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 100%);
}

/* ── Glowing orbs ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79,142,255,0.22) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: floatOrb 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  animation: floatOrb 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(6,214,160,0.14) 0%, transparent 70%);
  top: 50%; right: 15%;
  animation: floatOrb 12s ease-in-out infinite 2s;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* ── Hero content ── */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

/* ── Live badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent3);
  border: 1px solid rgba(6,214,160,0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 2rem;
  background: rgba(6,214,160,0.06);
  letter-spacing: 1px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 7px; height: 7px;
  background: var(--accent3);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(0.7); }
}

/* ── Title ── */
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.15s both;
}
.hero-title .grad {
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subtitle ── */
.hero-sub {
  font-size: 1.1rem;
  color: var(--text2);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  animation: fadeUp 0.8s ease 0.3s both;
}

/* ── CTA row ── */
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.45s both;
}

/* ── Stats strip ── */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 5rem;
  animation: fadeUp 0.8s ease 0.6s both;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
}
.hero-stat .lbl {
  font-size: 0.78rem;
  color: var(--text2);
  letter-spacing: 0.5px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
