/* About, Thesis triptych (GDL vs LLM), Platform, Pipeline (AI vs Traditional), Case Studies, Business Model */ function useReveal() { const ref = React.useRef(null); const [seen, setSeen] = React.useState(false); React.useEffect(() => { if (!ref.current) return; const io = new IntersectionObserver(([e]) => { if (e.isIntersecting) { setSeen(true); io.disconnect(); } }, { threshold: 0.15 }); io.observe(ref.current); return () => io.disconnect(); }, []); return [ref, seen]; } function useTilt(max = 8) { const ref = React.useRef(null); const [style, setStyle] = React.useState({}); const onMove = (e) => { const el = ref.current; if (!el) return; const r = el.getBoundingClientRect(); const x = (e.clientX - r.left) / r.width - 0.5; const y = (e.clientY - r.top) / r.height - 0.5; setStyle({ transform: `perspective(900px) rotateX(${-y*max}deg) rotateY(${x*max}deg) translateY(-4px)` }); }; const onLeave = () => setStyle({ transform: 'perspective(900px) rotateX(0) rotateY(0)' }); return { ref, style, onMouseMove: onMove, onMouseLeave: onLeave }; } window.useReveal = useReveal; window.useTilt = useTilt; function About() { const d = window.LB_DATA.about; const [ref, seen] = useReveal(); return (
{d.eyebrow}

{d.title}

{d.body}

The Krishnaswamy Lab pioneered well known and used technologies such as PHATE, MELD, and ImmunoStruct — tools that reshaped how biologists see single-cell and structural data. Latent Bio carries that lineage into drug development.

{d.pillars.map((p, i) => (
{p.k}
{p.v}
))}
); } window.About = About; function Thesis({ accentVar }) { const items = window.LB_DATA.thesis; return (
THE THESIS

Biology is geometric. The shape is where the answers live.

{items.map((t, i) => (
{t.num}
{t.eyebrow}

{t.title}

{t.body}

))}
); } window.Thesis = Thesis; function Platform({ accentVar }) { const d = window.LB_DATA.platform; return (
{d.eyebrow}

{d.title}

{d.lead}

{d.pillars.map((p, i) => )}
); } function PlatformCard({ pillar: p, idx, accentVar }) { const tilt = useTilt(5); return (
{String(idx+1).padStart(2,'0')}
{p.tag}

{p.title}

{p.body}

); } window.Platform = Platform; function Pipeline({ accentVar }) { const d = window.LB_DATA.pipeline; return (
{d.eyebrow}

{d.title}

{d.lead}

{d.tracks.map((t, i) => (
AI · {t.phase} {t.phaseTrad}

{t.title}

{t.body}

))}
{d.comparisonNote}
); } window.Pipeline = Pipeline; function CaseStudies({ accentVar }) { const items = window.LB_DATA.caseStudies; const [active, setActive] = React.useState(0); return (
CLINICAL CASE STUDIES

Peer-reviewed, clinic-adjacent, reproducible.

A sample of published work from the Krishnaswamy Lab that seeded Latent Bio’s platform — each resolving a clinical question that flat methods could not.

{items.map((c, i) => ( ))}
{items.map((c, i) => active===i && (
{c.tag}

{c.title}

{c.meta}
    {c.bullets.map((b, j) => (
  • {String(j+1).padStart(2,'0')} {b}
  • ))}
{c.url && ( Read the paper — {c.citation} )}
))}
); } window.CaseStudies = CaseStudies; // Business model removed per request.