Daedalus logo
Releases 1 min read

The new Daedalus: a film, two verticals, one workshop

Why we rebuilt daedalusorg.com as an immersive guará film, and what the rebuild says about how Daedalus builds software.

Today we shipped a new daedalusorg.com. It opens with a film: four scenes of ukiyo-e ink, copper circuit filigree, and the guará, the scarlet ibis whose plumage happens to be our brand color, and whose name our first product, Guara Cloud, already carries.

The film is not decoration for its own sake. It tells the structure of the company in one scroll:

  • The Flock, the software vertical, where tools like Guara Cloud ship.
  • The Traces, the Daedalus Research Foundation, advancing computer science research in Brazil through open source and papers.
  • The Perch, the principles that bind both, and an open door.

Built the way we build everything

The site practices what the workshop preaches. It ships zero framework JavaScript, the film’s engine loads GSAP only when your device and your preferences allow motion, and the whole four-scene film weighs less than a single hero image on most landing pages. If you ask for reduced motion, you get a calm poster experience; if you disable JavaScript entirely, every word is still there.

The decision logic is small enough to read in one breath:

export function pickMode(env: EnvironmentHints): FilmMode {
  return env.reducedMotion || env.saveData ? "static" : "film";
}

Everything on the site, the film, the hubs, the documents, this journal, is statically generated, typed end to end, and tested from the contrast of the text down to the seams of the video loops.

What’s next

The Foundation’s first open-source tools are being forged, and this journal is where we’ll write about them: engineering notes, research, releases, and the occasional essay. If any of it resonates, talk to us, or subscribe to the feed and watch the ink dry in real time.

Back to all posts