// Evidence — proposal-sourced validation results

const EV = [
  {
    tag: "Bench", num: "Comparator",
    h: "Dilutional ultrafiltration: hours and liters",
    p: "Conventional dilutional ultrafiltration achieved only a 33% potassium reduction over more than 210 minutes, requiring approximately 7,000 mL of crystalloid added to the patient, a volume approaching the entire native blood volume of an average adult.",
    meta: ["Standard of care", "Bench, replicated"]
  },
  {
    tag: "Bench", num: "Nephros",
    h: ">55% potassium reduction in approximately 6 minutes",
    p: "Head-to-head against dilutional ultrafiltration, Nephros delivered nearly twice the corrective effect roughly 36x faster, with no crystalloid added to the patient. Calcium, magnesium, sodium, chloride, pH, and bicarbonate remained within physiologic ranges throughout.",
    meta: ["Volume neutral", "No secondary derangements"]
  },
  {
    tag: "Pre-clinical", num: "Full circuit & porcine",
    h: "Clean integration; no hemolysis, no membrane fouling",
    p: "In simulated full cardiopulmonary bypass and porcine heart and lung organ-procurement experiments, Nephros integrated cleanly into standard extracorporeal circuits, maintained stable flow and pressure profiles, and produced no device-related complications across runs.",
    meta: ["Porcine procurement", "Safety endpoints met"]
  }
];

function Evidence() {
  return (
    <section className="section" id="evidence">
      <div className="wrap">
        <div className="section-head">
          <div className="section-head__label">
            <span className="eyebrow">
              <span className="dot" aria-hidden="true"></span>
              <span className="num">05</span>
              <span>Evidence</span>
            </span>
          </div>
          <div>
            <h2 className="h2 section-head__title">Validated against the <em>standard of care.</em></h2>
            <p className="body" style={{ marginTop: 20 }}>
              Reproducible benchtop studies were conducted using expired, human-banked blood in simulated cardiopulmonary bypass and organ-procurement circuits, comparing Nephros directly against conventional management. The protocol measured not only speed of correction but the full physiologic impact of each approach across electrolyte, acid-base, and volume parameters.
            </p>
          </div>
        </div>

        <div className="evidence">
          {EV.map((e, i) =>
            <article className="ev-card" key={i}>
              <div className="tag">
                <span>{e.tag}</span>
                <span className="num">/ {e.num}</span>
              </div>
              <h5>{e.h}</h5>
              <p>{e.p}</p>
              <div className="ev-card__meta">
                <span>{e.meta[0]}</span>
                <span>{e.meta[1]}</span>
              </div>
            </article>
          )}
        </div>
      </div>
    </section>
  );
}

window.Evidence = Evidence;
