/* ==========================================================================
   Jumppl Landing — Platform stats — light theme
   ========================================================================== */

.jp-stats-section {
    position: relative;
    width: 100%;
    padding: 72px 0;
    background: #f7f8fc;
    overflow: hidden;
}

.jp-stats-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 640px;
    height: 320px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.jp-stats-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 24px;
}

.jp-stats-header {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 40px;
}

.jp-stats-eyebrow {
    display: block;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.15;
    text-transform: uppercase;
    color: #7c3aed;
}

.jp-stats-header h2 {
    margin: 12px 0 0;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.01em;
    color: #111827;
}

.jp-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 768px) {
    .jp-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.jp-stats-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 28px 24px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(17, 24, 39, 0.04);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.jp-stats-item:hover {
    background: #ffffff;
    border-color: #d1d5db;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
    transform: translateY(-2px);
}

.jp-stats-item__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7280;
}

.jp-stats-item__value {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #7c3aed, #c026d3, #0891b2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@supports not (background-clip: text) {
    .jp-stats-item__value {
        color: #7c3aed;
        -webkit-text-fill-color: initial;
    }
}

@media (max-width: 767px) {
    .jp-stats-section {
        padding: 72px 0;
    }

    .jp-stats-wrap {
        padding: 0 16px;
    }

    .jp-stats-header {
        margin-bottom: 28px;
    }

    .jp-stats-item {
        padding: 22px 20px;
        border-radius: 16px;
        align-items: center;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .jp-stats-item {
        transition: none;
    }

    .jp-stats-item:hover {
        transform: none;
    }
}
