/* workforce.css · Workforce Planner simulator — demo-specific layout */
.wf-stage {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 18px;
  align-items: start;
}

/* ---- controls ---- */
.wf-controls { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 86px; }
.wf-block { display: flex; flex-direction: column; gap: 9px; }
.wf-label {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-soft);
}
.wf-slider { display: flex; flex-direction: column; gap: 8px; }
.wf-slider__head { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; color: var(--text-2); }
.wf-slider__head b { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--text-1); }
.wf-note {
  font-size: 12.5px; line-height: 1.5; color: var(--text-dim);
  background: var(--mint-tint-2); border: 1px solid var(--line);
  border-left: 3px solid var(--mint); border-radius: 0 10px 10px 0; padding: 10px 12px;
}

/* ---- results ---- */
.wf-results { display: flex; flex-direction: column; gap: 16px; }

/* forecast chart */
.wf-chart { display: flex; align-items: flex-end; gap: 6px; height: 180px; padding-top: 8px; }
.wf-bar {
  flex: 1; border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--mint), var(--mint-700));
  height: 0; transition: height .8s cubic-bezier(.2,.7,.2,1);
  position: relative; min-height: 2px;
}
.wf-bar.is-now { background: linear-gradient(180deg, #0E1410, #2b3a33); }
.wf-chart-x { display: flex; justify-content: space-between; margin-top: 8px; font-family: var(--font-mono); font-size: 10.5px; color: var(--text-soft); }

/* risks */
.wf-risk {
  display: flex; align-items: flex-start; gap: 10px; padding: 11px 0;
  border-top: 1px solid var(--line-soft); font-size: 13px; line-height: 1.45;
}
.wf-risk:first-child { border-top: 0; }
.wf-risk__body { flex: 1; }
.wf-risk__body b { display: block; color: var(--text-1); }
.wf-risk__body span { color: var(--text-dim); }

@media (max-width: 860px) {
  .wf-stage { grid-template-columns: 1fr; }
  .wf-controls { position: static; }
}
