Fill out the quick form below and we’ll be in touch to schedule your discovery call.
User registration is disabled for demo purpose.
Forgot Password
Please enter your username or email address. You will receive a link to create a new password via email.
// ===== Fix: transparent header defaults to solid black on page load =====
// The theme's header background is only recalculated inside its scroll
// event handler, which never fires on initial page load. Firing a
// synthetic scroll event once after load forces the theme's own logic
// to run immediately so the header renders transparent right away
// instead of only after the visitor scrolls.
window.addEventListener('load', function() {
window.dispatchEvent(new Event('scroll'));
});