// Resolve a Wistia share URL (https://*.wistia.com/s/) to its real media // ID via oembed. Direct media IDs are returned as-is. const __workWistiaCache = new Map(); const __workWistiaInflight = new Map(); function resolveWistiaId(key) { if (!key) return Promise.resolve(null); if (!/^https?:\/\//i.test(key)) return Promise.resolve(key); if (__workWistiaCache.has(key)) return Promise.resolve(__workWistiaCache.get(key)); if (__workWistiaInflight.has(key)) return __workWistiaInflight.get(key); const p = fetch(`https://fast.wistia.com/oembed.json?url=${encodeURIComponent(key)}`) .then(r => r.ok ? r.json() : Promise.reject(new Error('oembed ' + r.status))) .then(j => { let mediaId = null; if (typeof j.html === 'string') { const m = j.html.match(/embed\/iframe\/([a-z0-9]+)/i) || j.html.match(/wistia_async_([a-z0-9]+)/i) || j.html.match(/medias\/([a-z0-9]+)/i); if (m) mediaId = m[1]; } __workWistiaCache.set(key, mediaId); return mediaId; }) .catch(() => { __workWistiaCache.set(key, null); return null; }); __workWistiaInflight.set(key, p); return p; } function Work() { // 5 vertical reels, one line. `wistia` may be either a 10-char media ID // or a https://.wistia.com/s/ share URL — the resolver above // turns share URLs into media IDs at runtime. const reels = [ { id: 'anik-1', title: 'Featured Reel', audience: 'Featured', kind: 'Vertical Reel', wistia: 'wbv79niu02' }, { id: 'siam-featured-1', title: 'Siam — Featured Reel', audience: 'Personal Brand', kind: 'Vertical Reel', wistia: 'r862hqp8sm' }, { id: 'misc-2nj', title: 'Vertical Reel', audience: 'Featured', kind: 'Vertical Reel', wistia: '2nj977dche' }, { id: 'ad-xses', title: 'Paid Social Ad', audience: 'Founders', kind: 'Performance Ad', wistia: 'https://arafat5nexcutmedia.wistia.com/s/xsesjkiysrd2vym' }, { id: 'b7uz', title: 'Keaton — Fitness', audience: 'Fitness Coach', kind: 'Vertical Reel', wistia: 'b7uzkvsztd' }, { id: 'adam-4', title: 'Adam — Business Reel', audience: 'Founders', kind: 'Vertical Reel', wistia: 'mgdr07w6w2' }, { id: 'aron-1', title: 'Aron Thomas — Pro', audience: 'Professionals', kind: 'Vertical Reel', wistia: 'm6eoqxnes5' }, ]; // Map each reel id → resolved media ID. Direct IDs land in the map // immediately; share URLs fill in once oembed responds. const [resolvedIds, setResolvedIds] = useState(() => { const m = {}; for (const r of reels) { if (r.wistia && !/^https?:\/\//i.test(r.wistia)) m[r.id] = r.wistia; } return m; }); useEffect(() => { let cancelled = false; reels.forEach((r) => { if (r.wistia && /^https?:\/\//i.test(r.wistia)) { resolveWistiaId(r.wistia).then((id) => { if (cancelled || !id) return; setResolvedIds((prev) => prev[r.id] === id ? prev : { ...prev, [r.id]: id }); }); } }); return () => { cancelled = true; }; }, []); const [playing, setPlaying] = useState(null); // Load Wistia player script once useEffect(() => { if (document.getElementById('wistia-script')) return; const s = document.createElement('script'); s.id = 'wistia-script'; s.src = 'https://fast.wistia.com/assets/external/E-v1.js'; s.async = true; document.body.appendChild(s); }, []); return (
{/* Horizon glow rising from the bottom of the section */}

Some Of Our
Featured Projects

Reels, VSLs, long-form and ads — four formats, five industries, one studio.

{reels.map((p) => { const mediaId = resolvedIds[p.id]; const isPlaying = !!mediaId && playing === mediaId; const canPlay = !!mediaId; return (
canPlay && !isPlaying && setPlaying(mediaId)} style={{ position: 'relative', aspectRatio: '9 / 16', borderRadius: 18, overflow: 'hidden', border: '1px solid var(--line)', background: '#0a0e18', cursor: canPlay && !isPlaying ? 'pointer' : 'default', }} > {isPlaying ? (
 
) : ( <> {p.gif ? ( {p.title} ) : mediaId ? ( {p.title} { e.currentTarget.src = `https://fast.wistia.com/embed/medias/${mediaId}/swatch`; }} style={{ width: '100%', height: '100%', objectFit: 'cover', display: 'block' }} /> ) : null} {canPlay && (
)} )}
); })}
{/* Stronger CTA */}
See the full portfolio
24+ more cuts inside · Reels · VSL · Ads · Long-Form
); } Object.assign(window, { Work });