<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
  <meta name="robots" content="noindex, nofollow">
  <title>agendacide</title>
  <link rel="icon" href="/favicon.ico">
  <style>html, body { margin: 0; background: #fff; height: 100vh; }</style>
</head>
<body>
  <!--
    agendacide.com — front door.

    On every visit, redirect to one of N pages in /pages/.
    Each subpage is a fully-designed standalone "room" with its own assets.
    Visitor lands somewhere different each time — the rabbit hole begins
    before they've even chosen a path.

    To add a new room: drop a new HTML file in /pages/ named `06.html`,
    `07.html`, etc., and bump the constant N below.

    Direct subpage URLs (e.g. /pages/03) remain reachable for
    sharing or returning to a specific room. Cloudflare Pages serves clean
    URLs (no .html extension); requesting /pages/01.html will 308 to /pages/01,
    so we redirect to the clean form directly to skip the hop.
  -->
  <script>
    (function () {
      const N = 5;                             // number of placeholder rooms
      const pick = 1 + Math.floor(Math.random() * N);
      const path = "/pages/" + String(pick).padStart(2, "0");  // clean URL (no .html)
      // location.replace so the front door isn't in browser history (no loops on Back).
      location.replace(path);
    })();
  </script>
<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'9fca485b1df345dd',t:'MTc3ODkzMzQ2Mg=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
</html>
