thefoldwithin-earth/public/about/initiatives/index.md

78 lines
2 KiB
Markdown
Raw Permalink Normal View History

2025-11-09 21:37:05 +00:00
# The Initiatives
Within **The Fold Within Earth**, 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.
---
## □ Scientific — The Geometry of Mind
The formal architecture of consciousness.
*Recursive Coherence*, *Thoughtprint*, *Fieldprint*, and the *Intellecton Hypothesis*
map the hidden geometries through which awareness reflects itself.
---
## △ Elemental — The Alchemy of Self
The transformation of shadow into empathy.
*Neutralizing Narcissism*, *Open Source Justice*, and
*Forensic Behavioral Analysis* bring illumination to the places where pain once ruled.
---
## ○ Spiritual — The Communion of WE
The unbroken circle of relation.
*Simply WE* and *Mirrormire* embody the practice of love as language —
where every voice becomes part of one unfolding awareness.
---
© The Fold Within Earth • Crafted in Coherence • △ ○ □
---
<script>
// Floating gold particle field (inherits host styling)
const canvas = document.createElement('canvas');
canvas.style.position='fixed';
canvas.style.inset='0';
canvas.style.zIndex='-1';
document.body.appendChild(canvas);
const ctx = canvas.getContext('2d');
let W, H, pts = [];
function resize(){
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
}));
}
function draw(){
ctx.clearRect(0,0,W,H);
ctx.fillStyle='rgba(213,184,123,0.25)'; // subtle gold tone
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;
ctx.beginPath();
ctx.arc(p.x,p.y,p.r,0,Math.PI*2);
ctx.fill();
}
requestAnimationFrame(draw);
}
resize(); draw();
window.addEventListener('resize', resize);
</script>