import type { CSSProperties } from "react"; import type { Metadata } from "next"; import { redirect } from "next/navigation"; import Image from "next/image"; import { MedscribeLogo } from "~/components/medscribe-logo"; import { PhoneMockup } from "~/components/phone-mockup"; import { PrintButton } from "~/components/print-button"; import { SectionLabel } from "~/components/section-label"; import { BETA_FOOTER_NOTE, BETA_SUMMARY } from "~/lib/beta"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "~/components/ui/card"; export const metadata: Metadata = { title: "Executive Summary", description: "One-page executive summary for Medscribe, a private medical context app for families managing complex care.", }; const TAGLINE = "Your medical truth, in your pocket, and only where you say it goes."; const SNAPSHOT = "Medscribe is a private, patient-owned medical record and companion for people managing ongoing care and the families beside them. It captures visits, makes medications and instructions easy to understand and keep current day to day, and stays ready to hand to a caregiver, a new specialist, or an ER. Everything runs on the device; nothing is uploaded."; const PROBLEM = "Care is fragmented and hard to carry. Patients forget most of what they're told in a visit, juggle medications with no clear picture of what each is for, and lose track of what changed and why. Then they end up somewhere new: a covering doctor, a specialist, an ER outside their network, and none of it travels with them. The family knows, but can't produce a clear, current record under pressure."; const PROBLEM_BROADER = "This is not a rare edge case. It happens every day, to patients with Parkinson's, diabetes, heart disease, dementia, and a hundred other conditions that require precise, continuous management across a fragmented system. The failure is not that families don't care. The failure is that the patient's context does not travel with them."; const WHO_ITS_FOR = "Anyone managing serious, ongoing care across a fragmented health system, and the families who coordinate it. It spans conditions and ages, and eventually touches almost everyone. The failure is simple: the patient's context does not travel with them."; const DIFFERENTIATION = "The market is full of AI visit recorders, medication trackers, health-record apps, and emergency QR cards, each owning one slice. None owns the whole job. In Medscribe, the daily tools are the maintenance system for one emergency-ready record."; const differentiators = [ { title: "The record is the product", body: "Recording, scanning, reminders, and Q&A all feed one private record you actually keep current, useful every day and ready to hand over when it counts. Competitors ship visit summaries; we ship the record you own and carry.", }, { title: "Private by architecture", body: "AI runs on-device: no cloud processing, no health-data upload, no tracking, no account. Others say \"encrypted\" while their store disclosures admit cloud collection.", }, { title: "Facts-first, not a guess", body: "Medication answers render trusted drug facts deterministically, deferring dosing and diagnosis to a clinician or pharmacist. Built for complex-care families, not a general health bot.", }, ]; 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", body: "A patient on time-critical medication ends up at a hospital outside their network. Missing a dose by hours isn't an inconvenience; it's a medical event. Nobody has the schedule, and the family can't produce it under pressure.", }, { title: "The caregiver handoff", body: "An adult child manages a parent's medications, appointments, and history. When they're not there, the context disappears: a sibling visits, a home aide covers, a shift changes. Critical details live in one person's memory.", }, { title: "The newly diagnosed, overwhelmed", body: "After a new diagnosis, a patient leaves with a changed medication schedule, lifestyle instructions, and follow-ups they half-remember. By the next visit, the provider can't tell what was understood, tried, or missed.", }, ]; const impact = [ { title: "Fewer blank handoffs", body: "When a caregiver or clinician takes over, the facts are already assembled: conditions, medications, allergies, baseline, contacts, and recent changes.", }, { title: "Safer medication moments", body: "Time-critical schedules and dose history stay visible, so a missed or delayed medication is easier to catch before it becomes a crisis.", }, { title: "Patients and providers aligned", body: "Families see what changed and why; providers get a current snapshot instead of reconstructing it from a stressed family's memory.", }, ]; const FOR_HEALTH_SYSTEMS = "Epic is the definitive record of care inside the network. What no institutional EHR is built to be is the record the patient owns and carries everywhere else: the out-of-network ER, the specialist on another Epic instance, the months between visits at home. That out-of-hospital stretch is a structural blind spot, not a flaw in any one system. Medscribe fills it on the patient's own device, and — only with the patient's consent — hands that context back, so the gap becomes an ongoing connection instead of a black box."; const forHealthSystems = [ { title: "Reaches where the EHR can't", body: "The record lives on the patient's device and travels with them: the out-of-network ER, the covering specialist, the weeks at home between visits. It stays current exactly where an institutional system loses sight of the patient.", }, { title: "Feeds context back into Epic", body: "With the patient's consent, the out-of-network and between-visit context Medscribe captures returns into the workflows you already run. It raises the value of the EHR investment rather than competing for budget or attention.", }, { title: "Patient-owned, so it persists", body: "A branded, patient-facing surface that works the levers systems are measured on — in-network retention, medication adherence, avoidable readmissions. Because the record belongs to the patient, it holds even if the system changes EHRs.", }, ]; const printLightTokens = { "--color-foreground": "#0f172a", "--color-primary": "#0f766e", "--color-surface": "#ffffff", "--color-border-soft": "#e2e8f0", "--color-muted-foreground": "#475569", color: "#0f172a", } as CSSProperties; export default function ExecutiveSummaryPage() { // The home page is now the executive summary (single-page site). This deep // page is retired but kept in place — its content (incl. the print one-pager) // is a one-line revert away if we want a longer version back. redirect("/"); return ( <> {/* ===================== SCREEN ===================== */}
{/* Hero */}
Executive Summary · June 2026

Medscribe

{TAGLINE}

{SNAPSHOT}

{/* The Problem */}
The problem

The patient's context does not travel with them.

{PROBLEM}

{PROBLEM_BROADER}

{/* Scenarios */}
Who this is for

The moments where context is everything.

{scenarios.map((scenario) => ( {scenario.title} {scenario.body} ))}
{/* Differentiation */}
Why this is different

Everyone owns a slice. We own the whole job.

{DIFFERENTIATION}

{differentiators.map((item) => ( {item.title} {item.body} ))}

Medscribe connects the daily loop to the emergency handoff: one private record that stays current through normal use and is ready when the system does not know the patient.

{/* Under the hood */}
Under the hood

Easy to claim. Hard to copy.

{MOAT}

{moat.map((item) => ( {item.title} {item.body} ))}
{/* Impact */}
Potential impact

Less panic, more context, better handoffs.

{impact.map((item) => ( {item.title} {item.body} ))}
{/* For health systems */}
For health systems

An ongoing touchstone, not another portal.

{FOR_HEALTH_SYSTEMS}

{forHealthSystems.map((item) => ( {item.title} {item.body} ))}
{/* Beta */}

{BETA_SUMMARY} If you'd like to try it, reach out.

Sean O'Connor

{/* ===================== PRINT: dense one-page PDF ===================== */}
{/* Header */}

Executive Summary · June 2026

Medscribe

{TAGLINE}

{SNAPSHOT}

Medscribe home screen
{/* The Problem */}

The Problem

{PROBLEM}

{/* Who It's For */}

Who It's For

{WHO_ITS_FOR}

{/* Why This Is Different */}

Why This Is Different

{differentiators.map((item) => (

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

))}
{/* Under The Hood */}

Under The Hood

{moat.map((item) => (

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

))}
{/* For Health Systems */}

For Health Systems

{forHealthSystems.map((item) => (

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

))}
); }