.stat-tile {
  background: #fff;
  border-radius: .75rem;
  border: 1px solid rgba(0,0,0,.06);
  padding: 1rem 1.25rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.stat-label {
  font-size: .8rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.stat-value {
  font-size: 1.25rem;
  font-weight: 600;
}
.bar {
  position: relative;
  height: 16px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid #d1d5db;
}

.bar > .fill {
  height: 100%;
  width: 0%;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: repeating-linear-gradient(
    45deg,
    #4f46e5,
    #4f46e5 10px,
    #6366f1 10px,
    #6366f1 20px
  );
  transition: width 1.5s ease-in-out;  /* <- THIS LINE IS KEY */
}
