.atlas-funnel-progress {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 18px;
}
.atlas-funnel-progress-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.atlas-funnel-progress-step {
    font-family: monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent-color, #3b82f6);
}
.atlas-funnel-progress-charge {
    font-size: 11px;
    color: var(--success-color, #10b981);
    font-weight: 600;
}
.atlas-funnel-progress-bar {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 10px;
}
.atlas-funnel-progress-seg {
    height: 4px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.18);
}
.atlas-funnel-progress-seg.done,
.atlas-funnel-progress-seg.active {
    background: rgba(59, 130, 246, 0.85);
}
.atlas-funnel-progress-labels {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 4px;
    font-size: 9px;
    color: var(--text-muted, #94a3b8);
    text-align: center;
    line-height: 1.35;
}
.atlas-funnel-nudge {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.22);
    background: rgba(59, 130, 246, 0.08);
    font-size: 12px;
    line-height: 1.55;
    color: var(--text-muted, #94a3b8);
}
.atlas-funnel-nudge strong {
    color: var(--text-color, #f1f5f9);
}
.atlas-dashboard-preview-mini {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 18px;
    background: rgba(0, 0, 0, 0.18);
}
.atlas-dashboard-preview-mini h3 {
    margin: 0 0 10px;
    font-size: 13px;
}
.atlas-dashboard-preview-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 11px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.atlas-dashboard-preview-row:last-child {
    border-bottom: none;
}
.atlas-dashboard-preview-row span:first-child {
    color: var(--text-muted, #94a3b8);
}
@media (max-width: 640px) {
    .atlas-funnel-progress-labels {
        display: none;
    }
}
