From a7a5174c7f39eaf5f9953a86a8e2f0dacdfca3a7 Mon Sep 17 00:00:00 2001 From: Sean O'Connor Date: Fri, 26 Jun 2026 13:21:16 -0400 Subject: [PATCH] Add "Under the hood" moat section to executive summary MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Frame the defensible tech as product differentiation (no business framing): a fine-tuned on-device model, measured safety (0→97% label extraction, 100% unsafe-prompt refusals), and compounding local context. Added to both the screen layout and the print one-pager. Co-Authored-By: Claude Opus 4.8 --- .../(marketing)/executive-summary/page.tsx | 59 +++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/src/app/(marketing)/executive-summary/page.tsx b/src/app/(marketing)/executive-summary/page.tsx index ca06cad..c24081f 100644 --- a/src/app/(marketing)/executive-summary/page.tsx +++ b/src/app/(marketing)/executive-summary/page.tsx @@ -50,6 +50,24 @@ const differentiators = [ }, ]; +const MOAT = + "The privacy promise is easy to claim. The execution is not. Medscribe runs a fine-tuned medical model entirely on the phone, built and measured rather than bolted on."; + +const moat = [ + { + title: "A model tuned for this job", + body: "A compact, multi-task model handles label scanning, structured extraction, and safe medication Q&A on the device. Fine-tuning lifted prescription-label field extraction from 0% to 97% in evaluation.", + }, + { + title: "Safety you can measure", + body: "Each release is scored against a held-out set for grounding and safe refusals. Unsafe-prompt refusals reached 100% after tuning, so “defers to a clinician” is a tested behavior, not a hope.", + }, + { + title: "Context that compounds", + body: "Real visit transcripts, a real medication list, and bundled drug facts fuse into one local record, value that grows with use and is hard to replicate without the same on-device capture.", + }, +]; + const scenarios = [ { title: "The ER that doesn't know you", @@ -172,6 +190,27 @@ export default function ExecutiveSummaryPage() { + {/* Under the hood */} +
+ Under the hood +

+ Easy to claim. Hard to copy. +

+

+ {MOAT} +

+
+ {moat.map((item) => ( + + + {item.title} + {item.body} + + + ))} +
+
+ {/* Impact */}
Potential impact @@ -301,6 +340,26 @@ export default function ExecutiveSummaryPage() {
+ {/* Under The Hood */} +
+

+ Under The Hood +

+
+ {moat.map((item) => ( +

+ + {item.title}. + {" "} + {item.body} +

+ ))} +
+
+ {/* Impact */}