.dashboard-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 18px 56px;
}

.zinc-glass {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.dashboard-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.dashboard-header h1 {
    font-size: clamp(1.5rem, 3.8vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0;
}

.dashboard-subtitle {
    margin-top: 6px;
    color: #64748b;
    font-size: 0.95rem;
}

.dashboard-badge {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #4338ca;
    border: 1px solid #c7d2fe;
    background: #eef2ff;
    white-space: nowrap;
}

.focus-strip {
    padding: 14px;
    margin-bottom: 18px;
}

.focus-strip-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #475569;
}

.focus-strip-head strong {
    color: #0f172a;
}

.focus-progress-track {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.focus-progress-fill {
    height: 100%;
    width: 0;
    border-radius: 999px;
    transition: width 0.6s ease;
    background: linear-gradient(90deg, #4f46e5, #0ea5e9);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.stat-card {
    padding: 16px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.stat-card-title {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #64748b;
}

.stat-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbeafe;
    color: #4338ca;
    background: #f8fafc;
}

.stat-value {
    margin-top: 8px;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f172a;
}

.stat-trend {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.trend-up {
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.trend-down {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.activity-section {
    padding: 16px;
}

.activity-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.activity-header h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.activity-note {
    font-size: 12px;
    color: #64748b;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 12px;
}

.activity-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-top: 6px;
    background: linear-gradient(180deg, #4f46e5, #0ea5e9);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.activity-meta {
    margin-top: 2px;
    font-size: 12px;
    color: #64748b;
}

@media (max-width: 980px) {
    .stat-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        padding: 16px 10px 40px;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-badge {
        margin-top: 2px;
    }
}
