/* Hero Badge - Creative animated pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(108, 99, 255, 0.05) 100%);
  border: 1.5px solid rgba(0, 212, 170, 0.4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xl);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #33e8c2;
  position: relative;
  animation: badgeBreath 3s ease-in-out infinite, badgeSlideIn 0.8s ease-out both;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Animated glow border */
.hero-badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 212, 170, 0.5) 30%,
    rgba(108, 99, 255, 0.4) 50%,
    rgba(0, 212, 170, 0.5) 70%,
    transparent 100%
  );
  z-index: -1;
  animation: borderShimmer 3s ease-in-out infinite;
}

/* Shimmer highlight sweep */
.hero-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 35%,
    rgba(0, 212, 170, 0.15) 50%,
    transparent 65%,
    transparent 100%
  );
  animation: shimmerSweep 3s ease-in-out infinite;
  pointer-events: none;
}

/* Blink dot - alive pulse */
.hero-badge .blink-dot,
.blink-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00d4aa;
  box-shadow: 0 0 12px rgba(0, 212, 170, 0.8), 0 0 24px rgba(0, 212, 170, 0.4);
  animation: dotPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
  position: relative;
}

.hero-badge .blink-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(0, 212, 170, 0.2);
  animation: dotRipple 1.5s ease-out infinite;
}

/* Badge text */
.hero-badge span:not(.blink-dot) {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #d0f5ee;
  text-shadow: 0 0 12px rgba(0, 212, 170, 0.3);
}

.hero-badge-text {
  font-size: 1rem;
  color: #d0f5ee;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ===== Animations ===== */

@keyframes badgeBreath {
  0%, 100% { border-color: rgba(0, 212, 170, 0.4); }
  50% { border-color: rgba(0, 212, 170, 0.7); }
}

@keyframes badgeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes borderShimmer {
  0%, 100% {
    opacity: 0.5;
    transform: translateX(-30%);
  }
  50% {
    opacity: 1;
    transform: translateX(30%);
  }
}

@keyframes shimmerSweep {
  0% { transform: translateX(-200%); }
  100% { transform: translateX(200%); }
}

@keyframes dotPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 12px rgba(0, 212, 170, 0.8), 0 0 24px rgba(0, 212, 170, 0.4);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.4);
    box-shadow: 0 0 20px rgba(0, 212, 170, 1), 0 0 40px rgba(0, 212, 170, 0.6);
  }
}

@keyframes dotRipple {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-badge,
  .hero-badge::before,
  .hero-badge::after,
  .hero-badge .blink-dot,
  .hero-badge .blink-dot::after {
    animation: none !important;
  }
  .hero-badge {
    opacity: 1;
  }
}
