/* ===== DASHBOARD ===== */
.dashboard-welcome {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(14,165,233,0.08) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px 16px;
  margin-top: 0;
  margin-bottom: 8px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between;
}
.dashboard-welcome::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.dashboard-welcome::after {
  content: '';
  position: absolute; right: 40px; bottom: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(56,189,248,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.welcome-text h2 {
  font-size: 22px; font-weight: 800; color: var(--text-primary);
  margin-bottom: 4px;
}
.welcome-text p { font-size: 15px; color: var(--text-secondary); }
.welcome-date {
  font-size: 13px; color: var(--text-muted); margin-top: 4px;
}
.welcome-badge {
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 99px; padding: 6px 16px;
  font-size: 13px; font-weight: 600; color: var(--accent-gold);
  position: relative; z-index: 1;
}

/* ===== CHART PLACEHOLDER ===== */
.chart-container {
  width: 100%; position: relative;
}
.chart-bars {
  display: flex; align-items: flex-end; gap: 10px;
  height: 140px; padding: 0 4px;
}
.bar-group { flex: 1; display: flex; gap: 3px; align-items: flex-end; }
.bar {
  flex: 1; border-radius: 4px 4px 0 0;
  transition: opacity 0.2s;
  position: relative; cursor: pointer;
}
.bar:hover { opacity: 0.8; }
.bar-gold { background: linear-gradient(180deg, var(--accent-gold), rgba(245,158,11,0.5)); }
.bar-blue { background: linear-gradient(180deg, var(--accent-blue), rgba(56,189,248,0.4)); }
.bar-green { background: linear-gradient(180deg, var(--accent-green), rgba(16,185,129,0.4)); }

.chart-labels {
  display: flex; gap: 10px; margin-top: 8px;
  border-top: 1px solid var(--border); padding-top: 8px;
}
.chart-label { flex: 1; text-align: center; font-size: 11px; color: var(--text-muted); }

.chart-legend {
  display: flex; gap: 20px; margin-bottom: 16px; flex-wrap: wrap;
}
.legend-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text-secondary); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }

/* ===== ACTIVITY FEED ===== */
.activity-list { display: flex; flex-direction: column; gap: 0; }
.activity-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(56,189,248,0.06);
  position: relative;
}
.activity-item:last-child { border-bottom: none; }
.activity-dot {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0; margin-top: 2px;
}
.activity-body { flex: 1; }
.activity-title { font-size: 14px; font-weight: 500; color: var(--text-primary); }
.activity-desc { font-size: 12px; color: var(--text-secondary); margin-top: 3px; }
.activity-time { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* ===== PROJECT STATUS ===== */
.project-list { display: flex; flex-direction: column; gap: 16px; }
.project-item {
  padding: 16px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.project-item:hover { border-color: rgba(56,189,248,0.3); }
.project-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.project-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.project-progress { font-size: 13px; font-weight: 700; color: var(--accent-gold); }
.progress-bar {
  height: 6px; background: rgba(255,255,255,0.06);
  border-radius: 3px; overflow: hidden;
}
.progress-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
  transition: width 1s ease;
}
.project-meta { display: flex; gap: 16px; margin-top: 10px; font-size: 12px; color: var(--text-muted); }

/* ===== KPI RING ===== */
.kpi-ring-wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap; padding: 12px 0;
}
.kpi-ring {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.ring-svg { width: 80px; height: 80px; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 8; }
.ring-fill { fill: none; stroke-width: 8; stroke-linecap: round; transition: stroke-dashoffset 1.5s ease; }
.ring-label { text-anchor: middle; dominant-baseline: central; }
.ring-text { font-size: 12px; color: var(--text-secondary); text-align: center; font-weight: 500; }
