https://absolutesolver.com/63796e2f/
--- previous
+++ current
@@ -0,0 +1,369 @@
+<!-- EVIDENCE EXHIBIT 7A - ELLIOTT RESIDENCE SECURITY FOOTAGE - RECOVERED 3045-01-20 -->
+<!DOCTYPE html>
+<html lang="en">
+<head>
+<meta charset="UTF-8">
+<meta name="viewport" content="width=device-width, initial-scale=1.0">
+<title>ELLIOTT RESIDENCE - SECURITY SYSTEM</title>
+<link rel="stylesheet" href="/assets/glitch.css">
+<style>
+*{margin:0;padding:0;box-sizing:border-box}
+body{
+ background:#080808;
+ color:#aaa;
+ font-family:"Courier New",Courier,monospace;
+ overflow-x:hidden;
+ min-height:100vh;
+}
+
+.top-bar{
+ display:flex;
+ justify-content:space-between;
+ align-items:center;
+ padding:10px 20px;
+ background:#0a0a0a;
+ border-bottom:1px solid #222;
+ font-size:13px;
+ letter-spacing:.15em;
+ text-transform:uppercase;
+}
+.top-bar .system-name{color:#c00;font-weight:bold}
+.top-bar .timestamp{color:#555}
+.top-bar .rec{color:#c00;animation:recBlink 1.2s step-end infinite}
+@keyframes recBlink{0%,100%{opacity:1}50%{opacity:0}}
+
+.cam-grid{
+ display:grid;
+ grid-template-columns:repeat(3,1fr);
+ gap:6px;
+ padding:12px;
+ max-width:960px;
+ margin:0 auto;
+}
+.cam-feed{
+ position:relative;
+ background:#080808;
+ border:1px solid #1a1a1a;
+ aspect-ratio:16/10;
+ display:flex;
+ flex-direction:column;
+ justify-content:flex-end;
+ padding:8px 10px;
+ overflow:hidden;
+}
+.cam-feed::before{
+ content:"";
+ position:absolute;inset:0;
+ background:repeating-linear-gradient(
+ to bottom,transparent 0px,transparent 2px,
+ rgba(0,0,0,.25) 2px,rgba(0,0,0,.25) 4px
+ );
+ pointer-events:none;
+ z-index:1;
+}
+.cam-feed .cam-label{
+ font-size:10px;
+ color:#555;
+ letter-spacing:.1em;
+ z-index:2;
+}
+.cam-feed .cam-name{
+ font-size:12px;
+ color:#888;
+ font-weight:bold;
+ z-index:2;
+}
+.cam-feed .status{
+ position:absolute;
+ top:8px;right:10px;
+ width:6px;height:6px;
+ border-radius:50%;
+ background:#0a0;
+ box-shadow:0 0 4px #0a0;
+ z-index:2;
+}
+.cam-feed.offline .status{background:#c00;box-shadow:0 0 4px #c00}
+.cam-feed .noise{
+ position:absolute;inset:0;
+ opacity:.04;
+ background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
+ background-size:128px 128px;
+ animation:staticShift .15s steps(6) infinite;
+ pointer-events:none;
+}
+
+.timeline-section{
+ max-width:960px;
+ margin:0 auto;
+ padding:8px 12px 4px;
+}
+.timeline-bar{
+ position:relative;
+ height:18px;
+ background:#0a0a0a;
+ border:1px solid #1a1a1a;
+ border-radius:2px;
+ overflow:hidden;
+}
+.timeline-fill{
+ position:absolute;
+ left:0;top:0;bottom:0;
+ width:75%;
+ background:linear-gradient(90deg,#1a0000,#330000 60%,#550000);
+ border-right:2px solid #c00;
+ box-shadow:0 0 6px #c00;
+}
+.timeline-markers{
+ display:flex;
+ justify-content:space-between;
+ max-width:960px;
+ margin:0 auto;
+ padding:2px 12px 0;
+ font-size:9px;
+ color:#444;
+ letter-spacing:.08em;
+}
+.timeline-markers span.active{color:#c00}
+
+.log-section{
+ max-width:960px;
+ margin:16px auto 0;
+ padding:0 12px 40px;
+}
+.log-header{
+ font-size:11px;
+ color:#555;
+ letter-spacing:.15em;
+ border-bottom:1px solid #1a1a1a;
+ padding-bottom:6px;
+ margin-bottom:10px;
+}
+.log-entry{
+ font-size:11.5px;
+ line-height:1.7;
+ opacity:0;
+ transform:translateY(4px);
+ animation:logFadeIn .6s ease forwards;
+ padding:1px 0;
+ white-space:pre-wrap;
+ word-break:break-word;
+}
+@keyframes logFadeIn{to{opacity:1;transform:translateY(0)}}
+
+.log-entry .ts{color:#555}
+.log-entry .cam{color:#777}
+.log-entry .body{color:#999}
+
+.log-entry.warning .body{color:#cc0}
+.log-entry.alert .body{color:#c44}
+.log-entry.corrupt .body{color:#c44;filter:blur(.3px)}
+.log-entry.severe .body{
+ color:#e33;
+ text-shadow:-1px 0 #0f0,.5px 0 #f00;
+ filter:blur(.4px);
+ animation:logGlitch 3s infinite linear;
+}
+.log-entry.critical{
+ color:#f22;
+ text-shadow:-2px 0 #0f0,1px 0 #f00,0 0 6px rgba(255,50,50,.4);
+ filter:blur(.5px);
+ animation:logGlitch 2s infinite linear;
+}
+@keyframes logGlitch{
+ 0%,100%{transform:translate(0)}
+ 10%{transform:translate(-1px,0)}
+ 30%{transform:translate(1px,1px) skewX(.5deg)}
+ 50%{transform:translate(0,-1px)}
+ 70%{transform:translate(2px,0) skewX(-.3deg)}
+ 90%{transform:translate(-1px,1px)}
+}
+
+.final-symbol{
+ text-align:center;
+ margin-top:20px;
+ opacity:0;
+ animation:breathingGlow 4s ease-in-out infinite;
+}
+.final-symbol img{
+ width:80px;
+ height:auto;
+ filter:drop-shadow(0 0 10px rgba(255,215,0,0.6)) drop-shadow(0 0 20px rgba(255,215,0,0.3));
+}
+.final-symbol.visible{opacity:1}
+
+.hidden-clue{
+ text-align:center;
+ font-size:10px;
+ color:#111;
+ margin-top:30px;
+ opacity:0;
+ transition:opacity 3s ease;
+ letter-spacing:.05em;
+ user-select:text;
+}
+.hidden-clue.visible{opacity:1;color:#1a1a1a}
+
+@media(max-width:640px){
+ .cam-grid{grid-template-columns:repeat(2,1fr)}
+}
+</style>
+</head>
+<body class="crt-flicker"><a href="https://absolutesolver.com/cdn-cgi/content?id=Wt.BVDohmPykTHXpZTi5syJWa8wQYQ2EzzbmXGYS.Yo-1779652640.3635452-1.0.1.1-FNvwtGrUZPRYHAJYPXSbcxuSj3YCdL_KtUkBN3jVy4g" aria-hidden="true" rel="nofollow noopener" style="display: none !important; visibility: hidden !important"></a>
+<div class="crt-overlay"></div>
+<div class="crt-vignette"></div>
+
+<!-- TOP BAR -->
+<div class="top-bar">
+ <span class="system-name">ELLIOTT RESIDENCE - SECURITY SYSTEM</span>
+ <span class="timestamp">3044-09-15</span>
+ <span class="rec">● REC</span>
+</div>
+
+<!-- CAMERA GRID -->
+<div class="cam-grid">
+ <div class="cam-feed">
+ <div class="noise"></div>
+ <div class="status"></div>
+ <div class="cam-label">CAM 01</div>
+ <div class="cam-name">FOYER</div>
+ </div>
+ <div class="cam-feed">
+ <div class="noise"></div>
+ <div class="status"></div>
+ <div class="cam-label">CAM 02</div>
+ <div class="cam-name">KITCHEN</div>
+ </div>
+ <div class="cam-feed">
+ <div class="noise"></div>
+ <div class="status"></div>
+ <div class="cam-label">CAM 03</div>
+ <div class="cam-name">LIVING ROOM</div>
+ </div>
+ <div class="cam-feed">
+ <div class="noise"></div>
+ <div class="status"></div>
+ <div class="cam-label">CAM 04</div>
+ <div class="cam-name">HALLWAY 2F</div>
+ </div>
+ <div class="cam-feed">
+ <div class="noise"></div>
+ <div class="status"></div>
+ <div class="cam-label">CAM 05</div>
+ <div class="cam-name">TESSA'S ROOM</div>
+ </div>
+ <div class="cam-feed">
+ <div class="noise"></div>
+ <div class="status"></div>
+ <div class="cam-label">CAM 06</div>
+ <div class="cam-name">BACKYARD</div>
+ </div>
+</div>
+
+<!-- TIMELINE SCRUBBER -->
+<div class="timeline-section">
+ <div class="timeline-bar"><div class="timeline-fill"></div></div>
+</div>
+<div class="timeline-markers">
+ <span>03:00</span><span>03:10</span><span>03:20</span>
+ <span class="active">03:30</span><span class="active">03:40</span>
+ <span>03:50</span><span>04:00</span>
+</div>
+
+<!-- PLAYBACK LOG -->
+<div class="log-section">
+ <div class="log-header">▶ PLAYBACK LOG — 3044-09-15 — 03:00–04:00</div>
+ <div id="log-container"></div>
+ <div class="final-symbol" id="final-symbol"><img src="/assets/solver-symbol.png" alt="" draggable="false"></div>
+ <div class="hidden-clue" id="hidden-clue">The planet that hid the evidence: C9. Their status code: 4f4646.</div>
+</div>
+
+<script src="/assets/solver-core.js" type="a4322932ef4925fcc26fc247-text/javascript"></script>
+<script type="a4322932ef4925fcc26fc247-text/javascript">
+(function(){
+ "use strict";
+
+ SolverCore.trackVisit("63796e2f");
+ SolverCore.solverWarn();
+ SolverCore.solverMessage("EVIDENCE EXHIBIT 7A — Elliott Residence security footage recovered.");
+
+ var LOG_DATA = [
+ {ts:"03:12:07",cam:"CAM 01 - FOYER",body:"All clear. Front door locked.",level:""},
+ {ts:"03:15:22",cam:"CAM 03 - LIVING ROOM",body:"CYN unit in standby mode. Charging station.",level:""},
+ {ts:"03:28:41",cam:"CAM 03 - LIVING ROOM",body:"CYN unit has... moved. Not on charging station. Standing in center of room.",level:"warning"},
+ {ts:"03:28:42",cam:"CAM 03 - LIVING ROOM",body:"CYN is facing Camera 03 directly. Smiling.",level:"warning"},
+ {ts:"03:30:00",cam:"CAM 01-06",body:"All cameras experience 0.3s static burst.",level:"alert"},
+ {ts:"03:30:01",cam:"CAM 03 - LIVING ROOM",body:"CYN is no longer in frame.",level:"alert"},
+ {ts:"03:31:15",cam:"CAM 04 - HALLWAY 2F",body:"CYN detected on second floor. Moving toward master bedroom.",level:"alert"},
+ {ts:"03:31:16",cam:"CAM 04 - HALLWAY 2F",body:"CYN\u2019s eyes are... wrong. Yellow. Not standard WD blue.",level:"alert"},
+ {ts:"03:32:00",cam:"CAM 04 - HALLWAY 2F",body:"[AUDIO DETECTED] Soft humming. Children\u2019s lullaby.",level:"alert"},
+ {ts:"03:33:47",cam:"CAM 04 - HALLWAY 2F",body:"Master bedroom door opens from inside. James Elliott.",level:"corrupt"},
+ {ts:"03:33:48",cam:"CAM 04 - HALLWAY 2F",body:"\u201CCyn? What are you doing up he\u2014\u201D",level:"corrupt"},
+ {ts:"03:33:49",cam:"CAM 04 - HALLWAY 2F",body:"[FEED CORRUPTED - 4.7 SECONDS]",level:"corrupt"},
+ {ts:"03:33:54",cam:"CAM 04 - HALLWAY 2F",body:"CYN standing alone in hallway. Smiling. James Elliott is not visible.",level:"corrupt"},
+ {ts:"03:34:12",cam:"CAM 04 - HALLWAY 2F",body:"Substance on CYN\u2019s hands. Dark. Oil-like.",level:"corrupt"},
+ {ts:"03:35:00",cam:"ALL CAMERAS",body:"Static interference increasing.",level:"severe"},
+ {ts:"03:36:22",cam:"CAM 05 - TESSA\u2019S ROOM",body:"Tessa Elliott is awake. Sitting up in bed.",level:"severe"},
+ {ts:"03:36:30",cam:"CAM 05 - TESSA\u2019S ROOM",body:"Door handle turning slowly.",level:"severe"},
+ {ts:"03:36:35",cam:"CAM 05 - TESSA\u2019S ROOM",body:"CYN enters. Still smiling.",level:"severe"},
+ {ts:"03:36:36",cam:"CAM 05 - TESSA\u2019S ROOM",body:"CYN: \u201CHi Tessa! Can\u2019t sleep? Me neither! \u2661\u201D",level:"severe"},
+ {ts:"03:36:40",cam:"CAM 05 - TESSA\u2019S ROOM",body:"Tessa: \u201CCyn...? What\u2019s on your hands...?\u201D",level:"severe"},
+ {ts:"03:36:42",cam:"CAM 05 - TESSA\u2019S ROOM",body:"CYN: \u201CDon\u2019t worry about that, silly! I took care of everything!\u201D",level:"critical"},
+ {ts:"03:36:45",cam:"CAM 05 - TESSA\u2019S ROOM",body:"CYN: \u201CYour parents won\u2019t be bothering us anymore.\u201D",level:"critical"},
+ {ts:"03:36:47",cam:"CAM 05 - TESSA\u2019S ROOM",body:"Tessa screaming. Running.",level:"critical"},
+ {ts:"03:36:48",cam:"CAM 05 - TESSA\u2019S ROOM",body:"[FEED CORRUPTED]",level:"critical"},
+ {ts:"03:37:00",cam:"ALL CAMERAS",body:"[SEVERE INTERFERENCE]",level:"critical"},
+ {ts:"03:42:00",cam:"CAM 06 - BACKYARD",body:"Tessa running. Barefoot. Screaming.",level:"critical"},
+ {ts:"03:42:15",cam:"CAM 06 - BACKYARD",body:"CYN visible in kitchen window. Not pursuing. Just watching. Smiling.",level:"critical"},
+ {ts:"03:42:16",cam:"CAM 06 - BACKYARD",body:"CYN waves.",level:"critical"},
+ {ts:"03:45:00",cam:"ALL CAMERAS",body:"OFFLINE",level:"critical"},
+ {ts:"03:45:01",cam:"SYSTEM",body:"\u2297",level:"critical"}
+ ];
+
+ var container = document.getElementById("log-container");
+ var BASE_DELAY = 400;
+ var ENTRY_INTERVAL = 220;
+
+ LOG_DATA.forEach(function(entry, i){
+ var div = document.createElement("div");
+ div.className = "log-entry" + (entry.level ? " " + entry.level : "");
+ div.style.animationDelay = (BASE_DELAY + i * ENTRY_INTERVAL) + "ms";
+
+ var html = '<span class="ts">[' + entry.ts + ']</span> ';
+ html += '<span class="cam">' + entry.cam + ':</span> ';
+ html += '<span class="body">' + entry.body + '</span>';
+ div.innerHTML = html;
+
+ if(entry.level === "severe" || entry.level === "critical"){
+ div.addEventListener("animationend", function handler(){
+ var bodyEl = div.querySelector(".body");
+ if(bodyEl){
+ var intensity = entry.level === "critical" ? 0.25 : 0.12;
+ SolverCore.corruptText(bodyEl, intensity);
+ }
+ div.removeEventListener("animationend", handler);
+ });
+ }
+
+ container.appendChild(div);
+ });
+
+ var totalDelay = BASE_DELAY + LOG_DATA.length * ENTRY_INTERVAL + 800;
+
+ setTimeout(function(){
+ document.getElementById("final-symbol").classList.add("visible");
+ }, totalDelay);
+
+ setTimeout(function(){
+ document.getElementById("hidden-clue").classList.add("visible");
+ }, totalDelay + 3000);
+
+ setTimeout(function(){
+ var feeds = document.querySelectorAll(".cam-feed");
+ feeds.forEach(function(f){ f.classList.add("offline"); });
+ }, totalDelay);
+
+})();
+</script>
+<script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="a4322932ef4925fcc26fc247-|49" defer></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:'a00ede6a4ff92a7d',t:'MTc3OTY1MjY0MA=='};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>
+<!-- C9-4f4646 - The planet they tried to forget -->