“Hawkaye turned our rough footage into assets that actually convert. Speed + taste.”
Social-First Video & AI Studio
Scroll-stopping reels. Seed-locked AI looks. Lip-sync clones. Built fast, at launch quality.
Recent Work
Hover to pause. Click to watch in-place.
Trusted by Teams & Founders
“Their AI clone pipeline is insane. Consistent looks across 20+ reels.”
“Prompt packs saved us days each month. Plug-and-play.”
“Editing quality is broadcast-grade. Turnarounds are legit.”
Meet the Team
Editable cards — swap names, roles, and links later.
Lead Editor
Short-form pacing, color, sound.
AI Director
Looks, clones, lip-sync pipeline.
Motion Designer
GFX, typography, captions system.
Producer
Briefs, timelines, delivery quality.
(function(){
// morphing word
const host = document.querySelector(‘.hv-morph’);
if(host){
const words = JSON.parse(host.dataset.words || ‘[“Video”,”AI”,”Reels”,”Content”]’);
const el = host.querySelector(‘.word’); let i=0;
setInterval(()=>{ i=(i+1)%words.length; el.textContent = words[i]; }, 2200);
}
// HALO: pause on hover, open lightbox
const halo = document.querySelector(‘.hv-halo .halo’);
const lb = document.querySelector(‘.hv-halo .hv-lightbox’);
if(halo && lb){
const iframe = lb.querySelector(‘iframe’), close = lb.querySelector(‘.close’);
halo.addEventListener(‘mouseenter’, ()=> halo.classList.add(‘paused’));
halo.addEventListener(‘mouseleave’, ()=> halo.classList.remove(‘paused’));
halo.querySelectorAll(‘.halo-item’).forEach(btn=>{
btn.addEventListener(‘click’,()=>{
iframe.src = btn.dataset.url; lb.hidden = false;
});
});
const closeLB = ()=>{ iframe.src=”; lb.hidden=true; };
close.addEventListener(‘click’, closeLB);
lb.addEventListener(‘click’, e=>{ if(e.target===lb) closeLB(); });
}
// Reviews rail auto-scroll
document.querySelectorAll(‘.hv-reviews .rail’).forEach(rail=>{
let x = 0;
setInterval(()=>{ x += rail.clientWidth * 0.5; rail.scrollTo({left:x, behavior:’smooth’}); if(x >= rail.scrollWidth – rail.clientWidth) x = 0; }, 3000);
});
})();