-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcs-yemen.html
More file actions
2002 lines (1757 loc) · 79.5 KB
/
cs-yemen.html
File metadata and controls
2002 lines (1757 loc) · 79.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" />
<title>c-ECO | Diagnostic Method — Yemen Energy Contract Assessment</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&family=Libre+Baskerville:wght@400;700&display=swap" rel="stylesheet">
<style>
:root {
--sidebar-width: 340px;
--legal-blue: #1a2b3c;
--legal-blue-dark: #0f1a25;
--gold-accent: #c5a059;
--bg-body: #f8f9fa;
--text-main: #222;
--text-muted: #555;
--border-color: #e0e0e0;
--font-serif: 'Libre Baskerville', serif;
--font-sans: 'Inter', sans-serif;
--size-h1: 26px;
--size-h2: 18px;
--size-h3: 15px;
--size-body: 16px;
}
* { box-sizing: border-box; }
body {
margin: 0;
background: var(--bg-body);
font-family: var(--font-sans);
color: var(--text-main);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
.sidebar {
width: var(--sidebar-width);
position: fixed;
top: 0;
left: 0;
height: 100vh;
background: #fff;
border-right: 1px solid var(--border-color);
padding: 20px 22px 80px;
overflow-y: auto;
z-index: 1000;
transition: transform .3s ease;
}
.sidebar::-webkit-scrollbar { width: 5px; }
.sidebar::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
.sidebar-top {
display: flex;
align-items: center;
gap: 12px;
padding-bottom: 15px;
margin-bottom: 15px;
border-bottom: 2px solid var(--gold-accent);
position: sticky;
top: 0;
background: #fff;
z-index: 10;
}
.logo-box {
display: inline-flex;
align-items: center;
justify-content: center;
width: 42px;
height: 42px;
border: 1px solid var(--border-color);
background: #fff;
color: var(--legal-blue);
font-weight: 900;
font-size: 1.4rem;
text-decoration: none;
}
.sidebar-title {
font-weight: 800;
font-size: 12px;
letter-spacing: 1px;
color: var(--legal-blue);
text-transform: uppercase;
line-height: 1.2;
}
.search-container {
margin-bottom: 20px;
position: sticky;
top: 70px;
background: #fff;
z-index: 10;
padding-bottom: 10px;
}
#sidebarSearch {
width: 100%;
padding: 12px 15px;
border: 1px solid var(--border-color);
border-radius: 4px;
font-family: var(--font-sans);
font-size: 14px;
outline: none;
transition: border-color 0.2s;
}
#sidebarSearch:focus {
border-color: var(--gold-accent);
box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}
.nav-list { list-style: none; padding: 0; margin: 0; }
.nav-section-title {
font-size: 11px;
font-weight: 800;
color: var(--gold-accent);
margin-top: 25px;
margin-bottom: 8px;
text-transform: uppercase;
border-top: 1px solid #eee;
padding-top: 15px;
letter-spacing: 1px;
}
.nav-item-chapter a {
font-weight: 700;
color: var(--legal-blue);
font-size: 13px;
display: block;
padding: 8px 0 4px 0;
text-decoration: none;
border-bottom: 1px solid #f5f5f5;
}
.nav-sub-item a {
font-size: 12.5px;
color: #666;
display: block;
padding: 4px 0 4px 12px;
text-decoration: none;
border-left: 2px solid #eee;
margin-left: 2px;
transition: all 0.2s;
}
.nav-sub-item a:hover {
border-left-color: var(--gold-accent);
color: var(--legal-blue);
background: linear-gradient(90deg, rgba(197,160,89,0.05), transparent);
}
.nav-item.hidden, .nav-section-title.hidden { display: none; }
.main-content {
margin-left: var(--sidebar-width);
padding: 60px 50px;
display: flex;
justify-content: center;
min-height: 100vh;
}
.document-page {
background: #fff;
width: 100%;
max-width: 950px;
padding: 80px;
box-shadow: 0 4px 30px rgba(0,0,0,0.03);
border: 1px solid #eef0f2;
}
.article-title {
font-family: var(--font-serif);
font-weight: 700;
font-size: var(--size-h1);
color: var(--legal-blue);
margin-bottom: 25px;
line-height: 1.3;
border-bottom: 1px solid #eee;
padding-bottom: 15px;
}
.doc-subtitle {
font-family: var(--font-sans);
font-weight: 700;
font-size: var(--size-h2);
color: var(--legal-blue);
margin-top: 40px;
margin-bottom: 15px;
text-transform: uppercase;
letter-spacing: 0.5px;
border-left: 4px solid var(--gold-accent);
padding-left: 15px;
}
.caput {
font-family: var(--font-serif);
font-size: 18px;
line-height: 1.8;
color: #111;
margin-bottom: 20px;
text-align: justify;
}
.paragraph {
font-family: var(--font-sans);
font-size: var(--size-body);
line-height: 1.7;
color: #333;
margin-bottom: 15px;
text-align: justify;
}
.inciso {
font-family: var(--font-sans);
font-size: var(--size-body);
line-height: 1.6;
color: #444;
margin-left: 30px;
margin-bottom: 10px;
padding-left: 15px;
border-left: 2px solid #f0f0f0;
text-align: justify;
}
.article-box { margin-bottom: 60px; scroll-margin-top: 40px; }
.chapter-title {
font-family: var(--font-sans);
font-weight: 800;
font-size: 14px;
color: var(--gold-accent);
text-transform: uppercase;
letter-spacing: 2px;
text-align: center;
margin: 80px 0 40px 0;
padding-bottom: 15px;
border-bottom: 2px solid var(--legal-blue);
}
.ai-id{
display:inline-block;
font-size: 12px;
font-weight: 800;
letter-spacing: 1px;
color: #999;
margin-bottom: 10px;
}
.meta-box {
background: #fafafa;
border: 1px solid #e0e0e0;
border-left: 4px solid var(--gold-accent);
padding: 20px;
margin: 20px 0;
border-radius: 4px;
}
.meta-box .paragraph {
margin-bottom: 8px;
font-size: 14px;
}
.bullet-list {
margin-left: 20px;
margin-bottom: 20px;
}
.bullet-list li {
font-size: var(--size-body);
color: #444;
margin-bottom: 8px;
line-height: 1.6;
}
.highlight-box {
background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
border: 1px solid var(--gold-accent);
border-radius: 8px;
padding: 25px;
margin: 25px 0;
}
.clause-box {
background: #f8f9fa;
border-left: 4px solid var(--legal-blue);
padding: 20px;
margin: 20px 0;
font-style: italic;
}
.template-box {
background: #fff;
border: 2px solid var(--legal-blue);
border-radius: 8px;
padding: 25px;
margin: 25px 0;
}
.template-header {
background: var(--legal-blue);
color: #fff;
padding: 10px 15px;
margin: -25px -25px 20px -25px;
border-radius: 6px 6px 0 0;
font-weight: 700;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1px;
}
.table-container {
overflow-x: auto;
margin: 25px 0;
}
table {
width: 100%;
border-collapse: collapse;
font-size: 14px;
}
th {
background: var(--legal-blue);
color: #fff;
padding: 12px;
text-align: left;
font-weight: 700;
}
td {
padding: 12px;
border-bottom: 1px solid #e0e0e0;
vertical-align: top;
}
tr:nth-child(even) {
background: #f8f9fa;
}
.flow-step {
background: #fff;
border: 2px solid var(--gold-accent);
border-radius: 8px;
padding: 20px;
margin: 15px 0;
}
.flow-step h4 {
color: var(--legal-blue);
margin-top: 0;
border-bottom: 1px solid #eee;
padding-bottom: 10px;
}
.math-box {
background: #f5f5f5;
border-left: 4px solid var(--gold-accent);
padding: 15px 20px;
margin: 20px 0;
font-family: var(--font-serif);
font-style: italic;
color: var(--legal-blue);
border-radius: 0 4px 4px 0;
}
.jurisdiction-box {
background: #f0f4f8;
border-left: 4px solid #2c5282;
padding: 15px 20px;
margin: 20px 0;
border-radius: 0 4px 4px 0;
}
.jurisdiction-box h4 {
margin-top: 0;
color: #2c5282;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.mobile-btn { display: none; }
@media (max-width: 1024px) {
.sidebar { transform: translateX(-100%); width: 280px; }
.sidebar.open { transform: translateX(0); box-shadow: 10px 0 50px rgba(0,0,0,0.3); }
.main-content { margin-left: 0; padding: 20px; }
.document-page { padding: 40px 20px; }
.mobile-btn {
display: block;
position: fixed;
bottom: 20px;
right: 20px;
background: var(--legal-blue);
color: #fff;
border: none;
padding: 15px 20px;
font-weight: 800;
z-index: 2000;
box-shadow: 0 5px 20px rgba(0,0,0,0.3);
cursor: pointer;
border-radius: 4px;
}
html, body { width: 100%; max-width: 100vw; overflow-x: hidden; position: relative; overscroll-behavior-x: none; }
.main-content { width: 100%; max-width: 100vw; overflow-x: hidden; }
.document-page { width: 100%; max-width: 100%; margin: 0; border: none; box-shadow: none; }
.caput, .paragraph, .inciso { text-align: left; }
.inciso { margin-left: 15px; padding-left: 10px; }
.article-title { font-size: 22px; }
.doc-subtitle { font-size: 18px; }
}
</style>
<base target="_blank">
</head>
<body>
<button class="mobile-btn" onclick="document.getElementById('sidebar').classList.toggle('open')">
INDEX
</button>
<aside class="sidebar" id="sidebar">
<div class="sidebar-top">
<a href="#" class="logo-box" aria-label="Home">Σ</a>
<div class="sidebar-title">c-ECO DIAGNOSTIC METHOD<br>YEMEN ENERGY CONTRACTS</div>
</div>
<div class="search-container">
<input type="text" id="sidebarSearch" placeholder="Search sections..." aria-label="Search Index">
</div>
<nav>
<ul class="nav-list">
<li class="nav-section-title">FRONT MATTER</li>
<li class="nav-item nav-item-chapter"><a href="#YEM-0">Cover & Metadata</a></li>
<li class="nav-item nav-item-chapter"><a href="#YEM-0-1">Purpose and Scope</a></li>
<li class="nav-section-title">PART I — FRAMEWORK OVERVIEW</li>
<li class="nav-item nav-item-chapter"><a href="#YEM-1">1. The c-ECO Diagnostic Method</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-1-1">1.1 Theoretical Foundation</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-1-2">1.2 Four-Phase Architecture</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-1-3">1.3 Yemen as Archetypal Case</a></li>
<li class="nav-section-title">PART II — PHASE I: CONTRACTUAL ARCHAEOLOGY</li>
<li class="nav-item nav-item-chapter"><a href="#YEM-2">2. Mapping Decisional Infrastructure</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-2-1">2.1 Temporal Stratification</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-2-2">2.2 Obligation Topology</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-2-3">2.3 Actor Configuration</a></li>
<li class="nav-section-title">PART III — PHASE II: SYSTEMIC CONTEXTUALIZATION</li>
<li class="nav-item nav-item-chapter"><a href="#YEM-3">3. Embedding in Socio-Ecological Systems</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-3-1">3.1 Fragility Indicator Selection</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-3-2">3.2 Trajectory Modeling</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-3-3">3.3 Contract-System Friction Analysis</a></li>
<li class="nav-section-title">PART IV — PHASE III: PRE-THRESHOLD DETECTION</li>
<li class="nav-item nav-item-chapter"><a href="#YEM-4">4. Identifying Reversibility Constraints</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-4-1">4.1 Reversibility Reserve Assessment</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-4-2">4.2 Lock-In Severity Scoring</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-4-3">4.3 Threshold Proximity Index</a></li>
<li class="nav-section-title">PART V — PHASE IV: GOVERNANCE GAP ANALYSIS</li>
<li class="nav-item nav-item-chapter"><a href="#YEM-5">5. Evaluating Adaptive Mechanisms</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-5-1">5.1 Review Mechanism Audit</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-5-2">5.2 Indicator Integration</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-5-3">5.3 Multi-Stakeholder Architecture</a></li>
<li class="nav-section-title">PART VI — SYNTHESIS & OPERATIONS</li>
<li class="nav-item nav-item-chapter"><a href="#YEM-6">6. Diagnostic Dashboard</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-6-1">6.1 Priority Ranking Matrix</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-6-2">6.2 Implementation Protocol</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-6-3">6.3 Quality Assurance</a></li>
<li class="nav-section-title">PART VII — MODEL CLAUSES</li>
<li class="nav-item nav-item-chapter"><a href="#YEM-7">7. c-ECO Contractual Mechanisms</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-7-1">7.1 Decision-Space Preservation</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-7-2">7.2 Threshold-Informed Review</a></li>
<li class="nav-item nav-sub-item"><a href="#YEM-7-3">7.3 Recalibration Architecture</a></li>
<li class="nav-section-title">ANNEXES</li>
<li class="nav-item nav-item-chapter"><a href="#YEM-A1">A. Operational Tools</a></li>
<li class="nav-item nav-item-chapter"><a href="#YEM-A2">B. Glossary</a></li>
<li class="nav-item nav-item-chapter"><a href="#YEM-A3">C. Documentation Templates</a></li>
<li style="height: 100px;"></li>
</ul>
</nav>
</aside>
<main class="main-content">
<article class="document-page">
<!-- COVER AND METADATA -->
<section id="YEM-0" class="article-box">
<span class="ai-id">[c-ECO-DIAG-YEM-001]</span>
<h2 class="article-title">The c-ECO Diagnostic Method<br>Adaptive Energy Contracting in Fragile Governance Contexts<br>Yemen Case Application</h2>
<div class="caput">
A systematic analytical protocol for identifying pre-threshold systemic risks in long-term energy contracts operating in fragile governance environments, applied to the Yemen energy sector as an archetypal case of institutional fragmentation, infrastructure degradation, and humanitarian criticality.
</div>
<div class="meta-box">
<div class="paragraph"><strong>Framework:</strong> c-ECO (Contractual Equity & Ecological Co-Responsibility)</div>
<div class="paragraph"><strong>Version:</strong> 1.0 — Diagnostic Method</div>
<div class="paragraph"><strong>Publication Date:</strong> March 2025</div>
<div class="paragraph"><strong>Document Type:</strong> Technical Implementation Manual</div>
<div class="paragraph"><strong>Language:</strong> English</div>
<div class="paragraph"><strong>Status:</strong> Working Draft for Field Testing</div>
<div class="paragraph"><strong>Authors:</strong> Jacqueline A. Ennis, Nageeb [Surname]</div>
<div class="paragraph"><strong>Institution:</strong> Silvio Meira Institute (ISM) / c-ECO Doctrine</div>
</div>
<h3 class="doc-subtitle">Methodological Scope</h3>
<div class="inciso">
I — Applicable to energy supply contracts in contexts of institutional fragmentation, infrastructure degradation, and humanitarian dependency;
</div>
<div class="inciso">
II — Designed for four-phase progressive analysis: Contractual Archaeology, Systemic Contextualization, Pre-Threshold Detection, and Governance Gap Analysis;
</div>
<div class="inciso">
III — Operationalizes the Pre-Threshold Principle: detecting when remaining margin of systemic reversibility becomes detectably constrained;
</div>
<div class="inciso">
IV — Intended for use by legal practitioners, energy sector analysts, humanitarian coordinators, and development finance institutions.
</div>
</section>
<section id="YEM-0-1" class="article-box">
<span class="ai-id">[PURPOSE-AND-SCOPE]</span>
<h2 class="article-title">Purpose and Scope</h2>
<div class="caput">
Energy and fuel trade contracts are designed for stability, predictability, and supply security. In fragile-state environments, however, these same characteristics generate systemic governance risks. Long-term contractual obligations become structurally non-interruptible even when underlying political, ecological, or infrastructural conditions deteriorate.
</div>
<div class="paragraph">
This working note applies the c-ECO analytical framework to examine how energy contracting structures in Yemen create:
</div>
<div class="inciso">
I — <strong>Decisional lock-ins:</strong> Contractual constraints that prevent adaptive response to changing circumstances;
</div>
<div class="inciso">
II — <strong>Threshold blindness:</strong> Inability to detect systemic risk accumulation before legal breach occurs;
</div>
<div class="inciso">
III — <strong>Structural dependency:</strong> System-stabilizing functions that create vulnerability to supply disruption.
</div>
<div class="paragraph">
The method proposes ex-ante contractual governance mechanisms that preserve decision space while maintaining continuity of energy supply — shifting from reactive crisis management to anticipatory governance.
</div>
<div class="jurisdiction-box">
<h4>Yemen Context Specificity</h4>
<p style="margin: 0; font-size: 14px;">
Yemen represents an archetypal fragile energy system: 90%+ fuel import dependence,
70%+ grid infrastructure degradation, institutional fragmentation (IRG/Houthi authorities),
currency collapse, and 20+ million people dependent on fuel-powered humanitarian services.
Contracts here function as governance infrastructure rather than purely commercial instruments.
</p>
</div>
</section>
<div class="chapter-title">PART I — FRAMEWORK OVERVIEW</div>
<section id="YEM-1" class="article-box">
<span class="ai-id">[FRAMEWORK-OVERVIEW]</span>
<h2 class="article-title">1. The c-ECO Diagnostic Method</h2>
<div class="caput">
The c-ECO Diagnostic Method is a structured analytical protocol for identifying systemic risks embedded in long-term contracts operating in fragile governance environments. It translates the theoretical c-ECO framework into operational assessment procedures.
</div>
<h3 id="YEM-1-1" class="doc-subtitle">1.1 Theoretical Foundation</h3>
<div class="paragraph">
The method rests on three pillars derived from the c-ECO Doctrine:
</div>
<div class="table-container">
<table>
<thead>
<tr>
<th>Pillar</th>
<th>Concept</th>
<th>Operational Question</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Temporal Architecture</strong></td>
<td>Contracts as decision infrastructures over time</td>
<td>How do obligations accumulate and constrain future options?</td>
</tr>
<tr>
<td><strong>Pre-Threshold Responsibility</strong></td>
<td>Juridical relevance before harm materializes</td>
<td>When does remaining reversibility become critically constrained?</td>
</tr>
<tr>
<td><strong>Systemic Embodiment</strong></td>
<td>Contracts embedded in socio-ecological systems</td>
<td>How do contractual rigidities interact with systemic fragility?</td>
</tr>
</tbody>
</table>
</div>
<h3 id="YEM-1-2" class="doc-subtitle">1.2 Four-Phase Architecture</h3>
<div class="flow-step">
<h4>PHASE I: CONTRACTUAL ARCHAEOLOGY</h4>
<p>Reconstruct the contract as temporal architecture of decision. Map obligation distribution, interdependencies, and actor configuration.</p>
<p><strong>Deliverable:</strong> Contractual Decision Map (CDM)</p>
</div>
<div class="flow-step">
<h4>PHASE II: SYSTEMIC CONTEXTUALIZATION</h4>
<p>Assess contract-system fit by mapping external stressors against contractual rigidity. Model scenarios and identify friction points.</p>
<p><strong>Deliverable:</strong> Systemic Stress Matrix (SSM)</p>
</div>
<div class="flow-step">
<h4>PHASE III: PRE-THRESHOLD DETECTION</h4>
<p>Detect when remaining margin of reversibility becomes constrained. Score lock-in severity and calculate proximity to irreversibility.</p>
<p><strong>Deliverable:</strong> Pre-Threshold Risk Register (PTRR)</p>
</div>
<div class="flow-step">
<h4>PHASE IV: GOVERNANCE GAP ANALYSIS</h4>
<p>Evaluate existing contractual governance against c-ECO pre-threshold requirements. Identify remediation mechanisms.</p>
<p><strong>Deliverable:</strong> Governance Gap Report (GGR)</p>
</div>
<div class="math-box">
Synthesis: c-ECO Diagnostic Dashboard integrating all four phases into actionable intelligence with priority-ranked interventions.
</div>
<h3 id="YEM-1-3" class="doc-subtitle">1.3 Yemen as Archetypal Case</h3>
<div class="paragraph">
Yemen represents a <strong>paradigmatic fragile energy system</strong> characterized by:
</div>
<div class="inciso">
I — <strong>High import dependence:</strong> 90%+ of fuel requirements via external supply, creating supply chain vulnerability;
</div>
<div class="inciso">
II — <strong>Institutional fragmentation:</strong> Parallel authorities (Internationally Recognized Government and Houthi authorities) with competing contractual capacities;
</div>
<div class="inciso">
III — <strong>Infrastructure degradation:</strong> 70%+ of grid infrastructure damaged or non-functional, limiting distribution capacity;
</div>
<div class="inciso">
IV — <strong>Financial instability:</strong> Currency collapse, foreign reserve depletion, banking sector fragmentation;
</div>
<div class="inciso">
V — <strong>Humanitarian criticality:</strong> 20+ million people dependent on fuel-powered water, health, and food systems.
</div>
<div class="paragraph">
In such environments, fuel procurement contracts perform functions extending beyond commercial exchange — they become <strong>system-stabilizing infrastructure</strong>. This creates unique structural vulnerabilities that the c-ECO method is designed to detect and mitigate.
</div>
</section>
<div class="chapter-title">PART II — PHASE I: CONTRACTUAL ARCHAEOLOGY</div>
<section id="YEM-2" class="article-box">
<span class="ai-id">[PHASE-I-CONTRACTUAL-ARCHAEOLOGY]</span>
<h2 class="article-title">2. Mapping the Decisional Infrastructure</h2>
<div class="caput">
Phase I reconstructs the contract as a temporal architecture of decision — mapping how obligations are distributed across time, how they interrelate, and how they constrain future decision space.
</div>
<h3 id="YEM-2-1" class="doc-subtitle">2.1 Temporal Stratification</h3>
<div class="paragraph">
Create a comprehensive timeline of all contractual obligations, categorized by temporal horizon:
</div>
<div class="inciso">
I — <strong>T0-T5 (Immediate Term):</strong> 0-5 years from contract inception — initial delivery schedules, payment mechanism establishment, performance bonding, technical commissioning;
</div>
<div class="inciso">
II — <strong>T5-T10 (Medium Term):</strong> 5-10 years — volume escalation clauses, price review mechanisms, renewal provisions, major maintenance intervals;
</div>
<div class="inciso">
III — <strong>T10+ (Long Term):</strong> Beyond 10 years — contract maturity, asset transfer obligations, long-term exclusivity commitments, legacy liability provisions.
</div>
<div class="template-box">
<div class="template-header">Yemen Application — Fuel Supply Agreement Timeline</div>
<div class="table-container">
<table>
<thead>
<tr>
<th>Timeline</th>
<th>Obligation</th>
<th>Decisional Impact</th>
</tr>
</thead>
<tbody>
<tr>
<td>Month 1</td>
<td>Letter of Credit establishment</td>
<td>Locks foreign exchange allocation</td>
</tr>
<tr>
<td>Month 3-36</td>
<td>Monthly 50,000 MT delivery obligation</td>
<td>Creates rolling receivables exposure</td>
</tr>
<tr>
<td>Year 2</td>
<td>Take-or-pay minimum volume trigger</td>
<td>Irreversible payment regardless of demand</td>
</tr>
<tr>
<td>Year 5</td>
<td>Exclusive supply renewal clause</td>
<td>Eliminates alternative supplier competition</td>
</tr>
<tr>
<td>Year 10</td>
<td>Port infrastructure co-investment maturity</td>
<td>Creates sunk cost lock-in</td>
</tr>
</tbody>
</table>
</div>
</div>
<h3 id="YEM-2-2" class="doc-subtitle">2.2 Obligation Topology</h3>
<div class="paragraph">
Catalog all binding commitments by juridical category and map interdependencies:
</div>
<div class="paragraph">
<strong>Category A: Financial Obligations</strong>
</div>
<div class="inciso">
I — Payment terms (currency, timing, indexing);
</div>
<div class="inciso">
II — Credit support requirements (Letters of Credit, guarantees, bonds);
</div>
<div class="inciso">
III — Penalty structures (liquidated damages, termination fees);
</div>
<div class="inciso">
IV — Take-or-pay minimums.
</div>
<div class="paragraph">
<strong>Category B: Operational Obligations</strong>
</div>
<div class="inciso">
I — Delivery schedules (firm vs. flexible);
</div>
<div class="inciso">
II — Quality specifications;
</div>
<div class="inciso">
III — Exclusivity arrangements;
</div>
<div class="inciso">
IV — Technical performance standards.
</div>
<div class="paragraph">
<strong>Category C: Juridical Obligations</strong>
</div>
<div class="inciso">
I — Governing law and dispute resolution;
</div>
<div class="inciso">
II — Force majeure definitions and procedures;
</div>
<div class="inciso">
III — Assignment/novation restrictions;
</div>
<div class="inciso">
IV — Termination rights and consequences.
</div>
<div class="highlight-box">
<strong>Interdependency Mapping:</strong> Identify cascading obligations where compliance with Obligation A triggers or constrains Obligation B.
<br><br>
<em>Example:</em> Establishment of USD Letter of Credit (Financial) → triggers Monthly Delivery Acceptance (Operational) → triggers Take-or-pay Volume Calculation (Financial) → constrains Alternative Supplier Engagement (Juridical).
</div>
<h3 id="YEM-2-3" class="doc-subtitle">2.3 Actor Configuration</h3>
<div class="paragraph">
Map the decision rights architecture — who can decide what, when, and under what constraints.
</div>
<div class="table-container">
<table>
<thead>
<tr>
<th>Decision Type</th>
<th>Holder</th>
<th>Constraints</th>
<th>Modification Mechanism</th>
</tr>
</thead>
<tbody>
<tr>
<td>Delivery schedule modification</td>
<td>Supplier</td>
<td>30-day notice, buyer consent required</td>
<td>Mutual agreement</td>
</tr>
<tr>
<td>Payment term extension</td>
<td>Buyer</td>
<td>LC amendment required</td>
<td>Bank approval + supplier consent</td>
</tr>
<tr>
<td>Volume adjustment</td>
<td>None (fixed)</td>
<td>N/A</td>
<td>Contract amendment (unanimous)</td>
</tr>
<tr>
<td>Termination for convenience</td>
<td>Neither</td>
<td>Prohibited</td>
<td>N/A</td>
</tr>
<tr>
<td>Force majeure declaration</td>
<td>Either</td>
<td>UN-certified event required</td>
<td>Independent verification</td>
</tr>
</tbody>
</table>
</div>
<div class="jurisdiction-box">
<h4>Yemen-Specific Considerations</h4>
<p style="margin: 0; font-size: 14px;">
<strong>Sovereign fragmentation:</strong> Which Yemeni entity holds decision rights? IRG-YPC vs. Houthi-YPC vs. de facto authorities.
<br><br>
<strong>Third-party constraints:</strong> World Bank/UN guarantee conditions may override contractual flexibility.
<br><br>
<strong>Humanitarian overlay:</strong> WFP/UNICEF as affected non-parties with operational dependency but no contractual standing.
</p>
</div>
<div class="paragraph">
<strong>Phase I Deliverable — Contractual Decision Map (CDM):</strong>
</div>
<div class="inciso">
I — Visual Timeline: 20-30 year horizon with obligation density heatmap;
</div>
<div class="inciso">
II — Interdependency Web: Network diagram showing cascading effects;
</div>
<div class="inciso">
III — Autonomy Matrix: Decision rights by party and domain;
</div>
<div class="inciso">
IV — Lock-In Nodes: Identification of irreversibility points.
</div>
</section>
<div class="chapter-title">PART III — PHASE II: SYSTEMIC CONTEXTUALIZATION</div>
<section id="YEM-3" class="article-box">
<span class="ai-id">[PHASE-II-SYSTEMIC-CONTEXTUALIZATION]</span>
<h2 class="article-title">3. Embedding in Socio-Ecological Systems</h2>
<div class="caput">
Phase II assesses contract-system fit by mapping external stressors against contractual rigidity. It determines where contractual obligations conflict with plausible systemic trajectories.
</div>
<h3 id="YEM-3-1" class="doc-subtitle">3.1 Fragility Indicator Selection</h3>
<div class="paragraph">
Select 8-12 indicators across four domains based on relevance to contract performance and data availability:
</div>
<div class="table-container">
<table>
<thead>
<tr>
<th>Domain</th>
<th>Sample Indicators</th>
<th>Data Sources</th>
<th>Threshold Definition</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="3"><strong>Political/Security</strong></td>
<td>Territorial control shifts (district-level)</td>
<td>ACLED, UN OCHA</td>
<td>>10% change in controlled territory</td>
</tr>
<tr>
<td>Institutional fragmentation index</td>
<td>World Bank Governance Indicators</td>
<td><25th percentile global ranking</td>
</tr>
<tr>
<td>Armed conflict intensity</td>
<td>UCDP/PRIO</td>
<td>>100 battle-related deaths/month</td>
</tr>
<tr>
<td rowspan="4"><strong>Economic/Financial</strong></td>
<td>Official exchange rate (YER/USD)</td>
<td>Central Bank of Yemen</td>
<td>>20% depreciation in 30 days</td>
</tr>
<tr>
<td>Foreign reserves (months of imports)</td>
<td>IMF Article IV reports</td>
<td><1 month coverage</td>
</tr>
<tr>
<td>Fuel import capacity (MT/month)</td>
<td>UN Verification and Inspection Mechanism</td>
<td><50% of baseline requirement</td>
</tr>
<tr>
<td>Banking sector functionality</td>
<td>Yemen Bankers Association</td>
<td>>50% of branches non-operational</td>
</tr>
<tr>
<td rowspan="3"><strong>Infrastructure/Logistics</strong></td>
<td>Hodeidah port operational capacity</td>
<td>UNVIM, WFP</td>
<td><30% of pre-conflict throughput</td>
</tr>
<tr>
<td>Main road accessibility</td>
<td>Logistics Cluster</td>
<td>>2 of 3 main corridors closed</td>
</tr>
<tr>
<td>Fuel storage availability</td>
<td>Yemen Oil Company reports</td>
<td><7 days national cover</td>
</tr>
<tr>
<td rowspan="3"><strong>Humanitarian/Demand</strong></td>
<td>Fuel-dependent population (millions)</td>
<td>UN OCHA Humanitarian Needs Overview</td>
<td>>15 million without reliable access</td>
</tr>
<tr>
<td>Health facility energy access</td>
<td>WHO Yemen</td>
<td>>30% of facilities without power</td>
</tr>
<tr>
<td>Fuel price spikes (retail vs. baseline)</td>
<td>WFP Market Monitoring</td>
<td>>200% of pre-conflict baseline</td>
</tr>
</tbody>
</table>
</div>
<div class="highlight-box">
<strong>Indicator Selection Criteria:</strong>
<ul class="bullet-list">
<li><strong>Relevance:</strong> Direct impact on contract performance</li>
<li><strong>Measurability:</strong> Quantifiable with available data</li>
<li><strong>Frequency:</strong> Updates at least quarterly</li>
<li><strong>Predictive value:</strong> Leading indicator of systemic stress</li>
<li><strong>Verifiability:</strong> Multiple independent sources possible</li>
</ul>
</div>
<h3 id="YEM-3-2" class="doc-subtitle">3.2 Trajectory Modeling</h3>
<div class="paragraph">
Develop three scenario trajectories for each indicator:
</div>
<div class="inciso">