/* ================================================================
   STATS STRIP — animated number counters
   ================================================================ */

.stats-strip {
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(168, 85, 247, 0.06) 0%,
            rgba(6, 182, 212, 0.04) 50%,
            rgba(168, 85, 247, 0.06) 100%);
    border-top: 1px solid rgba(168, 85, 247, 0.12);
    border-bottom: 1px solid rgba(168, 85, 247, 0.12);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
}

/* Each stat block */
.stat-item {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 2rem;
    position: relative;
}

/* Big number + suffix row */
.stat-item .stat-number-row {
    display: flex;
    align-items: baseline;
    gap: 0.1rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    display: inline-block;
    transition: transform 0.1s;
}

.stat-suffix {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-secondary, #94a3b8);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}

/* Vertical divider */
.stat-divider {
    width: 1px;
    height: 70px;
    background: linear-gradient(to bottom, transparent, rgba(168, 85, 247, 0.35), transparent);
    flex-shrink: 0;
}

/* Pulse animation when counting */
@keyframes statPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.stat-number.counting {
    animation: statPulse 0.15s ease-in-out;
}

/* Mobile: hide dividers, stack if too tight */
@media (max-width: 600px) {
    .stat-divider {
        display: none;
    }

    .stat-item {
        padding: 1.2rem 1rem;
    }

    .stats-grid {
        gap: 0.5rem;
    }
}