/* public/css/dashboard.css — Dashboard-specific styles. */

.dash-header {
  padding: 56px 48px 48px;
  border-bottom: 1px solid var(--border);
}

.dash-header-inner {
  max-width: 720px;
  margin: 0 auto;
}

.dash-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.dash-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 16px;
}

.dash-lede {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
}

/* Research section */
.dash-research-section {
  padding: 64px 48px;
  background: var(--bg);
}

.dash-research-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* Dashboard card */
.dash-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 32px;
}

.dash-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.dash-card-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-card-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.dash-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.dash-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.dash-card-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #27ae60;
  background: rgba(39, 174, 96, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Activity section */
.dash-activity-section {
  padding: 48px 48px 80px;
  border-top: 1px solid var(--border);
}

.dash-activity-inner {
  max-width: 720px;
  margin: 0 auto;
}

.dash-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.dash-empty-state {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: 12px;
}

.dash-empty-icon {
  width: 36px;
  height: 36px;
  color: var(--muted);
  flex-shrink: 0;
}

.dash-empty-icon svg {
  width: 100%;
  height: 100%;
}

.dash-empty-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .dash-header { padding: 40px 24px 32px; }
  .dash-research-section { padding: 48px 24px; }
  .dash-activity-section { padding: 40px 24px 64px; }
  .dash-card { padding: 20px 20px; }
  .dash-card-header { flex-wrap: wrap; }
  .dash-card-badge { margin-left: 0; }
  .nav-right .nav-link:first-child { display: none; }
}

@media (max-width: 480px) {
  .dash-header { padding: 32px 20px 28px; }
  .dash-research-section, .dash-activity-section { padding: 36px 20px 56px; }
}