.metric {
    display: grid;
    gap: 8px;
}

.metric span {
    color: var(--muted);
    font-family: "Rajdhani", sans-serif;
    text-transform: uppercase;
}

.metric strong {
    color: #fff;
    font-family: "Orbitron", sans-serif;
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    text-shadow: 0 0 14px rgba(0,240,255,0.55);
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.chart {
    height: 260px;
    display: flex;
    align-items: end;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(0, 240, 255, 0.22);
    border-radius: 8px;
    background: rgba(13, 11, 26, 0.42);
}

.chart-bar {
    flex: 1;
    min-width: 8px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(to top, var(--blue), var(--cyan), var(--purple));
    box-shadow: 0 0 14px rgba(0,240,255,0.35);
}

.progress-track {
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
}

.progress-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple));
    animation: progressSweep 1.2s ease both;
}

@keyframes progressSweep {
    from { width: 0; }
}
