<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Redirecting…</title>
  <meta http-equiv="refresh" content="0; url=/" />
  <script>
    (function() {
      try {
        var target = '/';
        // Preserve path as hash for potential client-side routing
        var path = window.location.pathname + window.location.search + window.location.hash;
        if (path && path !== '/' ) {
          target = '/#' + path.replace(/^\//, '');
        }
        window.location.replace(target);
      } catch (_) {
        // Fallback to home
        window.location.href = '/';
      }
    })();
  </script>
  <style>body{font-family:system-ui, -apple-system, Segoe UI, Roboto, Inter, sans-serif; background:#05070A; color:#E0E6F1; display:grid; place-items:center; height:100vh; margin:0}</style>
</head>
<body>
  <div>
    <h1 style="margin:0 0 .25rem 0;">Routing…</h1>
    <p style="color:#AAB6C5">Taking you to the right place.</p>
    <p><a href="/" style="color:#63EDFF">Go to Home</a></p>
  </div>
</body>
</html>


