/* ─── HERO SECTION ───────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

/* Background orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,0,255,0.18) 0%, transparent 70%);
  top: -100px; left: -150px;
  animation: gradientShift 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,102,255,0.14) 0%, transparent 70%);
  bottom: -80px; right: -100px;
  animation: gradientShift 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,193,7,0.08) 0%, transparent 70%);
  top: 40%; right: 25%;
  animation: gradientShift 15s ease-in-out infinite;
}

/* Particles canvas */
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 80px 0 60px;
}

/* Left — text */
.hero-text .hero-micro { margin-bottom: 12px; }
.hero-text .hero-title {
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.hero-text .hero-title .gradient-text {
  background: linear-gradient(135deg, #8b00ff 0%, #00bfff 60%, #FFC107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--purple-300);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.hero-trust-badge span { font-size: 16px; }

/* Right — phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
/* Phone frame — real screenshot */
.phone-frame {
  width: 280px;
  border-radius: 44px;
  overflow: hidden;
  background: var(--bg-navy);
  border: 2px solid rgba(139,0,255,0.35);
  box-shadow:
    0 0 0 8px rgba(139,0,255,0.06),
    0 0 60px rgba(139,0,255,0.35),
    0 30px 80px rgba(0,0,0,0.60);
  animation: float 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.phone-frame img {
  width: 100%;
  display: block;
  border-radius: 0;
}
/* Floating stat chips around phone */
.hero-float-chip {
  position: absolute;
  background: linear-gradient(135deg, rgba(13,0,38,.95), rgba(10,26,58,.95));
  border: 1px solid rgba(139,0,255,0.30);
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 3;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(139,0,255,0.25);
}
.hero-float-chip.chip-1 {
  top: 60px; left: -70px;
  animation: float 4s ease-in-out infinite .5s;
  color: var(--amber);
}
.hero-float-chip.chip-2 {
  bottom: 110px; right: -80px;
  animation: float 5s ease-in-out infinite 1s;
  color: var(--cyan);
}
.hero-float-chip.chip-3 {
  bottom: 50px; left: -60px;
  animation: float 4.5s ease-in-out infinite 1.5s;
  color: var(--green);
}

/* Hero scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
  animation: bounceSoft 2s ease-in-out infinite;
}
.scroll-hint::after {
  content: '↓';
  font-size: 16px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc, .hero-text .section-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-badge-row { justify-content: center; }
  .hero-visual { margin-top: 20px; }
  .hero-float-chip.chip-1 { left: -30px; }
  .hero-float-chip.chip-2 { right: -30px; }
}

@media (max-width: 480px) {
  .phone-frame { width: 220px; }
  .hero-float-chip { display: none; }
}
