* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #1a1530, #050509 65%);
    color: #f5f5ff;
}

/* HEADER */
.stats-header {
    border-bottom: 1px solid rgba(123,47,255,0.4);
    backdrop-filter: blur(10px);
}

.stats-header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stats-logo {
    font-weight: 800;
    letter-spacing: 0.08em;
}

.back-link {
    color: #caa9ff;
    text-decoration: none;
}

/* MAIN */
.stats-wrapper {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

/* GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.stat-card {
    background: linear-gradient(135deg, rgba(123,47,255,0.35), rgba(15,15,30,0.95));
    border-radius: 18px;
    padding: 28px 22px;
    border: 1px solid rgba(123,47,255,0.5);
    text-align: center;
    box-shadow: 0 18px 45px rgba(0,0,0,0.6);
}

.stat-card i {
    font-size: 26px;
    color: #caa9ff;
    margin-bottom: 10px;
}

.stat-title {
    display: block;
    font-size: 14px;
    color: #c9c6ff;
    margin-bottom: 6px;
}

.stat-number {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

/* WIDE */
.stat-wide {
    grid-column: span 3;
}

/* FOOTER */
.stats-footer {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #9d97d9;
}

/* MOBILE */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-wide {
        grid-column: span 1;
    }
}

/* =========================
   STATS LANDING PAGE
   ========================= */

.stats-landing {
    min-height: 100vh;
    background: radial-gradient(circle at top, #1a1530, #050509 65%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-container {
    max-width: 1100px;
    width: 100%;
    padding: 0 24px;
    text-align: center;
}

.landing-content {
    animation: landingFade 1s ease forwards;
}

.landing-eyebrow {
    color: #a89dff;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.landing-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
}

.landing-title span {
    background: linear-gradient(90deg, #7b2fff, #caa9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-text {
    font-size: 17px;
    color: #c9c6ff;
    margin-bottom: 34px;
    line-height: 1.6;
}

.landing-btn {
    padding: 16px 34px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    color: #140b25;
    background: linear-gradient(135deg, #7b2fff, #b58bff);
    box-shadow: 0 12px 40px rgba(123,47,255,0.55);
    transition: transform .25s ease, box-shadow .25s ease;
}

.landing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 55px rgba(123,47,255,0.75);
}

/* Animation */
@keyframes landingFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .landing-title {
        font-size: 40px;
    }

    .landing-text {
        font-size: 16px;
    }
}

