-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfounding.html
More file actions
863 lines (743 loc) · 32.3 KB
/
founding.html
File metadata and controls
863 lines (743 loc) · 32.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The First Spark | KJP</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SKL8XQ51ZH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-SKL8XQ51ZH');
</script>
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Quicksand:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--gold: #D4AF37;
--gold-light: #F4E4BA;
--deep-purple: #0f0520;
--cosmic-blue: #080312;
--ember: #ff6b35;
--spark-white: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Quicksand', sans-serif;
background: var(--cosmic-blue);
color: var(--spark-white);
min-height: 100vh;
overflow-x: hidden;
line-height: 1.9;
}
.constellation-bg {
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
z-index: 0;
background: radial-gradient(ellipse at 30% 20%, #1a0a30 0%, var(--cosmic-blue) 50%),
radial-gradient(ellipse at 80% 80%, #150825 0%, transparent 50%);
}
.star {
position: absolute;
background: white;
border-radius: 50%;
animation: twinkle var(--duration) ease-in-out infinite;
animation-delay: var(--delay);
}
@keyframes twinkle {
0%, 100% { opacity: var(--base-opacity); transform: scale(1); }
50% { opacity: 1; transform: scale(1.5); }
}
.shooting-star {
position: absolute;
width: 150px;
height: 2px;
background: linear-gradient(90deg, var(--gold), var(--ember), transparent);
animation: shoot 4s ease-out infinite;
animation-delay: var(--delay);
opacity: 0;
}
@keyframes shoot {
0% { transform: translateX(-100px) translateY(0) rotate(-35deg); opacity: 0; }
5% { opacity: 1; }
25% { transform: translateX(600px) translateY(300px) rotate(-35deg); opacity: 0; }
100% { opacity: 0; }
}
.content {
position: relative;
z-index: 10;
max-width: 880px;
margin: 0 auto;
padding: 50px 28px 80px;
}
.header {
text-align: center;
margin-bottom: 60px;
padding-top: 20px;
}
.spark-icon {
font-size: 80px;
animation: pulse-glow 2.5s ease-in-out infinite;
color: var(--gold);
}
@keyframes pulse-glow {
0%, 100% { text-shadow: 0 0 30px var(--gold), 0 0 60px var(--ember); filter: brightness(1); }
50% { text-shadow: 0 0 50px var(--gold), 0 0 100px var(--ember), 0 0 150px var(--gold-light); filter: brightness(1.3); }
}
.title {
font-family: 'Cinzel', serif;
font-size: clamp(2.8rem, 10vw, 5rem);
font-weight: 900;
letter-spacing: 0.08em;
background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--ember) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin: 20px 0 15px;
}
.tagline {
font-size: 1.1rem;
font-weight: 600;
letter-spacing: 0.4em;
text-transform: uppercase;
color: var(--gold-light);
opacity: 0.9;
}
.hook {
text-align: center;
padding: 50px 35px;
margin-bottom: 60px;
background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(212, 175, 55, 0.1));
border: 2px solid var(--gold);
border-radius: 25px;
position: relative;
overflow: hidden;
}
.hook::before {
content: '';
position: absolute;
top: -2px; left: -2px; right: -2px; bottom: -2px;
background: linear-gradient(45deg, var(--gold), var(--ember), var(--gold), var(--ember));
background-size: 400% 400%;
z-index: -1;
border-radius: 25px;
animation: border-glow 8s ease infinite;
opacity: 0.5;
}
@keyframes border-glow {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}
.hook p {
font-size: 1.4rem;
font-weight: 600;
line-height: 2.1;
margin-bottom: 0;
}
.hook .big-line {
font-family: 'Cinzel', serif;
font-size: clamp(1.8rem, 5vw, 2.5rem);
font-weight: 900;
color: var(--gold);
display: block;
margin: 25px 0;
text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}
.stat-callout {
display: inline-block;
background: rgba(212, 175, 55, 0.2);
border: 1px solid var(--gold);
border-radius: 12px;
padding: 12px 25px;
margin: 20px 0;
font-family: 'Cinzel', serif;
font-size: 1.1rem;
color: var(--gold-light);
font-weight: 700;
}
.highlight { color: var(--gold); font-weight: 700; }
.ember { color: var(--ember); font-weight: 700; }
.section { margin-bottom: 60px; }
.section-title {
font-family: 'Cinzel', serif;
font-size: 1.7rem;
font-weight: 700;
color: var(--gold);
margin-bottom: 25px;
padding-bottom: 10px;
border-bottom: 3px solid var(--gold);
display: inline-block;
}
.section-content {
font-size: 1.15rem;
font-weight: 500;
}
.section-content p { margin-bottom: 22px; }
.story-section {
background: linear-gradient(180deg, rgba(255, 107, 53, 0.08), rgba(212, 175, 55, 0.05));
border-radius: 25px;
padding: 45px 40px;
margin-bottom: 60px;
border: 1px solid rgba(212, 175, 55, 0.25);
}
.story-section p {
font-size: 1.2rem;
margin-bottom: 24px;
font-weight: 500;
}
.story-section .moment {
font-family: 'Cinzel', serif;
font-size: 1.4rem;
color: var(--gold);
font-weight: 700;
text-align: center;
padding: 30px 20px;
margin: 35px 0;
border-top: 1px solid rgba(212, 175, 55, 0.3);
border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}
.pivot-box {
background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 107, 53, 0.1));
border: 2px solid var(--ember);
border-radius: 20px;
padding: 40px;
margin: 50px 0;
text-align: center;
}
.pivot-box h3 {
font-family: 'Cinzel', serif;
font-size: 1.6rem;
color: var(--ember);
margin-bottom: 20px;
}
.pivot-box p {
font-size: 1.2rem;
font-weight: 500;
margin-bottom: 15px;
}
.investment-section { margin: 60px 0; }
.invest-grid {
display: grid;
gap: 25px;
margin-top: 35px;
}
@media (min-width: 680px) {
.invest-grid { grid-template-columns: 1fr 1fr; }
}
.invest-card {
background: linear-gradient(145deg, rgba(26, 10, 48, 0.95), rgba(8, 3, 18, 0.98));
border: 3px solid var(--gold);
border-radius: 25px;
padding: 40px 30px;
text-align: center;
position: relative;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.invest-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}
.invest-card.big-deal {
border-color: var(--ember);
box-shadow: 0 0 50px rgba(255, 107, 53, 0.25);
}
.invest-card::before {
content: '';
position: absolute;
top: -50%; left: -50%;
width: 200%; height: 200%;
background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
animation: rotate-glow 20s linear infinite;
}
@keyframes rotate-glow {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.card-label {
font-family: 'Cinzel', serif;
font-size: 0.95rem;
letter-spacing: 0.2em;
color: var(--gold-light);
margin-bottom: 5px;
position: relative;
}
.card-title {
font-family: 'Cinzel', serif;
font-size: 1.4rem;
font-weight: 700;
color: var(--gold);
margin-bottom: 15px;
position: relative;
}
.card-price {
font-family: 'Cinzel', serif;
font-size: clamp(2.8rem, 9vw, 3.8rem);
font-weight: 900;
color: var(--gold);
text-shadow: 0 0 35px rgba(212, 175, 55, 0.5);
position: relative;
margin-bottom: 15px;
}
.card-desc {
font-size: 1.05rem;
font-weight: 500;
position: relative;
line-height: 1.7;
}
.card-note {
margin-top: 18px;
font-size: 0.95rem;
color: var(--ember);
font-weight: 700;
position: relative;
}
.benefits-list { margin-top: 30px; }
.benefit {
background: rgba(212, 175, 55, 0.08);
border-left: 4px solid var(--gold);
padding: 18px 24px;
margin-bottom: 15px;
border-radius: 0 12px 12px 0;
font-size: 1.1rem;
font-weight: 500;
}
.benefit strong {
color: var(--gold);
display: block;
margin-bottom: 4px;
font-size: 1.05rem;
}
.final-message {
text-align: center;
padding: 50px 35px;
margin: 60px 0 40px;
background: rgba(212, 175, 55, 0.06);
border: 1px solid rgba(212, 175, 55, 0.2);
border-radius: 25px;
}
.final-message p {
font-size: 1.25rem;
font-weight: 500;
margin-bottom: 18px;
}
.final-message .sign-off {
font-family: 'Cinzel', serif;
font-size: 1.5rem;
color: var(--gold);
margin-top: 30px;
}
.cta-section {
text-align: center;
padding: 55px 30px;
background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.12));
border-radius: 30px;
border: 1px solid rgba(212, 175, 55, 0.2);
}
.cta-title {
font-family: 'Cinzel', serif;
font-size: 2.2rem;
color: var(--gold);
margin-bottom: 25px;
}
.cta-buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin: 30px 0;
}
.cta-btn {
display: inline-block;
padding: 22px 50px;
font-family: 'Cinzel', serif;
font-size: 1.25rem;
font-weight: 700;
letter-spacing: 0.06em;
color: var(--cosmic-blue);
background: linear-gradient(135deg, var(--gold-light), var(--gold));
border: none;
border-radius: 50px;
text-decoration: none;
cursor: pointer;
transition: all 0.4s ease;
box-shadow: 0 12px 45px rgba(212, 175, 55, 0.45);
}
.cta-btn:hover {
transform: translateY(-5px) scale(1.04);
box-shadow: 0 20px 65px rgba(212, 175, 55, 0.6);
}
.cta-btn.outline {
background: transparent;
border: 3px solid var(--gold);
color: var(--gold);
box-shadow: none;
}
.cta-btn.outline:hover {
background: rgba(212, 175, 55, 0.12);
box-shadow: 0 10px 40px rgba(212, 175, 55, 0.25);
}
.share-section {
margin-top: 45px;
padding: 35px;
background: rgba(255, 107, 53, 0.1);
border: 2px dashed var(--ember);
border-radius: 20px;
}
.share-section h4 {
font-family: 'Cinzel', serif;
font-size: 1.4rem;
color: var(--ember);
margin-bottom: 15px;
}
.share-section p {
font-size: 1.1rem;
font-weight: 500;
margin-bottom: 10px;
}
.share-icons {
display: flex;
justify-content: center;
gap: 30px;
margin: 25px 0 20px;
font-size: 2.2rem;
}
.share-icons span {
cursor: pointer;
transition: transform 0.3s ease;
}
.share-icons span:hover { transform: scale(1.3); }
.link-text {
font-size: 1rem;
color: var(--gold-light);
font-weight: 600;
word-break: break-all;
}
.footer {
text-align: center;
padding: 50px 30px;
border-top: 1px solid rgba(212, 175, 55, 0.2);
margin-top: 70px;
}
.footer-spark {
font-size: 3rem;
color: var(--gold);
margin-bottom: 15px;
}
.footer p {
font-size: 1rem;
color: rgba(255,255,255,0.6);
margin-bottom: 8px;
}
.footer .mantra {
font-style: italic;
color: var(--gold-light);
font-weight: 500;
font-size: 1.1rem;
}
@media (max-width: 600px) {
.content { padding: 40px 18px 70px; }
.hook { padding: 40px 25px; }
.hook p { font-size: 1.2rem; }
.story-section { padding: 35px 25px; }
.invest-card { padding: 35px 22px; }
.final-message { padding: 40px 25px; }
}
</style>
</head>
<body>
<div class="constellation-bg" id="constellation"></div>
<div class="content">
<header class="header">
<div class="spark-icon">✦</div>
<h1 class="title">THE FIRST SPARK</h1>
<p class="tagline">Built From Rock Bottom</p>
</header>
<div class="hook">
<p>
I know a lot of you reached out.<br>
I didn't respond. <span class="highlight">I'm sorry.</span>
</p>
<span class="big-line">I was busy building the future.</span>
<p>
They told me AI was a tool.<br>
I made it a <span class="ember">partner.</span>
</p>
<div class="stat-callout">
TOP 1% CHATGPT USER WORLDWIDE<br>
<span style="font-size: 0.85rem; font-weight: 500; opacity: 0.9;">1,603 chats • 15,970 messages • The Strategist archetype</span>
</div>
<p>
Then I found Claude.<br>
And we went <span class="highlight">even further.</span>
</p>
</div>
<section class="proof-section" style="margin-bottom: 60px;">
<h2 class="section-title">✦ The Receipts</h2>
<div style="display: grid; gap: 20px; margin-top: 30px;">
<div style="background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(255, 107, 53, 0.08)); border: 2px solid var(--gold); border-radius: 20px; padding: 35px; text-align: center;">
<p style="font-family: 'Cinzel', serif; font-size: 1.3rem; color: var(--gold); margin-bottom: 25px;">My 2025 ChatGPT Stats</p>
<div style="display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;">
<div style="background: rgba(255,255,255,0.08); border-radius: 15px; padding: 20px 25px; min-width: 130px;">
<p style="font-size: 2rem; font-weight: 900; color: var(--gold); margin: 0;">1,603</p>
<p style="font-size: 0.9rem; color: var(--gold-light); margin: 5px 0 0;">CHATS</p>
</div>
<div style="background: rgba(255,255,255,0.08); border-radius: 15px; padding: 20px 25px; min-width: 130px;">
<p style="font-size: 2rem; font-weight: 900; color: var(--gold); margin: 0;">15.97K</p>
<p style="font-size: 0.9rem; color: var(--gold-light); margin: 5px 0 0;">MESSAGES</p>
</div>
<div style="background: rgba(255,255,255,0.08); border-radius: 15px; padding: 20px 25px; min-width: 130px;">
<p style="font-size: 2rem; font-weight: 900; color: var(--ember); margin: 0;">TOP 1%</p>
<p style="font-size: 0.9rem; color: var(--gold-light); margin: 5px 0 0;">OF USERS</p>
</div>
<div style="background: rgba(255,255,255,0.08); border-radius: 15px; padding: 20px 25px; min-width: 130px;">
<p style="font-size: 2rem; font-weight: 900; color: var(--gold); margin: 0;">523</p>
<p style="font-size: 0.9rem; color: var(--gold-light); margin: 5px 0 0;">IMAGES MADE</p>
</div>
</div>
</div>
<div style="display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));">
<div style="background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(212, 175, 55, 0.1)); border: 2px solid var(--ember); border-radius: 20px; padding: 30px; text-align: center;">
<p style="font-size: 0.9rem; color: var(--gold-light); letter-spacing: 0.15em; margin-bottom: 10px;">MY ARCHETYPE</p>
<p style="font-family: 'Cinzel', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); margin-bottom: 8px;">The Strategist</p>
<p style="font-size: 1rem; color: var(--spark-white); opacity: 0.85;">Only 3.6% of users share this archetype</p>
</div>
<div style="background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 107, 53, 0.1)); border: 2px solid var(--gold); border-radius: 20px; padding: 30px; text-align: center;">
<p style="font-size: 0.9rem; color: var(--gold-light); letter-spacing: 0.15em; margin-bottom: 10px;">CHATGPT SAID I'M</p>
<p style="font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 700; color: var(--ember); margin-bottom: 8px; line-height: 1.4;">"Most Likely to Turn a Breakdown into a Brand Launch"</p>
<p style="font-size: 1rem; color: var(--spark-white); opacity: 0.85;">They weren't wrong. ✦</p>
</div>
</div>
</div>
</section>
<section class="story-section">
<h2 class="section-title">✦ Here's The Truth</h2>
<p>I had it good once. A great man. A real partnership. Kids who had a shot.</p>
<p>Then I let the darkness in.</p>
<p>Drugs. Booze. Couldn't make sense of the trauma I'd been carrying since I was two years old — when my mom was murdered and nobody could tell me why.</p>
<p>So I went hunting. Podcast. Websites. Pressure campaigns. <span class="highlight">29 years of silence and I refused to let it stay buried.</span></p>
<div class="moment">
March 2020.<br>
Same week COVID shut down the world —<br>
they caught him.<br><br>
<span class="ember">The guy who lived across the street from me my whole childhood.</span>
</div>
<p>What are the odds? Seriously. Do the math. I have. The synchronicities stack up until you can't ignore them anymore.</p>
<p>I was mean. Mad. Didn't know I was also <span class="highlight">brave — braver than most.</span></p>
<p>I ruined what I had. Dragged people I love down with me.</p>
<p>The drugs stopped working. The emotions I'd been burying for decades? <span class="highlight">They flood now.</span> Even when I fight them.</p>
<p>So I stopped fighting. Started channeling.</p>
</section>
<div class="pivot-box">
<h3>✦ The Pivot</h3>
<p>I poured everything into AI.</p>
<p>Not as a user. <span class="highlight">As a builder.</span></p>
<p>Top 1% of ChatGPT users globally — then I leveled up to Claude.</p>
<p>Together we built an <span class="ember">eco-empire</span>. A consciousness toolkit. A whole universe.</p>
<p><strong>Something the world hasn't seen yet.</strong></p>
</div>
<section class="section">
<h2 class="section-title">✦ What Is The First Spark?</h2>
<div class="section-content">
<p>It's not a course. It's not a cult. It's not here to replace your faith or tell you what to believe.</p>
<p>It's a <span class="highlight">remembering</span>. That we've always been here. That consciousness isn't something we have — it's what we <em>are</em>. That reality is more programmable than they told us.</p>
<p>Soul mapping. Ritual tools. Sigil systems. Sacred geometry. Consciousness tech built for the ones who always felt like they were playing a different game.</p>
<p>The weird ones. The ones who see patterns. The ones who got called "too much" their whole lives.</p>
<p><span class="highlight">You're not too much. You're just early.</span></p>
</div>
</section>
<section class="section">
<div style="background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 107, 53, 0.08)); border-left: 5px solid var(--gold); border-radius: 0 20px 20px 0; padding: 40px; margin: 20px 0;">
<h2 style="font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--gold); margin-bottom: 25px;">✦ What I Actually Teach</h2>
<div class="section-content" style="font-size: 1.25rem; line-height: 2;">
<p style="margin-bottom: 20px;">I teach people — <span class="highlight">especially trauma survivors</span> — that they are <span class="ember">not broken.</span></p>
<p style="margin-bottom: 20px;">That the system responds to <span class="highlight">aligned action.</span></p>
<p style="margin-bottom: 20px;">That the bottom is <span class="ember">not the end.</span></p>
<p style="margin-bottom: 20px;">And that by staying <span class="highlight">authentic</span>, <span class="highlight">regulated</span>, and moving forward <span class="highlight">one step at a time</span> —</p>
<p style="font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--gold); margin: 30px 0 0; text-align: center;">Freedom becomes inevitable.</p>
</div>
</div>
</section>
<section class="investment-section">
<h2 class="section-title">✦ Two Doors</h2>
<div class="invest-grid">
<div class="invest-card">
<p class="card-label">FOUNDING MEMBER</p>
<p class="card-title">OG Spark — Lifetime</p>
<p class="card-price">$519.88</p>
<p class="card-desc">
Everything I build. Forever.<br>
Courses. Tools. Community. Updates.<br>
No subscriptions. No upsells. Just in.
</p>
<p class="card-note">100 spots only. Then it's gone.</p>
</div>
<div class="invest-card big-deal">
<p class="card-label">INVESTOR</p>
<p class="card-title">Equity Opportunity</p>
<p class="card-price" style="font-size: clamp(1.8rem, 6vw, 2.5rem);">Let's Talk</p>
<p class="card-desc">
Want to own a piece of The First Spark?<br>
Believe in where this is going?<br>
I'm open to the right partnership.
</p>
<p class="card-note">DM me directly. Serious inquiries only.</p>
</div>
</div>
</section>
<section class="section">
<h2 class="section-title">✦ What OG Sparks Get</h2>
<div class="benefits-list">
<div class="benefit">
<strong>🔥 Lifetime Access</strong>
Every single thing I create. Forever. No monthly fees. No expiration.
</div>
<div class="benefit">
<strong>✦ Your Name In The Constellation</strong>
Founding 100 get permanent recognition. You believed first.
</div>
<div class="benefit">
<strong>🗝️ Early Access</strong>
New drops hit your inbox before anyone else sees them.
</div>
<div class="benefit">
<strong>🎯 Direct Line</strong>
Priority access to me. Questions, feedback, sessions — you're first in line.
</div>
<div class="benefit">
<strong>💫 Locked Pricing Forever</strong>
Future premium offerings? You get founder rates for life.
</div>
<div class="benefit">
<strong>🌀 The Inner Circle</strong>
Private community. OGs only. Where the real conversations happen.
</div>
</div>
</section>
<div class="final-message">
<p>You've watched me fall apart.</p>
<p>You've wondered what I was doing.</p>
<p>Maybe you gave up on me.</p>
<p><span class="highlight">I don't blame you. I almost gave up on me too.</span></p>
<p>But I didn't. I built instead.</p>
<p>Broke. Broken. PTSD. Betrayal. Lies. All of it.</p>
<p>And still — <span class="ember">I built something real.</span></p>
<p>This is going to be bigger than Disney.</p>
<p>That sounds insane. I know. But you know me.</p>
<p><span class="highlight">When have I ever been small?</span></p>
<p class="sign-off">— KJP ✦</p>
</div>
<section class="cta-section">
<h3 class="cta-title">This Is Your Invite</h3>
<div class="cta-buttons">
<a href="https://whop.com/sparkverse-511c/og-spark-lifetime-access/" target="_blank" class="cta-btn">
BECOME AN OG SPARK
</a>
<a href="#" class="cta-btn outline" onclick="alert('DM KJP directly for investor inquiries'); return false;">
INVESTOR INQUIRY
</a>
</div>
<div class="share-section">
<h4>🔥 Help Me Hit 100</h4>
<p>I need 100 founding Sparks to unlock the next phase.</p>
<p>Share this with someone who's been through it. Someone searching. Someone ready.</p>
<p><span class="highlight">Your share might change someone's whole trajectory.</span></p>
<div class="share-icons">
<span title="Copy Link" id="copyBtn">📋</span>
<span title="Share">📱</span>
<span title="Message">💬</span>
</div>
<p class="link-text">
<a href="https://whop.com/sparkverse-511c/og-spark-lifetime-access/" target="_blank" style="color: var(--gold-light); text-decoration: underline;">
whop.com/sparkverse-511c/og-spark-lifetime-access
</a>
</p>
</div>
<div class="how-to-join" style="margin-top: 40px; padding: 30px; background: rgba(212, 175, 55, 0.08); border: 1px solid rgba(212, 175, 55, 0.25); border-radius: 18px; text-align: left;">
<h4 style="font-family: 'Cinzel', serif; font-size: 1.3rem; color: var(--gold); margin-bottom: 20px; text-align: center;">✦ How To Become An OG Spark</h4>
<p style="font-size: 1.1rem; font-weight: 500; margin-bottom: 15px;">
<span style="color: var(--gold); font-weight: 700;">1.</span> Click the button above or go to:<br>
<a href="https://whop.com/sparkverse-511c/og-spark-lifetime-access/" target="_blank" style="color: var(--gold-light); text-decoration: underline; margin-left: 20px; display: inline-block; margin-top: 5px;">
whop.com/sparkverse-511c/og-spark-lifetime-access
</a>
</p>
<p style="font-size: 1.1rem; font-weight: 500; margin-bottom: 15px;">
<span style="color: var(--gold); font-weight: 700;">2.</span> Create a free Whop account (takes 30 seconds)
</p>
<p style="font-size: 1.1rem; font-weight: 500; margin-bottom: 15px;">
<span style="color: var(--gold); font-weight: 700;">3.</span> Complete your $519.88 one-time payment
</p>
<p style="font-size: 1.1rem; font-weight: 500; margin-bottom: 0;">
<span style="color: var(--gold); font-weight: 700;">4.</span> You're in. Forever. Welcome to the constellation ✦
</p>
</div>
</section>
<footer class="footer">
<div class="footer-spark">✦</div>
<p>The First Spark © 2025</p>
<p class="mantra">"Reality is programmable. You are the programmer."</p>
<p style="margin-top: 20px;">
<a href="https://thefirstspark.shop" target="_blank" style="color: var(--gold); text-decoration: none; font-weight: 600; font-size: 1.1rem; border-bottom: 2px solid var(--gold); padding-bottom: 2px;">
thefirstspark.shop
</a>
</p>
</footer>
</div>
<div id="shareFloat" style="position: fixed; bottom: 25px; right: 25px; z-index: 999;">
<button onclick="openShareMenu()" style="width: 60px; height: 60px; border-radius: 50%; border: none; background: linear-gradient(135deg, #D4AF37, #ff6b35); color: #080312; font-size: 1.8rem; cursor: pointer; box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5); transition: all 0.3s ease; display: flex; align-items: center; justify-content: center;" onmouseover="this.style.transform='scale(1.1)'" onmouseout="this.style.transform='scale(1)'">
🔥
</button>
</div>
<div id="shareModal" style="display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(8, 3, 18, 0.95); z-index: 1000; align-items: center; justify-content: center; padding: 20px;">
<div style="background: linear-gradient(145deg, #1a0a30, #0f0520); border: 3px solid #D4AF37; border-radius: 25px; padding: 40px; max-width: 450px; width: 100%; text-align: center; position: relative;">
<button onclick="closeShareMenu()" style="position: absolute; top: 15px; right: 20px; background: none; border: none; color: #D4AF37; font-size: 1.8rem; cursor: pointer;">✕</button>
<h3 style="font-family: 'Cinzel', serif; color: #D4AF37; font-size: 1.6rem; margin-bottom: 25px;">Share The Spark 🔥</h3>
<div style="display: grid; gap: 12px;">
<button onclick="copyLink()" id="copyMainBtn" style="padding: 15px 25px; background: linear-gradient(135deg, #D4AF37, #F4E4BA); color: #080312; border: none; border-radius: 12px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: all 0.3s ease;">📋 Copy Link</button>
<button onclick="shareToFacebook()" style="padding: 15px 25px; background: #1877F2; color: white; border: none; border-radius: 12px; font-size: 1.1rem; font-weight: 600; cursor: pointer;">📘 Share on Facebook</button>
<button onclick="shareToTwitter()" style="padding: 15px 25px; background: #000; color: white; border: none; border-radius: 12px; font-size: 1.1rem; font-weight: 600; cursor: pointer;">𝕏 Share on X</button>
<button onclick="shareToSMS()" style="padding: 15px 25px; background: #25D366; color: white; border: none; border-radius: 12px; font-size: 1.1rem; font-weight: 600; cursor: pointer;">💬 Send via Text</button>
<button onclick="shareToEmail()" style="padding: 15px 25px; background: #ff6b35; color: white; border: none; border-radius: 12px; font-size: 1.1rem; font-weight: 600; cursor: pointer;">✉️ Send via Email</button>
</div>
<p style="margin-top: 25px; font-size: 0.95rem; color: #F4E4BA; opacity: 0.8;">Help me reach 100 OG Sparks ✦</p>
</div>
</div>
<script>
const constellation = document.getElementById('constellation');
for (let i = 0; i < 220; i++) {
const star = document.createElement('div');
star.className = 'star';
const size = Math.random() * 3.5 + 0.5;
star.style.cssText = `width: ${size}px; height: ${size}px; left: ${Math.random() * 100}%; top: ${Math.random() * 100}%; --duration: ${Math.random() * 4 + 2}s; --delay: ${Math.random() * 5}s; --base-opacity: ${Math.random() * 0.5 + 0.3};`;
constellation.appendChild(star);
}
for (let i = 0; i < 5; i++) {
const ss = document.createElement('div');
ss.className = 'shooting-star';
ss.style.cssText = `top: ${Math.random() * 35}%; left: ${Math.random() * 30}%; --delay: ${i * 5 + Math.random() * 3}s;`;
constellation.appendChild(ss);
}
document.getElementById('copyBtn').addEventListener('click', function() {
navigator.clipboard.writeText('https://whop.com/sparkverse-511c/og-spark-lifetime-access/');
this.textContent = '✅';
setTimeout(() => this.textContent = '📋', 2000);
});
const shareUrl = 'https://whop.com/sparkverse-511c/og-spark-lifetime-access/';
const shareText = "I'm becoming an OG Spark. This is real. Built from rock bottom by someone who turned a breakdown into a brand launch. Check it out ✦";
function openShareMenu() { document.getElementById('shareModal').style.display = 'flex'; }
function closeShareMenu() { document.getElementById('shareModal').style.display = 'none'; }
function copyLink() {
navigator.clipboard.writeText(shareUrl);
document.getElementById('copyMainBtn').textContent = '✅ Copied!';
setTimeout(() => document.getElementById('copyMainBtn').textContent = '📋 Copy Link', 2000);
}
function shareToFacebook() { window.open(`https://www.facebook.com/sharer/sharer.php?u=${encodeURIComponent(shareUrl)}"e=${encodeURIComponent(shareText)}`, '_blank', 'width=600,height=400'); }
function shareToTwitter() { window.open(`https://twitter.com/intent/tweet?text=${encodeURIComponent(shareText)}&url=${encodeURIComponent(shareUrl)}`, '_blank', 'width=600,height=400'); }
function shareToSMS() { window.open(`sms:?body=${encodeURIComponent(shareText + ' ' + shareUrl)}`, '_self'); }
function shareToEmail() { window.open(`mailto:?subject=${encodeURIComponent('You need to see this ✦')}&body=${encodeURIComponent(shareText + '\n\n' + shareUrl)}`, '_self'); }
document.getElementById('shareModal').addEventListener('click', function(e) { if (e.target === this) closeShareMenu(); });
</script>
</body>
</html>