/* ============================================================
   Stats / Snapshot strip
   ============================================================ */
.stats {
    background: linear-gradient(180deg, rgba(11,16,32,0.76), rgba(5,7,13,0.86));
    border-top: 1px solid rgba(97,214,255,0.10);
    border-bottom: 1px solid rgba(97,214,255,0.10);
    padding: 44px 0;
}
.stats__shell {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 44px;
    align-items: center;
}
.stats__copy .section__title { margin-top: 8px; }

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    align-items: stretch;
}
.stat {
    padding: 24px 14px;
    text-align: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(97,214,255,0.12);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 150px;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.stat:hover {
    transform: translateY(-4px);
    border-color: rgba(245,199,106,0.4);
    background: rgba(255,255,255,0.04);
}
.stat__value {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(1.35rem, 1.8vw, 1.95rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.01em;
}
.stat__label {
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.35;
    max-width: 16ch;
}
