/* ── E6: Count-up animations ── */

/* Feature numbers: invisible until triggered */
.feature-num {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  transition: color 300ms ease;
}
.feature-num span {
  display: inline-block;
}

/* Live discovery counter badge */
#live-discovery {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px 4px 8px;
  background: oklch(93% 0.27 122 / 0.1);
  border: 1px solid oklch(93% 0.27 122 / 0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: oklch(93% 0.27 122);
  margin-bottom: 1.4rem;
  animation: live-pulse-in 600ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 1.4s;
}
#live-discovery::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: oklch(93% 0.27 122);
  box-shadow: 0 0 0 0 oklch(93% 0.27 122 / 0.4);
  animation: live-dot-pulse 2s ease-in-out infinite;
}
#live-discovery-count {
  font-variant-numeric: tabular-nums;
  min-width: 2.4ch;
  display: inline-block;
}
@keyframes live-dot-pulse {
  0%,100% { box-shadow: 0 0 0 0 oklch(93% 0.27 122 / 0.4); }
  50%      { box-shadow: 0 0 0 5px oklch(93% 0.27 122 / 0); }
}
@keyframes live-pulse-in {
  from { opacity:0; transform: scale(0.8) translateY(4px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}

/* Waitlist count chip */
#waitlist-count-chip {
  display: inline-block;
  padding: 2px 10px;
  background: oklch(93% 0.27 122 / 0.15);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  color: oklch(93% 0.27 122);
  margin-left: 8px;
  font-variant-numeric: tabular-nums;
  vertical-align: middle;
}

/* Stat cards in social-proof section */
.stat-num {
  font-variant-numeric: tabular-nums;
  display: inline-block;
}
