/* ==============================
   HOME PAGE DESIGN SYSTEM
   Adapted from Article Page Style
============================== */

:root {
    --home-navy: #0B132B;
    --home-gold: #D4A24C;
    --home-white: #FFFFFF;
    --home-soft: #F7F8FA;
    --home-dark: #1E1E1E;
    --home-muted: #64748b;
    --home-border: #e5e7eb;
    --home-shadow: 0 22px 60px rgba(15, 23, 42, .10);
    --home-shadow-soft: 0 14px 34px rgba(15, 23, 42, .08);
}

/* ==============================
   STATISTICS SECTION
============================== */

.statistics-section {
    position: relative;

    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            rgba(11, 19, 43, .98),
            rgba(30, 30, 30, .94)
        );

    overflow: hidden;
}

.statistics-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 18% 20%, rgba(212, 162, 76, .16), transparent 32%),
        radial-gradient(circle at 82% 40%, rgba(255, 255, 255, .08), transparent 28%);

    pointer-events: none;
}

.statistics-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;

    height: 120px;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(11, 19, 43, .35)
    );

    pointer-events: none;
}

.statistics-section .container {
    position: relative;
    z-index: 2;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 26px;
}

.statistics-card {
    position: relative;

    overflow: hidden;

    padding: 46px 34px;

    text-align: center;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;

    box-shadow: 0 24px 70px rgba(0, 0, 0, .20);

    backdrop-filter: blur(12px);

    transition: .22s ease;
}

.statistics-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top right, rgba(212, 162, 76, .18), transparent 34%);

    opacity: 0;

    transition: .22s ease;
}

.statistics-card:hover {
    transform: translateY(-4px);

    background: rgba(255, 255, 255, .11);

    box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

.statistics-card:hover::before {
    opacity: 1;
}

.statistics-card h3,
.statistics-card p {
    position: relative;
    z-index: 1;
}

.statistics-card h3 {
    margin: 0 0 14px;

    color: var(--home-gold);

    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -2px;
}

.statistics-card p {
    margin: 0;

    color: rgba(255, 255, 255, .88);

    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.5;
    font-weight: 700;
}

/* ==============================
   ACCESSIBILITY
============================== */

.statistics-card:focus {
    outline: 3px solid rgba(212, 162, 76, .35);
    outline-offset: 3px;
}

/* ==============================
   RESPONSIVE - TABLET
============================== */

@media screen and (max-width: 992px) {
    .statistics-section {
        padding: 86px 0;
    }

    .statistics-grid {
        grid-template-columns: repeat(3, 1fr);

        gap: 20px;
    }

    .statistics-card {
        padding: 38px 24px;

        border-radius: 24px;
    }

    .statistics-card h3 {
        font-size: clamp(42px, 6vw, 58px);
    }

    .statistics-card p {
        font-size: 18px;
    }
}

/* ==============================
   RESPONSIVE - MOBILE
============================== */

@media screen and (max-width: 768px) {
    .statistics-section {
        padding: 72px 0;
    }

    .statistics-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .statistics-card {
        padding: 34px 24px;

        border-radius: 24px;
    }

    .statistics-card h3 {
        font-size: 52px;
        letter-spacing: -1px;
    }

    .statistics-card p {
        font-size: 17px;
    }
}