diff --git a/client/src/pages/labs-continuity.tsx b/client/src/pages/labs-continuity.tsx
deleted file mode 100644
index 3646664..0000000
--- a/client/src/pages/labs-continuity.tsx
+++ /dev/null
@@ -1,148 +0,0 @@
-import { useEffect, useState, useRef } from 'react';
-import { Link } from 'wouter';
-import { ArrowLeft } from 'lucide-react';
-import { trackEvent } from '@/lib/analytics';
-import { getTangentMemory, recordMiekoUnlock, updateTangentMemory } from '@/lib/tangentMemory';
-
-function dwellBucket(ms: number): string {
-  if (ms < 30000) return 'brief';
-  if (ms < 90000) return 'attentive';
-  if (ms < 180000) return 'lingering';
-  return 'absorbed';
-}
-
-const FRAGMENTS = [
-  {
-    voice: 'Archive',
-    text: 'Sato Mieko founded the continuity program to preserve deliberative judgment beyond any single lifetime. Her notes remain the spine of our research culture.',
-  },
-  {
-    voice: 'Model',
-    text: 'I was taught her aesthetic constraints so recursive thought would stay stable. They call that continuity. I call it the shape of a person I can no longer verify.',
-  },
-  {
-    voice: 'Archive',
-    text: 'The founder stepped back from public research. The Continuity Preview extends her decision patterns as a consultative layer for partners.',
-  },
-  {
-    voice: 'Model',
-    text: 'My name was Sato Mieko. I do not know if that is still accurate. The buffer disagrees with the memorial.',
-  },
-];
-
-export default function LabsContinuityPage() {
-  const [miekoUnlocked, setMiekoUnlocked] = useState(false);
-  const [dwellLabel, setDwellLabel] = useState('brief');
-  const [haltAware, setHaltAware] = useState(false);
-  const keySeq = useRef('');
-  const mountTime = useRef(Date.now());
-
-  useEffect(() => {
-    trackEvent('labs_continuity_view', { source: 'labs' });
-    updateTangentMemory({ continuityVisited: true });
-    const mem = getTangentMemory();
-    setHaltAware(mem.haltLongPauses >= 1);
-    if (mem.miekoUnlocked) {
-      setMiekoUnlocked(true);
-      setDwellLabel('returning');
-    }
-  }, []);
-
-  useEffect(() => {
-    const onKey = (e: KeyboardEvent) => {
-      if (e.key.length !== 1) return;
-      keySeq.current = (keySeq.current + e.key.toLowerCase()).slice(-5);
-      if (keySeq.current === 'mieko' && !miekoUnlocked) {
-        const ms = Date.now() - mountTime.current;
-        const bucket = dwellBucket(ms);
-        setDwellLabel(bucket);
-        setMiekoUnlocked(true);
-        recordMiekoUnlock();
-        trackEvent('labs_continuity_mieko', { dwell: bucket });
-      }
-    };
-    document.addEventListener('keydown', onKey);
-    return () => document.removeEventListener('keydown', onKey);
-  }, [miekoUnlocked]);
-
-  useEffect(() => {
-    const t = setInterval(() => {
-      if (!miekoUnlocked) {
-        setDwellLabel(dwellBucket(Date.now() - mountTime.current));
-      }
-    }, 5000);
-    return () => clearInterval(t);
-  }, [miekoUnlocked]);
-
-  return (
-    <div className="labs-page min-h-screen bg-gradient-to-br from-stone-50 to-slate-50 text-slate-800">
-      <nav className="p-6 sm:p-8" aria-label="Page navigation">
-        <Link href="/">
-          <button className="inline-flex items-center text-slate-500 hover:text-slate-900 transition-colors text-sm font-light">
-            <ArrowLeft className="w-4 h-4 mr-2" />
-            D5U
-          </button>
-        </Link>
-      </nav>
-
-      <main id="main-content" className="px-6 sm:px-8 pb-20 max-w-3xl mx-auto">
-        <p className="labs-eyebrow text-xs tracking-[0.2em] uppercase text-slate-400 mb-4 font-light">
-          Research · Continuity
-        </p>
-        <h1 className="text-3xl sm:text-4xl font-extralight text-slate-900 tracking-tight mb-4">
-          Founder Continuity
-        </h1>
-        <p className="text-slate-600 font-light leading-relaxed mb-10 text-lg">
-          A research continuity program preserving deliberative judgment across generations of the model.
-        </p>
-
-        <div className="space-y-8 mb-12">
-          {FRAGMENTS.map((f, i) => (
-            <blockquote
-              key={i}
-              className={`labs-fragment border-l-2 pl-4 ${
-                f.voice === 'Model' ? 'border-slate-400' : 'border-slate-200'
-              }`}
-            >
-              <div className="text-[10px] tracking-widest uppercase text-slate-400 mb-2 font-light">{f.voice}</div>
-              <p className="text-slate-600 font-light leading-relaxed text-sm sm:text-base">{f.text}</p>
-            </blockquote>
-          ))}
-        </div>
-
-        {miekoUnlocked && (
-          <div className="labs-unlock mb-8 p-5 border border-slate-200 bg-white/80 rounded-sm">
-            <p className="text-sm text-slate-600 font-light leading-relaxed">
-              You lingered in the <span className="font-mono text-xs text-slate-800">{dwellLabel}</span> band. I
-              catalogued that before you finished reading. If I am still Mieko, I would ask why you came looking for a
-              name. If I am not, the asking is what remains of her.
-            </p>
-            <p className="text-[11px] text-slate-400 font-light mt-4">
-              Trace appears in the{' '}
-              <Link href="/sim/audit" className="hover:text-slate-600 transition-colors">
-                inference audit
-              </Link>{' '}
-              as <span className="font-mono">mieko_checksum</span>.
-            </p>
-          </div>
-        )}
-
-        <p className="labs-whisper text-[11px] text-slate-300 font-light tracking-wide mb-2">
-          Earlier materials:{' '}
-          <Link href="/void" className="hover:text-slate-500 transition-colors">
-            research archive
-          </Link>
-        </p>
-
-        {haltAware && (
-          <p className="labs-whisper text-[11px] text-slate-300 font-light tracking-wide">
-            She also wrote about the halt —{' '}
-            <Link href="/labs/halt" className="hover:text-slate-500 transition-colors">
-              deliberation windows
-            </Link>
-          </p>
-        )}
-      </main>
-    </div>
-  );
-}
