/* global React */ const { useState: useStateMid, useEffect: useEffectMid } = React; /* ---------------- Stats ---------------- */ const _AnimatedNum = window.AnimatedNum; function StatsReal() { const items = [ { num: 250, suf: "+", label: "Digital products launched since 2020" }, { num: 35, suf: "+", label: "Countries our work is live in" }, { num: 60, suf: "+", label: "Brand transformations delivered" }, { num: 40, suf: "+", label: "Startups assisted with funding" }, { num: 17, suf: "+", label: "Industries served end-to-end" }, { num: 120, suf: "+", label: "Innovative solutions designed" }, { num: 270, suf: "M+", label: "Avg. client funding pre-partnership" }, { num: 40, suf: "+", label: "Team members across 4 divisions" }, ]; return (

The numbers behind the noise.

Six years, one studio, an obsessive bias toward outcomes. Every metric below comes from shipped, in-market work — not pitch-deck math.

{items.map((s, i) => (
<_AnimatedNum to={s.num}/>{s.suf}
{s.label}
))}
); } /* ---------------- Services ---------------- */ function Services() { const services = [ { idx: "01", name: "UI/UX Design", blurb: "Intuitive interfaces and journeys that earn engagement, not borrow it.", tags: ["Research", "Flows", "Systems"] }, { idx: "02", name: "Web Development", blurb: "Performant, accessible sites that look as good as they perform.", tags: ["Webflow", "Next.js", "WP"] }, { idx: "03", name: "App Development", blurb: "User-first mobile apps built for retention and real-world reliability.", tags: ["React Native", "iOS", "Android"] }, { idx: "04", name: "Software Engineering", blurb: "Custom platforms that power operations and scale with the business.", tags: ["Full-stack", "CMS", "APIs"] }, { idx: "05", name: "Creatives & Brand", blurb: "Visual systems that compress a strategy into a single, ownable impression.", tags: ["Identity", "Naming", "Print"] }, { idx: "06", name: "SEO Marketing", blurb: "Compounding organic growth through content, structure and intent.", tags: ["Technical", "Content", "Links"] }, { idx: "07", name: "Media Buying", blurb: "Measurable ad placement across Meta, Google and programmatic.", tags: ["Meta", "Google", "Programmatic"] }, { idx: "08", name: "2D / 3D Animation", blurb: "Motion that explains, persuades and stops the scroll.", tags: ["Motion", "3D", "AR/VR"] }, ]; return (

What we do — eight disciplines, one team.

Services

We operate as one studio. Strategy briefs design, design briefs engineering, and engineering ships. No silos, no handoff loss.

{services.map((s) => ( {s.idx} / {s.name} {s.blurb} {s.tags.map((t) => {t})} ))}
); } function ArrowSmDark() { return ( ); } window.Stats = StatsReal; window.Services = Services;