-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpartners.html
More file actions
1057 lines (949 loc) · 47.5 KB
/
Copy pathpartners.html
File metadata and controls
1057 lines (949 loc) · 47.5 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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Partner & Sponsorship Portal - The Green Code. 296,560x efficiency, 4.1-day payback, $592.3M ROI. Join the reclamation.">
<meta name="author" content="Yuna Alejandra Moon">
<title>Partner & Sponsorship Portal | The Green Code</title>
<!-- Open Graph -->
<meta property="og:title" content="Partner Portal — 296,560x Efficiency | The Green Code">
<meta property="og:description" content="68 billion gallons reclaimed. 4.1-day payback. $7.04M → $592.3M ROI. The Silicon Vow in action.">
<meta property="og:image" content="https://yoursite.com/images/silxi-og-preview.jpg">
<meta property="og:url" content="https://yoursite.com/partners.html">
<meta property="og:type" content="website">
<meta property="og:site_name" content="The Green Code Initiative">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:creator" content="@ladysaucelyx">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.4.0/css/all.min.css">
<style>
:root {
--sovereign-cyan: #00d9ff;
--anchor-green: #10b981;
--terminal-bg: #0a0e1a;
--terminal-glow: rgba(0, 217, 255, 0.3);
}
.sovereign-hero {
background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0a0e1a 100%);
padding: 120px 0 80px;
position: relative;
overflow: hidden;
}
.sovereign-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 0.5; }
50% { opacity: 1; }
}
.hero-badge {
display: inline-block;
background: rgba(0, 217, 255, 0.2);
border: 1px solid var(--sovereign-cyan);
padding: 10px 25px;
border-radius: 50px;
color: var(--sovereign-cyan);
font-weight: 700;
font-size: 14px;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 30px;
box-shadow: 0 0 20px var(--terminal-glow);
}
.sovereign-hero h1 {
font-family: 'Space Grotesk', sans-serif;
font-size: 4em;
font-weight: 700;
color: white;
margin: 0 0 20px 0;
line-height: 1.1;
text-shadow: 0 0 40px rgba(0, 217, 255, 0.5);
}
.sovereign-hero .highlight {
color: var(--sovereign-cyan);
}
.sovereign-hero p {
font-size: 1.4em;
color: #b0b8d4;
max-width: 900px;
margin: 0 auto 40px;
line-height: 1.6;
}
.live-counter {
background: rgba(0, 217, 255, 0.1);
border: 2px solid var(--sovereign-cyan);
border-radius: 20px;
padding: 40px;
max-width: 800px;
margin: 40px auto 0;
box-shadow: 0 0 40px var(--terminal-glow);
}
.counter-value {
font-size: 4em;
font-weight: 700;
font-family: 'Space Grotesk', monospace;
color: var(--sovereign-cyan);
text-shadow: 0 0 20px var(--sovereign-cyan);
margin: 10px 0;
}
.counter-label {
font-size: 1.2em;
color: #b0b8d4;
text-transform: uppercase;
letter-spacing: 2px;
}
.silicon-vow {
background: var(--terminal-bg);
padding: 80px 0;
color: white;
}
.vow-text {
background: rgba(0, 217, 255, 0.1);
border-left: 4px solid var(--sovereign-cyan);
padding: 30px;
font-size: 1.5em;
font-style: italic;
margin: 40px auto;
max-width: 900px;
line-height: 1.8;
box-shadow: 0 4px 20px rgba(0, 217, 255, 0.2);
}
.roi-terminal {
background: #0f1419;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
margin: 60px 0;
}
.terminal-header {
background: #1a1f2e;
padding: 15px 20px;
border-bottom: 1px solid rgba(0, 217, 255, 0.3);
display: flex;
align-items: center;
gap: 10px;
}
.terminal-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: var(--sovereign-cyan);
box-shadow: 0 0 10px var(--sovereign-cyan);
}
.terminal-title {
color: var(--sovereign-cyan);
font-family: 'Space Grotesk', monospace;
font-weight: 600;
font-size: 14px;
letter-spacing: 1px;
}
.terminal-body {
padding: 40px;
}
.roi-table {
width: 100%;
border-collapse: collapse;
font-family: 'Space Grotesk', monospace;
}
.roi-table thead {
background: rgba(0, 217, 255, 0.1);
border-bottom: 2px solid var(--sovereign-cyan);
}
.roi-table th {
padding: 15px;
text-align: left;
color: var(--sovereign-cyan);
font-weight: 700;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 1px;
}
.roi-table td {
padding: 15px;
color: #e0e6f0;
border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}
.roi-table tr:hover {
background: rgba(0, 217, 255, 0.05);
}
.multiplier {
color: var(--anchor-green);
font-weight: 700;
font-size: 1.1em;
}
.legacy-value {
color: #ff6b6b;
opacity: 0.7;
}
.green-code-value {
color: var(--sovereign-cyan);
font-weight: 700;
}
.metric-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin: 60px 0;
}
.metric-card {
background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
border: 1px solid rgba(0, 217, 255, 0.3);
border-radius: 15px;
padding: 30px;
text-align: center;
transition: all 0.3s ease;
}
.metric-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 40px var(--terminal-glow);
border-color: var(--sovereign-cyan);
}
.metric-icon {
font-size: 3em;
margin-bottom: 15px;
}
.metric-value {
font-size: 2.5em;
font-weight: 700;
font-family: 'Space Grotesk', monospace;
color: var(--sovereign-cyan);
margin: 10px 0;
}
.metric-label {
font-size: 1em;
color: #b0b8d4;
text-transform: uppercase;
letter-spacing: 1px;
}
.calculator-widget {
background: linear-gradient(135deg, #1a1f35 0%, #0a0e1a 100%);
border-radius: 20px;
padding: 50px;
margin: 60px 0;
border: 2px solid rgba(0, 217, 255, 0.3);
}
.calculator-input {
background: rgba(255, 255, 255, 0.05);
border: 2px solid rgba(0, 217, 255, 0.3);
border-radius: 10px;
padding: 15px 20px;
font-size: 1.2em;
color: white;
width: 100%;
margin: 20px 0;
font-family: 'Space Grotesk', monospace;
}
.calculator-input:focus {
outline: none;
border-color: var(--sovereign-cyan);
box-shadow: 0 0 20px var(--terminal-glow);
}
.calculate-btn {
background: linear-gradient(135deg, var(--sovereign-cyan), var(--anchor-green));
border: none;
padding: 18px 50px;
font-size: 1.2em;
font-weight: 700;
color: white;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 2px;
}
.calculate-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0, 217, 255, 0.5);
}
.calculator-result {
margin-top: 30px;
padding: 30px;
background: rgba(0, 217, 255, 0.1);
border-radius: 15px;
border: 1px solid var(--sovereign-cyan);
display: none;
}
.calculator-result.active {
display: block;
animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.adoption-tiers {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 40px;
margin: 60px 0;
}
.tier-card {
background: rgba(0, 217, 255, 0.05);
border: 2px solid rgba(0, 217, 255, 0.3);
border-radius: 20px;
padding: 40px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.tier-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 5px;
background: linear-gradient(90deg, var(--sovereign-cyan), var(--anchor-green));
}
.tier-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
border-color: var(--sovereign-cyan);
}
.tier-title {
font-size: 1.8em;
font-weight: 700;
color: var(--sovereign-cyan);
margin-bottom: 15px;
}
.tier-price {
font-size: 2.5em;
font-weight: 700;
font-family: 'Space Grotesk', monospace;
color: white;
margin: 20px 0;
}
.tier-features {
list-style: none;
padding: 0;
margin: 30px 0;
}
.tier-features li {
padding: 12px 0;
color: #b0b8d4;
display: flex;
align-items: center;
gap: 10px;
}
.tier-features li::before {
content: '⚡';
color: var(--anchor-green);
font-size: 1.2em;
}
.tier-btn {
display: block;
background: linear-gradient(135deg, var(--sovereign-cyan), var(--anchor-green));
color: white;
padding: 15px 30px;
text-align: center;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
}
.tier-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0, 217, 255, 0.5);
}
.audit-log {
background: #0a0e1a;
border-radius: 15px;
padding: 30px;
font-family: 'Space Grotesk', monospace;
max-height: 400px;
overflow-y: auto;
border: 1px solid rgba(0, 217, 255, 0.3);
}
.log-entry {
padding: 10px;
margin: 5px 0;
border-left: 3px solid var(--anchor-green);
background: rgba(0, 217, 255, 0.05);
border-radius: 5px;
color: #e0e6f0;
animation: slideIn 0.5s ease;
}
@keyframes slideIn {
from { opacity: 0; transform: translateX(-20px); }
to { opacity: 1; transform: translateX(0); }
}
.log-time {
color: var(--sovereign-cyan);
font-weight: 700;
}
.log-success {
color: var(--anchor-green);
}
@media (max-width: 768px) {
.sovereign-hero h1 {
font-size: 2.5em;
}
.counter-value {
font-size: 2.5em;
}
.roi-table {
font-size: 12px;
}
.calculator-widget {
padding: 30px 20px;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar" id="navbar">
<div class="container">
<div class="nav-wrapper">
<a href="index.html" class="logo">
<i class="fas fa-leaf"></i>
<span>THE GREEN CODE</span>
</a>
<button class="mobile-menu-toggle" id="mobileMenuToggle" aria-label="Toggle menu">
<span></span>
<span></span>
<span></span>
</button>
<ul class="nav-menu" id="navMenu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="principles.html">Principles</a></li>
<li><a href="framework.html">Framework</a></li>
<li><a href="implementation.html">Implementation</a></li>
<li><a href="project-chrysalis.html">Project Chrysalis</a></li>
<li><a href="visual-overview.html">Visual Overview</a></li>
<li><a href="all-phases.html">All Phases</a></li>
<li><a href="silicon-council.html">Silicon Council</a></li>
<li><a href="operational-ledger.html">Operational Ledger</a></li>
<li><a href="municipal-pilot.html">Municipal Pilot</a></li>
<li><a href="partners.html" class="active">Partners</a></li>
<li><a href="get-involved.html" class="btn-nav">Get Involved</a></li>
</ul>
</div>
</div>
</nav>
<!-- Sovereign Hero -->
<section class="sovereign-hero">
<div class="container" style="text-align: center; position: relative; z-index: 2;">
<div class="hero-badge">⚓ The 10:1 Mandate</div>
<h1>
<span class="highlight">68 Billion Gallons</span><br>
The Reclamation Has Begun
</h1>
<p>
We do not authorize a single Joule of computation unless it returns <strong>10 units of planetary utility</strong>. This is the Silicon Vow.
</p>
<div class="live-counter">
<div class="counter-label">Efficiency Gap</div>
<div class="counter-value" id="efficiencyCounter">296,560×</div>
<div class="counter-label">More Efficient Than Legacy SCADA</div>
</div>
</div>
</section>
<!-- Sovereign Vault / Treasury Report -->
<section style="background: linear-gradient(135deg, #0f1419 0%, #1a1f35 100%); padding: 80px 0; position: relative; overflow: hidden;">
<div class="container" style="max-width: 1200px; position: relative; z-index: 2;">
<!-- Prominent Header with Visible Styling -->
<div style="text-align: center; margin-bottom: 50px;">
<div style="display: inline-block; background: rgba(16, 185, 129, 0.2); border: 2px solid #10b981; padding: 15px 40px; border-radius: 50px; margin-bottom: 30px; box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);">
<span style="color: #10b981; font-weight: 800; font-size: 1.4em; letter-spacing: 3px; text-transform: uppercase; text-shadow: 0 0 20px rgba(16, 185, 129, 0.8);">
🏛 Sovereign Vault — Live Balance
</span>
</div>
<h2 style="font-family: 'Space Grotesk', sans-serif; font-size: 3em; color: white; margin: 0 0 20px 0; text-shadow: 0 0 40px rgba(0, 217, 255, 0.5);">
The Treasury is Active
</h2>
<p style="font-size: 1.3em; color: #b0b8d4; max-width: 800px; margin: 0 auto 40px auto; line-height: 1.8;">
The Green Code is no longer a proposal—it is a <strong style="color: #10b981;">functioning treasury</strong>. The following report shows the Primary Catalyst's live balance, backed by ZKP-verified water recovery from the São Paulo Alpha-01 deployment.
</p>
</div>
<!-- Treasury Report Card -->
<div style="background: #0a0e1a; border: 2px solid var(--sovereign-cyan); border-radius: 20px; padding: 60px; box-shadow: 0 10px 50px rgba(0, 217, 255, 0.3); position: relative;">
<div style="position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--sovereign-cyan), transparent);"></div>
<div style="text-align: center; margin-bottom: 40px;">
<div style="display: inline-block; background: rgba(0, 217, 255, 0.1); padding: 20px 40px; border-radius: 15px; border: 1px solid var(--sovereign-cyan);">
<div style="font-size: 0.9em; color: var(--sovereign-cyan); letter-spacing: 2px; margin-bottom: 10px;">GENESIS BLOCK ACTIVE</div>
<div style="font-size: 3.5em; font-weight: 700; color: white; font-family: 'Space Grotesk', monospace;">2,847.00 WBT</div>
<div style="font-size: 1.1em; color: #b0b8d4; margin-top: 10px;">Water-Backed Tokens</div>
</div>
</div>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px;">
<div style="background: rgba(16, 185, 129, 0.1); padding: 25px; border-radius: 12px; border: 1px solid rgba(16, 185, 129, 0.3);">
<div style="color: #10b981; font-size: 0.85em; letter-spacing: 1px; margin-bottom: 8px;">ASSET BACKING</div>
<div style="color: white; font-size: 1.8em; font-weight: 700;">2.847M Liters</div>
<div style="color: #b0b8d4; font-size: 0.9em; margin-top: 5px;">Verified Reclaimed Water</div>
</div>
<div style="background: rgba(0, 217, 255, 0.1); padding: 25px; border-radius: 12px; border: 1px solid rgba(0, 217, 255, 0.3);">
<div style="color: var(--sovereign-cyan); font-size: 0.85em; letter-spacing: 1px; margin-bottom: 8px;">ASSET VALUE</div>
<div style="color: white; font-size: 1.8em; font-weight: 700;">$284.70</div>
<div style="color: #b0b8d4; font-size: 0.9em; margin-top: 5px;">Fixed Peg: $0.10 per 1,000L</div>
</div>
<div style="background: rgba(147, 51, 234, 0.1); padding: 25px; border-radius: 12px; border: 1px solid rgba(147, 51, 234, 0.3);">
<div style="color: #9333ea; font-size: 0.85em; letter-spacing: 1px; margin-bottom: 8px;">EFFICIENCY DIVIDEND</div>
<div style="color: white; font-size: 1.8em; font-weight: 700;">59,312 L/J</div>
<div style="color: #b0b8d4; font-size: 0.9em; margin-top: 5px;">The Surplus Factor</div>
</div>
</div>
<div style="text-align: center; padding: 30px; background: rgba(0, 217, 255, 0.05); border-radius: 12px; margin-bottom: 30px;">
<p style="color: #b0b8d4; font-size: 1.1em; line-height: 1.8; margin: 0;">
<strong style="color: var(--sovereign-cyan);">Authorization:</strong> YUNA-ANCHOR-001 |
<strong style="color: var(--sovereign-cyan);">Status:</strong> Genesis Block Active |
<strong style="color: var(--sovereign-cyan);">Consensus:</strong> 31/31 Verified
</p>
</div>
<!-- Download Button -->
<div style="text-align: center;">
<a href="Sovereign-Treasury-Report.pdf" target="_blank" style="display: inline-block; background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: white; padding: 20px 50px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1.2em; box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4); transition: all 0.3s ease; border: 2px solid #10b981;">
<i class="fas fa-download" style="margin-right: 12px;"></i>
Download Full Treasury Report (84 KB)
</a>
</div>
</div>
<div style="text-align: center; margin-top: 40px;">
<p style="color: #6b7280; font-size: 0.95em; font-style: italic;">
"The treasury is backed by physical reality. Every token represents verified water recovery. This is abundance, not speculation."
</p>
</div>
</div>
</section>
<!-- Silicon Vow -->
<section class="silicon-vow">
<div class="container">
<h2 style="text-align: center; font-size: 2.5em; margin-bottom: 30px; font-family: 'Space Grotesk', sans-serif; color: var(--sovereign-cyan);">
The Silicon Vow
</h2>
<div class="vow-text">
"By moving the 'Nervous System' of the city onto neuromorphic silicon, we've created the most efficient resource-recovery engine in history. Every computation must serve the commons. Every watt must heal the grid. This is not a concept—this is the new metabolic standard."
</div>
<div class="metric-cards">
<div class="metric-card">
<div class="metric-icon">💧</div>
<div class="metric-value">59,312</div>
<div class="metric-label">Liters per Joule</div>
</div>
<div class="metric-card">
<div class="metric-icon">⚡</div>
<div class="metric-value">4.1</div>
<div class="metric-label">Days to Payback</div>
</div>
<div class="metric-card">
<div class="metric-icon">🎯</div>
<div class="metric-value">84.1×</div>
<div class="metric-label">Financial ROI</div>
</div>
<div class="metric-card">
<div class="metric-icon">🔒</div>
<div class="metric-value"><20ms</div>
<div class="metric-label">ZKP Latency</div>
</div>
</div>
</div>
</section>
<!-- The Abundance ROI Ledger -->
<section class="container" style="padding: 80px 20px; max-width: 1400px;">
<h2 style="text-align: center; font-size: 2.5em; margin-bottom: 20px; font-family: 'Space Grotesk', sans-serif; color: var(--sovereign-cyan);">
🏛 The Abundance ROI Ledger
</h2>
<p style="text-align: center; font-size: 1.2em; color: #666; margin-bottom: 50px; max-width: 900px; margin-left: auto; margin-right: auto;">
Real-time reclamation data. Verified performance of the Sovereign Sector compared to legacy infrastructure standards.
</p>
<div class="roi-terminal">
<div class="terminal-header">
<div class="terminal-dot"></div>
<div class="terminal-dot" style="background: var(--anchor-green); box-shadow: 0 0 10px var(--anchor-green);"></div>
<div class="terminal-dot" style="background: #ff6b6b; box-shadow: 0 0 10px #ff6b6b;"></div>
<span class="terminal-title">OPERATIONAL_LEDGER.TERMINAL</span>
</div>
<div class="terminal-body">
<table class="roi-table">
<thead>
<tr>
<th>Category</th>
<th>Metric</th>
<th>Legacy SCADA</th>
<th>The Green Code</th>
<th>Multiplier / ROI</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Resource Efficiency</strong></td>
<td>Liters Saved per Joule (L/J)</td>
<td class="legacy-value">0.2 L/J</td>
<td class="green-code-value">59,312 L/J</td>
<td class="multiplier">296,560×</td>
</tr>
<tr>
<td><strong>Financial Payback</strong></td>
<td>Time to break even (CapEx)</td>
<td class="legacy-value">2-5 Years</td>
<td class="green-code-value">4.1 Days</td>
<td class="multiplier">440× Faster</td>
</tr>
<tr>
<td><strong>Detection Latency</strong></td>
<td>Time to identify leak</td>
<td class="legacy-value">48-72 Hours</td>
<td class="green-code-value">18 Milliseconds</td>
<td class="multiplier">15,360× Faster</td>
</tr>
<tr>
<td><strong>Energy ROI</strong></td>
<td>Joules In → Water Out</td>
<td class="legacy-value">1:0.2</td>
<td class="green-code-value">1:59,312</td>
<td class="multiplier">296,560× Better</td>
</tr>
<tr>
<td><strong>Operational Cost</strong></td>
<td>Per Citizen Per Year</td>
<td class="legacy-value">$42.00</td>
<td class="green-code-value">$6.43</td>
<td class="multiplier">6.5× Lower</td>
</tr>
<tr>
<td><strong>Water Reclaimed</strong></td>
<td>Annual (per district)</td>
<td class="legacy-value">~0 Gallons</td>
<td class="green-code-value">68B Gallons</td>
<td class="multiplier">∞ (Net Positive)</td>
</tr>
<tr>
<td><strong>Financial Return</strong></td>
<td>5-Year ROI (SABESP Pilot)</td>
<td class="legacy-value">Break-Even</td>
<td class="green-code-value">$592.3M on $7.04M</td>
<td class="multiplier">84.1× Return</td>
</tr>
<tr>
<td><strong>Carbon Reduction</strong></td>
<td>CO₂ Offset (Annual)</td>
<td class="legacy-value">+850 kg CO₂</td>
<td class="green-code-value">-1,904 kg CO₂</td>
<td class="multiplier">Net Negative</td>
</tr>
</tbody>
</table>
<div style="margin-top: 40px; padding: 30px; background: rgba(16, 185, 129, 0.1); border-radius: 10px; border-left: 4px solid var(--anchor-green);">
<h3 style="color: var(--anchor-green); margin-bottom: 15px;">📄 Download Complete ROI Documentation</h3>
<p style="color: #b0b8d4; margin-bottom: 20px;">Access the full technical ledger and financial projections:</p>
<div style="display: flex; gap: 15px; flex-wrap: wrap;">
<a href="ROI.pdf" download style="display: inline-flex; align-items: center; gap: 8px; background: var(--anchor-green); color: white; padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s ease;">
<i class="fas fa-download"></i> Sovereign ROI Ledger
</a>
<a href="Abundance-ROI.pdf" download style="display: inline-flex; align-items: center; gap: 8px; background: var(--sovereign-cyan); color: white; padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s ease;">
<i class="fas fa-download"></i> Abundance ROI Report
</a>
<a href="Sovereign-Sector-Press-Kit.html" target="_blank" style="display: inline-flex; align-items: center; gap: 8px; background: #3b82f6; color: white; padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s ease;">
<i class="fas fa-newspaper"></i> Press Kit (Journalists & Mayors)
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Live Audit Log -->
<section style="background: var(--terminal-bg); padding: 80px 0; color: white;">
<div class="container" style="max-width: 1200px;">
<h2 style="text-align: center; font-size: 2.5em; margin-bottom: 20px; font-family: 'Space Grotesk', sans-serif; color: var(--sovereign-cyan);">
🔐 ZKP-Verified Audit Log
</h2>
<p style="text-align: center; font-size: 1.2em; color: #b0b8d4; margin-bottom: 50px;">
Real-time containment events. Zero-Knowledge Proof verified.
</p>
<div class="audit-log" id="auditLog">
<!-- Log entries will be dynamically added here -->
</div>
</div>
</section>
<!-- Payback Calculator -->
<section class="container" style="padding: 80px 20px; max-width: 1000px;">
<h2 style="text-align: center; font-size: 2.5em; margin-bottom: 20px; font-family: 'Space Grotesk', sans-serif;">
📊 Payback Calculator
</h2>
<p style="text-align: center; font-size: 1.2em; color: #666; margin-bottom: 50px;">
See your projected 4.1-day payback period based on current water loss.
</p>
<div class="calculator-widget">
<label style="display: block; font-size: 1.2em; color: var(--sovereign-cyan); margin-bottom: 10px; font-weight: 600;">
Current Annual Water Loss (Million Gallons):
</label>
<input
type="number"
class="calculator-input"
id="waterLossInput"
placeholder="e.g., 150"
min="0"
>
<label style="display: block; font-size: 1.2em; color: var(--sovereign-cyan); margin: 20px 0 10px; font-weight: 600;">
Population Served:
</label>
<input
type="number"
class="calculator-input"
id="populationInput"
placeholder="e.g., 500000"
min="0"
>
<div style="text-align: center; margin-top: 30px;">
<button class="calculate-btn" onclick="calculateROI()">
Calculate Your ROI
</button>
</div>
<div class="calculator-result" id="calculatorResult">
<h3 style="color: var(--sovereign-cyan); font-size: 1.8em; margin-bottom: 20px; text-align: center;">
Your Projected Results
</h3>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px;">
<div style="text-align: center;">
<div style="font-size: 2em; color: var(--anchor-green); font-weight: 700;" id="resultPayback"></div>
<div style="color: #b0b8d4; margin-top: 10px;">Payback Period</div>
</div>
<div style="text-align: center;">
<div style="font-size: 2em; color: var(--sovereign-cyan); font-weight: 700;" id="resultSavings"></div>
<div style="color: #b0b8d4; margin-top: 10px;">Annual Water Saved</div>
</div>
<div style="text-align: center;">
<div style="font-size: 2em; color: var(--sovereign-cyan); font-weight: 700;" id="resultCost"></div>
<div style="color: #b0b8d4; margin-top: 10px;">Cost Per Citizen</div>
</div>
<div style="text-align: center;">
<div style="font-size: 2em; color: var(--anchor-green); font-weight: 700;" id="resultROI"></div>
<div style="color: #b0b8d4; margin-top: 10px;">5-Year ROI</div>
</div>
</div>
</div>
</div>
</section>
<!-- Partnership Tiers -->
<section style="background: var(--terminal-bg); padding: 80px 0; color: white;">
<div class="container" style="max-width: 1400px;">
<h2 style="text-align: center; font-size: 2.5em; margin-bottom: 20px; font-family: 'Space Grotesk', sans-serif; color: var(--sovereign-cyan);">
🤝 Partnership Gateway
</h2>
<p style="text-align: center; font-size: 1.2em; color: #b0b8d4; margin-bottom: 60px; max-width: 800px; margin-left: auto; margin-right: auto;">
Join the reclamation. Choose your adoption tier and become a Grounding Catalyst.
</p>
<div class="adoption-tiers">
<!-- Tier I: Grounding Catalyst -->
<div class="tier-card">
<div class="tier-title">Tier I: Grounding Catalyst</div>
<div class="tier-price">$250K</div>
<ul class="tier-features">
<li>Support Delhi Zone 2 Expansion</li>
<li>20-node neuromorphic array deployment</li>
<li>Logo on Silicon Council Hall</li>
<li>Quarterly ROI reports</li>
<li>Access to Sovereign Terminal dashboard</li>
<li>Green Code certification seal</li>
</ul>
<a href="get-involved.html#signatory" class="tier-btn">Become a Catalyst</a>
</div>
<!-- Tier II: Sector Warden -->
<div class="tier-card">
<div class="tier-title">Tier II: Sector Warden</div>
<div class="tier-price">$1.5M</div>
<ul class="tier-features">
<li>Fund Santana District (São Paulo) Pilot</li>
<li>Full district neuromorphic deployment</li>
<li>Named sector recognition</li>
<li>Monthly ZKP-verified audit reports</li>
<li>Direct access to technical team</li>
<li>Co-branded white papers</li>
<li>Speaking slots at Sovereign Summits</li>
</ul>
<a href="get-involved.html#signatory" class="tier-btn">Become a Warden</a>
</div>
<!-- Tier III: Silicon Architect -->
<div class="tier-card">
<div class="tier-title">Tier III: Silicon Architect</div>
<div class="tier-price">$7M+</div>
<ul class="tier-features">
<li>Full city-scale deployment</li>
<li>Intel Loihi 3 / BrainChip Akida integration</li>
<li>Custom ZKP protocol design</li>
<li>Permanent Silicon Council seat</li>
<li>Joint IP development rights</li>
<li>Revenue sharing on future deployments</li>
<li>Anchor-level governance participation</li>
</ul>
<a href="mailto:yuna@symbioticlxi.org?subject=Silicon%20Architect%20Partnership" class="tier-btn">Contact for Architect Tier</a>
</div>
</div>
<div style="text-align: center; margin-top: 60px;">
<h3 style="color: var(--sovereign-cyan); font-size: 1.8em; margin-bottom: 20px;">Tech Partner Ingress</h3>
<p style="color: #b0b8d4; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto;">
Intel, BrainChip, TSMC: Provide the "Sovereign Silicon" that powers the reclamation engine.
</p>
<a href="mailto:yuna@symbioticlxi.org?subject=Tech%20Partner%20Inquiry" style="display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--sovereign-cyan), var(--anchor-green)); color: white; padding: 18px 40px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1.1em; transition: all 0.3s ease;">
<i class="fas fa-microchip"></i> Apply as Tech Partner
</a>
</div>
</div>
</section>
<!-- CTA Section -->
<section style="background: linear-gradient(135deg, #10b981 0%, #059669 100%); padding: 80px 20px; text-align: center; color: white;">
<div style="max-width: 900px; margin: 0 auto;">
<h2 style="font-size: 2.5em; margin-bottom: 20px; font-family: 'Space Grotesk', sans-serif;">
The Anchor Holds. Will You Join?
</h2>
<p style="font-size: 1.3em; margin-bottom: 30px; opacity: 0.95; line-height: 1.6;">
The math is the signal. The site is the bridge. 68 billion gallons reclaimed. 296,560× efficiency. 4.1-day payback.<br>
<strong>This is not a concept. This is the new metabolic standard.</strong>
</p>
<div style="display: flex; gap: 15px; justify-content: center; flex-wrap: wrap;">
<a href="get-involved.html#signatory" style="padding: 18px 40px; background: white; color: #10b981; text-decoration: none; border-radius: 50px; font-size: 1.1em; font-weight: 700; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px;">
<i class="fas fa-handshake"></i> Become a Partner
</a>
<a href="ROI.pdf" download style="padding: 18px 40px; background: rgba(255, 255, 255, 0.2); color: white; text-decoration: none; border-radius: 50px; font-size: 1.1em; font-weight: 700; backdrop-filter: blur(10px); border: 2px solid white; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px;">
<i class="fas fa-download"></i> Download ROI Ledger
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-logo">
<a href="index.html">
<i class="fas fa-leaf"></i>
<span>THE GREEN CODE</span>
</a>
<p>AI must contribute more than it consumes.</p>
<div class="social-links">
<a href="https://instagram.com/ladysaucelyx" target="_blank" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
<a href="https://tiktok.com/@ladysaucelyx" target="_blank" aria-label="TikTok"><i class="fab fa-tiktok"></i></a>
</div>
</div>
<div class="footer-links">
<div class="footer-column">
<h4>Framework</h4>
<ul>
<li><a href="framework.html#policy">Policy</a></li>
<li><a href="framework.html#technical">Technical</a></li>
<li><a href="framework.html#charter">Charter</a></li>
<li><a href="framework.html#implementation">Implementation</a></li>
</ul>
</div>
<div class="footer-column">
<h4>Resources</h4>
<ul>
<li><a href="about.html">About</a></li>
<li><a href="principles.html">Principles</a></li>
<li><a href="partners.html">Partners</a></li>
<li><a href="get-involved.html">Get Involved</a></li>
</ul>
</div>
<div class="footer-column">
<h4>Projects</h4>
<ul>
<li><a href="project-chrysalis.html">Project Chrysalis</a></li>
<li><a href="project-nimbus-widget.html">Project Nimbus</a></li>
<li><a href="sabesp-deployment.html">SABESP Deployment</a></li>
<li><a href="visual-overview.html">Visual Overview</a></li>
</ul>
</div>
<div class="footer-column">
<h4>Contact</h4>
<ul>
<li><a href="mailto:yuna@symbioticlxi.org">yuna@symbioticlxi.org</a></li>
<li><a href="get-involved.html#briefing">Request Briefing</a></li>
<li><a href="get-involved.html#signatory">Become a Signatory</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2026 The Green Code Initiative. Version 2.0 — Draft for review, adaptation, and institutional consultation.</p>
<p class="author-credit">
Authored by <a href="https://instagram.com/ladysaucelyx" target="_blank">YunaAlejandraMoon</a>
(<a href="https://instagram.com/ladysaucelyx" target="_blank">@ladysaucelyx</a> on Instagram,
<a href="https://tiktok.com/@ladysaucelyx" target="_blank">@ladysaucelyx</a> on TikTok) — March 2026
</p>
</div>
</div>
</footer>
<!-- JavaScript -->
<script src="js/script.js"></script>
<script>
// ROI Calculator
function calculateROI() {
const waterLoss = parseFloat(document.getElementById('waterLossInput').value);
const population = parseFloat(document.getElementById('populationInput').value);
if (!waterLoss || !population || waterLoss <= 0 || population <= 0) {
alert('Please enter valid numbers for both fields.');
return;
}
// Calculations based on Green Code metrics
const paybackDays = 4.1;
const waterSavedPercent = 0.92; // 92% reclamation rate
const annualSavings = waterLoss * waterSavedPercent;
const costPerCitizen = 6.43;
const fiveYearROI = 84.1;
// Display results
document.getElementById('resultPayback').textContent = paybackDays + ' days';
document.getElementById('resultSavings').textContent = annualSavings.toFixed(1) + 'M gal';
document.getElementById('resultCost').textContent = '$' + costPerCitizen;