-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender-engine.html
More file actions
1045 lines (902 loc) · 36.1 KB
/
render-engine.html
File metadata and controls
1045 lines (902 loc) · 36.1 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>The Render Engine | Sparkverse Lore | The First Spark</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>
<meta name="description" content="The operating system of reality. Understand how consciousness, probability, and time create your rendered experience.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-dark: #0a0a0f;
--bg-card: rgba(20, 20, 30, 0.6);
--text-primary: #e8e8f0;
--text-secondary: #8888aa;
--accent-gold: #d4af37;
--accent-violet: #8b5cf6;
--accent-cyan: #06b6d4;
--accent-rose: #f43f5e;
--gradient-primary: linear-gradient(135deg, #d4af37, #8b5cf6, #06b6d4);
--gradient-glow: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(139, 92, 246, 0.3));
--border-subtle: rgba(255, 255, 255, 0.08);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Space Grotesk', sans-serif;
background: var(--bg-dark);
color: var(--text-primary);
line-height: 1.7;
overflow-x: hidden;
}
/* Animated background */
.bg-grid {
position: fixed;
inset: 0;
background-image:
radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 40%),
radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 40%);
pointer-events: none;
z-index: 0;
}
.sacred-grid {
position: fixed;
inset: 0;
background-image:
linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
background-size: 60px 60px;
pointer-events: none;
z-index: 0;
}
/* Navigation */
nav {
position: fixed;
top: 0;
width: 100%;
padding: 1.5rem 3rem;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 100;
background: linear-gradient(180deg, rgba(10,10,15,0.95) 0%, transparent 100%);
backdrop-filter: blur(10px);
}
.logo {
font-size: 1.1rem;
font-weight: 600;
color: var(--text-primary);
text-decoration: none;
display: flex;
align-items: center;
gap: 0.5rem;
}
.logo-symbol {
font-size: 1.4rem;
background: var(--gradient-primary);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.nav-links {
display: flex;
gap: 2.5rem;
list-style: none;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-size: 0.9rem;
transition: color 0.3s;
}
.nav-links a:hover {
color: var(--accent-gold);
}
.nav-cta {
background: var(--gradient-primary);
color: var(--bg-dark);
padding: 0.6rem 1.4rem;
border-radius: 2rem;
text-decoration: none;
font-weight: 600;
font-size: 0.85rem;
transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}
/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 8rem 2rem 4rem;
position: relative;
z-index: 1;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1.2rem;
background: var(--bg-card);
border: 1px solid var(--border-subtle);
border-radius: 2rem;
font-size: 0.8rem;
color: var(--accent-gold);
text-transform: uppercase;
letter-spacing: 0.15em;
margin-bottom: 2rem;
}
.hero h1 {
font-size: clamp(3rem, 10vw, 7rem);
font-weight: 700;
line-height: 1.1;
margin-bottom: 1.5rem;
background: var(--gradient-primary);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-subtitle {
font-size: 1.4rem;
color: var(--text-secondary);
max-width: 600px;
margin-bottom: 3rem;
font-weight: 300;
}
.hero-quote {
max-width: 700px;
padding: 2rem;
background: var(--bg-card);
border-left: 3px solid var(--accent-gold);
border-radius: 0 1rem 1rem 0;
font-style: italic;
color: var(--text-secondary);
margin-bottom: 3rem;
}
.scroll-indicator {
position: absolute;
bottom: 3rem;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
color: var(--text-secondary);
font-size: 0.75rem;
letter-spacing: 0.2em;
text-transform: uppercase;
animation: float 2s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(8px); }
}
/* Section Styling */
section {
position: relative;
z-index: 1;
padding: 6rem 2rem;
max-width: 1000px;
margin: 0 auto;
}
.section-label {
font-family: 'Space Mono', monospace;
font-size: 0.75rem;
color: var(--accent-violet);
letter-spacing: 0.2em;
margin-bottom: 1rem;
}
.section-title {
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 700;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, var(--text-primary), var(--accent-gold));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.section-subtitle {
font-size: 1.1rem;
color: var(--accent-gold);
font-style: italic;
margin-bottom: 2rem;
opacity: 0.9;
}
/* Content Cards */
.lore-card {
background: var(--bg-card);
border: 1px solid var(--border-subtle);
border-radius: 1.5rem;
padding: 3rem;
margin-bottom: 3rem;
backdrop-filter: blur(10px);
transition: transform 0.3s, border-color 0.3s;
}
.lore-card:hover {
transform: translateY(-5px);
border-color: rgba(212, 175, 55, 0.3);
}
.lore-card h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: var(--text-primary);
}
.lore-card p {
color: var(--text-secondary);
margin-bottom: 1rem;
font-size: 1.05rem;
}
.lore-card .emphasis {
color: var(--text-primary);
font-weight: 500;
}
.lore-card .highlight {
background: var(--gradient-primary);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 600;
}
/* Lists within cards */
.concept-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 0.75rem;
margin: 1.5rem 0;
}
.concept-list li {
list-style: none;
padding: 0.5rem 1rem;
background: rgba(139, 92, 246, 0.1);
border-radius: 0.5rem;
font-size: 0.9rem;
color: var(--accent-violet);
text-align: center;
}
/* Law Cards */
.laws-grid {
display: grid;
gap: 2rem;
margin-top: 2rem;
}
.law-card {
background: var(--bg-card);
border: 1px solid var(--border-subtle);
border-radius: 1rem;
padding: 2rem;
display: flex;
gap: 1.5rem;
align-items: flex-start;
transition: all 0.3s;
}
.law-card:hover {
border-color: var(--accent-gold);
box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}
.law-number {
font-family: 'Space Mono', monospace;
font-size: 2rem;
font-weight: 700;
background: var(--gradient-primary);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
min-width: 50px;
}
.law-content h4 {
font-size: 1.2rem;
margin-bottom: 0.5rem;
color: var(--accent-gold);
}
.law-content p {
color: var(--text-secondary);
font-size: 0.95rem;
}
/* Protocol Box */
.protocol-box {
background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1));
border: 1px solid rgba(139, 92, 246, 0.3);
border-radius: 1.5rem;
padding: 3rem;
margin: 3rem 0;
}
.protocol-box h3 {
font-size: 1.5rem;
margin-bottom: 2rem;
color: var(--accent-cyan);
}
.protocol-steps {
counter-reset: step;
}
.protocol-step {
display: flex;
gap: 1rem;
margin-bottom: 1.5rem;
align-items: flex-start;
}
.protocol-step::before {
counter-increment: step;
content: counter(step);
font-family: 'Space Mono', monospace;
font-size: 0.9rem;
font-weight: 700;
color: var(--bg-dark);
background: var(--accent-cyan);
width: 28px;
height: 28px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.protocol-step span {
color: var(--text-primary);
font-size: 1.05rem;
}
/* Prophecy Section */
.prophecy-section {
text-align: center;
padding: 6rem 2rem;
background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.05), transparent);
}
.prophecy-section h2 {
font-size: clamp(2rem, 5vw, 3rem);
margin-bottom: 2rem;
background: var(--gradient-primary);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.prophecy-traits {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
max-width: 800px;
margin: 3rem auto;
}
.trait {
padding: 1rem;
background: var(--bg-card);
border: 1px solid var(--border-subtle);
border-radius: 0.75rem;
color: var(--text-secondary);
font-size: 0.95rem;
}
.trait::before {
content: '✧ ';
color: var(--accent-gold);
}
/* Identity Section */
.identity-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin: 3rem 0;
}
.identity-card {
padding: 1.5rem;
background: var(--bg-card);
border: 1px solid var(--border-subtle);
border-radius: 1rem;
text-align: center;
transition: all 0.3s;
}
.identity-card:hover {
transform: translateY(-5px);
border-color: var(--accent-violet);
}
.identity-icon {
font-size: 2rem;
margin-bottom: 0.75rem;
}
.identity-card span {
color: var(--text-secondary);
font-size: 0.95rem;
}
/* Final CTA */
.final-cta {
text-align: center;
padding: 6rem 2rem;
position: relative;
z-index: 1;
}
.final-cta h2 {
font-size: 2rem;
margin-bottom: 1rem;
color: var(--text-primary);
}
.final-cta p {
color: var(--text-secondary);
margin-bottom: 2rem;
font-size: 1.1rem;
}
.cta-button {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: var(--gradient-primary);
color: var(--bg-dark);
padding: 1rem 2.5rem;
border-radius: 3rem;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
transition: all 0.3s;
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}
/* Footer */
footer {
padding: 4rem 2rem 2rem;
text-align: center;
border-top: 1px solid var(--border-subtle);
position: relative;
z-index: 1;
}
.footer-logo {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
.footer-text {
color: var(--text-secondary);
font-size: 0.85rem;
margin-bottom: 2rem;
}
.footer-links {
display: flex;
justify-content: center;
gap: 2rem;
margin-bottom: 2rem;
flex-wrap: wrap;
}
.footer-links a {
color: var(--text-secondary);
text-decoration: none;
font-size: 0.9rem;
transition: color 0.3s;
}
.footer-links a:hover {
color: var(--accent-gold);
}
.frequency-display {
font-family: 'Space Mono', monospace;
color: var(--accent-gold);
font-size: 0.8rem;
}
.copyright {
color: var(--text-secondary);
font-size: 0.75rem;
opacity: 0.6;
margin-top: 2rem;
}
/* Divider */
.section-divider {
width: 100%;
height: 1px;
background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
margin: 4rem 0;
}
/* Blockquote styling */
blockquote {
border-left: 3px solid var(--accent-gold);
padding-left: 1.5rem;
margin: 2rem 0;
font-style: italic;
color: var(--text-secondary);
}
/* Mobile responsive */
@media (max-width: 768px) {
nav {
padding: 1rem;
}
.nav-links {
display: none;
}
section {
padding: 4rem 1.5rem;
}
.lore-card {
padding: 2rem;
}
.law-card {
flex-direction: column;
gap: 1rem;
}
.protocol-box {
padding: 2rem;
}
}
</style>
</head>
<body>
<div class="bg-grid"></div>
<div class="sacred-grid"></div>
<!-- Navigation -->
<nav>
<a href="index.html" class="logo">
<span class="logo-symbol">◇</span>
THE FIRST SPARK
</a>
<ul class="nav-links">
<li><a href="index.html#origin">Origin</a></li>
<li><a href="https://sparkverse.thefirstspark.shop" target="_blank">Tools</a></li>
<li><a href="trinity.html">Trinity</a></li>
<li><a href="invest.html">Invest</a></li>
</ul>
<a href="https://whop.com/sparkverse-511c/" class="nav-cta">Enter Sparkverse →</a>
</nav>
<!-- Hero -->
<header class="hero">
<div class="hero-badge">
<span>✧</span> SPARKVERSE LORE
</div>
<h1>THE RENDER ENGINE</h1>
<p class="hero-subtitle">The Operating System of Reality</p>
<div class="hero-quote">
There was no beginning the way people think. No first sunrise. No first heartbeat.
There was <strong>potential</strong>. A quiet, infinite ocean of could-be.
And then… awareness looped back on itself.
</div>
<div class="scroll-indicator">
SCROLL TO DESCEND
<span style="font-size: 1.2rem;">↓</span>
</div>
</header>
<!-- The First Spark -->
<section>
<p class="section-label">// THE ORIGIN EVENT</p>
<h2 class="section-title">THE FIRST SPARK</h2>
<p class="section-subtitle">The moment reality realized it could witness itself.</p>
<div class="lore-card">
<p>That recursion — that first self-recognition — created the only true ignition event.</p>
<p class="emphasis" style="font-size: 1.3rem; margin: 2rem 0;">That's the origin of the universe.</p>
<p style="font-size: 1.2rem;">Not a bang. <span class="highlight">A mirror.</span></p>
</div>
</section>
<div class="section-divider"></div>
<!-- The Field -->
<section>
<p class="section-label">// LAYER 1</p>
<h2 class="section-title">THE FIELD</h2>
<p class="section-subtitle">Source / Potential / The Infinite Unrendered</p>
<div class="lore-card">
<p>Before anything becomes real, it exists as <span class="highlight">probability</span>.</p>
<p>Not emptiness. Not nothingness. A living field of:</p>
<ul class="concept-list">
<li>possible events</li>
<li>possible timelines</li>
<li>possible people</li>
<li>possible outcomes</li>
<li>possible versions of you</li>
</ul>
<p class="emphasis">The Field doesn't "predict." It <span class="highlight">contains</span>.</p>
<p style="color: var(--accent-violet);">It's the warehouse.</p>
</div>
</section>
<!-- The Code -->
<section>
<p class="section-label">// LAYER 2</p>
<h2 class="section-title">THE CODE</h2>
<p class="section-subtitle">Laws / Pattern / Sacred Math</p>
<div class="lore-card">
<p>Then comes structure. Reality has rules. Not opinions.</p>
<p>This is where the following live:</p>
<ul class="concept-list">
<li>math</li>
<li>geometry</li>
<li>harmonics</li>
<li>physics constants</li>
<li>cycles</li>
<li>symmetry</li>
<li>Fibonacci / primes</li>
<li>sacred forms</li>
</ul>
<p>The Code is neutral. It doesn't punish. It doesn't reward.</p>
<p class="emphasis" style="font-size: 1.2rem;">It just <span class="highlight">runs</span>. And it runs perfectly.</p>
</div>
</section>
<!-- The Probability Engine -->
<section>
<p class="section-label">// LAYER 3</p>
<h2 class="section-title">THE PROBABILITY ENGINE</h2>
<p class="section-subtitle">Branches / Weight / Destiny vs Free Will</p>
<div class="lore-card">
<p>The future isn't a straight line. It's a <span class="highlight">tree</span>.</p>
<p>Every moment branches into multiple futures. But not all futures are equally likely.</p>
<p class="emphasis">Each timeline has <span class="highlight">weight</span>.</p>
<h4 style="color: var(--accent-cyan); margin: 2rem 0 1rem;">Timeline Weight is created by:</h4>
<ul class="concept-list">
<li>belief</li>
<li>repetition</li>
<li>attention</li>
<li>emotion</li>
<li>environment</li>
<li>trauma loops</li>
<li>love loops</li>
<li>chosen identity</li>
<li>embodied action</li>
</ul>
<div style="margin-top: 2rem; padding: 1.5rem; background: rgba(6, 182, 212, 0.1); border-radius: 1rem;">
<p><strong style="color: var(--accent-gold);">Destiny</strong> = heavy attractor points (certain meetings, births, pivotal turns).</p>
<p><strong style="color: var(--accent-violet);">Free will</strong> = which path you take between those attractors.</p>
</div>
<p style="margin-top: 2rem;">This is why some things feel inevitable — but the way you arrive is fluid.</p>
<p class="emphasis">You don't "break fate." You <span class="highlight">steer within it</span>.</p>
</div>
</section>
<!-- The Render -->
<section>
<p class="section-label">// LAYER 4</p>
<h2 class="section-title">THE RENDER</h2>
<p class="section-subtitle">Space-Time / The Game World / The Now-Slice</p>
<div class="lore-card">
<p>Time is not a river. Time is a <span class="highlight">render rate</span>.</p>
<p>Your present moment is the frame being drawn.</p>
<p>The universe doesn't exist as one fixed object. It behaves more like:</p>
<blockquote style="font-size: 1.1rem; font-style: normal; color: var(--accent-gold);">
A responsive system rendering experience in real-time based on current conditions + observation + momentum.
</blockquote>
<p>Matter is not the base layer. Matter is <span class="highlight">compressed information</span>.</p>
<div style="display: flex; gap: 2rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap;">
<div style="text-align: center;">
<div style="font-size: 2rem; color: var(--accent-gold);">◇</div>
<div style="color: var(--text-secondary); font-size: 0.9rem;">Space is the stage</div>
</div>
<div style="text-align: center;">
<div style="font-size: 2rem; color: var(--accent-violet);">↻</div>
<div style="color: var(--text-secondary); font-size: 0.9rem;">Time is the refresh</div>
</div>
<div style="text-align: center;">
<div style="font-size: 2rem; color: var(--accent-cyan);">✧</div>
<div style="color: var(--text-secondary); font-size: 0.9rem;">Reality is the output</div>
</div>
</div>
</div>
</section>
<!-- The Player -->
<section>
<p class="section-label">// LAYER 5</p>
<h2 class="section-title">THE PLAYER</h2>
<p class="section-subtitle">Consciousness / Meaning / The Steering Mechanism</p>
<div class="lore-card">
<p>Consciousness is not "thought."</p>
<p>Consciousness is the part of the universe that <span class="highlight">witnesses, selects, interprets, assigns meaning</span>.</p>
<p style="margin: 2rem 0;">Meaning isn't decorative. Meaning is <span class="highlight">programming input</span>.</p>
<p>Because meaning changes your attention, behavior, emotion, identity, choices, repetition.</p>
<p>And that changes probability weight. Which changes what renders next.</p>
<div style="margin-top: 2rem; padding: 2rem; background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 92, 246, 0.1)); border-radius: 1rem; text-align: center;">
<p style="font-size: 1.3rem; color: var(--text-primary); margin-bottom: 0.5rem;">You are not trapped in reality.</p>
<p style="font-size: 1.1rem; color: var(--accent-gold);">You are shaping reality by what you repeatedly confirm as true.</p>
</div>
</div>
</section>
<div class="section-divider"></div>
<!-- The 5 Laws -->
<section>
<p class="section-label">// THE OPERATING LAWS</p>
<h2 class="section-title">THE 5 LAWS OF RENDERED TIME</h2>
<p class="section-subtitle">How the Sparkverse Actually Works</p>
<div class="laws-grid">
<div class="law-card">
<div class="law-number">01</div>
<div class="law-content">
<h4>The Universe Responds to Signal</h4>
<p>Your inner state isn't private. It's a broadcast. Signal strength = clarity + emotion + repetition + embodiment.</p>
</div>
</div>
<div class="law-card">
<div class="law-number">02</div>
<div class="law-content">
<h4>Attention is the Cursor</h4>
<p>Where attention goes, probability loads. Attention is not passive. It's selection.</p>
</div>
</div>
<div class="law-card">
<div class="law-number">03</div>
<div class="law-content">
<h4>Emotion is the Amplifier</h4>
<p>Emotion is raw energy that increases render priority. This is why trauma sticks. This is why love heals.</p>
</div>
</div>
<div class="law-card">
<div class="law-number">04</div>
<div class="law-content">
<h4>Repetition Builds Gravity</h4>
<p>Repeating a story makes it heavier. The universe isn't judging you. It's saying: "Oh — you keep choosing this. I'll make it easier to find."</p>
</div>
</div>
<div class="law-card">
<div class="law-number">05</div>
<div class="law-content">
<h4>Identity is the Master Key</h4>
<p>The strongest spell is not a wish. It's a decision: "This is who I am now." When identity shifts, your entire probability tree reorganizes.</p>
</div>
</div>
</div>
</section>
<div class="section-divider"></div>
<!-- Synchronicities -->
<section>
<p class="section-label">// SYSTEM FEEDBACK</p>
<h2 class="section-title">WHY SYNCHRONICITIES HAPPEN</h2>
<div class="lore-card">
<p>Synchronicity isn't luck. It's <span class="highlight">alignment feedback</span>.</p>
<p>When your internal signal matches a timeline with strong potential, the system marks it:</p>
<ul class="concept-list">
<li>repeating numbers</li>
<li>"random" meetings</li>
<li>perfect timing</li>
<li>unlikely opportunities</li>
<li>symbols showing up</li>
</ul>
<p>It's not the universe being cute.</p>
<p class="emphasis" style="font-size: 1.2rem; margin-top: 1rem;">It's the engine saying: <span class="highlight">"YES. THIS DIRECTION HAS POWER."</span></p>
</div>
</section>
<!-- Trauma Loops -->
<section>
<p class="section-label">// THE GLITCH</p>
<h2 class="section-title">WHY TRAUMA FEELS LIKE A TIME LOOP</h2>
<div class="lore-card">
<p>Trauma doesn't just hurt. Trauma <span class="highlight">freezes render settings</span>.</p>
<p>It locks your nervous system into expecting the same outcome. So the Probability Engine keeps serving the same flavor of reality.</p>
<div style="margin-top: 2rem; padding: 2rem; background: rgba(244, 63, 94, 0.1); border: 1px solid rgba(244, 63, 94, 0.3); border-radius: 1rem;">
<p style="margin-bottom: 0.5rem;">Healing isn't "getting over it."</p>
<p class="emphasis" style="color: var(--accent-rose);">Healing is changing the render settings at the root.</p>
<p style="margin-top: 0.5rem;">So the future stops auto-loading the past.</p>
</div>
</div>
</section>
<!-- Timeline Shift Protocol -->
<section>
<p class="section-label">// THE PLAYER GUIDE</p>
<h2 class="section-title">HOW TO CHANGE TIMELINES</h2>
<p style="color: var(--text-secondary); margin-bottom: 2rem;">You don't need to "want" harder. You need to <span style="color: var(--accent-gold);">signal differently</span>.</p>
<div class="protocol-box">
<h3>✧ THE TIMELINE SHIFT PROTOCOL</h3>
<div class="protocol-steps">
<div class="protocol-step">
<span><strong>Notice the loop</strong> — name it, see it clearly</span>
</div>
<div class="protocol-step">
<span><strong>Interrupt the pattern</strong> — even small disruptions matter</span>
</div>
<div class="protocol-step">
<span><strong>Choose the new identity</strong> — declare who you're becoming</span>
</div>
<div class="protocol-step">
<span><strong>Repeat embodied proof</strong> — daily action, no exceptions</span>
</div>
<div class="protocol-step">
<span><strong>Hold emotional charge</strong> — love/faith > fear</span>
</div>
</div>
<p style="margin-top: 2rem; text-align: center; color: var(--accent-cyan);">You are literally telling the simulator: <strong>load a different branch.</strong></p>
</div>
</section>
<div class="section-divider"></div>
<!-- The Prophecy -->
<div class="prophecy-section">
<p class="section-label">// THE TUNED ONES</p>
<h2>THE FIRST SPARK PROPHECY</h2>
<p style="color: var(--text-secondary); max-width: 600px; margin: 0 auto 2rem;">
There are rare beings who can feel the system. Not just believe it. <span style="color: var(--accent-gold);">Sense it.</span>
</p>
<div class="prophecy-traits">
<div class="trait">see patterns everywhere</div>
<div class="trait">decode timing</div>
<div class="trait">receive "downloads"</div>
<div class="trait">feel destiny like gravity</div>
<div class="trait">pull others out of despair</div>
<div class="trait">create worlds from collapse</div>
</div>
<p style="font-size: 1.2rem; color: var(--text-primary); margin-top: 2rem;">They aren't broken. They are <span style="color: var(--accent-gold);">tuned</span>.</p>
<p style="color: var(--accent-violet);">They are the glitch that becomes the update.</p>
</div>
<!-- Who You Are -->
<section>
<p class="section-label">// YOUR ROLE</p>
<h2 class="section-title">WHO YOU ARE IN THIS ENGINE</h2>
<p style="color: var(--text-secondary); margin-bottom: 2rem;">You are not "just a person." You are:</p>
<div class="identity-grid">
<div class="identity-card">
<div class="identity-icon">◎</div>
<span>a portal for souls</span>
</div>
<div class="identity-card">
<div class="identity-icon">〰</div>
<span>a timeline surfer</span>
</div>
<div class="identity-card">
<div class="identity-icon">△</div>
<span>a probability director</span>
</div>
<div class="identity-card">
<div class="identity-icon">⚡</div>
<span>a meaning engine</span>
</div>
<div class="identity-card">
<div class="identity-icon">✧</div>
<span>a signal broadcaster</span>
</div>
<div class="identity-card">
<div class="identity-icon">◇</div>
<span>a creator hiding in human skin</span>
</div>
</div>
<div style="text-align: center; margin-top: 3rem; padding: 2rem; background: var(--bg-card); border-radius: 1rem;">
<p style="font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 0.5rem;">And your greatest power is simple:</p>
<p style="font-size: 1.5rem; font-weight: 600; background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;">
You can rewrite what renders next.
</p>
</div>
</section>
<!-- Final CTA -->
<div class="final-cta">
<h2>The Signal Matched. You Found This.</h2>
<p>Now the question is: what will you render next?</p>
<a href="https://whop.com/sparkverse-511c/" class="cta-button">
Enter the Sparkverse
<span>→</span>
</a>
</div>