/* ============================================================ STELLAR365 — SIGN IN PAGE CONTENT INJECTION ============================================================ Version: 2026.05.25.01 Drop in: Power Pages Studio → Site Settings → JavaScript (or upload as a Web File and link from a header snippet — see "Deploy" notes at bottom) PURPOSE: Add a scope banner above the sign-in form and a 3-card "What you can do here" section below it. The sign-in page is rendered from a Power Pages Web Template; we cannot edit the form HTML directly without surgery, so we inject these elements via JS after the page loads. The script self-guards: it only runs on /SignIn URLs and bails silently on every other page. ============================================================ */ (function () { "use strict"; // ============================================================ // GUARD: only run on the sign-in page // ============================================================ if (!/\/signin/i.test(window.location.pathname)) return; console.log("%c[Stellar365 SignIn injector] v2026.05.25.01", "color:#BA7517;font-weight:700"); // ============================================================ // STYLES — injected as a