window.SOSTAVIKA_LANDING_CONFIG = { scanUrl: "/scan", searchUrl: "/search", privacyUrl: "/privacy", aboutUrl: "/about", }; window.addEventListener("DOMContentLoaded", () => { if (window.location.hash !== "#method") return; const method = document.getElementById("method"); if (!method) return; window.requestAnimationFrame(() => { method.scrollIntoView({ block: "start" }); }); });