import React, { useState } from 'react'; import { Network, Waves, Users, Scale, HeartHandshake, Leaf, ArrowRight, Globe2, Mail, CheckCircle2 } from 'lucide-react'; const App = () => { const [isSubmitted, setIsSubmitted] = useState(false); const [email, setEmail] = useState(''); const handleJoinSubmit = (e) => { e.preventDefault(); if(email) { setIsSubmitted(true); // In a real app, this would POST to a backend database } }; return (
{/* Navigation */} {/* Hero Section */}
Moving from 50%+1 to the Sum of Us

Democracy should process human meaning.

The era of atomic, polarized majorities is failing. We are pioneering Sumocracy—a relational governance model where power circulates, citizens act as stewards, and democracy harmonizes energies rather than just counting them.

Become a Steward Read the Manifesto
{/* The Crisis & The Paradigm Shift */}

The Limits of the Ballot Box

Institutions survive only as long as they are able to relate. Current democratic practices rely too heavily on logic, law, and leverage. They manage competing interests but fail to build the relational grounding necessary for lasting agreements.

When democracy ends at the ballot box, a 51% majority gets to dominate the 49%. This creates societal viscosity, friction, and polarization.

The Summanitist Answer

Summanitism proposes a shift toward Deep Democracy. Instead of just winning the argument, we must build circles of collective inquiry, experience, and action.

  • From polarization to a politics of addition.
  • From consumer-citizens to impact investors in the public good.
  • From power accumulation to power circulation.
{/* Relational Governance Tools */}

The Architecture of Sumocracy

Transforming governance from command-and-control to connect-and-care. We champion practical frameworks to process meaning, not just votes.

{/* Card 1 */}

Quadratic Voting (QV)

Standard "one person, one vote" fails to capture how much someone cares. QV allocates "voice credits," allowing citizens to express the intensity of their preference, protecting minority interests without rigid quotas.

{/* Card 2 */}

Liquid Democracy

The Web of Trust. Citizens can vote directly or delegate their vote to a trusted proxy (e.g., an ecologist for environmental policy). Unlike 4-year terms, this delegation can be revoked instantly, keeping proxies strictly accountable.

{/* Card 3 */}

Sortition & Assemblies

For highly polarized moral issues, we draft a statistically representative sample of the population. Provided with expert testimony and facilitated dialogue, these assemblies create long-term, non-partisan decisions that serve the "sum".

{/* Integration to Summanitism */}

Become a Weaver of the Sum

Improving citizen participation is just one thread. The broader movement requires reshaping how we relate to economics, technology, nature, and each other.

{!isSubmitted ? (

Join the Network

Enter your email to receive updates and be channeled into the global Summanitism alliance.

setEmail(e.target.value)} className="w-full pl-10 pr-4 py-3 bg-white text-stone-900 rounded-xl focus:ring-2 focus:ring-amber-500 focus:outline-none shadow-inner" placeholder="steward@example.com" />
) : (

Welcome, Suman.

Your intention to relate has been registered. We are weaving you into the network.

To continue your journey into the foundational philosophy, visit our core alliance:

Go to Summanitism.org
)}
{/* Footer */}
); }; export default App;