const phrases = [ ["Envision Equality"], ["Break Through", "Bad Faith"], ["Transcend Tribalism"], ["Reframe Revolution"], ["Subvert Shame"] ]; const container = document.getElementById('rotator-container'); let currentIndex = 0; function createPhrase() { container.innerHTML = ''; const wrapper = document.createElement('div'); wrapper.className = 'rotating-text-wrapper'; phrases[currentIndex].forEach(line => { const lineSpan = document.createElement('span'); lineSpan.textContent = line; wrapper.appendChild(lineSpan); }); container.appendChild(wrapper); setTimeout(() => { wrapper.classList.add('active'); }, 10); } function cyclePhrases() { const activeText = document.querySelector('.rotating-text-wrapper.active'); if (activeText) { activeText.classList.remove('active'); } setTimeout(() => { currentIndex = (currentIndex + 1) % phrases.length; createPhrase(); }, 500); } createPhrase(); setInterval(cyclePhrases, 3000);


const phrases = [ ["critical_thinking"], ["science"], ["democracy"], ["civilisation"], ["fairness"], ["empathy"], ["humility"], ["decentralisation"] ]; const container = document.getElementById('rotator-text-2'); let currentIndex = 0; function createPhrase() { container.innerHTML = ''; const wrapper = document.createElement('div'); wrapper.className = 'rotating-text-wrapper-2'; phrases[currentIndex].forEach(line => { const lineSpan = document.createElement('span'); lineSpan.textContent = line; wrapper.appendChild(lineSpan); }); container.appendChild(wrapper); setTimeout(() => { wrapper.classList.add('active'); }, 10); } function cyclePhrases() { const activeText = document.querySelector('.rotating-text-wrapper-2.active'); if (activeText) { activeText.classList.remove('active'); } setTimeout(() => { currentIndex = (currentIndex + 1) % phrases.length; createPhrase(); }, 500); } createPhrase(); setInterval(cyclePhrases, 2000);

Unnatural flips the narrative to provoke critical thinking.

'natural' is the slipperiest word in the dictionary.
It's often implies 'good' or 'the way things are meant to be'.
This reinforces binary thinking by establishing a false contrast with 'unnatural'.

Natural*Unnatural
Law of the jungleCivilisation
ReligionScience
ArroganceHumility
Cognitive biasesCritical Thinking

*in particular contexts

Science

Science is an exercise of humility and curiosity.It's the process of testing whether we could be mistaken.