-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
215 lines (187 loc) · 6.06 KB
/
index.html
File metadata and controls
215 lines (187 loc) · 6.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>A.B.E. — American Butterfly Effect</title>
<style>
:root {
--bg: #0b0d12;
--panel: #151923;
--ink: #e6e8ee;
--muted: #8fa2b7;
--accent: #ffd857; /* yellow-gold accent */
--accentGlow: #ffe892;
--link: #5ddfff;
}
body {
margin: 0;
background: var(--bg);
color: var(--ink);
font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
header {
padding: 1.5rem 1rem;
text-align: center;
border-bottom: 1px solid rgba(255,255,255,.08);
background: #0f131b;
}
h1 {
margin: 0;
font-size: 1.9rem;
color: #bfeaff;
}
.tagline {
margin-top: .3rem;
font-size: 1rem;
color: var(--muted);
}
.wrap {
max-width: 1100px;
margin: 0 auto;
padding: 1.25rem;
}
.grid {
display: grid;
gap: 1.25rem;
}
@media(min-width:900px){
.grid { grid-template-columns: repeat(3, 1fr); }
}
.card {
background: var(--panel);
border: 1px solid rgba(255,255,255,.06);
padding: 1.2rem;
border-radius: 12px;
}
.card h2 {
margin-top: 0;
font-size: 1.2rem;
color: #cfefff;
}
.card p { color: var(--muted); font-size: .92rem; }
.btn {
display: inline-block;
padding: .55rem 1.1rem;
border-radius: 10px;
border: 1px solid var(--accent);
background: rgba(255,216,87,.12);
color: var(--accent);
text-decoration: none;
font-weight: 600;
box-shadow: 0 0 6px rgba(255,216,87,.4);
transition: all .18s ease;
font-size: .94rem;
}
.btn:hover {
background: rgba(255,216,87,.18);
box-shadow: 0 0 9px rgba(255,216,87,.6);
}
footer {
margin: 3rem 0 1.5rem;
text-align: center;
color: var(--muted);
font-size: .85rem;
}
</style>
</head>
<body>
<header>
<h1>A.B.E. — American Butterfly Effect</h1>
<p class="tagline">Constitution → Integrity → Recovery · All local · CC BY-NC 4.0</p>
</header>
<main class="wrap">
<!-- PRIMARY ACTION -->
<div style="text-align:center;margin-bottom:2rem;">
<a href="/abe---flag/intake/index.html" class="btn" style="font-size:1.05rem;padding:.75rem 1.5rem;">
Start Here — Intake & OCR
</a>
</div>
<!-- MODULE GRID -->
<div class="grid">
<!-- Intake -->
<section class="card">
<h2>Intake + OCR</h2>
<p>Upload any document <em>(PDF, image, memo, ticket, loan contract)</em>.
OCR + normalization runs entirely in your browser. Produces CIRI/CDA/CFF/CCRI-ready data.</p>
<a class="btn" href="/abe---flag/intake/index.html">Open Intake</a>
</section>
<!-- CDA -->
<section class="card">
<h2>CDA — Divergence Analyzer</h2>
<p>Maps statutes, enforcement practices, and policies against controlling constitutional authority.</p>
<a class="btn" href="/abe---flag/cda/index.html">Open CDA</a>
</section>
<!-- CIRI -->
<section class="card">
<h2>CIRI — Integrity & ROI</h2>
<p>Computes economic recovery from ending unconstitutional practices: cases, jail days, fees, employment.</p>
<a class="btn" href="/abe---flag/ciri/index.html">Open CIRI</a>
</section>
<!-- CIBS -->
<section class="card">
<h2>CIBS — Community Budget</h2>
<p>Allocates recovery funds automatically into audited community investment categories.</p>
<a class="btn" href="/abe---flag/cibs/index.html">Open CIBS</a>
</section>
<!-- CII -->
<section class="card">
<h2>CII — Project Portfolios</h2>
<p>Shows real programs funded by recovered value: housing, mobility, clinics, childcare.</p>
<a class="btn" href="/abe---flag/cii/index.html">Open CII</a>
</section>
<!-- CFF -->
<section class="card">
<h2>CFF — Funding Forensics</h2>
<p>Classifies line items as ON-MISSION / OFF-MISSION relative to the funding statute & federal programs.</p>
<a class="btn" href="/abe---flag/cff/index.html">Open CFF</a>
</section>
<!-- AFFE -->
<section class="card">
<h2>AFFE — Funding & Fidelity Explorer</h2>
<p>Explore how funding changes when drift ends; visualize alignment and impact across agencies.</p>
<a class="btn" href="/abe---flag/affe/index.html">Open AFFE</a>
</section>
<!-- CCRI -->
<section class="card">
<h2>CCRI — Credit Integrity</h2>
<p>Evaluates lending, auto finance, and DMV/DOT data spillover for constitutional and economic impact.</p>
<a class="btn" href="/abe---flag/ccri/index.html">Open CCRI</a>
</section>
<!-- Learn -->
<section class="card">
<h2>Learn</h2>
<p>Small interactive examples that teach how CIRI, CIBS, and Macro work — based on doctrine values.</p>
<a class="btn" href="/abe---flag/learn/index.html">Learn A.B.E.</a>
</section>
<!-- Macro -->
<section class="card">
<h2>Macro Cascade</h2>
<p>National-scale modeling: what happens when multiple communities correct divergence at once.</p>
<a class="btn" href="/abe---flag/macro/index.html">Open Macro</a>
</section>
<!-- Integration -->
<section class="card">
<h2>Integration / Audit</h2>
<p>Runs SHA-256 integrity checks for every module. Produces a public audit certificate.</p>
<a class="btn" href="/abe---flag/integration/index.html">Open Audit Layer</a>
</section>
<!-- Doctrines -->
<section class="card">
<h2>Doctrines & CRRA</h2>
<p>The constitutional backbone: supremacy, non-delegation, CRRA, ABE doctrine, and jurisdiction rules.</p>
<a class="btn" href="/abe---flag/doctrine/index.html">Open Doctrines</a>
</section>
<!-- System -->
<section class="card">
<h2>System Map</h2>
<p>The canonical pipeline: Intake → CDA → CDI → CIRI → CIBS → CII → Integration.</p>
<a class="btn" href="/abe---flag/system/index.html">View System Map</a>
</section>
</div>
</main>
<footer>
CC BY-NC 4.0 · Integrity only — never for sale · DOI: 10.5281/zenodo.17586107
</footer>
</body>
</html>