// 慢推压迫(slow-push-in)——studiobinder camera movements。
// 景 A(帧 0–120):深色底 + 白色大数字 "10x",scale 用 Easing.in(Easing.quad)
// 从 1.00 匀加速推到 1.14——前 2 秒几乎不可察,后段明显可感;同时四角径向
// 暗角 opacity 0→0.5 同步加深,构成压迫感的第二来源。
// 帧 120 无任何过渡硬切景 B:满屏亮色 FakeDashboard(A) 真静止 30f——
// 暗→亮的大反差让"切"这一拍才响。
import React from 'react';
import { useCurrentFrame, interpolate, Easing } from 'remotion';
import { G, FakeDashboard } from '../../_fixtures/Fixtures';
const CUT = 120; // 硬切帧
export const SlowPushIn: React.FC = () => {
const frame = useCurrentFrame();
// ---- 景 B:帧 120 起,满屏亮面板,完全静止 ----
if (frame >= CUT) {
return