diff --git a/marketing/product-film/src/sequences/Pillar3Rails.tsx b/marketing/product-film/src/sequences/Pillar3Rails.tsx
index 17273ea..82dbfd0 100644
--- a/marketing/product-film/src/sequences/Pillar3Rails.tsx
+++ b/marketing/product-film/src/sequences/Pillar3Rails.tsx
@@ -1,5 +1,42 @@
+import { AbsoluteFill, Sequence } from "remotion";
import { PillarTitle } from "../components/PillarTitle";
+import { ScreenFrame } from "../components/ScreenFrame";
+import { KenBurns } from "../components/KenBurns";
+import { Cursor } from "../components/Cursor";
+import { Caption } from "../components/Caption";
import { DURATIONS } from "../timing";
-export const Pillar3Rails: React.FC = () => (
-
-);
+
+const D = DURATIONS.pillar3;
+const TITLE = 75;
+
+export const Pillar3Rails: React.FC = () => {
+ const afterTitle = D - TITLE;
+ const beat = Math.floor(afterTitle / 3);
+ const last = afterTitle - beat * 2;
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {/* Sub portal — sees only their task */}
+
+
+
+
+
+
+ );
+};