Simple systems that bend, not break.

Zero dependency freedom.

Living Systems

We understand your business isn't static, it's a living, breathing organism that evolves with market demands, team dynamics and customer needs. We build systems that adapt and grow alongside your business, not brittle structures that break under change.

Right-Sized Solutions

We believe in using the least powerful tool that solves the problem. Not every challenge needs a complex framework or cutting-edge technology. Simple, maintainable solutions often outperform over-engineered ones, and they're far easier to modify when needs change.

Crafted Excellence

High-quality design and innovative thinking aren't luxuries, they're investments that compound over time. Attention to detail in architecture, user experience, and code quality reduces future friction and creates systems that people actually want to use and maintain.

Design Organisms

Context independent, zero deps, infinitely reusable, plain old HTML, JS & CSS.

Every animation on this site is the result of a highly configurable tool export, our brand 'Organisms'.

Koi Pond Simulation
<!-- Drop anywhere - zero dependencies -->
<div id="koi-pond" style="width:100%;height:500px"></div>

<script>
const CONFIG = {
  count: 12,
  size: 0.6,
  speed: 0.05,
  waveSpeed: 2.2,
  undulation: 29.5,
  schoolDistance: 10,
  schoolStrength: 0.1,
  sizeVariation: 0.77
};

// Minimal self-contained simulator
// Live tool: kintsugi.studio/wavefish.html
</script>
SVG Fractal Generator
<!-- Drop anywhere - zero dependencies -->
<div id="svg-fractal" style="width:100%;height:500px"></div>

<script>
const CONFIG = {
  svg: {
    preset: "flower"
  },
  pattern: {
    type: "fibonacci",
    count: 4
  },
  growth: {
    depth: 4,
    length: 20,
    decay: 0.95,
    angle: 90
  },
  appearance: {
    size: 32,
    sizeDecay: 0.7,
    opacity: 0.9
  }
};
// Minimal self-contained generator
// Live tool: kintsugi.studio/svg-fractal.html
</script>
Cherry Blossom Tree Generator
<!-- Drop anywhere - zero dependencies -->
<div id="cherry-tree" style="width:100%;height:500px"></div>

<script> 
<!-- Same as above, check out kintsugi.studio/cherry-tree.html to see the tool -->
</script>

No frameworks, no dependencies, drop in exports.

Explore the playground →