diff --git a/marketing/product-film/src/sequences/Pillar1Storms.tsx b/marketing/product-film/src/sequences/Pillar1Storms.tsx
index 1f6a65a..7b523fe 100644
--- a/marketing/product-film/src/sequences/Pillar1Storms.tsx
+++ b/marketing/product-film/src/sequences/Pillar1Storms.tsx
@@ -1,5 +1,36 @@
+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 Pillar1Storms: React.FC = () => (
-
-);
+
+const D = DURATIONS.pillar1;
+const TITLE = 75; // 2.5s
+
+export const Pillar1Storms: React.FC = () => {
+ const afterTitle = D - TITLE;
+ const half = Math.floor(afterTitle / 2);
+ return (
+
+
+
+
+
+ {/* Beat A: Storm Intel — zones light up; cursor assigns a zone */}
+
+
+
+
+
+
+ {/* Beat B: Lead Verification — verify a lead */}
+
+
+
+
+
+
+ );
+};