Home

Atlas Apprentice – Launching Soon

https://kit.fontawesome.com/4f6e3062ef.js

ATLAS

Earth Observation & Monitoring Services

<!–

–>


tlas Apprentice

Launching Soon

Welcome to the Atlas Apprentice homepage. Our main site is in preparation while we finalize our mission,
services, and products. Please check back shortly for the full launch.

Coming soon

<!– hello@atlasapprentice.com –>
<!– Launch update coming soon –>

document.addEventListener(‘DOMContentLoaded’, () => {
const focus = document.querySelector(‘.eo-focus’);
const video = document.querySelector(‘.bg-video’);
if (!focus || !video) return;

const pickY = () => 30 + Math.random() * 40; // keep vertical travel within box
let lastTime = 0;

const retarget = () => {
focus.style.top = `${pickY()}%`;
focus.style.opacity = ‘0.75’;
};

const tick = () => {
const dur = video.duration || 0;
const t = video.currentTime || 0;

// detect loop to retarget
if (t 0) {
const progress = (t % dur) / dur;
const left = 70 + 18 * progress; // 70–88%
focus.style.left = `${left}%`;
}
requestAnimationFrame(tick);
};

// initialize
focus.style.opacity = ‘0.25’;
retarget();
requestAnimationFrame(tick);
});