-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommit.html
More file actions
1365 lines (1219 loc) · 58.6 KB
/
commit.html
File metadata and controls
1365 lines (1219 loc) · 58.6 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>EULA Labs — Founding Steward Commitment</title>
<meta name="description" content="Founding Steward commitment process for EULA Labs Ventures.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,300;8..60,400;8..60,500;8..60,600&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--color-primary: #1a365d;
--color-secondary: #2c5282;
--color-accent: #3182ce;
--color-accent-light: #63b3ed;
--color-text: #1a202c;
--color-text-secondary: #4a5568;
--color-text-muted: #718096;
--color-bg: #ffffff;
--color-bg-alt: #f7fafc;
--color-border: #e2e8f0;
--color-success: #38a169;
--font-serif: 'Source Serif 4', Georgia, serif;
--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
--font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}
html { font-size: 17px; scroll-behavior: smooth; }
body {
font-family: var(--font-sans);
color: var(--color-text);
line-height: 1.7;
background: var(--color-bg-alt);
-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--color-primary); font-weight: 500; }
p { color: var(--color-text-secondary); margin-bottom: 1rem; }
a { color: var(--color-accent); text-decoration: none; }
.container { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
/* HEADER */
.page-header {
background: var(--color-primary);
padding: 2rem 0;
text-align: center;
}
.page-header h1 { color: white; font-size: 1.5rem; margin-bottom: 0.25rem; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }
.page-header a { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.page-header a:hover { color: white; }
/* STEPPER */
.stepper {
display: flex;
justify-content: center;
gap: 0;
padding: 2rem 0 1rem;
max-width: 600px;
margin: 0 auto;
}
.step-indicator {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.8rem;
font-weight: 600;
color: var(--color-text-muted);
cursor: pointer;
transition: color 0.2s;
}
.step-indicator.active { color: var(--color-primary); }
.step-indicator.completed { color: var(--color-success); }
.step-num {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border-radius: 50%;
background: var(--color-border);
color: var(--color-text-muted);
font-family: var(--font-mono);
font-size: 0.8rem;
font-weight: 600;
transition: all 0.2s;
}
.step-indicator.active .step-num { background: var(--color-primary); color: white; }
.step-indicator.completed .step-num { background: var(--color-success); color: white; }
.step-connector {
width: 40px;
height: 2px;
background: var(--color-border);
align-self: center;
margin: 0 0.5rem;
transition: background 0.2s;
}
.step-connector.completed { background: var(--color-success); }
/* CARD */
.step-card {
background: white;
border: 1px solid var(--color-border);
border-radius: 16px;
padding: 2.5rem;
margin: 1rem 0 2rem;
box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.step-card h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.step-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; margin-top: 1.5rem; }
/* AMOUNT DISPLAY */
.amount-display {
text-align: center;
padding: 2rem;
background: linear-gradient(135deg, #ebf8ff 0%, #f0fff4 100%);
border-radius: 12px;
margin: 1.5rem 0;
}
.amount-display .label { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 0.5rem; }
.amount-display .amount {
font-family: var(--font-mono);
font-size: 3rem;
font-weight: 600;
color: var(--color-primary);
line-height: 1;
}
.amount-edit {
display: inline-block;
margin-top: 0.75rem;
font-size: 0.8rem;
color: var(--color-accent);
cursor: pointer;
border-bottom: 1px dashed var(--color-accent);
}
/* TERM SHEET TABLE */
table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.9rem; }
th { text-align: left; padding: 0.6rem 0.75rem; border-bottom: 2px solid var(--color-border); font-weight: 600; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); }
td { padding: 0.6rem 0.75rem; border-bottom: 1px solid var(--color-border); color: var(--color-text-secondary); }
td strong { color: var(--color-text); }
td:first-child { font-weight: 500; color: var(--color-text); white-space: nowrap; }
/* CALLOUT */
.callout {
background: var(--color-bg-alt);
border: 1px solid var(--color-border);
border-left: 3px solid var(--color-accent);
border-radius: 8px;
padding: 1.25rem;
margin: 1.25rem 0;
font-size: 0.9rem;
}
.callout p { margin-bottom: 0.5rem; font-size: 0.9rem; }
.callout p:last-child { margin-bottom: 0; }
.callout.green { border-left-color: var(--color-success); }
.callout.amber { border-left-color: #d69e2e; }
/* LOI */
.loi-document {
background: white;
border: 2px solid var(--color-border);
border-radius: 12px;
padding: 2.5rem;
margin: 1.5rem 0;
position: relative;
}
.loi-document::before {
content: 'NON-BINDING LETTER OF INTENT';
position: absolute;
top: -12px;
left: 2rem;
background: white;
padding: 0 0.75rem;
font-family: var(--font-mono);
font-size: 0.7rem;
font-weight: 600;
color: var(--color-accent);
letter-spacing: 0.08em;
}
.loi-document h4 { font-size: 1rem; margin-bottom: 1rem; text-align: center; }
.loi-document p { font-size: 0.85rem; line-height: 1.8; }
.signature-block {
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 1px solid var(--color-border);
}
.sig-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
margin-bottom: 1.5rem;
}
.sig-field label {
display: block;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--color-text-muted);
margin-bottom: 0.5rem;
}
.sig-field input {
width: 100%;
padding: 0.75rem 1rem;
border: 2px solid var(--color-border);
border-radius: 8px;
font-family: var(--font-sans);
font-size: 1rem;
outline: none;
transition: border-color 0.2s;
}
.sig-field input:focus { border-color: var(--color-accent); }
.sig-field input.signature-style {
font-family: 'Source Serif 4', Georgia, serif;
font-size: 1.25rem;
font-style: italic;
color: var(--color-primary);
}
.sig-field .static-value {
font-family: var(--font-mono);
font-size: 0.9rem;
color: var(--color-text);
padding: 0.75rem 0;
border-bottom: 2px solid var(--color-border);
}
/* WIRE INFO */
.wire-card {
background: #1e293b;
color: #e2e8f0;
border-radius: 12px;
padding: 2rem;
margin: 1.5rem 0;
}
.wire-card h4 { color: var(--color-accent-light); font-size: 1rem; margin-bottom: 1rem; }
.wire-row {
display: flex;
justify-content: space-between;
padding: 0.6rem 0;
border-bottom: 1px solid rgba(255,255,255,0.1);
font-size: 0.9rem;
}
.wire-row:last-child { border-bottom: none; }
.wire-label { color: #94a3b8; }
.wire-value { font-family: var(--font-mono); color: white; font-weight: 500; user-select: all; }
.wire-copy {
display: inline-block;
margin-left: 0.5rem;
font-size: 0.7rem;
color: var(--color-accent-light);
cursor: pointer;
opacity: 0.7;
transition: opacity 0.2s;
}
.wire-copy:hover { opacity: 1; }
/* BUTTONS */
.btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.875rem 1.75rem;
border-radius: 8px;
font-weight: 500;
font-size: 0.95rem;
text-decoration: none;
border: none;
cursor: pointer;
transition: all 0.2s;
font-family: var(--font-sans);
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--color-primary); color: white; }
.btn-primary:hover { background: var(--color-secondary); transform: translateY(-1px); }
.btn-success { background: var(--color-success); color: white; }
.btn-success:hover { background: #2f855a; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--color-text-secondary); border: 1px solid var(--color-border); }
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-block { display: flex; width: 100%; justify-content: center; font-size: 1.05rem; padding: 1rem; }
.btn-group { display: flex; gap: 1rem; margin-top: 1.5rem; }
/* CHECKBOX */
.checkbox-row {
display: flex;
align-items: flex-start;
gap: 0.75rem;
margin: 1rem 0;
font-size: 0.9rem;
color: var(--color-text-secondary);
}
.checkbox-row input[type="checkbox"] {
margin-top: 0.25rem;
width: 18px;
height: 18px;
accent-color: var(--color-primary);
flex-shrink: 0;
}
/* CONFIRMATION */
.confirmation {
text-align: center;
padding: 3rem 2rem;
}
.confirmation .checkmark {
width: 80px;
height: 80px;
border-radius: 50%;
background: #f0fff4;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
font-size: 2.5rem;
}
.confirmation h2 { margin-bottom: 0.75rem; }
.confirmation p { max-width: 480px; margin: 0 auto 1rem; }
/* HIDDEN */
.hidden { display: none; }
/* TIMELINE MINI */
.mini-timeline { list-style: none; margin: 1rem 0; }
.mini-timeline li {
padding: 0.5rem 0 0.5rem 1.5rem;
position: relative;
font-size: 0.85rem;
color: var(--color-text-secondary);
border-left: 2px solid var(--color-border);
}
.mini-timeline li::before {
content: '';
position: absolute;
left: -5px;
top: 0.75rem;
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--color-accent);
}
.mini-timeline li strong { color: var(--color-text); }
/* FOOTER */
.page-footer {
text-align: center;
padding: 2rem;
font-size: 0.8rem;
color: var(--color-text-muted);
}
.page-footer a { color: var(--color-text-muted); }
/* RESPONSIVE */
@media (max-width: 600px) {
.step-card { padding: 1.5rem; }
.loi-document { padding: 1.5rem; }
.sig-row { grid-template-columns: 1fr; gap: 1rem; }
.wire-card { padding: 1.5rem; }
.stepper { gap: 0; }
.step-indicator span:not(.step-num) { display: none; }
.btn-group { flex-direction: column; }
.amount-display .amount { font-size: 2.25rem; }
}
</style>
</head>
<body>
<!-- HEADER -->
<div class="page-header">
<h1>EULA Labs — Founding Steward Commitment</h1>
<p>Secure your position. Build the future.</p>
<a href="index.html">← Back to full proposal</a>
</div>
<!-- STEPPER -->
<div class="container">
<div class="stepper">
<div class="step-indicator active" id="step-ind-1" onclick="goToStep(1)">
<span class="step-num">1</span>
<span>Confirm</span>
</div>
<div class="step-connector" id="conn-1"></div>
<div class="step-indicator" id="step-ind-2" onclick="goToStep(2)">
<span class="step-num">2</span>
<span>Review</span>
</div>
<div class="step-connector" id="conn-2"></div>
<div class="step-indicator" id="step-ind-3" onclick="goToStep(3)">
<span class="step-num">3</span>
<span>Sign</span>
</div>
<div class="step-connector" id="conn-3"></div>
<div class="step-indicator" id="step-ind-4" onclick="goToStep(4)">
<span class="step-num">4</span>
<span>Fund</span>
</div>
</div>
</div>
<!-- ============================================ -->
<!-- STEP 1: CONFIRM AMOUNT -->
<!-- ============================================ -->
<div class="container" id="step-1">
<div class="step-card">
<h2>Confirm Your Investment</h2>
<p>Verify the amount below. This will carry through your Letter of Intent and wire instructions.</p>
<div class="amount-display">
<div class="label">Founding Steward Investment</div>
<div class="amount" id="display-amount">$75,000</div>
<div class="amount-edit" onclick="toggleAmountEdit()">Change amount</div>
</div>
<div id="amount-editor" class="hidden" style="text-align:center;margin:1.5rem 0;">
<div style="display:flex;gap:0.75rem;justify-content:center;flex-wrap:wrap;margin-bottom:1rem;">
<button onclick="setAmount(50000)" class="btn btn-outline amt-btn">$50,000</button>
<button onclick="setAmount(75000)" class="btn btn-outline amt-btn">$75,000</button>
<button onclick="setAmount(100000)" class="btn btn-outline amt-btn">$100,000</button>
</div>
<div style="display:flex;align-items:center;justify-content:center;gap:0.5rem;">
<span style="font-family:var(--font-mono);font-weight:600;">$</span>
<input id="custom-amt" type="text" placeholder="Enter amount" style="font-family:var(--font-mono);font-size:1rem;width:160px;padding:0.6rem 1rem;border:2px solid var(--color-border);border-radius:8px;text-align:center;outline:none;" oninput="handleCustom(this)">
</div>
</div>
<div class="callout green">
<p><strong>What this investment unlocks:</strong></p>
<p>Founding Steward status (Tier 1, 5x multiplier), negotiated equity in EULA Labs Ventures LLC, governance weight on all financial decisions, and revenue share from day one.</p>
</div>
<ul class="mini-timeline">
<li><strong>50% → Agent Army & AI Consulting</strong> — Revenue generation starts immediately</li>
<li><strong>25% → Pembrook Down Payment</strong> — Secure the 3-unit compound</li>
<li><strong>15% → Legal & Form C Filing</strong> — Launch the $2M Reg CF raise</li>
<li><strong>10% → ARIA Prototypes</strong> — Build working robotics demos</li>
</ul>
<div class="btn-group" style="justify-content:flex-end;">
<button class="btn btn-primary" onclick="goToStep(2)">Continue to Term Sheet →</button>
</div>
</div>
</div>
<!-- ============================================ -->
<!-- STEP 2: REVIEW TERM SHEET -->
<!-- ============================================ -->
<div class="container hidden" id="step-2">
<div class="step-card">
<h2>Term Sheet Review</h2>
<p>Review the key terms of the Founding Steward arrangement before proceeding to the Letter of Intent.</p>
<h3>Partnership Structure</h3>
<table>
<tbody>
<tr><td>Entity</td><td><strong>EULA Labs Ventures LLC</strong> (Delaware)</td></tr>
<tr><td>Your Role</td><td><strong>Financial Steward</strong> — Fund oversight, compliance liaison, investor relations</td></tr>
<tr><td>Founder Role</td><td><strong>Durayveon Butler</strong> — Creative Director & Technical Lead</td></tr>
<tr><td>Investment</td><td><strong id="term-amount">$75,000</strong> — Founding Steward Capital</td></tr>
<tr><td>Security Type</td><td>LLC Membership Interests (non-transferable)</td></tr>
</tbody>
</table>
<h3>What You Receive</h3>
<table>
<tbody>
<tr><td>Tier 1 Status</td><td>5x contribution multiplier (highest tier)</td></tr>
<tr><td>Equity Stake</td><td>Negotiated — proportional to investment + stewardship commitment</td></tr>
<tr><td>Revenue Share</td><td>Pro-rata distribution from 40% contributor allocation pool</td></tr>
<tr><td>Governance Weight</td><td>Highest voting power on financial decisions (subject to 5% ceiling)</td></tr>
<tr><td>Half-Speed Decay</td><td>Contribution score retains value 2x longer than standard tiers</td></tr>
<tr><td>Fund Admin Access</td><td>Full portal access via Carta or Allocations</td></tr>
</tbody>
</table>
<h3>Your Responsibilities</h3>
<table>
<tbody>
<tr><td>Fund Administration</td><td>Manage relationship with fund admin platform (Carta/Allocations)</td></tr>
<tr><td>Capital Oversight</td><td>Approve milestone-based capital releases across all SPVs</td></tr>
<tr><td>Financial Reporting</td><td>Monthly P&L, quarterly investor reports, annual statements</td></tr>
<tr><td>Compliance</td><td>Interface with securities attorney and CPA for filings</td></tr>
<tr><td>Investor Relations</td><td>Manage current and prospective investor communications</td></tr>
</tbody>
</table>
<h3>Execution Timeline (Upon Receipt of Funds)</h3>
<table>
<tbody>
<tr><td>Week 1</td><td>Form LLC, execute operating agreement, open banking</td></tr>
<tr><td>Weeks 1–2</td><td>Deploy AI agents and consulting — begin generating revenue</td></tr>
<tr><td>Weeks 2–3</td><td>File Form C, launch Reg CF campaign ($2M target)</td></tr>
<tr><td>Weeks 2–4</td><td>Place down payment on Pembrook compound</td></tr>
<tr><td>Weeks 3–6</td><td>Build ARIA Bloom & Guide prototypes</td></tr>
<tr><td>Weeks 4–8</td><td>Hire engineers, scale to $25K–$50K/mo revenue</td></tr>
</tbody>
</table>
<div class="callout amber">
<p><strong>Equity split and specific terms</strong> will be finalized in the formal operating agreement drafted by the securities attorney. This term sheet is a summary of the proposed arrangement — not a binding contract.</p>
</div>
<div class="btn-group" style="justify-content:space-between;">
<button class="btn btn-outline" onclick="goToStep(1)">← Back</button>
<button class="btn btn-primary" onclick="goToStep(3)">Continue to Letter of Intent →</button>
</div>
</div>
</div>
<!-- ============================================ -->
<!-- STEP 3: SIGN LOI -->
<!-- ============================================ -->
<div class="container hidden" id="step-3">
<div class="step-card">
<h2>Letter of Intent</h2>
<p>Review and sign the non-binding Letter of Intent below. This signals your commitment and initiates the formal process.</p>
<div class="loi-document">
<h4>Letter of Intent — Founding Steward Investment</h4>
<p>This Letter of Intent (“LOI”) is entered into as of <strong id="loi-date"></strong> between:</p>
<p><strong>Party A:</strong> EULA Labs Ventures LLC (to be formed), represented by Durayveon Butler, Creative Director & Technical Lead, Houston, Texas.</p>
<p><strong>Party B:</strong> <span id="loi-investor-name" style="border-bottom:2px solid var(--color-accent);min-width:200px;display:inline-block;">___________________</span>, in the capacity of proposed Financial Steward.</p>
<p><strong>1. Intent.</strong> Party B expresses their intent to invest <strong id="loi-amount">$75,000</strong> as Founding Steward Capital into EULA Labs Ventures LLC upon satisfactory completion of due diligence and execution of a formal operating agreement.</p>
<p><strong>2. Role.</strong> Party B will serve as Financial Steward, responsible for fund administration oversight, capital deployment approval, financial reporting, compliance liaison, and investor relations as described in the term sheet reviewed in the prior step.</p>
<p><strong>3. Consideration.</strong> In exchange for the investment and stewardship commitment, Party B will receive: (a) Tier 1 contributor status with 5x multiplier; (b) a negotiated equity stake in the LLC; (c) pro-rata revenue share from the 40% contributor allocation; (d) highest governance weight on financial decisions; and (e) half-speed contribution decay.</p>
<p><strong>4. Capital Deployment.</strong> Funds will be deployed according to the following allocation: 50% to AI agent and consulting operations (immediate revenue generation), 25% to Pembrook compound down payment, 15% to legal and Reg CF filing, and 10% to ARIA prototype development.</p>
<p><strong>5. Next Steps.</strong> Upon execution of this LOI, the parties agree to: (a) engage a securities attorney within 5 business days; (b) draft and execute a formal operating agreement within 14 business days; (c) form EULA Labs Ventures LLC in Delaware; and (d) initiate capital deployment per the agreed timeline.</p>
<p><strong>6. Non-Binding.</strong> This LOI is a statement of intent and is not legally binding. No party is obligated to complete the transaction described herein. The formal operating agreement, once executed, will govern all rights and obligations.</p>
<!-- SIGNATURE BLOCK -->
<div class="signature-block">
<p style="font-size:0.8rem;font-weight:600;text-transform:uppercase;letter-spacing:0.06em;color:var(--color-text-muted);margin-bottom:1rem;">Signatures</p>
<div class="sig-row">
<div class="sig-field">
<label>Party A — Creative Director</label>
<div class="static-value">Durayveon Butler</div>
</div>
<div class="sig-field">
<label>Date</label>
<div class="static-value" id="sig-date-a"></div>
</div>
</div>
<div class="sig-row">
<div class="sig-field">
<label>Party B — Financial Steward (Sign Here)</label>
<input type="text" id="sig-name" class="signature-style" placeholder="Type your full legal name" oninput="updateSignature()">
</div>
<div class="sig-field">
<label>Date</label>
<div class="static-value" id="sig-date-b"></div>
</div>
</div>
</div>
</div>
<div class="checkbox-row">
<input type="checkbox" id="check-review" onchange="updateSignButton()">
<span>I have reviewed the full <a href="index.html" target="_blank">EULA Labs investor vision site</a>, the term sheet above, and understand this is a non-binding Letter of Intent.</span>
</div>
<div class="checkbox-row">
<input type="checkbox" id="check-understand" onchange="updateSignButton()">
<span>I understand the formal operating agreement will be drafted by a securities attorney and must be executed before any funds are legally committed.</span>
</div>
<div class="checkbox-row">
<input type="checkbox" id="check-capacity" onchange="updateSignButton()">
<span>I am entering this LOI in my individual capacity and have the means to fulfill the investment described herein.</span>
</div>
<div style="margin-top:1.25rem;padding-top:1.25rem;border-top:1px solid var(--color-border);">
<label style="display:block;font-size:0.85rem;font-weight:500;color:var(--color-text-secondary);margin-bottom:0.5rem;">Your email (optional — receive a signed copy of the LOI)</label>
<input type="email" id="investor-email" placeholder="your@email.com" style="width:100%;padding:0.75rem 1rem;border:2px solid var(--color-border);border-radius:8px;font-family:var(--font-sans);font-size:1rem;outline:none;" onfocus="this.style.borderColor='var(--color-accent)'" onblur="this.style.borderColor='var(--color-border)'">
</div>
<div class="btn-group" style="justify-content:space-between;">
<button class="btn btn-outline" onclick="goToStep(2)">← Back</button>
<button class="btn btn-success btn-block" id="sign-btn" onclick="signLOI()" disabled style="max-width:320px;opacity:0.5;">Sign Letter of Intent</button>
</div>
</div>
</div>
<!-- ============================================ -->
<!-- STEP 4: WIRE INSTRUCTIONS -->
<!-- ============================================ -->
<div class="container hidden" id="step-4">
<div class="step-card">
<div class="confirmation" id="confirmation-banner">
<div class="checkmark">✓</div>
<h2>Letter of Intent Signed</h2>
<p>Your LOI has been recorded. The next step is to wire the founding steward capital to initiate LLC formation and begin operations.</p>
<p style="font-family:var(--font-mono);font-size:0.8rem;color:var(--color-text-muted);" id="conf-ref">Reference: ELV-FS-<span id="conf-date-ref"></span></p>
</div>
<h3>Wire Transfer Instructions</h3>
<p>Send your founding steward capital to the account below. Include the reference number in the memo field.</p>
<div class="wire-card">
<h4>Eula Properties — Chase Business Account</h4>
<div class="wire-row">
<span class="wire-label">Bank</span>
<span class="wire-value">JPMorgan Chase Bank, N.A.</span>
</div>
<div class="wire-row">
<span class="wire-label">Account Name</span>
<span class="wire-value">Eula Properties</span>
</div>
<div class="wire-row">
<span class="wire-label">Account Number</span>
<span class="wire-value">659892239 <span class="wire-copy" onclick="copyText('659892239')">copy</span></span>
</div>
<div class="wire-row">
<span class="wire-label">Wire Routing Number</span>
<span class="wire-value">021000021 <span class="wire-copy" onclick="copyText('021000021')">copy</span></span>
</div>
<div class="wire-row">
<span class="wire-label">ACH Routing Number</span>
<span class="wire-value">111000614 <span class="wire-copy" onclick="copyText('111000614')">copy</span></span>
</div>
<div class="wire-row">
<span class="wire-label">Bank Address</span>
<span class="wire-value">Chase Bank, Houston, TX</span>
</div>
<div class="wire-row">
<span class="wire-label">Wire Amount</span>
<span class="wire-value" id="wire-amount" style="color:var(--color-accent-light);font-size:1.1rem;">$75,000.00</span>
</div>
<div class="wire-row">
<span class="wire-label">Memo / Reference</span>
<span class="wire-value" id="wire-memo" style="color:var(--color-accent-light);">ELV-FS-<span id="wire-date-ref"></span></span>
</div>
</div>
<div class="callout amber">
<p><strong>Important:</strong> Funds wired to Eula Properties will be held and transferred to EULA Labs Ventures LLC upon entity formation (Week 1). The operating agreement will document this transfer as founding capital. Wire receipt triggers immediate execution of the timeline outlined in the term sheet.</p>
</div>
<div class="callout green">
<p><strong>Upon receipt of your wire, the following actions begin within 48 hours:</strong></p>
<p>✓ Delaware LLC formation filing<br>
✓ Securities attorney engagement for Form C<br>
✓ Operating agreement drafting (your review within 7 days)<br>
✓ First AI agent deployments for client revenue<br>
✓ Pembrook compound earnest money preparation</p>
</div>
<h3 style="margin-top:2rem;">What Happens Next</h3>
<ul class="mini-timeline">
<li><strong>Wire clears (Day 1–2)</strong> — Durayveon confirms receipt, files Delaware LLC</li>
<li><strong>Day 3–5</strong> — Securities attorney engaged, operating agreement drafting begins</li>
<li><strong>Day 5–7</strong> — Operating agreement sent to you for review and execution</li>
<li><strong>Day 7–14</strong> — Both parties execute agreement, agent fleet deploys, consulting outreach begins</li>
<li><strong>Week 3+</strong> — Form C filed, Reg CF campaign launches, Pembrook deposit placed</li>
</ul>
<div style="text-align:center;margin-top:2rem;padding-top:1.5rem;border-top:1px solid var(--color-border);">
<p style="font-size:0.9rem;"><strong>Questions before wiring?</strong></p>
<div class="btn-group" style="justify-content:center;">
<a href="mailto:dbutler@eulaproperties.com?subject=EULA%20Labs%20%E2%80%94%20Wire%20Question" class="btn btn-primary">Email Durayveon</a>
<a href="tel:+1" class="btn btn-outline">Call to Confirm</a>
</div>
<p style="font-size:0.8rem;color:var(--color-text-muted);margin-top:1rem;">A signed copy of your LOI has been prepared for your records.</p>
<div style="display:flex;gap:1rem;justify-content:center;margin-top:0.75rem;flex-wrap:wrap;">
<a href="#" onclick="downloadLOI();return false;" class="btn btn-outline" style="font-size:0.85rem;">Download LOI as PDF ↓</a>
<button onclick="emailLOI()" class="btn btn-primary" style="font-size:0.85rem;" id="email-loi-btn">Email LOI to Me</button>
</div>
<p id="email-loi-status" style="font-size:0.8rem;color:var(--color-success);margin-top:0.5rem;text-align:center;display:none;"></p>
</div>
</div>
</div>
<!-- FOOTER -->
<div class="page-footer">
<p><a href="index.html">EULA Labs</a> — Equitable Unified Labs for Advancement — Houston, TX</p>
<p style="margin-top:0.25rem;">© 2026 EULA Labs. This page is confidential and intended for the named recipient only.</p>
</div>
<script src="https://cdn.jsdelivr.net/npm/jspdf@2/dist/jspdf.umd.min.js"></script>
<script>
// STATE
let currentStep = 1;
let maxStep = 1;
let investAmount = 75000;
let signerName = '';
// Read amount from URL param
(function() {
const params = new URLSearchParams(window.location.search);
const amt = parseInt(params.get('amount'));
if (amt && amt >= 10000) {
investAmount = amt;
}
updateAmountDisplays();
setDates();
})();
function formatCurrency(n) {
return '$' + n.toLocaleString();
}
function updateAmountDisplays() {
document.getElementById('display-amount').textContent = formatCurrency(investAmount);
document.getElementById('term-amount').textContent = formatCurrency(investAmount);
document.getElementById('loi-amount').textContent = formatCurrency(investAmount);
document.getElementById('wire-amount').textContent = formatCurrency(investAmount) + '.00';
}
function setDates() {
const now = new Date();
const dateStr = now.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });
const refStr = now.toISOString().slice(0,10).replace(/-/g,'');
document.getElementById('loi-date').textContent = dateStr;
document.getElementById('sig-date-a').textContent = dateStr;
document.getElementById('sig-date-b').textContent = dateStr;
document.getElementById('conf-date-ref').textContent = refStr;
document.getElementById('wire-date-ref').textContent = refStr;
}
function setAmount(amt) {
investAmount = amt;
updateAmountDisplays();
document.querySelectorAll('.amt-btn').forEach(b => {
b.style.borderColor = 'var(--color-border)';
b.style.color = 'var(--color-text-secondary)';
});
event.target.style.borderColor = 'var(--color-accent)';
event.target.style.color = 'var(--color-primary)';
}
function handleCustom(input) {
const raw = input.value.replace(/[^0-9]/g, '');
if (raw) {
input.value = parseInt(raw).toLocaleString();
investAmount = parseInt(raw);
updateAmountDisplays();
}
}
function toggleAmountEdit() {
const editor = document.getElementById('amount-editor');
editor.classList.toggle('hidden');
}
// STEPPER
function goToStep(step) {
if (step > maxStep + 1) return;
if (step === 4 && !document.getElementById('sig-name').value) return;
// Hide all
for (let i = 1; i <= 4; i++) {
document.getElementById('step-' + i).classList.add('hidden');
document.getElementById('step-ind-' + i).classList.remove('active');
}
// Show target
document.getElementById('step-' + step).classList.remove('hidden');
document.getElementById('step-ind-' + step).classList.add('active');
// Mark completed
for (let i = 1; i < step; i++) {
document.getElementById('step-ind-' + i).classList.add('completed');
if (document.getElementById('conn-' + i)) {
document.getElementById('conn-' + i).classList.add('completed');
}
}
currentStep = step;
if (step > maxStep) maxStep = step;
window.scrollTo({ top: 0, behavior: 'smooth' });
}
// SIGNATURE
function updateSignature() {
const name = document.getElementById('sig-name').value.trim();
signerName = name;
document.getElementById('loi-investor-name').textContent = name || '___________________';
updateSignButton();
}
function updateSignButton() {
const name = document.getElementById('sig-name').value.trim();
const c1 = document.getElementById('check-review').checked;
const c2 = document.getElementById('check-understand').checked;
const c3 = document.getElementById('check-capacity').checked;
const btn = document.getElementById('sign-btn');
if (name.length >= 3 && c1 && c2 && c3) {
btn.disabled = false;
btn.style.opacity = '1';
} else {
btn.disabled = true;
btn.style.opacity = '0.5';
}
}
function signLOI() {
if (document.getElementById('sign-btn').disabled) return;
goToStep(4);
}
// COPY
function copyText(text) {
navigator.clipboard.writeText(text).then(() => {
const el = event.target;
el.textContent = 'copied!';
setTimeout(() => { el.textContent = 'copy'; }, 1500);
});
}
// DOWNLOAD LOI AS PDF
function downloadLOI() {
if (!window.jspdf) {
alert('PDF library is still loading. Please wait a moment and try again.');
return;
}
try {
const { jsPDF } = window.jspdf;
const doc = new jsPDF({ unit: 'mm', format: 'letter' });
const pageW = doc.internal.pageSize.getWidth();
const pageH = doc.internal.pageSize.getHeight();
const margin = 25;
const contentW = pageW - margin * 2;
const date = new Date().toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });
const ref = 'ELV-FS-' + new Date().toISOString().slice(0,10).replace(/-/g,'');
let y = margin;
function checkPage(needed) {
if (y + needed > pageH - 25) {
doc.addPage();
y = margin;
// Subtle footer on each page
doc.setFontSize(7);
doc.setTextColor(180);
doc.text('EULA Labs Ventures LLC — Confidential', pageW / 2, pageH - 10, { align: 'center' });
doc.setTextColor(0);
}
}
function drawLine(yPos, color) {
const c = color || [220, 220, 220];
doc.setDrawColor(c[0], c[1], c[2]);
doc.setLineWidth(0.3);
doc.line(margin, yPos, pageW - margin, yPos);
}
function heading(text, size) {
checkPage(12);
doc.setFont('helvetica', 'bold');
doc.setFontSize(size || 11);
doc.setTextColor(26, 54, 93); // navy
doc.text(text, margin, y);
y += (size || 11) * 0.5 + 2;
doc.setTextColor(0);
}
function body(text, opts) {
opts = opts || {};
checkPage(8);
doc.setFont('helvetica', opts.bold ? 'bold' : 'normal');
doc.setFontSize(opts.size || 9.5);
doc.setTextColor(opts.color || 60);
const lines = doc.splitTextToSize(text, contentW);
doc.text(lines, margin, y);
y += lines.length * (opts.size || 9.5) * 0.4 + (opts.spacing || 3);
doc.setTextColor(0);
}
function labelValue(label, value, labelW) {
checkPage(8);
labelW = labelW || 45;
doc.setFont('helvetica', 'bold');
doc.setFontSize(9);
doc.setTextColor(100);
doc.text(label, margin, y);
doc.setFont('helvetica', 'normal');
doc.setTextColor(30);
doc.text(value, margin + labelW, y);
y += 5.5;
}
// === HEADER BAR ===
doc.setFillColor(26, 54, 93);
doc.rect(0, 0, pageW, 32, 'F');
doc.setFont('helvetica', 'bold');
doc.setFontSize(18);
doc.setTextColor(255);
doc.text('EULA Labs', margin, 14);
doc.setFont('helvetica', 'normal');
doc.setFontSize(9);
doc.setTextColor(180, 200, 230);
doc.text('Equitable Unified Labs for Advancement', margin, 20);
doc.setFont('courier', 'normal');
doc.setFontSize(8);
doc.setTextColor(150, 180, 220);
doc.text('Ref: ' + ref, pageW - margin, 14, { align: 'right' });
doc.text(date, pageW - margin, 19, { align: 'right' });
y = 42;
// === TITLE ===
doc.setFont('helvetica', 'bold');
doc.setFontSize(16);
doc.setTextColor(26, 54, 93);
doc.text('Non-Binding Letter of Intent', pageW / 2, y, { align: 'center' });
y += 6;
doc.setFontSize(10);
doc.setTextColor(100);
doc.text('Founding Steward Investment', pageW / 2, y, { align: 'center' });
y += 10;
drawLine(y, [26, 54, 93]);
y += 8;
// === PARTIES ===
heading('Parties');
labelValue('Party A:', 'EULA Labs Ventures LLC (to be formed)');
labelValue('Represented by:', 'Durayveon Butler, Creative Director & Technical Lead');
labelValue('Location:', 'Houston, Texas');
y += 2;
labelValue('Party B:', signerName);
labelValue('Proposed Role:', 'Financial Steward');
y += 2;
// Amount highlight box
checkPage(18);
doc.setFillColor(240, 255, 244);
doc.setDrawColor(56, 161, 105);
doc.setLineWidth(0.5);
doc.roundedRect(margin, y, contentW, 14, 3, 3, 'FD');
doc.setFont('helvetica', 'normal');
doc.setFontSize(9);
doc.setTextColor(80);
doc.text('Investment Amount:', margin + 5, y + 9);
doc.setFont('courier', 'bold');
doc.setFontSize(14);
doc.setTextColor(26, 54, 93);
doc.text(formatCurrency(investAmount), margin + 48, y + 9.5);
y += 22;
drawLine(y);
y += 8;
// === TERMS ===
heading('1. Intent');
body('Party B expresses their intent to invest ' + formatCurrency(investAmount) + ' as Founding Steward Capital into EULA Labs Ventures LLC upon satisfactory completion of due diligence and execution of a formal operating agreement.');
heading('2. Role');
body('Party B will serve as Financial Steward, responsible for fund administration oversight, capital deployment approval, financial reporting, compliance liaison, and investor relations as described in the EULA Labs investor vision document.');
heading('3. Consideration');
body('In exchange for the investment and stewardship commitment, Party B will receive:');
body('(a) Tier 1 contributor status with 5x multiplier (highest tier)', { spacing: 1 });
body('(b) A negotiated equity stake in the LLC proportional to investment and stewardship', { spacing: 1 });
body('(c) Pro-rata revenue share from the 40% contributor allocation pool', { spacing: 1 });
body('(d) Highest governance weight on financial decisions (subject to 5% ceiling)', { spacing: 1 });
body('(e) Half-speed contribution decay (score retains value 2x longer)', { spacing: 4 });
heading('4. Capital Deployment');
body('Funds will be deployed according to the following allocation:');
// Deployment table
checkPage(30);
const depData = [
['50%', 'AI Agent & Consulting Operations', 'Immediate revenue generation'],
['25%', 'Pembrook Compound Down Payment', 'Hard asset acquisition'],
['15%', 'Legal & Reg CF Filing', 'SEC compliance & $2M campaign'],
['10%', 'ARIA Prototype Development', 'Robotics proof of concept']
];
const colX = [margin, margin + 14, margin + 72];
doc.setFillColor(247, 250, 252);
doc.rect(margin, y - 1, contentW, 6, 'F');
doc.setFont('helvetica', 'bold');
doc.setFontSize(7.5);
doc.setTextColor(120);
doc.text('ALLOC', colX[0], y + 3);
doc.text('CATEGORY', colX[1], y + 3);
doc.text('PURPOSE', colX[2], y + 3);
y += 8;
depData.forEach(function(row) {
checkPage(7);
doc.setFont('courier', 'bold');
doc.setFontSize(9);
doc.setTextColor(56, 161, 105);