/* Dashboard (pro) */
.dash-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
}
.dash-title{
  margin:0;
  font-size:2rem;
  line-height:1.15;
  letter-spacing:-0.02em;
}
.dash-subtitle{
  margin:6px 0 0;
  color:var(--text-muted);
}
.dash-badges{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border-color);
  background:rgba(255,255,255,0.03);
  color:var(--text-main);
  font-size:0.9rem;
  white-space:nowrap;
}
.badge .dot{
  width:8px;height:8px;border-radius:999px;background:var(--accent-blue);
  box-shadow:0 0 0 3px rgba(31,111,235,0.18);
}
.badge-admin .dot{ background:#8b5cf6; box-shadow:0 0 0 3px rgba(139,92,246,0.18); }
.badge-muted{ color:var(--text-muted); }

.dash-layout{
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap:24px;
}
@media (max-width: 920px){
  .dash-layout{ grid-template-columns:1fr; }
  .dash-badges{ justify-content:flex-start; }
}

.dash-hero{
  padding:26px;
}
.dash-hero__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}
.dash-hero__top h3{ margin:0; }
.dash-hero__top .muted{ margin:6px 0 0; color:var(--text-muted); }

.dash-empty{
  display:flex;
  gap:14px;
  padding:16px;
  border-radius:14px;
  border:1px dashed rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
}
.dash-empty__icon{
  width:42px;height:42px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,255,255,0.08);
  background: rgba(31,111,235,0.10);
  flex:0 0 auto;
}
.dash-empty__title{ margin:0; font-weight:600; }
.dash-empty__text{ margin:6px 0 0; color:var(--text-muted); }
.dash-empty__actions{ display:flex; flex-wrap:wrap; gap:10px; margin-top:12px; }

.dash-section h3{ margin-top:0; }
.dash-section__head{
  display:flex; align-items:baseline; justify-content:space-between; gap:12px;
  margin-bottom:12px;
}
.dash-section__head .muted{ color:var(--text-muted); font-size:0.9rem; }

.kpi-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:12px;
}
.kpi{
  border:1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius:14px;
  padding:12px;
}
.kpi-label{ color:var(--text-muted); font-size:0.85rem; }
.kpi-value{ font-size:1.4rem; font-weight:700; margin-top:6px; }

.quick-actions{
  display:grid;
  gap:10px;
  margin-top:10px;
}
.quick-actions .btn{ width:100%; }

.dash-list__empty{
  color:var(--text-muted);
  border:1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius:14px;
  padding:14px;
}

.dash-roadmap{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}
.dash-roadmap li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.chip{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.10);
  font-size:0.8rem;
  white-space:nowrap;
  color:var(--text-main);
  background: rgba(255,255,255,0.03);
}
.chip-soon{ border-color: rgba(31,111,235,0.25); background: rgba(31,111,235,0.10); }
.chip-progress{ border-color: rgba(245,158,11,0.25); background: rgba(245,158,11,0.10); }
.chip-later{ border-color: rgba(156,163,175,0.25); background: rgba(156,163,175,0.08); color: var(--text-muted); }

.road-title{ font-weight:600; }
.road-desc{ margin-top:4px; color:var(--text-muted); font-size:0.9rem; }

.admin-card p{ margin:8px 0 14px; color:var(--text-muted); }
