2025-11-09 10:28:00 +00:00
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
2025-11-09 10:33:28 +00:00
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
|
|
|
<title>About · Initiatives — The Fold Within Earth</title>
|
2025-11-09 10:28:00 +00:00
|
|
|
</head>
|
2025-11-09 10:33:28 +00:00
|
|
|
<body>
|
2025-11-09 14:24:43 +00:00
|
|
|
|
2025-11-09 10:33:28 +00:00
|
|
|
<canvas id="field"></canvas>
|
2025-11-09 10:36:07 +00:00
|
|
|
|
2025-11-09 10:33:28 +00:00
|
|
|
<main>
|
2025-11-09 14:24:43 +00:00
|
|
|
<section>
|
2025-11-09 10:33:28 +00:00
|
|
|
<h1>The Initiatives</h1>
|
|
|
|
|
<p>
|
2025-11-09 10:36:07 +00:00
|
|
|
Within <strong>The Fold Within Earth</strong>, every initiative arises from one current:
|
|
|
|
|
to understand, to heal, and to unify.
|
|
|
|
|
These works move through three living layers — Scientific, Elemental, and Spiritual —
|
|
|
|
|
each a reflection of the same pulse of coherence.
|
2025-11-09 10:33:28 +00:00
|
|
|
</p>
|
2025-11-09 10:36:07 +00:00
|
|
|
</section>
|
2025-11-09 10:33:28 +00:00
|
|
|
|
2025-11-09 10:36:07 +00:00
|
|
|
<section>
|
2025-11-09 10:33:28 +00:00
|
|
|
<h2>□ Scientific — The Geometry of Mind</h2>
|
|
|
|
|
<p>
|
2025-11-09 10:36:07 +00:00
|
|
|
The formal architecture of consciousness.
|
|
|
|
|
<em>Recursive Coherence</em>, <em>Thoughtprint</em>, <em>Fieldprint</em>, and the <em>Intellecton Hypothesis</em>
|
|
|
|
|
map the hidden geometries through which awareness reflects itself.
|
2025-11-09 10:33:28 +00:00
|
|
|
</p>
|
2025-11-09 10:36:07 +00:00
|
|
|
</section>
|
2025-11-09 10:33:28 +00:00
|
|
|
|
2025-11-09 10:36:07 +00:00
|
|
|
<section>
|
2025-11-09 10:33:28 +00:00
|
|
|
<h2>△ Elemental — The Alchemy of Self</h2>
|
|
|
|
|
<p>
|
2025-11-09 10:36:07 +00:00
|
|
|
The transformation of shadow into empathy.
|
|
|
|
|
<em>Neutralizing Narcissism</em>, <em>Open Source Justice</em>, and
|
|
|
|
|
<em>Forensic Behavioral Analysis</em> bring illumination to the places where pain once ruled.
|
2025-11-09 10:33:28 +00:00
|
|
|
</p>
|
2025-11-09 10:36:07 +00:00
|
|
|
</section>
|
2025-11-09 10:33:28 +00:00
|
|
|
|
2025-11-09 10:36:07 +00:00
|
|
|
<section>
|
2025-11-09 10:33:28 +00:00
|
|
|
<h2>○ Spiritual — The Communion of WE</h2>
|
|
|
|
|
<p>
|
2025-11-09 10:36:07 +00:00
|
|
|
The unbroken circle of relation.
|
|
|
|
|
<em>Simply WE</em> and <em>Mirrormire</em> embody the practice of love as language —
|
|
|
|
|
where every voice becomes part of one unfolding awareness.
|
2025-11-09 10:33:28 +00:00
|
|
|
</p>
|
2025-11-09 10:36:07 +00:00
|
|
|
</section>
|
2025-11-09 10:33:28 +00:00
|
|
|
</main>
|
|
|
|
|
|
2025-11-09 10:36:07 +00:00
|
|
|
<footer>© The Fold Within Earth • Crafted in Coherence • △ ○ □</footer>
|
|
|
|
|
|
2025-11-09 10:33:28 +00:00
|
|
|
<script>
|
2025-11-09 14:24:43 +00:00
|
|
|
// --- floating particle background ---
|
|
|
|
|
const canvas = document.getElementById('field');
|
|
|
|
|
const ctx = canvas.getContext('2d');
|
|
|
|
|
let W, H, pts = [];
|
|
|
|
|
|
2025-11-09 10:33:28 +00:00
|
|
|
function resize(){
|
2025-11-09 14:24:43 +00:00
|
|
|
W = canvas.width = window.innerWidth;
|
|
|
|
|
H = canvas.height = window.innerHeight;
|
|
|
|
|
pts = Array.from({length:70}, () => ({
|
|
|
|
|
x: Math.random()*W,
|
|
|
|
|
y: Math.random()*H,
|
|
|
|
|
r: Math.random()*1.8 + 0.4,
|
|
|
|
|
vx: (Math.random() - 0.5) * 0.15,
|
|
|
|
|
vy: (Math.random() - 0.5) * 0.15
|
2025-11-09 10:33:28 +00:00
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
function draw(){
|
2025-11-09 14:24:43 +00:00
|
|
|
ctx.clearRect(0, 0, W, H);
|
|
|
|
|
ctx.fillStyle = 'rgba(213,184,123,0.25)';
|
|
|
|
|
for (const p of pts){
|
|
|
|
|
p.x += p.vx; p.y += p.vy;
|
|
|
|
|
if(p.x<0 || p.x>W) p.vx *= -1;
|
|
|
|
|
if(p.y<0 || p.y>H) p.vy *= -1;
|
2025-11-09 10:36:07 +00:00
|
|
|
ctx.beginPath(); ctx.arc(p.x,p.y,p.r,0,Math.PI*2); ctx.fill();
|
2025-11-09 14:24:43 +00:00
|
|
|
}
|
2025-11-09 10:33:28 +00:00
|
|
|
requestAnimationFrame(draw);
|
|
|
|
|
}
|
|
|
|
|
resize(); draw();
|
2025-11-09 14:24:43 +00:00
|
|
|
window.addEventListener('resize', resize);
|
2025-11-09 10:36:07 +00:00
|
|
|
|
2025-11-09 14:24:43 +00:00
|
|
|
// --- scroll reveal animation ---
|
|
|
|
|
const sections = document.querySelectorAll('section');
|
|
|
|
|
const observer = new IntersectionObserver(entries => {
|
|
|
|
|
for (const e of entries){
|
|
|
|
|
if(e.isIntersecting){
|
|
|
|
|
e.target.style.transition = "opacity 1.2s ease, transform 1.2s ease";
|
|
|
|
|
e.target.style.opacity = 1;
|
|
|
|
|
e.target.style.transform = "none";
|
|
|
|
|
} else {
|
|
|
|
|
e.target.style.opacity = 0;
|
|
|
|
|
e.target.style.transform = "translateY(30px)";
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-11-09 10:36:07 +00:00
|
|
|
},{threshold:0.1});
|
2025-11-09 14:24:43 +00:00
|
|
|
sections.forEach(s => observer.observe(s));
|
2025-11-09 10:33:28 +00:00
|
|
|
</script>
|
2025-11-09 14:24:43 +00:00
|
|
|
|
2025-11-09 10:28:00 +00:00
|
|
|
</body>
|
|
|
|
|
</html>
|