.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); transition: background 0.5s, border-color 0.5s; }
.stat-cell { background: var(--bg); padding: 48px 40px; position: relative; overflow: hidden; transition: background 0.5s; }
.stat-cell::before { content: ''; position: absolute; bottom: 0; left: 0; height: 2px; width: 0; background: var(--text); transition: width 0.5s cubic-bezier(0.16,1,0.3,1); }
.stat-cell:hover::before { width: 100%; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 6vw, 80px); letter-spacing: 0.04em; line-height: 1; color: var(--text); margin-bottom: 8px; transition: color 0.5s; }
.stat-lbl { font-family: 'Space Mono', monospace; margin-top:10px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

.stat-desc{
    margin-top:8px;
    font-family:'Space Grotesk', sans-serif;
    font-size:13px;
    line-height:1.5;
    color:var(--muted);
    font-weight:400;
}
