diff --git a/apps/web/src/app/docs/api/page.tsx b/apps/web/src/app/docs/api/page.tsx
index 08c7070ea..deb5ce6a4 100644
--- a/apps/web/src/app/docs/api/page.tsx
+++ b/apps/web/src/app/docs/api/page.tsx
@@ -34,7 +34,7 @@ const ENDPOINTS: Endpoint[] = [
{ method: 'GET', path: '/api/training/status', summary: 'Current status of training/embedding jobs.' },
{ method: 'POST', path: '/api/training/trigger', summary: 'Trigger a training/embedding job.' },
{ method: 'POST', path: '/api/video/pack', summary: 'Emit a hashed Video Pack from a YouTube URL.', body: '{ "url": "https://www.youtube.com/watch?v=..." }' },
- { method: 'POST', path: '/api/workflows/video-to-actions', summary: 'Start the durable Studio analysis workflow.', body: '{ "url": "https://www.youtube.com/watch?v=..." }' },
+ { method: 'POST', path: '/api/workflows/video-to-actions', summary: 'Start the Studio analysis workflow.', body: '{ "url": "https://www.youtube.com/watch?v=..." }' },
];
const METHOD_COLOR: Record = {
diff --git a/apps/web/src/app/pricing/page.tsx b/apps/web/src/app/pricing/page.tsx
index 9a3482162..6ad18290b 100644
--- a/apps/web/src/app/pricing/page.tsx
+++ b/apps/web/src/app/pricing/page.tsx
@@ -132,7 +132,7 @@ export default function PricingPage() {
Confirm external work
- Adds the entitlement required when a reviewed plan dispatches backend agents or writes to the knowledge store.
+ Adds the entitlement required when a Studio plan dispatches backend agents or writes to the knowledge store.
{PRO_CAPABILITIES.map((capability) => (
diff --git a/apps/web/src/components/OneLoopStudio.tsx b/apps/web/src/components/OneLoopStudio.tsx
index 8dece06d4..299ec5505 100644
--- a/apps/web/src/components/OneLoopStudio.tsx
+++ b/apps/web/src/components/OneLoopStudio.tsx
@@ -771,7 +771,7 @@ export default function OneLoopStudio({
{videoId ? (
diff --git a/apps/web/src/lib/__tests__/studio-pipeline-status.test.ts b/apps/web/src/lib/__tests__/studio-pipeline-status.test.ts
index beed13e45..4f3ecf9bf 100644
--- a/apps/web/src/lib/__tests__/studio-pipeline-status.test.ts
+++ b/apps/web/src/lib/__tests__/studio-pipeline-status.test.ts
@@ -367,11 +367,15 @@ describe('studio-pipeline-status', () => {
const footer = readFileSync(join(process.cwd(), 'src/components/Footer.tsx'), 'utf8');
const studio = readFileSync(join(process.cwd(), 'src/components/OneLoopStudio.tsx'), 'utf8');
const retired = readFileSync(join(process.cwd(), 'src/components/VideoWorkflowStudio.tsx'), 'utf8');
+ const pricing = readFileSync(join(process.cwd(), 'src/app/pricing/page.tsx'), 'utf8');
+ const apiDocs = readFileSync(join(process.cwd(), 'src/app/docs/api/page.tsx'), 'utf8');
expect(footer).toContain('STUDIO_PRODUCT_TAGLINE');
expect(footer.toLowerCase()).not.toContain('reviewed actions');
expect(footer.toLowerCase()).not.toContain('durable workflows');
expect(studio).toContain('data-testid="studio-main"');
- expect(studio).toMatch(/pb-20|padding-bottom/);
+ expect(studio).toMatch(/pb-28|padding-bottom/);
+ expect(pricing).not.toMatch(/reviewed plan dispatches backend agents/);
+ expect(apiDocs).not.toMatch(/durable Studio analysis workflow/);
expect(retired).not.toMatch(/Starting durable/);
expect(retired).not.toMatch(/Could not start durable workflow/);
expect(retired).not.toMatch(/runs a durable video-to-transcript/);