/* ============================================================
   Pymander Health — /evals
   Layered on pages-v2.css. Adds the results chart and the
   proof block. Nothing here is used elsewhere.
   ============================================================ */

/* ── opening ─────────────────────────────────────────────────────
   No page-hero on this one: the lead sentence IS the headline, so it
   carries the h1 and the article takes over the hero's top spacing. */
.prose.evals-open { padding-top: clamp(112px, 17vh, 190px); }
.prose.evals-open h1.lead {
  font-weight: 500; margin: 0 0 14px;
  font-size: clamp(20px, 2.2vw, 26px); line-height: 1.5;
  letter-spacing: -0.012em; color: var(--ink);
}
.prose .updated {
  font-size: 13.5px; color: var(--on-light-dim);
  letter-spacing: 0.02em; margin-bottom: 0;
}

/* ── chart ───────────────────────────────────────────────────── */
.chart { margin: 26px 0 14px; }
.chart-row { margin-bottom: 20px; }
.chart-row:last-child { margin-bottom: 0; }

.chart-label {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 14px; margin-bottom: 7px;
}
.chart-name { font-size: 14.5px; color: #2a2620; letter-spacing: -0.005em; }
.chart-cost { font-size: 13px; color: var(--on-light-dim); white-space: nowrap; }

.chart-track {
  position: relative; height: 30px; background: var(--cream);
  border-radius: 5px; overflow: hidden;
}
.chart-bar {
  height: 100%; background: var(--amber); border-radius: 5px;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 11px;
}
.chart-value {
  font-size: 13px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.01em; white-space: nowrap;
}

.chart-row.is-shipped .chart-name { font-weight: 600; color: var(--ink); }
.chart-row.is-shipped .chart-bar { background: var(--ink); }
.chart-row.is-shipped .chart-value { color: var(--on-dark); }

/* The bars start at 88%, not 0 — without a drawn scale that turns a
   6.8-point spread into a bar three times longer, which is a lie the
   reader has no way to catch. The axis carries the truncation now that
   it is not stated in prose. */
.chart-axis {
  display: flex; justify-content: space-between;
  margin-top: 9px; padding-top: 7px;
  border-top: 1px solid var(--grey);
}
.chart-axis span {
  font-size: 11px; color: var(--on-light-dim); letter-spacing: 0.02em;
}

.chart-caption {
  font-size: 12.5px; line-height: 1.55; color: var(--on-light-dim);
  margin: 16px 0 0;
}
