UNVORAA / Discovery Engine

Don't just
know.
predict.

Make a prediction before UNVORAA reveals what happens. Then follow the connection into another system.

Today's experiment

If Earth's gravity became 0.5G, what would happen to your jump height?

Reveal

Your answer is hidden.

Choose an answer first. The reveal only happens after you commit.

After the reveal

One answer opens
another door.

01

Predict

Commit before seeing the explanation.

02

Reveal

See what changes and why.

03

Connect

Follow the consequence into another system.

04

Discover

Collect a meaningful discovery.

05

Return

A new variable appears tomorrow.

Your discovery vault

Curiosity
leaves a trace.

UNVORAA records discoveries locally in your browser. No account is required for this prototype.

0

discoveries collected

5 discoveries unlock the first hidden experience.

Your atlas

Your curiosity
has a shape.

MY UNVORAA ATLAS0 nodes
GRAVITY
SPACE
BODY
ENERGY
MONEY
(function connectPredictionLedger(){ let saved=false; const reveal=document.getElementById("reveal"); if(!reveal)return; const observer=new MutationObserver(()=>{ if(reveal.classList.contains("show") && !saved){ const selected=document.querySelector(".choice.selected"); const prediction=selected ? selected.textContent.trim() : "Prediction made"; const title=(document.getElementById("question")||{}).textContent||"UNVORAA Discovery"; const text=(reveal.innerText||"").trim(); savePrediction(prediction,text,title); saved=true; } }); observer.observe(reveal,{attributes:true,attributeFilter:["class"]}); })();