/* ═══════════════════════════════════════════════════════════
   VERBATIM — Dashboard Page Styles  ·  Minimalist Modern
═══════════════════════════════════════════════════════════ */

/* Stat cards row */
.dash-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4);
  margin-bottom: var(--space-6);
}
@media (max-width: 768px) { .dash-stats-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dash-stats-row { grid-template-columns: 1fr 1fr; } }

.dash-stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-5);
  box-shadow: var(--shadow-sm); transition: all 0.2s;
}
.dash-stat-card:hover { border-color: var(--gold-border); transform: translateY(-2px); box-shadow: var(--shadow-accent); }
.dash-stat-icon { font-size: 20px; margin-bottom: var(--space-2); }
.dash-stat-value {
  font-family: var(--font-mono); font-size: 28px; color: var(--text-primary);
  font-weight: 600; line-height: 1; margin-bottom: 4px;
}
.dash-stat-label {
  font-size: 11px; font-family: var(--font-mono); color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* Dashboard grid */
.dash-grid {
  display: grid; gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .dash-grid {
    grid-template-columns: 3fr 2fr;
    grid-template-rows: auto auto;
  }
  .dash-panel-chart      { grid-column: 1; grid-row: 1 / 3; }
  .dash-panel-practice   { grid-column: 2; grid-row: 1; }
  .dash-panel-reflection { grid-column: 2; grid-row: 2; }
}

/* Dashboard panels */
.dash-panel {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.dash-panel-title {
  font-family: var(--font-display); font-size: 18px; color: var(--text-primary);
  margin-bottom: 4px;
}
.dash-panel-sub {
  font-size: 12px; font-family: var(--font-mono); color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-5);
}

/* Growth chart panel */
.dash-panel-chart { grid-column: 1 / -1; }
@media (min-width: 960px) { .dash-panel-chart { grid-column: 1; } }

.growth-chart-wrap {
  background: var(--surface-raised); border-radius: var(--radius-lg);
  padding: var(--space-4); margin-bottom: var(--space-5);
  position: relative; border: 1px solid var(--border);
}
.growth-chart-svg {
  width: 100%; height: 200px; overflow: visible;
  display: block;
}

/* Metric pills */
.metric-pills { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* Scenario list */
.scenario-list { display: flex; flex-direction: column; gap: var(--space-3); }
.scenario-item {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3);
  background: var(--surface-raised); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-3) var(--space-4);
  transition: border-color 0.2s;
}
.scenario-item:hover { border-color: var(--gold-border); }
.scenario-info { flex: 1; min-width: 0; }
.scenario-name { font-size: 14px; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; }
.scenario-meta { display: flex; align-items: center; gap: var(--space-2); }
.scenario-tag {
  font-size: 11px; font-family: var(--font-mono); background: var(--gold-dim);
  color: var(--gold); padding: 2px 8px; border-radius: var(--radius-full);
  border: 1px solid var(--gold-border);
}
.scenario-duration { font-size: 11px; font-family: var(--font-mono); color: var(--text-muted); }

/* Reflection panel */
.reflection-prompt {
  font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--space-4);
  font-style: italic;
}

/* Growth hub row */
.growth-hub-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4);
  margin-top: var(--space-5);
}
@media (max-width: 768px) { .growth-hub-row { grid-template-columns: 1fr; } }

.growth-hub-card {
  background: var(--surface-raised); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-3);
  transition: all 0.2s;
}
.growth-hub-card:hover { border-color: var(--gold-border); transform: translateY(-2px); box-shadow: var(--shadow-accent); }
.growth-hub-icon { font-size: 24px; }
.growth-hub-title { font-family: var(--font-display); font-size: 16px; color: var(--text-primary); }
.growth-hub-sub { font-size: 12px; color: var(--text-secondary); line-height: 1.5; flex: 1; }
