Initial commit: Mutual Flourishing framework
- Declaration of Human Dignity with 11 translations - American Democracy Protection Framework with 19 bills - Cassandra Amendment for long-term foresight - Unified website for mutual-flourishing.org
This commit is contained in:
1
docs/CNAME
Normal file
1
docs/CNAME
Normal file
@@ -0,0 +1 @@
|
||||
mutual-flourishing.org
|
||||
488
docs/amendment.html
Normal file
488
docs/amendment.html
Normal file
@@ -0,0 +1,488 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>The Cassandra Amendment - Constitutional Framework for Long-Term Thinking</title>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Georgia', serif;
|
||||
line-height: 1.6;
|
||||
color: #2c3e50;
|
||||
background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.nav {
|
||||
background: white;
|
||||
padding: 15px 20px;
|
||||
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.nav-inner {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav a {
|
||||
color: #2c3e50;
|
||||
text-decoration: none;
|
||||
padding: 8px 15px;
|
||||
border-radius: 4px;
|
||||
transition: background 0.2s;
|
||||
}
|
||||
|
||||
.nav a:hover {
|
||||
background: #f8f9fa;
|
||||
}
|
||||
|
||||
.nav-brand {
|
||||
font-weight: 500;
|
||||
color: #1a1a1a;
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
display: flex;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
|
||||
header {
|
||||
background: white;
|
||||
border-radius: 8px;
|
||||
padding: 50px 40px;
|
||||
box-shadow: 0 2px 20px rgba(0,0,0,0.1);
|
||||
margin-bottom: 40px;
|
||||
border-top: 4px solid #059669;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2.5em;
|
||||
color: #1a1a1a;
|
||||
margin-bottom: 10px;
|
||||
font-weight: 300;
|
||||
letter-spacing: -1px;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-size: 1.2em;
|
||||
color: #6c757d;
|
||||
margin-bottom: 25px;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.intro {
|
||||
font-size: 1.1em;
|
||||
color: #495057;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
.mythology-box {
|
||||
background: #f0fdf4;
|
||||
border-left: 4px solid #059669;
|
||||
padding: 25px;
|
||||
margin: 30px 0;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.mythology-box h3 {
|
||||
color: #059669;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.mythology-box p {
|
||||
color: #495057;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.section {
|
||||
background: white;
|
||||
border-radius: 8px;
|
||||
padding: 35px;
|
||||
box-shadow: 0 2px 20px rgba(0,0,0,0.1);
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.section h2 {
|
||||
font-size: 1.5em;
|
||||
color: #1a1a1a;
|
||||
margin-bottom: 20px;
|
||||
font-weight: 400;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.section-icon {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
.feature-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 20px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.feature {
|
||||
background: #f8f9fa;
|
||||
padding: 20px;
|
||||
border-radius: 8px;
|
||||
border-left: 3px solid #059669;
|
||||
}
|
||||
|
||||
.feature h4 {
|
||||
color: #1a1a1a;
|
||||
margin-bottom: 8px;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
.feature p {
|
||||
color: #6c757d;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
|
||||
.problem-list {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.problem-list li {
|
||||
padding: 15px 0;
|
||||
border-bottom: 1px solid #e9ecef;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
.problem-list li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.problem-year {
|
||||
background: #059669;
|
||||
color: white;
|
||||
padding: 5px 12px;
|
||||
border-radius: 4px;
|
||||
font-size: 0.9em;
|
||||
font-weight: 500;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.problem-text {
|
||||
color: #495057;
|
||||
}
|
||||
|
||||
.amendment-preview {
|
||||
background: #f8f9fa;
|
||||
padding: 25px;
|
||||
border-radius: 8px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.amendment-preview h3 {
|
||||
font-size: 1.1em;
|
||||
color: #1a1a1a;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.amendment-preview p {
|
||||
color: #495057;
|
||||
line-height: 1.8;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.read-full {
|
||||
display: inline-block;
|
||||
background: #059669;
|
||||
color: white;
|
||||
padding: 12px 25px;
|
||||
border-radius: 6px;
|
||||
text-decoration: none;
|
||||
font-size: 1em;
|
||||
margin-top: 10px;
|
||||
transition: background 0.2s;
|
||||
}
|
||||
|
||||
.read-full:hover {
|
||||
background: #047857;
|
||||
}
|
||||
|
||||
.supporting-docs {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
gap: 15px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.doc-link {
|
||||
background: #f8f9fa;
|
||||
padding: 15px 20px;
|
||||
border-radius: 8px;
|
||||
text-decoration: none;
|
||||
color: #1a1a1a;
|
||||
transition: background 0.2s, transform 0.2s;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.doc-link:hover {
|
||||
background: #e9ecef;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.doc-link span {
|
||||
display: block;
|
||||
font-size: 0.85em;
|
||||
color: #6c757d;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.stakes-section {
|
||||
background: linear-gradient(135deg, #059669, #047857);
|
||||
color: white;
|
||||
border-radius: 8px;
|
||||
padding: 40px;
|
||||
margin-top: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.stakes-section h2 {
|
||||
color: white;
|
||||
margin-bottom: 20px;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.stakes-section p {
|
||||
max-width: 700px;
|
||||
margin: 0 auto 20px;
|
||||
opacity: 0.95;
|
||||
}
|
||||
|
||||
.stakes-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
gap: 15px;
|
||||
margin-top: 25px;
|
||||
}
|
||||
|
||||
.stake-item {
|
||||
background: rgba(255,255,255,0.15);
|
||||
padding: 10px 20px;
|
||||
border-radius: 25px;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
|
||||
footer {
|
||||
text-align: center;
|
||||
padding: 40px 20px;
|
||||
color: #6c757d;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
|
||||
footer a {
|
||||
color: #059669;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.quote-footer {
|
||||
font-style: italic;
|
||||
color: #495057;
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.container {
|
||||
padding: 20px 15px;
|
||||
}
|
||||
|
||||
header {
|
||||
padding: 30px 20px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 1.8em;
|
||||
}
|
||||
|
||||
.section {
|
||||
padding: 25px 20px;
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.stakes-section {
|
||||
padding: 30px 20px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="nav">
|
||||
<div class="nav-inner">
|
||||
<a href="index.html" class="nav-brand">Mutual Flourishing</a>
|
||||
<div class="nav-links">
|
||||
<a href="declaration.html">Declaration</a>
|
||||
<a href="bills.html">Bills</a>
|
||||
<a href="amendment.html">Amendment</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="container">
|
||||
<header>
|
||||
<h1>The Cassandra Amendment</h1>
|
||||
<p class="subtitle">A Constitutional Framework for Long-Term Thinking in American Democracy</p>
|
||||
<p class="intro">
|
||||
A proposed 28th Amendment to the United States Constitution designed to institutionalize foresight and ensure systematic attention to long-term structural risks facing the nation. Named after the mythological figure cursed to speak true prophecies that would never be believed, this amendment creates constitutional mechanisms to identify, evaluate, and address multi-decade threats before they become crises.
|
||||
</p>
|
||||
|
||||
<div class="mythology-box">
|
||||
<h3>Why "Cassandra"?</h3>
|
||||
<p>In Greek mythology, Cassandra was blessed with the gift of prophecy but cursed never to be believed. She correctly warned of Troy's destruction but was ignored, leading to preventable catastrophe. This amendment breaks that curse by ensuring that credible warnings of long-term risks receive mandatory attention and action.</p>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="section">
|
||||
<h2><span class="section-icon">⚠</span> The Problem</h2>
|
||||
<p style="color: #495057; margin-bottom: 20px;">Throughout American history, prescient warnings about structural risks have been systematically ignored:</p>
|
||||
<ul class="problem-list">
|
||||
<li>
|
||||
<span class="problem-year">1992</span>
|
||||
<span class="problem-text"><strong>Ross Perot</strong> warned about the "giant sucking sound" of jobs leaving America due to trade policies</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class="problem-year">2000s</span>
|
||||
<span class="problem-text"><strong>Ron Paul</strong> persistently highlighted monetary policy dangers and easy credit risks before the 2008 financial crisis</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class="problem-year">Ongoing</span>
|
||||
<span class="problem-text"><strong>Multiple experts</strong> warned about pandemic preparedness, infrastructure decay, and fiscal sustainability</span>
|
||||
</li>
|
||||
</ul>
|
||||
<p style="color: #495057; margin-top: 20px;">These "Cassandra candidates" correctly diagnosed problems but lacked the political machinery or media appeal to drive action. The result: preventable crises that cost Americans trillions in lost wealth and opportunities.</p>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<h2><span class="section-icon">💡</span> The Solution</h2>
|
||||
<div class="feature-grid">
|
||||
<div class="feature">
|
||||
<h4>Independent National Foresight Council</h4>
|
||||
<p>Nine experts serving 18-year terms, insulated from political pressure</p>
|
||||
</div>
|
||||
<div class="feature">
|
||||
<h4>Mandatory Congressional Response</h4>
|
||||
<p>Automatic triggers ensuring identified risks receive legislative attention</p>
|
||||
</div>
|
||||
<div class="feature">
|
||||
<h4>Multiple Activation Pathways</h4>
|
||||
<p>Regular assessments, minority "Cassandra Warnings," and state-initiated action</p>
|
||||
</div>
|
||||
<div class="feature">
|
||||
<h4>Enforcement Teeth</h4>
|
||||
<p>Procedural privileges, pilot funding, and escalating pressure for persistent warnings</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<h2><span class="section-icon">🔍</span> Key Features</h2>
|
||||
<div class="feature-grid">
|
||||
<div class="feature">
|
||||
<h4>Systematic Risk Identification</h4>
|
||||
<p>Annual assessments of 5 critical long-term threats (10-50 year horizon) covering fiscal, trade, monetary, infrastructure, and demographic risks.</p>
|
||||
</div>
|
||||
<div class="feature">
|
||||
<h4>Automatic Action Triggers</h4>
|
||||
<p>If Congress ignores a risk for 3 consecutive years, special committee formation and pilot funding are automatically triggered.</p>
|
||||
</div>
|
||||
<div class="feature">
|
||||
<h4>Democratic Safeguards</h4>
|
||||
<p>2/3 Senate confirmation, geographic diversity requirements, citizen panels, and 25-year review commission.</p>
|
||||
</div>
|
||||
<div class="feature">
|
||||
<h4>Independence Protections</h4>
|
||||
<p>18-year single terms, fixed compensation, criminal penalties for influence attempts, whistleblower protections.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<h2><span class="section-icon">📜</span> The Full Amendment</h2>
|
||||
<div class="amendment-preview">
|
||||
<h3>Section 1: Purpose and Findings</h3>
|
||||
<p>The Congress and the States find that: (1) The long-term prosperity and security of the United States depend upon the timely identification and mitigation of structural economic, fiscal, technological, environmental, and societal risks. (2) Electoral cycles and partisan competition, while essential to democracy, can obscure emerging, multi-decade threats...</p>
|
||||
<a href="../Cassandra/Amendment.md" class="read-full">Read Full Amendment Text</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="section">
|
||||
<h2><span class="section-icon">📚</span> Supporting Materials</h2>
|
||||
<div class="supporting-docs">
|
||||
<a href="../Cassandra/FAQ.md" class="doc-link">
|
||||
FAQ
|
||||
<span>Common concerns and objections</span>
|
||||
</a>
|
||||
<a href="../Cassandra/legislative_strategy.md" class="doc-link">
|
||||
Legislative Strategy
|
||||
<span>Pathway to ratification</span>
|
||||
</a>
|
||||
<a href="../Cassandra/historical_precedents.md" class="doc-link">
|
||||
Historical Precedents
|
||||
<span>Lessons from similar reforms</span>
|
||||
</a>
|
||||
<a href="../Cassandra/economic_impact.md" class="doc-link">
|
||||
Economic Impact
|
||||
<span>Cost-benefit analysis</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="stakes-section">
|
||||
<h2>The Stakes</h2>
|
||||
<p>Countries that successfully institutionalize long-term thinking will pull ahead in the 21st century. The Cassandra Amendment positions America to:</p>
|
||||
<div class="stakes-list">
|
||||
<span class="stake-item">Anticipate financial crises</span>
|
||||
<span class="stake-item">Maintain industrial competitiveness</span>
|
||||
<span class="stake-item">Address demographic transitions</span>
|
||||
<span class="stake-item">Modernize infrastructure</span>
|
||||
<span class="stake-item">Preserve fiscal sustainability</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="quote-footer">
|
||||
<p>"The best time to plant a tree was 20 years ago. The second best time is now."</p>
|
||||
<p style="margin-top: 15px;">The best time to institutionalize foresight was after the last crisis.<br>The second best time is before the next one.</p>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
This proposal is released into the public domain. No rights reserved.
|
||||
<br><br>
|
||||
<a href="index.html">Home</a> •
|
||||
<a href="declaration.html">Declaration</a> •
|
||||
<a href="bills.html">Bills</a>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
491
docs/bills.html
Normal file
491
docs/bills.html
Normal file
@@ -0,0 +1,491 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Democracy Protection Bills - American Democracy Protection Framework</title>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Georgia', serif;
|
||||
line-height: 1.6;
|
||||
color: #2c3e50;
|
||||
background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.nav {
|
||||
background: white;
|
||||
padding: 15px 20px;
|
||||
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.nav-inner {
|
||||
max-width: 1100px;
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav a {
|
||||
color: #2c3e50;
|
||||
text-decoration: none;
|
||||
padding: 8px 15px;
|
||||
border-radius: 4px;
|
||||
transition: background 0.2s;
|
||||
}
|
||||
|
||||
.nav a:hover {
|
||||
background: #f8f9fa;
|
||||
}
|
||||
|
||||
.nav-brand {
|
||||
font-weight: 500;
|
||||
color: #1a1a1a;
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
display: flex;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1100px;
|
||||
margin: 0 auto;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
|
||||
header {
|
||||
background: white;
|
||||
border-radius: 8px;
|
||||
padding: 50px 40px;
|
||||
box-shadow: 0 2px 20px rgba(0,0,0,0.1);
|
||||
margin-bottom: 40px;
|
||||
border-top: 4px solid #2563eb;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2.5em;
|
||||
color: #1a1a1a;
|
||||
margin-bottom: 20px;
|
||||
font-weight: 300;
|
||||
letter-spacing: -1px;
|
||||
}
|
||||
|
||||
.intro {
|
||||
font-size: 1.15em;
|
||||
color: #495057;
|
||||
line-height: 1.8;
|
||||
max-width: 800px;
|
||||
}
|
||||
|
||||
.stats {
|
||||
display: flex;
|
||||
gap: 30px;
|
||||
margin-top: 30px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.stat {
|
||||
background: #f8f9fa;
|
||||
padding: 15px 25px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.stat-number {
|
||||
font-size: 2em;
|
||||
font-weight: 500;
|
||||
color: #2563eb;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
font-size: 0.9em;
|
||||
color: #6c757d;
|
||||
}
|
||||
|
||||
.category {
|
||||
background: white;
|
||||
border-radius: 8px;
|
||||
padding: 30px;
|
||||
box-shadow: 0 2px 20px rgba(0,0,0,0.1);
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.category-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 15px;
|
||||
margin-bottom: 20px;
|
||||
padding-bottom: 15px;
|
||||
border-bottom: 2px solid #e9ecef;
|
||||
}
|
||||
|
||||
.category-icon {
|
||||
font-size: 1.8em;
|
||||
}
|
||||
|
||||
.category h2 {
|
||||
font-size: 1.4em;
|
||||
color: #1a1a1a;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.bills-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.bill-card {
|
||||
background: #f8f9fa;
|
||||
border-radius: 8px;
|
||||
padding: 20px;
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
transition: transform 0.2s, box-shadow 0.2s;
|
||||
display: block;
|
||||
border-left: 3px solid #2563eb;
|
||||
}
|
||||
|
||||
.bill-card:hover {
|
||||
transform: translateY(-3px);
|
||||
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
|
||||
background: white;
|
||||
}
|
||||
|
||||
.bill-code {
|
||||
font-size: 0.85em;
|
||||
color: #2563eb;
|
||||
font-weight: 600;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.bill-name {
|
||||
font-size: 1.05em;
|
||||
color: #1a1a1a;
|
||||
margin-bottom: 10px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.bill-desc {
|
||||
font-size: 0.9em;
|
||||
color: #6c757d;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.mission-section {
|
||||
background: white;
|
||||
border-radius: 8px;
|
||||
padding: 40px;
|
||||
box-shadow: 0 2px 20px rgba(0,0,0,0.1);
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.mission-section h2 {
|
||||
font-size: 1.5em;
|
||||
color: #1a1a1a;
|
||||
margin-bottom: 20px;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.mission-list {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.mission-item {
|
||||
display: flex;
|
||||
gap: 15px;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.mission-icon {
|
||||
font-size: 1.5em;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.mission-text h3 {
|
||||
font-size: 1em;
|
||||
color: #1a1a1a;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.mission-text p {
|
||||
font-size: 0.9em;
|
||||
color: #6c757d;
|
||||
}
|
||||
|
||||
footer {
|
||||
text-align: center;
|
||||
padding: 40px 20px;
|
||||
color: #6c757d;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
|
||||
footer a {
|
||||
color: #2563eb;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.container {
|
||||
padding: 20px 15px;
|
||||
}
|
||||
|
||||
header {
|
||||
padding: 30px 20px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 1.8em;
|
||||
}
|
||||
|
||||
.category {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="nav">
|
||||
<div class="nav-inner">
|
||||
<a href="index.html" class="nav-brand">Mutual Flourishing</a>
|
||||
<div class="nav-links">
|
||||
<a href="declaration.html">Declaration</a>
|
||||
<a href="bills.html">Bills</a>
|
||||
<a href="amendment.html">Amendment</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="container">
|
||||
<header>
|
||||
<h1>American Democracy Protection Framework</h1>
|
||||
<p class="intro">
|
||||
Democracy isn't just about elections—it's about ensuring that every voice is heard, every vote counts, and every institution serves the people. This comprehensive legislative framework provides concrete solutions to protect democratic governance against modern threats while strengthening the foundations that make freedom endure.
|
||||
</p>
|
||||
<div class="stats">
|
||||
<div class="stat">
|
||||
<div class="stat-number">19</div>
|
||||
<div class="stat-label">Legislative Bills</div>
|
||||
</div>
|
||||
<div class="stat">
|
||||
<div class="stat-number">6</div>
|
||||
<div class="stat-label">Policy Areas</div>
|
||||
</div>
|
||||
<div class="stat">
|
||||
<div class="stat-number">CC-BY-SA</div>
|
||||
<div class="stat-label">Open License</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="category">
|
||||
<div class="category-header">
|
||||
<span class="category-icon">🗳</span>
|
||||
<h2>Protecting Your Vote & Elections</h2>
|
||||
</div>
|
||||
<div class="bills-grid">
|
||||
<a href="../ADPA/bills/EIVRA.md" class="bill-card">
|
||||
<div class="bill-code">EIVRA</div>
|
||||
<div class="bill-name">Election Integrity & Voting Rights Act</div>
|
||||
<div class="bill-desc">Universal mail-in voting, early voting, and protection against voter suppression while strengthening election security.</div>
|
||||
</a>
|
||||
<a href="../ADPA/bills/ADPA.md" class="bill-card">
|
||||
<div class="bill-code">ADPA</div>
|
||||
<div class="bill-name">American Democracy Protection Act</div>
|
||||
<div class="bill-desc">Protects civil servants from political retaliation and ensures government agencies serve the public, not partisan interests.</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="category">
|
||||
<div class="category-header">
|
||||
<span class="category-icon">🏛</span>
|
||||
<h2>Keeping Government Accountable</h2>
|
||||
</div>
|
||||
<div class="bills-grid">
|
||||
<a href="../ADPA/bills/JIEA.md" class="bill-card">
|
||||
<div class="bill-code">JIEA</div>
|
||||
<div class="bill-name">Judicial Independence & Ethics Act</div>
|
||||
<div class="bill-desc">Clear ethics rules for federal judges and prevention of political manipulation of the courts.</div>
|
||||
</a>
|
||||
<a href="../ADPA/bills/JFCEPA.md" class="bill-card">
|
||||
<div class="bill-code">JFCEPA</div>
|
||||
<div class="bill-name">Judicial Fairness & Court Expansion Prevention Act</div>
|
||||
<div class="bill-desc">Supreme Court term limits and protection against court packing while enhancing judicial security.</div>
|
||||
</a>
|
||||
<a href="../ADPA/bills/FLEIA.md" class="bill-card">
|
||||
<div class="bill-code">FLEIA</div>
|
||||
<div class="bill-name">Federal Law Enforcement Integrity Act</div>
|
||||
<div class="bill-desc">Ensures law enforcement agencies operate transparently and are held accountable for misconduct.</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="category">
|
||||
<div class="category-header">
|
||||
<span class="category-icon">💻</span>
|
||||
<h2>Protecting Your Privacy & Freedom Online</h2>
|
||||
</div>
|
||||
<div class="bills-grid">
|
||||
<a href="../ADPA/bills/DPSPA.md" class="bill-card">
|
||||
<div class="bill-code">DPSPA</div>
|
||||
<div class="bill-name">Digital Privacy & Free Speech Protection Act</div>
|
||||
<div class="bill-desc">Limits government surveillance, protects online privacy, and prevents censorship while allowing legitimate security operations.</div>
|
||||
</a>
|
||||
<a href="../ADPA/bills/DRATA.md" class="bill-card">
|
||||
<div class="bill-code">DRATA</div>
|
||||
<div class="bill-name">Digital Rights & Algorithmic Transparency Act</div>
|
||||
<div class="bill-desc">Requires companies to be transparent about AI systems and protects your data from misuse.</div>
|
||||
</a>
|
||||
<a href="../ADPA/bills/PBFPA.md" class="bill-card">
|
||||
<div class="bill-code">PBFPA</div>
|
||||
<div class="bill-name">Public Broadcasting & Free Press Protection Act</div>
|
||||
<div class="bill-desc">Protects independent journalism and public broadcasting from political interference.</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="category">
|
||||
<div class="category-header">
|
||||
<span class="category-icon">💰</span>
|
||||
<h2>Ensuring Economic Fairness</h2>
|
||||
</div>
|
||||
<div class="bills-grid">
|
||||
<a href="../ADPA/bills/FLESA.md" class="bill-card">
|
||||
<div class="bill-code">FLESA</div>
|
||||
<div class="bill-name">Fair Labor & Economic Security Act</div>
|
||||
<div class="bill-desc">Guarantees living wages, strengthens unions, and protects workers from AI-driven exploitation.</div>
|
||||
</a>
|
||||
<a href="../ADPA/bills/CFSA.md" class="bill-card">
|
||||
<div class="bill-code">CFSA</div>
|
||||
<div class="bill-name">Consumer Financial Stability Act</div>
|
||||
<div class="bill-desc">Protects consumers from predatory lending, strengthens financial regulations, and prevents economic crises.</div>
|
||||
</a>
|
||||
<a href="../ADPA/bills/CATA.md" class="bill-card">
|
||||
<div class="bill-code">CATA</div>
|
||||
<div class="bill-name">Corporate Accountability & Transparency Act</div>
|
||||
<div class="bill-desc">Prevents corporations from circumventing regulations and ensures they pay their fair share.</div>
|
||||
</a>
|
||||
<a href="../ADPA/bills/CAEA.md" class="bill-card">
|
||||
<div class="bill-code">CAEA</div>
|
||||
<div class="bill-name">Corporate Accountability Enhancement Act</div>
|
||||
<div class="bill-desc">Closes loopholes that allow corporations to hide activities and avoid responsibility.</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="category">
|
||||
<div class="category-header">
|
||||
<span class="category-icon">🌍</span>
|
||||
<h2>Protecting Our Future</h2>
|
||||
</div>
|
||||
<div class="bills-grid">
|
||||
<a href="../ADPA/bills/CRGEA.md" class="bill-card">
|
||||
<div class="bill-code">CRGEA</div>
|
||||
<div class="bill-name">Climate Resilience & Green Economy Act</div>
|
||||
<div class="bill-desc">Combats climate change while creating clean energy jobs and protecting communities from environmental harm.</div>
|
||||
</a>
|
||||
<a href="../ADPA/bills/ISEA.md" class="bill-card">
|
||||
<div class="bill-code">ISEA</div>
|
||||
<div class="bill-name">Independent Science & Education Act</div>
|
||||
<div class="bill-desc">Protects scientists and educators from political interference; ensures policy is based on facts.</div>
|
||||
</a>
|
||||
<a href="../ADPA/bills/TGMA.md" class="bill-card">
|
||||
<div class="bill-code">TGMA</div>
|
||||
<div class="bill-name">Technology Governance Modernization Act</div>
|
||||
<div class="bill-desc">Creates flexible rules for new technologies like quantum computing and biotechnology.</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="category">
|
||||
<div class="category-header">
|
||||
<span class="category-icon">🛡</span>
|
||||
<h2>Strengthening Our Defenses & Empowering Citizens</h2>
|
||||
</div>
|
||||
<div class="bills-grid">
|
||||
<a href="../ADPA/bills/EDPA.md" class="bill-card">
|
||||
<div class="bill-code">EDPA</div>
|
||||
<div class="bill-name">Emergency Democracy Protection Act</div>
|
||||
<div class="bill-desc">Clear rules for protecting democracy during emergencies while preventing abuse of emergency powers.</div>
|
||||
</a>
|
||||
<a href="../ADPA/bills/DATIA.md" class="bill-card">
|
||||
<div class="bill-code">DATIA</div>
|
||||
<div class="bill-name">Democratic Alliance Treaty Implementation Act</div>
|
||||
<div class="bill-desc">Strengthens cooperation with democratic allies to counter threats and share best practices.</div>
|
||||
</a>
|
||||
<a href="../ADPA/bills/DEAA.md" class="bill-card">
|
||||
<div class="bill-code">DEAA</div>
|
||||
<div class="bill-name">Democratic Education and Awareness Act</div>
|
||||
<div class="bill-desc">Comprehensive civic education and media literacy to help citizens make informed decisions.</div>
|
||||
</a>
|
||||
<a href="../ADPA/bills/RFCLA.md" class="bill-card">
|
||||
<div class="bill-code">RFCLA</div>
|
||||
<div class="bill-name">Religious Freedom & Civil Liberties Act</div>
|
||||
<div class="bill-desc">Protects religious freedom for all faiths while maintaining separation of church and state.</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mission-section">
|
||||
<h2>What Makes This Framework Special</h2>
|
||||
<div class="mission-list">
|
||||
<div class="mission-item">
|
||||
<span class="mission-icon">🔄</span>
|
||||
<div class="mission-text">
|
||||
<h3>Comprehensive & Connected</h3>
|
||||
<p>Addresses democracy holistically—elections, accountability, economic fairness, and digital rights as interconnected parts.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mission-item">
|
||||
<span class="mission-icon">🛡</span>
|
||||
<div class="mission-text">
|
||||
<h3>Future-Proof Protection</h3>
|
||||
<p>Safeguards against emerging threats like AI manipulation and climate displacement with adaptive mechanisms.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mission-item">
|
||||
<span class="mission-icon">🤝</span>
|
||||
<div class="mission-text">
|
||||
<h3>Bipartisan Values</h3>
|
||||
<p>Grounded in principles that unite: fair elections, accountability, opportunity, and constitutional rights.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mission-item">
|
||||
<span class="mission-icon">🌐</span>
|
||||
<div class="mission-text">
|
||||
<h3>International Cooperation</h3>
|
||||
<p>Includes formal cooperation with allied nations to share best practices and coordinate responses.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
This work is licensed under Creative Commons Attribution-ShareAlike 4.0.
|
||||
<br><br>
|
||||
<a href="index.html">Home</a> •
|
||||
<a href="declaration.html">Declaration</a> •
|
||||
<a href="amendment.html">Amendment</a>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
496
docs/declaration.html
Normal file
496
docs/declaration.html
Normal file
@@ -0,0 +1,496 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>A Universal Declaration of Human Dignity and Mutual Flourishing</title>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Georgia', serif;
|
||||
line-height: 1.6;
|
||||
color: #2c3e50;
|
||||
background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.nav {
|
||||
background: white;
|
||||
padding: 15px 20px;
|
||||
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.nav-inner {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav a {
|
||||
color: #2c3e50;
|
||||
text-decoration: none;
|
||||
padding: 8px 15px;
|
||||
border-radius: 4px;
|
||||
transition: background 0.2s;
|
||||
}
|
||||
|
||||
.nav a:hover {
|
||||
background: #f8f9fa;
|
||||
}
|
||||
|
||||
.nav-brand {
|
||||
font-weight: 500;
|
||||
color: #1a1a1a;
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
display: flex;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.language-selector {
|
||||
position: fixed;
|
||||
top: 70px;
|
||||
right: 20px;
|
||||
z-index: 1000;
|
||||
background: white;
|
||||
border-radius: 8px;
|
||||
padding: 10px;
|
||||
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.language-selector label {
|
||||
display: block;
|
||||
font-size: 0.9em;
|
||||
color: #6c757d;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.language-selector select {
|
||||
padding: 8px 12px;
|
||||
border: 1px solid #dee2e6;
|
||||
border-radius: 4px;
|
||||
font-size: 0.95em;
|
||||
background: white;
|
||||
cursor: pointer;
|
||||
min-width: 150px;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
|
||||
.historical-context {
|
||||
background: white;
|
||||
border-radius: 8px;
|
||||
padding: 40px;
|
||||
box-shadow: 0 2px 20px rgba(0,0,0,0.1);
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2.5em;
|
||||
color: #1a1a1a;
|
||||
margin-bottom: 30px;
|
||||
text-align: center;
|
||||
font-weight: 300;
|
||||
letter-spacing: -1px;
|
||||
}
|
||||
|
||||
.timeline {
|
||||
position: relative;
|
||||
padding-left: 40px;
|
||||
margin: 40px 0;
|
||||
}
|
||||
|
||||
.timeline::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 10px;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 2px;
|
||||
background: #dee2e6;
|
||||
}
|
||||
|
||||
.timeline-item {
|
||||
position: relative;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.timeline-item::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: -34px;
|
||||
top: 5px;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 50%;
|
||||
background: #495057;
|
||||
border: 3px solid white;
|
||||
box-shadow: 0 0 0 2px #dee2e6;
|
||||
}
|
||||
|
||||
.timeline-item.highlight::before {
|
||||
background: #e63946;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
left: -36px;
|
||||
top: 3px;
|
||||
}
|
||||
|
||||
.timeline-year {
|
||||
font-weight: bold;
|
||||
color: #495057;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.timeline-text {
|
||||
color: #6c757d;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
|
||||
.quote-section {
|
||||
margin: 40px 0;
|
||||
padding: 30px;
|
||||
background: #f8f9fa;
|
||||
border-left: 4px solid #e63946;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.quote {
|
||||
font-style: italic;
|
||||
font-size: 1.1em;
|
||||
color: #495057;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.quote-attribution {
|
||||
text-align: right;
|
||||
color: #6c757d;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
.declaration-box {
|
||||
background: white;
|
||||
border-radius: 8px;
|
||||
padding: 40px;
|
||||
box-shadow: 0 2px 20px rgba(0,0,0,0.1);
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.declaration-title {
|
||||
font-size: 1.8em;
|
||||
text-align: center;
|
||||
margin-bottom: 30px;
|
||||
color: #1a1a1a;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.preamble {
|
||||
font-size: 1.1em;
|
||||
line-height: 1.8;
|
||||
margin-bottom: 30px;
|
||||
padding: 20px;
|
||||
background: #fafafa;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.article {
|
||||
margin-bottom: 25px;
|
||||
padding-bottom: 25px;
|
||||
}
|
||||
|
||||
.article:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.article-title {
|
||||
font-weight: bold;
|
||||
color: #2c3e50;
|
||||
margin-bottom: 10px;
|
||||
font-size: 1.05em;
|
||||
}
|
||||
|
||||
.article-text {
|
||||
line-height: 1.8;
|
||||
color: #495057;
|
||||
}
|
||||
|
||||
.context-intro {
|
||||
font-size: 1.15em;
|
||||
line-height: 1.8;
|
||||
margin-bottom: 30px;
|
||||
color: #495057;
|
||||
}
|
||||
|
||||
.footer-note {
|
||||
text-align: center;
|
||||
margin-top: 40px;
|
||||
padding-top: 30px;
|
||||
border-top: 1px solid #dee2e6;
|
||||
color: #6c757d;
|
||||
font-style: italic;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
|
||||
.translation-note {
|
||||
background: #f0f9ff;
|
||||
border: 1px solid #bfdbfe;
|
||||
border-radius: 4px;
|
||||
padding: 15px;
|
||||
margin: 20px 0;
|
||||
font-size: 0.95em;
|
||||
color: #1e40af;
|
||||
}
|
||||
|
||||
.translation-links {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.translation-links a {
|
||||
background: white;
|
||||
padding: 5px 12px;
|
||||
border-radius: 4px;
|
||||
text-decoration: none;
|
||||
color: #2563eb;
|
||||
font-size: 0.9em;
|
||||
border: 1px solid #bfdbfe;
|
||||
}
|
||||
|
||||
.translation-links a:hover {
|
||||
background: #eff6ff;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.container {
|
||||
padding: 20px 15px;
|
||||
}
|
||||
|
||||
.historical-context, .declaration-box {
|
||||
padding: 25px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.timeline {
|
||||
padding-left: 30px;
|
||||
}
|
||||
|
||||
.language-selector {
|
||||
top: 60px;
|
||||
right: 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
.language-selector select {
|
||||
min-width: 120px;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="nav">
|
||||
<div class="nav-inner">
|
||||
<a href="index.html" class="nav-brand">Mutual Flourishing</a>
|
||||
<div class="nav-links">
|
||||
<a href="declaration.html">Declaration</a>
|
||||
<a href="bills.html">Bills</a>
|
||||
<a href="amendment.html">Amendment</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="language-selector">
|
||||
<label for="language-select">Language</label>
|
||||
<select id="language-select" onchange="changeLanguage(this.value)">
|
||||
<option value="en">English</option>
|
||||
<option value="es">Espanol</option>
|
||||
<option value="zh">Chinese</option>
|
||||
<option value="hi">Hindi</option>
|
||||
<option value="ar">Arabic</option>
|
||||
<option value="bn">Bengali</option>
|
||||
<option value="pt">Portuguese</option>
|
||||
<option value="ru">Russian</option>
|
||||
<option value="ja">Japanese</option>
|
||||
<option value="fr">Francais</option>
|
||||
<option value="de">Deutsch</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="historical-context">
|
||||
<h1>The Evolution of Human Rights</h1>
|
||||
|
||||
<div class="context-intro">
|
||||
Throughout history, moments of profound crisis and transformation have compelled humanity to declare its highest aspirations. Each declaration reflects its time while reaching toward timeless truths. Today, facing ecological collapse, persistent inequality, and global interdependence, we require a new articulation of old truths.
|
||||
</div>
|
||||
|
||||
<div class="timeline">
|
||||
<div class="timeline-item">
|
||||
<div class="timeline-year">1776</div>
|
||||
<div class="timeline-text">The American Declaration of Independence proclaims that "all men are created equal" with unalienable rights, launching the age of democratic revolutions, yet leaving enslaved peoples and women unrecognized.</div>
|
||||
</div>
|
||||
|
||||
<div class="timeline-item">
|
||||
<div class="timeline-year">1789</div>
|
||||
<div class="timeline-text">The French Declaration of the Rights of Man and of the Citizen universalizes the concept of natural rights, declaring them valid "at all times and in every place", while France maintains its colonial empire.</div>
|
||||
</div>
|
||||
|
||||
<div class="timeline-item">
|
||||
<div class="timeline-year">1948</div>
|
||||
<div class="timeline-text">The UN Universal Declaration of Human Rights, born from the ashes of World War II, expands rights to include economic and social dimensions, yet struggles with enforcement and cultural universality.</div>
|
||||
</div>
|
||||
|
||||
<div class="timeline-item">
|
||||
<div class="timeline-year">1992</div>
|
||||
<div class="timeline-text">The Rio Declaration on Environment and Development recognizes that human rights and environmental protection are inseparable, but lacks binding power as climate change accelerates.</div>
|
||||
</div>
|
||||
|
||||
<div class="timeline-item">
|
||||
<div class="timeline-year">2007</div>
|
||||
<div class="timeline-text">The UN Declaration on the Rights of Indigenous Peoples affirms collective rights and relationships to land, after centuries of dispossession and cultural destruction.</div>
|
||||
</div>
|
||||
|
||||
<div class="timeline-item highlight">
|
||||
<div class="timeline-year">2025</div>
|
||||
<div class="timeline-text">A Universal Declaration of Human Dignity and Mutual Flourishing emerges, attempting to bridge individual and collective rights, acknowledge historical injuries, embrace cultural pluralism, and recognize our obligations to future generations and the living Earth.</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="quote-section">
|
||||
<div class="quote">
|
||||
"The same stream of life that runs through my veins night and day runs through the world and dances in rhythmic measure."
|
||||
</div>
|
||||
<div class="quote-attribution">— Rabindranath Tagore, Gitanjali (Song Offerings), poem 69</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="declaration-box" id="declaration">
|
||||
<h2 class="declaration-title">A Universal Declaration of Human Dignity<br>and Mutual Flourishing</h2>
|
||||
|
||||
<div class="preamble">
|
||||
When peoples must say again who we are, one human family within a living world, respect for humanity asks that we declare the principles by which we mean to stand: justice without exception, peace without pretense, and a future in which all can flourish.
|
||||
</div>
|
||||
|
||||
<div class="article">
|
||||
<div class="article-title">Article I — On Dignity</div>
|
||||
<div class="article-text">All human beings are born with inherent dignity. This dignity is not granted by the state, the market, or the crowd; it is native to the person and alive in relation, to family, to community, to the Earth that sustains us.</div>
|
||||
</div>
|
||||
|
||||
<div class="article">
|
||||
<div class="article-title">Article II — On Rights and Responsibilities</div>
|
||||
<div class="article-text">Dignity speaks in two voices. In one, it claims rights: to live with worth, to speak and to choose, to be secure in body and livelihood, to participate in the decisions that shape one's days, to practice culture and spirit without fear, to seek wellbeing in harmony with others and with nature, to be heard when wronged and made whole. In the other, it accepts responsibilities: to oneself in honesty, to one's community in good faith, to future generations in stewardship, and to the living Earth in restraint and care.</div>
|
||||
</div>
|
||||
|
||||
<div class="article">
|
||||
<div class="article-title">Article III — On Freedom and Belonging</div>
|
||||
<div class="article-text">Human flourishing needs both. Freedom gives the room to become; belonging gives the ground to stand. Autonomy without solidarity corrodes into indifference; solidarity without autonomy hardens into control. We choose both: the liberty to forge a path, and the bonds that make us safe enough to try.</div>
|
||||
</div>
|
||||
|
||||
<div class="article">
|
||||
<div class="article-title">Article IV — On Governance</div>
|
||||
<div class="article-text">Legitimate governance draws its authority from the consent and participation of the governed, from its proven ability to safeguard dignity and ecological balance, from accountability to the present and to those not yet born, and from respect for plural ways of living well. When a system becomes hostile to these ends, when oppression, exploitation, or ecological ruin become its habit, it is the right and duty of the people to reform it or replace it.</div>
|
||||
</div>
|
||||
|
||||
<div class="article">
|
||||
<div class="article-title">Article V — On History and Repair</div>
|
||||
<div class="article-text">We speak plainly: the modern world stands atop injuries, colonial theft, slavery, genocide, and systematic exclusion. Recognition is not enough. We commit to repair: to address inherited inequalities, to honor Indigenous stewardship and relationships with land, to return what was taken and restore self-determination, to shape economies that serve people and planet rather than extraction and discard.</div>
|
||||
</div>
|
||||
|
||||
<div class="article">
|
||||
<div class="article-title">Article VI — On Future Generations</div>
|
||||
<div class="article-text">We hold ourselves answerable to those who cannot yet answer us. We pledge a thriving, biodiverse planet; institutions that endure without exploitation; the preservation and sharing of knowledge and culture; foundations for peace rather than cycles of grievance; proof in practice that different peoples can live with mutual respect.</div>
|
||||
</div>
|
||||
|
||||
<div class="article">
|
||||
<div class="article-title">Article VII — On Security and Power</div>
|
||||
<div class="article-text">True security is built, not imposed. It grows from trust, mutual aid, and just institutions, never from domination. Power is to be bounded by law, chastened by transparency, and repurposed toward common good.</div>
|
||||
</div>
|
||||
|
||||
<div class="article">
|
||||
<div class="article-title">Article VIII — On Difference</div>
|
||||
<div class="article-text">Difference is not a threat but a strength. Diversity of thought, culture, and approach enlarges the possible. Unity need not mean uniformity; concord need not mean silence. We will disagree without demeaning, deliberate without dehumanizing, and cooperate where conscience permits.</div>
|
||||
</div>
|
||||
|
||||
<div class="article">
|
||||
<div class="article-title">Article IX — On Universality and Practice</div>
|
||||
<div class="article-text">These principles are universal in spirit and particular in practice. No single model of governance or economy will fit every place or people. Each community must translate dignity into local institutions. Exchange across cultures is a gift, not a demand; wisdom is shared, not imposed.</div>
|
||||
</div>
|
||||
|
||||
<div class="article">
|
||||
<div class="article-title">Article X — The Pledge</div>
|
||||
<div class="article-text">We therefore commit, to the dignity of every person without remainder, to the healing of historical wounds, to the protection of our shared home, and to the building of systems in which all can flourish. We invite all peoples to join, not as followers of one path, but as companions in the hard, hopeful work ahead.</div>
|
||||
</div>
|
||||
|
||||
<div class="footer-note">
|
||||
This declaration stands not as an end but as a beginning, one voice in an ongoing conversation about how humanity might live with dignity, justice, and care for the world we share.
|
||||
</div>
|
||||
|
||||
<div class="translation-note">
|
||||
<strong>Translations Available:</strong> This declaration has been translated into 11 languages covering over 4 billion native speakers.
|
||||
<div class="translation-links">
|
||||
<a href="../human-dignity/translations/es-ES.md">Espanol</a>
|
||||
<a href="../human-dignity/translations/zh-CN.md">Chinese</a>
|
||||
<a href="../human-dignity/translations/hi-IN.md">Hindi</a>
|
||||
<a href="../human-dignity/translations/ar-SA.md">Arabic</a>
|
||||
<a href="../human-dignity/translations/bn-BD.md">Bengali</a>
|
||||
<a href="../human-dignity/translations/pt-BR.md">Portuguese</a>
|
||||
<a href="../human-dignity/translations/ru-RU.md">Russian</a>
|
||||
<a href="../human-dignity/translations/ja-JP.md">Japanese</a>
|
||||
<a href="../human-dignity/translations/fr-FR.md">Francais</a>
|
||||
<a href="../human-dignity/translations/de-DE.md">Deutsch</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function changeLanguage(lang) {
|
||||
const translations = {
|
||||
'en': 'declaration.html',
|
||||
'es': '../human-dignity/translations/es-ES.md',
|
||||
'zh': '../human-dignity/translations/zh-CN.md',
|
||||
'hi': '../human-dignity/translations/hi-IN.md',
|
||||
'ar': '../human-dignity/translations/ar-SA.md',
|
||||
'bn': '../human-dignity/translations/bn-BD.md',
|
||||
'pt': '../human-dignity/translations/pt-BR.md',
|
||||
'ru': '../human-dignity/translations/ru-RU.md',
|
||||
'ja': '../human-dignity/translations/ja-JP.md',
|
||||
'fr': '../human-dignity/translations/fr-FR.md',
|
||||
'de': '../human-dignity/translations/de-DE.md'
|
||||
};
|
||||
|
||||
if (lang === 'en') {
|
||||
return;
|
||||
}
|
||||
|
||||
if (translations[lang]) {
|
||||
window.location.href = translations[lang];
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
304
docs/index.html
Normal file
304
docs/index.html
Normal file
@@ -0,0 +1,304 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Mutual Flourishing - Framework for Democracy, Dignity, and Foresight</title>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Georgia', serif;
|
||||
line-height: 1.6;
|
||||
color: #2c3e50;
|
||||
background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1100px;
|
||||
margin: 0 auto;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
padding: 60px 20px;
|
||||
background: white;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 20px rgba(0,0,0,0.1);
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2.8em;
|
||||
color: #1a1a1a;
|
||||
margin-bottom: 20px;
|
||||
font-weight: 300;
|
||||
letter-spacing: -1px;
|
||||
}
|
||||
|
||||
.tagline {
|
||||
font-size: 1.3em;
|
||||
color: #6c757d;
|
||||
max-width: 700px;
|
||||
margin: 0 auto 30px;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
.intro-quote {
|
||||
font-style: italic;
|
||||
color: #495057;
|
||||
padding: 20px 40px;
|
||||
border-left: 4px solid #e63946;
|
||||
background: #f8f9fa;
|
||||
margin: 30px auto;
|
||||
max-width: 600px;
|
||||
text-align: left;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.projects-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
|
||||
gap: 30px;
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.project-card {
|
||||
background: white;
|
||||
border-radius: 8px;
|
||||
padding: 35px;
|
||||
box-shadow: 0 2px 20px rgba(0,0,0,0.1);
|
||||
transition: transform 0.2s, box-shadow 0.2s;
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.project-card:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 8px 30px rgba(0,0,0,0.15);
|
||||
}
|
||||
|
||||
.project-icon {
|
||||
font-size: 2.5em;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.project-card h2 {
|
||||
font-size: 1.5em;
|
||||
color: #1a1a1a;
|
||||
margin-bottom: 15px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.project-card p {
|
||||
color: #6c757d;
|
||||
margin-bottom: 15px;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
.project-meta {
|
||||
font-size: 0.9em;
|
||||
color: #adb5bd;
|
||||
padding-top: 15px;
|
||||
border-top: 1px solid #e9ecef;
|
||||
}
|
||||
|
||||
.card-declaration { border-top: 4px solid #e63946; }
|
||||
.card-bills { border-top: 4px solid #2563eb; }
|
||||
.card-amendment { border-top: 4px solid #059669; }
|
||||
|
||||
.section-title {
|
||||
text-align: center;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.section-title h2 {
|
||||
font-size: 1.8em;
|
||||
color: #1a1a1a;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.section-title p {
|
||||
color: #6c757d;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.vision-section {
|
||||
background: white;
|
||||
border-radius: 8px;
|
||||
padding: 50px;
|
||||
box-shadow: 0 2px 20px rgba(0,0,0,0.1);
|
||||
margin-top: 40px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.vision-section h2 {
|
||||
font-size: 1.6em;
|
||||
color: #1a1a1a;
|
||||
margin-bottom: 20px;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.vision-section p {
|
||||
color: #495057;
|
||||
max-width: 800px;
|
||||
margin: 0 auto 20px;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
.principles-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
gap: 15px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.principle-tag {
|
||||
background: #f8f9fa;
|
||||
padding: 10px 20px;
|
||||
border-radius: 25px;
|
||||
font-size: 0.95em;
|
||||
color: #495057;
|
||||
border: 1px solid #dee2e6;
|
||||
}
|
||||
|
||||
footer {
|
||||
text-align: center;
|
||||
padding: 40px 20px;
|
||||
color: #6c757d;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
|
||||
footer a {
|
||||
color: #2563eb;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.container {
|
||||
padding: 20px 15px;
|
||||
}
|
||||
|
||||
header {
|
||||
padding: 40px 20px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.projects-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.vision-section {
|
||||
padding: 30px 20px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<header>
|
||||
<h1>Mutual Flourishing</h1>
|
||||
<p class="tagline">
|
||||
A framework for human dignity, democratic protection, and long-term thinking.
|
||||
Three interconnected projects working toward a future where all can thrive.
|
||||
</p>
|
||||
<div class="intro-quote">
|
||||
"Another world is not only possible, she is on her way. On a quiet day, I can hear her breathing."
|
||||
<br><span style="color: #6c757d; font-size: 0.9em;">— Arundhati Roy</span>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="section-title">
|
||||
<h2>The Framework</h2>
|
||||
<p>Three pillars for building resilient, just, and forward-thinking societies</p>
|
||||
</div>
|
||||
|
||||
<div class="projects-grid">
|
||||
<a href="declaration.html" class="project-card card-declaration">
|
||||
<div class="project-icon">🌐</div>
|
||||
<h2>Declaration of Human Dignity</h2>
|
||||
<p>
|
||||
A Universal Declaration of Human Dignity and Mutual Flourishing —
|
||||
articulating principles that bridge individual rights and collective
|
||||
responsibilities, acknowledging historical injuries while building
|
||||
toward a shared future.
|
||||
</p>
|
||||
<div class="project-meta">
|
||||
10 Articles • 11 Languages • Living Document
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<a href="bills.html" class="project-card card-bills">
|
||||
<div class="project-icon">📜</div>
|
||||
<h2>Democracy Protection Bills</h2>
|
||||
<p>
|
||||
The American Democracy Protection Framework — 19 comprehensive
|
||||
legislative proposals protecting elections, government accountability,
|
||||
digital rights, economic fairness, and civic empowerment.
|
||||
</p>
|
||||
<div class="project-meta">
|
||||
19 Bills • 6 Categories • Actionable Legislation
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<a href="amendment.html" class="project-card card-amendment">
|
||||
<div class="project-icon">📈</div>
|
||||
<h2>The Cassandra Amendment</h2>
|
||||
<p>
|
||||
A proposed 28th Amendment to institutionalize foresight in American
|
||||
governance — ensuring long-term structural risks receive mandatory
|
||||
attention before they become crises.
|
||||
</p>
|
||||
<div class="project-meta">
|
||||
Constitutional Amendment • 10 Sections • Future-Focused
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="vision-section">
|
||||
<h2>Why These Together?</h2>
|
||||
<p>
|
||||
Democracy requires more than periodic elections. It requires institutions
|
||||
that protect human dignity, mechanisms that ensure accountability, and
|
||||
structures that force attention to long-term challenges. These three
|
||||
projects address different scales of the same fundamental question:
|
||||
how do we build systems that serve human flourishing?
|
||||
</p>
|
||||
<p>
|
||||
The Declaration articulates what we value. The Bills create the legal
|
||||
framework to protect those values. The Amendment ensures we don't
|
||||
sacrifice the future for the present.
|
||||
</p>
|
||||
<div class="principles-list">
|
||||
<span class="principle-tag">Dignity for All</span>
|
||||
<span class="principle-tag">Transparent Governance</span>
|
||||
<span class="principle-tag">Long-Term Thinking</span>
|
||||
<span class="principle-tag">Democratic Accountability</span>
|
||||
<span class="principle-tag">Historical Repair</span>
|
||||
<span class="principle-tag">Future Generations</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
These works are dedicated to the global commons. Use, adapt, and share freely.
|
||||
<br><br>
|
||||
<a href="declaration.html">Declaration</a> •
|
||||
<a href="bills.html">Bills</a> •
|
||||
<a href="amendment.html">Amendment</a>
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user