(function () { const menu = document.getElementById( "focusarium-undistracted-nav" ); const toggle = menu?.querySelector( ".focus-nav-toggle" ); const navigation = menu?.querySelector( ".focus-nav-links" ); if (!menu || !toggle || !navigation) { return; } function updateScrolledState() { menu.classList.toggle( "is-scrolled", window.scrollY > 6 ); } function closeMenu() { toggle.classList.remove("is-open"); navigation.classList.remove("is-open"); menu.classList.remove("menu-open"); toggle.setAttribute( "aria-expanded", "false" ); } toggle.addEventListener( "click", function () { const isOpen = navigation.classList.toggle( "is-open" ); toggle.classList.toggle( "is-open", isOpen ); menu.classList.toggle( "menu-open", isOpen ); toggle.setAttribute( "aria-expanded", String(isOpen) ); } ); navigation .querySelectorAll("a") .forEach(function (link) { link.addEventListener( "click", closeMenu ); }); document.addEventListener( "click", function (event) { if ( navigation.classList.contains( "is-open" ) && !menu.contains(event.target) ) { closeMenu(); } } ); document.addEventListener( "keydown", function (event) { if (event.key === "Escape") { closeMenu(); } } ); window.addEventListener( "scroll", updateScrolledState, { passive: true } ); window.addEventListener( "resize", function () { if (window.innerWidth > 900) { closeMenu(); } } ); updateScrolledState(); })();

OUT NOW

First Light

Eight instrumental electronic tracks shaped with warm synths, steady rhythm, soft bass, and atmospheric textures for deep focus, coding, studying, work, and calm productivity.

Vinyl and CD editions available


Released

Music

Newest to oldest: the sunrise atmosphere of First Light, and the first pulse of Focus.

Album

First Light

A sunrise album of soft arps, open air, and bright forward motion.

Single

Focus

A warm electronic pulse: the first marker in the Focusarium sound.


Watch

Videos

Visualizers, loops, and long-form sessions turn each release into a moving room of light.

Video

Video

First Light Visualizer

Video

Video

First Light Visualizer

About

Focusarium

Focusarium is the electronic music identity of Robert. It began as a way to make music that could hold attention without becoming noise.

Focusarium is the electronic music identity of Robert. It began as a way to make music that could hold attention without becoming noise: tracks with enough rhythm to move forward and enough space to let the mind stay clear.The sound blends ambient electronic music, downtempo rhythm, minimal techno pulse, cinematic synth textures, deep bass, glowing pads, and distant ethereal vocal layers. The result is calm but not empty: soft pressure, clean repetition, restrained melody, and a low-lit atmosphere that supports concentration without disappearing into generic background music.Focusarium is made for headphones, screens, notebooks, code, writing, study, design, and the quiet repetition of making something real. Each album explores a different mood and visual world while keeping the same purpose: music that helps the mind settle, stay engaged, and continue.


(function () { var banner = document.getElementById("cookie-banner"); var choice = localStorage.getItem("focusarium_cookie_choice"); if (choice) { banner.style.display = "none"; return; } document.getElementById("cookie-accept").addEventListener("click", function () { localStorage.setItem("focusarium_cookie_choice", "accepted"); banner.style.display = "none"; /* Put optional analytics/pixel loading code here, so it runs ONLY after consent. */ }); document.getElementById("cookie-reject").addEventListener("click", function () { localStorage.setItem("focusarium_cookie_choice", "rejected"); banner.style.display = "none"; }); })();