// Metrics.jsx — operational targets (pre-launch; framed as commitments, not achievements)
function MsoMetrics() {
  const cells = [
    { label: "FIRST-PASS CLEAN CLAIM RATE", value: "≥ 97%", sub: "Target written into every laboratory's billing service-level agreement." },
    { label: "DAYS SALES OUTSTANDING", value: "≤ 35d", sub: "Steady-state DSO target, measured on a trailing-90-day basis." },
    { label: "INSPECTION READINESS", value: "365d", sub: "Continuous CAP / CLIA / state readiness — not a quarterly cycle." },
    { label: "IT INCIDENT RESPONSE", value: "< 15m", sub: "Mean response time commitment, 24/7 on-call across the network." },
  ];
  return (
    <section id="metrics" className="section section--ink">
      <div className="container">
        <div className="section__head">
          <div>
            <span className="eyebrow">Operating targets</span>
            <h2 style={{ marginTop: 14 }}>
              The standards we&rsquo;re built around,<br />
              <span className="serif" style={{ color: "var(--teal-300)" }}>
                from day one.
              </span>
            </h2>
          </div>
          <p className="lede">
            AltaPath Management Services has not yet begun operations. The
            targets below are the floors we are designing the platform to
            meet &mdash; written into every laboratory service-level
            agreement, reported monthly, and reconciled against actuals as
            the network comes online.
          </p>
        </div>

        <div className="scorecard">
          {cells.map((c) => (
            <div className="scorecard__cell" key={c.label}>
              <div className="scorecard__label">{c.label}</div>
              <div className="scorecard__value">{c.value}</div>
              <div className="scorecard__sub">{c.sub}</div>
            </div>
          ))}
        </div>

        <div className="subsidiary-note" style={{ marginTop: 36 }}>
          <strong style={{ color: "var(--teal-300)" }}>Targets, not historicals.</strong>{" "}
          AltaPath Management Services is pre-operational. The figures above
          are commitments, not achievements; once laboratories are live,
          actuals will be reported alongside these targets to qualified
          counterparties under NDA.
        </div>
      </div>
    </section>
  );
}

Object.assign(window, { MsoMetrics });
