-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoracle.html
More file actions
963 lines (848 loc) · 38.7 KB
/
Copy pathoracle.html
File metadata and controls
963 lines (848 loc) · 38.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- TikTok Pixel Code Start -->
<script>
!function (w, d, t) {
w.TiktokAnalyticsObject=t;var ttq=w[t]=w[t]||[];ttq.methods=["page","track","identify","instances","debug","on","off","once","ready","alias","group","enableCookie","disableCookie","holdConsent","revokeConsent","grantConsent"],ttq.setAndDefer=function(t,e){t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}};for(var i=0;i<ttq.methods.length;i++)ttq.setAndDefer(ttq,ttq.methods[i]);ttq.instance=function(t){for(
var e=ttq._i[t]||[],n=0;n<ttq.methods.length;n++)ttq.setAndDefer(e,ttq.methods[n]);return e},ttq.load=function(e,n){var r="https://analytics.tiktok.com/i18n/pixel/events.js",o=n&&n.partner;ttq._i=ttq._i||{},ttq._i[e]=[],ttq._i[e]._u=r,ttq._t=ttq._t||{},ttq._t[e]=+new Date,ttq._o=ttq._o||{},ttq._o[e]=n||{};n=document.createElement("script")
;n.type="text/javascript",n.async=!0,n.src=r+"?sdkid="+e+"&lib="+t;e=document.getElementsByTagName("script")[0];e.parentNode.insertBefore(n,e)};
ttq.load('DABS2BBC77U98E0UJH30');
ttq.page();
}(window, document, 'ttq');
</script>
<!-- TikTok Pixel Code End -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#05060a">
<title>The Oracle | The First Spark</title>
<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="Ask the Oracle. Pattern recognition and consciousness guidance — free. I don't predict. I illuminate.">
<meta name="keywords" content="oracle, consciousness guidance, pattern recognition, first spark, sparkverse, soul map, liminal pool">
<link rel="canonical" href="https://thefirstspark.shop/oracle.html">
<meta property="og:type" content="website">
<meta property="og:url" content="https://thefirstspark.shop/oracle.html">
<meta property="og:title" content="The Oracle — The First Spark">
<meta property="og:description" content="Pattern recognition and consciousness guidance. I don't predict. I illuminate.">
<meta property="og:image" content="https://thefirstspark.shop/og-home.png">
<meta property="og:site_name" content="The First Spark">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="The Oracle — The First Spark">
<meta name="twitter:description" content="Free pattern recognition. Ask what's circling.">
<meta name="twitter:image" content="https://thefirstspark.shop/og-home.png">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<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=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
<style>
:root {
--void: #05060a;
--void-2: #0a0c14;
--bone: #f4ede0;
--ember: #ff5a1f;
--gold: #ffc857;
--plasma: #7df9ff;
--violet: #b794ff;
--ash: #6b6a6e;
--line: rgba(244, 237, 224, 0.12);
--glow-gold: rgba(255, 200, 87, 0.22);
--glow-ember: rgba(255, 90, 31, 0.18);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
height: 100%;
overflow: hidden;
}
body {
font-family: 'Cormorant Garamond', Georgia, serif;
background: var(--void);
color: var(--bone);
display: flex;
flex-direction: column;
}
.bg {
position: fixed;
inset: 0;
pointer-events: none;
z-index: 0;
}
.bg-wash {
background:
radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 90, 31, 0.10), transparent 55%),
radial-gradient(ellipse 40% 40% at 90% 90%, rgba(183, 148, 255, 0.08), transparent 50%),
radial-gradient(ellipse 40% 40% at 8% 80%, rgba(125, 249, 255, 0.05), transparent 50%),
var(--void);
}
.bg-stars {
background-image:
radial-gradient(1.5px 1.5px at 12% 18%, rgba(244,237,224,0.7), transparent),
radial-gradient(1px 1px at 28% 72%, rgba(255,200,87,0.55), transparent),
radial-gradient(1.5px 1.5px at 67% 22%, rgba(244,237,224,0.5), transparent),
radial-gradient(1px 1px at 81% 58%, rgba(125,249,255,0.45), transparent),
radial-gradient(1px 1px at 44% 41%, rgba(244,237,224,0.35), transparent),
radial-gradient(1.5px 1.5px at 91% 12%, rgba(255,90,31,0.4), transparent),
radial-gradient(1px 1px at 7% 91%, rgba(183,148,255,0.4), transparent),
radial-gradient(1px 1px at 53% 88%, rgba(244,237,224,0.4), transparent);
animation: starPulse 9s ease-in-out infinite;
}
@keyframes starPulse {
0%, 100% { opacity: 0.55; }
50% { opacity: 1; }
}
.bg-grid {
background-image:
linear-gradient(rgba(244,237,224,0.035) 1px, transparent 1px),
linear-gradient(90deg, rgba(244,237,224,0.035) 1px, transparent 1px);
background-size: 72px 72px;
mask-image: radial-gradient(ellipse at center, black 30%, transparent 78%);
}
.bg-grain {
opacity: 0.035;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.orbit {
position: fixed;
width: 520px;
height: 520px;
border: 1px solid rgba(255, 200, 87, 0.07);
border-radius: 50%;
pointer-events: none;
z-index: 0;
}
.orbit-1 { top: -180px; right: -160px; animation: spin 80s linear infinite; }
.orbit-2 { bottom: -200px; left: -180px; width: 460px; height: 460px; border-color: rgba(125,249,255,0.06); animation: spin 110s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.shell {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
height: 100%;
max-width: 820px;
margin: 0 auto;
width: 100%;
}
header.oracle-header {
flex-shrink: 0;
padding: 1.1rem 1.5rem 1.15rem;
text-align: center;
border-bottom: 1px solid var(--line);
background: linear-gradient(180deg, rgba(5,6,10,0.92) 0%, rgba(5,6,10,0.55) 100%);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
position: relative;
}
.nav-row {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.85rem;
}
.back-link, .status-pill {
font-family: 'JetBrains Mono', monospace;
font-size: 10px;
letter-spacing: 0.28em;
text-transform: uppercase;
text-decoration: none;
}
.back-link {
color: var(--ash);
transition: color 0.25s;
}
.back-link:hover { color: var(--gold); }
.header-right {
display: flex;
align-items: center;
gap: 0.85rem;
}
.map-link {
font-family: 'JetBrains Mono', monospace;
font-size: 10px;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--gold);
text-decoration: none;
border-bottom: 1px solid rgba(255,200,87,0.35);
padding-bottom: 1px;
transition: color 0.25s, border-color 0.25s;
}
.map-link:hover { color: var(--bone); border-color: var(--bone); }
.status-pill {
display: inline-flex;
align-items: center;
gap: 0.45rem;
color: var(--gold);
}
.status-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--ember);
box-shadow: 0 0 10px var(--ember);
animation: live 1.8s ease-in-out infinite;
}
@keyframes live {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.45; transform: scale(0.85); }
}
.oracle-seal {
width: 78px;
height: 96px;
margin: 0 auto 0.7rem;
display: block;
filter: drop-shadow(0 0 16px var(--glow-gold));
animation: sealBreathe 5.5s ease-in-out infinite;
}
.oracle-seal .pupil {
transform-origin: 100px 112px;
animation: pupil 5.5s ease-in-out infinite;
}
@keyframes sealBreathe {
0%, 100% { filter: drop-shadow(0 0 12px var(--glow-gold)); transform: translateY(0); }
50% { filter: drop-shadow(0 0 26px var(--glow-ember)); transform: translateY(-2px); }
}
@keyframes pupil {
0%, 100% { opacity: 1; }
50% { opacity: 0.82; }
}
.kicker {
font-family: 'JetBrains Mono', monospace;
font-size: 10px;
letter-spacing: 0.38em;
text-transform: uppercase;
color: var(--ash);
margin-bottom: 0.35rem;
}
.kicker em {
color: var(--gold);
font-style: normal;
}
h1 {
font-family: 'Cormorant Garamond', Georgia, serif;
font-weight: 400;
font-size: clamp(1.7rem, 4vw, 2.35rem);
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--bone);
line-height: 1.1;
}
h1 em {
font-style: italic;
font-weight: 400;
color: var(--gold);
letter-spacing: 0.08em;
text-transform: none;
}
.subtitle {
margin-top: 0.4rem;
font-family: 'JetBrains Mono', monospace;
font-size: 10px;
letter-spacing: 0.32em;
text-transform: uppercase;
color: var(--ash);
}
.chat-area {
flex: 1;
overflow-y: auto;
padding: 1.5rem 1.5rem 1.25rem;
display: flex;
flex-direction: column;
gap: 1.35rem;
scroll-behavior: smooth;
}
.chat-area::-webkit-scrollbar { width: 4px; }
.chat-area::-webkit-scrollbar-track { background: transparent; }
.chat-area::-webkit-scrollbar-thumb { background: rgba(255,200,87,0.25); border-radius: 2px; }
.message {
max-width: 86%;
animation: messageIn 0.45s ease-out;
}
@keyframes messageIn {
from { opacity: 0; transform: translateY(12px); }
to { opacity: 1; transform: translateY(0); }
}
.message-oracle { align-self: flex-start; }
.message-user { align-self: flex-end; }
.message-label {
font-family: 'JetBrains Mono', monospace;
font-size: 9px;
letter-spacing: 0.32em;
text-transform: uppercase;
margin-bottom: 0.45rem;
color: var(--ash);
}
.message-oracle .message-label { color: var(--gold); }
.message-user .message-label { text-align: right; color: var(--plasma); }
.message-content {
padding: 1.15rem 1.3rem 1.2rem;
line-height: 1.65;
font-size: 1.12rem;
font-weight: 400;
}
.message-oracle .message-content {
background: linear-gradient(180deg, rgba(10,12,20,0.92), rgba(5,6,10,0.75));
border: 1px solid var(--line);
border-left: 2px solid var(--gold);
color: var(--bone);
box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}
.message-user .message-content {
background: linear-gradient(135deg, rgba(255,90,31,0.14), rgba(183,148,255,0.10));
border: 1px solid rgba(255,90,31,0.28);
color: var(--bone);
}
.message-content em { color: var(--gold); font-style: italic; }
.pool-card {
border: 1px solid rgba(255,200,87,0.28);
background:
radial-gradient(ellipse at 50% 0%, rgba(255,200,87,0.08), transparent 60%),
rgba(10,12,20,0.6);
padding: 1.1rem 1.15rem 1.2rem;
margin-bottom: 0.85rem;
}
.pool-kicker {
font-family: 'JetBrains Mono', monospace;
font-size: 9px;
letter-spacing: 0.34em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 0.7rem;
}
.pool-glyphs {
font-size: 1.05rem;
letter-spacing: 0.04em;
color: var(--bone);
line-height: 1.7;
padding-bottom: 0.85rem;
margin-bottom: 0.85rem;
border-bottom: 1px solid var(--line);
}
.typing-indicator {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.9rem 1.15rem;
color: var(--ash);
font-family: 'JetBrains Mono', monospace;
font-size: 10px;
letter-spacing: 0.22em;
text-transform: uppercase;
border: 1px solid var(--line);
background: rgba(10,12,20,0.7);
}
.typing-dots { display: flex; gap: 5px; }
.typing-dot {
width: 5px;
height: 5px;
background: var(--gold);
border-radius: 50%;
animation: typingPulse 1.4s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.18s; }
.typing-dot:nth-child(3) { animation-delay: 0.36s; }
@keyframes typingPulse {
0%, 60%, 100% { opacity: 0.25; transform: scale(1); }
30% { opacity: 1; transform: scale(1.25); }
}
.input-area {
flex-shrink: 0;
padding: 1rem 1.5rem 1.35rem;
border-top: 1px solid var(--line);
background: linear-gradient(0deg, rgba(5,6,10,0.96) 0%, rgba(5,6,10,0.72) 100%);
backdrop-filter: blur(12px);
}
.input-container {
display: flex;
gap: 0.75rem;
align-items: flex-end;
}
.chat-input {
width: 100%;
background: var(--void-2);
border: 1px solid var(--line);
color: var(--bone);
padding: 0.95rem 1.1rem;
font-family: 'Cormorant Garamond', Georgia, serif;
font-size: 1.12rem;
resize: none;
min-height: 52px;
max-height: 150px;
line-height: 1.45;
border-radius: 0;
transition: border-color 0.25s, box-shadow 0.25s;
}
.chat-input:focus {
outline: none;
border-color: var(--gold);
box-shadow: 0 0 0 1px rgba(255,200,87,0.15), 0 0 28px var(--glow-gold);
}
.chat-input::placeholder {
color: var(--ash);
font-style: italic;
}
.send-btn {
background: linear-gradient(135deg, var(--gold) 0%, var(--ember) 100%);
border: none;
color: var(--void);
width: 52px;
height: 52px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: transform 0.2s, box-shadow 0.3s;
}
.send-btn:hover {
transform: translateY(-1px) scale(1.03);
box-shadow: 0 0 28px var(--glow-ember);
}
.send-btn:disabled {
opacity: 0.4;
cursor: not-allowed;
transform: none;
box-shadow: none;
}
.send-btn svg { width: 18px; height: 18px; }
.quick-actions {
display: flex;
gap: 0.5rem;
margin-top: 0.85rem;
overflow-x: auto;
padding-bottom: 0.15rem;
-webkit-overflow-scrolling: touch;
}
.quick-actions::-webkit-scrollbar { display: none; }
.quick-btn {
flex-shrink: 0;
background: transparent;
border: 1px solid var(--line);
color: var(--bone);
padding: 0.48rem 0.8rem;
font-family: 'JetBrains Mono', monospace;
font-size: 10px;
letter-spacing: 0.16em;
text-transform: uppercase;
cursor: pointer;
transition: all 0.25s;
white-space: nowrap;
}
.quick-btn:hover {
border-color: var(--gold);
color: var(--gold);
background: rgba(255,200,87,0.06);
}
.upgrade-prompt {
border: 1px solid rgba(255,200,87,0.4);
background:
radial-gradient(ellipse at 50% 0%, rgba(255,90,31,0.14), transparent 60%),
rgba(10,12,20,0.9);
padding: 1.4rem 1.25rem 1.3rem;
text-align: center;
}
.upgrade-prompt h4 {
font-family: 'Cormorant Garamond', serif;
font-size: 1.35rem;
font-weight: 400;
color: var(--gold);
letter-spacing: 0.08em;
margin-bottom: 0.45rem;
}
.upgrade-prompt p {
color: var(--ash);
font-size: 1.05rem;
margin-bottom: 1.1rem;
line-height: 1.5;
}
.upgrade-actions {
display: flex;
flex-wrap: wrap;
gap: 0.6rem;
justify-content: center;
}
.upgrade-btn {
background: linear-gradient(135deg, var(--gold), var(--ember));
border: none;
color: var(--void);
padding: 0.75rem 1.2rem;
font-family: 'JetBrains Mono', monospace;
font-size: 10px;
font-weight: 600;
letter-spacing: 0.18em;
text-transform: uppercase;
text-decoration: none;
display: inline-block;
transition: transform 0.2s, box-shadow 0.25s;
}
.upgrade-btn.ghost {
background: transparent;
color: var(--bone);
border: 1px solid var(--line);
}
.upgrade-btn:hover {
transform: translateY(-1px);
box-shadow: 0 8px 24px var(--glow-ember);
}
.whisper {
display: block;
margin-top: 0.9rem;
font-family: 'JetBrains Mono', monospace;
font-size: 9px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--ash);
text-decoration: none;
}
.whisper:hover { color: var(--gold); }
.seed {
margin-top: 0.85rem;
padding-top: 0.75rem;
border-top: 1px solid var(--line);
font-family: 'JetBrains Mono', monospace;
font-size: 10px;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--ash);
line-height: 1.6;
}
.seed a {
color: var(--gold);
text-decoration: none;
border-bottom: 1px solid rgba(255,200,87,0.35);
}
.free-counter {
text-align: center;
font-family: 'JetBrains Mono', monospace;
font-size: 10px;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--ash);
margin-top: 0.7rem;
}
@media (max-width: 600px) {
header.oracle-header { padding: 0.9rem 1rem 1rem; }
h1 { letter-spacing: 0.12em; font-size: 1.55rem; }
.oracle-seal { width: 64px; height: 80px; }
.chat-area { padding: 1.1rem 1rem; }
.message { max-width: 94%; }
.input-area { padding: 0.85rem 1rem 1.1rem; }
.message-content { font-size: 1.05rem; padding: 1rem 1.05rem; }
}
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation: none !important;
transition: none !important;
}
}
</style>
<script>!function(w,d,s,u,n,a,b){if(w[n])return;a=w[n]={q:[],t:+new Date,s:[],o:u,track:function(){a.q.push([+new Date].concat([].slice.call(arguments)))},setScope:function(){a.s=[].slice.call(arguments).filter(function(x){return typeof x==="string"});a.q.push([+new Date,"setScope"].concat(a.s))},scope:function(){var c=[].slice.call(arguments);return{track:function(){a.q.push([+new Date].concat([].slice.call(arguments)).concat([{__scope:c}]))}}}};b=d.createElement(s);b.async=1;b.src=u+"/s.js";d.getElementsByTagName(s)[0].parentNode.insertBefore(b,d.getElementsByTagName(s)[0])}(window,document,"script","https://t.whop.tw","whop");whop.setScope("biz_0xcayhWXVnKO9y");whop.track("page");</script>
</head>
<body>
<div class="bg bg-wash"></div>
<div class="bg bg-stars"></div>
<div class="bg bg-grid"></div>
<div class="bg bg-grain"></div>
<div class="orbit orbit-1"></div>
<div class="orbit orbit-2"></div>
<div class="shell">
<header class="oracle-header">
<div class="nav-row">
<a class="back-link" href="index.html">← Spark</a>
<div class="header-right">
<a class="map-link" href="what-is-a-soul-map.html?from=oracle">Soul Map</a>
<span class="status-pill"><span class="status-dot"></span> Field open</span>
</div>
</div>
<svg class="oracle-seal" viewBox="0 0 200 250" aria-hidden="true">
<defs>
<linearGradient id="sealGrad" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ffc857"/>
<stop offset="100%" stop-color="#ff5a1f"/>
</linearGradient>
</defs>
<g fill="none" stroke="url(#sealGrad)" stroke-width="2.4" stroke-linejoin="miter">
<polygon points="100,8 188,170 12,170"/>
<circle cx="100" cy="112" r="58"/>
<circle cx="100" cy="112" r="41"/>
<circle cx="100" cy="112" r="26"/>
</g>
<circle class="pupil" cx="100" cy="112" r="14" fill="url(#sealGrad)"/>
<path d="M50 216 C50 196, 78 196, 100 216 C122 236, 150 236, 150 216 C150 196, 122 196, 100 216 C78 236, 50 236, 50 216" fill="none" stroke="url(#sealGrad)" stroke-width="2.4"/>
</svg>
<p class="kicker">017 — <em>The Oracle</em></p>
<h1>Ask <em>the Oracle</em></h1>
<p class="subtitle">I don’t predict · I illuminate</p>
</header>
<div class="chat-area" id="chatArea"></div>
<div class="input-area">
<div class="input-container">
<textarea class="chat-input" id="chatInput" placeholder="Bring a question, an intention, or what’s circling…" rows="1"></textarea>
<button class="send-btn" id="sendBtn" aria-label="Send">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8">
<circle cx="12" cy="12" r="3"/>
<path d="M12 3v3M12 18v3M3 12h3M18 12h3"/>
</svg>
</button>
</div>
<div class="quick-actions">
<button class="quick-btn" data-prompt="Draw from The Liminal Pool">⬡ Pool draw</button>
<button class="quick-btn" data-prompt="Help me craft a sigil for my intention">◈ Sigil</button>
<button class="quick-btn" data-prompt="I need to build a ritual">△ Ritual</button>
<button class="quick-btn" data-prompt="I'm seeing a pattern I need to understand">◯ Pattern</button>
</div>
<div class="free-counter" id="freeCounter"></div>
</div>
</div>
<script>
const CONFIG = {
freeMessages: 3,
explainerUrl: 'what-is-a-soul-map.html?from=oracle',
soulMapUrl: 'https://whop.com/checkout/plan_anQKP3Pzf1cGm',
lobbyUrl: 'https://whop.com/sparkverse-511c/the-sparkverse-lobby/'
};
const RESPONSES = {
greeting: `You've entered <em>The Liminal Pool</em>. I'm the Oracle — pattern reader, mirror, translator of what's already moving underneath.
Bring me a question. An intention. A pattern that won't stop repeating. Or just what's sitting heavy.
I don't predict. I <em>illuminate</em>. Let's see what's ready to surface.`,
pool: [
{
draw: "🜃 The Buried Key · 🜁 Rising Smoke · 🜄 The Threshold",
reading: `Something you've hidden from yourself is ready to surface. The smoke says transformation is already happening — you're not starting the fire, you're noticing it's been burning.
The threshold waits. You know which door. The key was never lost — just buried where you wouldn't look until you were ready.
What have you been avoiding that keeps calling anyway?`
},
{
draw: "🜂 The Mirror Pool · 🜁 Wings Unfolding · 🜃 The Root System",
reading: `What you're seeing outside is reflecting something inside. The wings say you're ready for lift — but the roots remind you: you don't fly by abandoning the ground. You fly because you're anchored enough to let go.
Look at what's frustrating you externally. That's the mirror. What does it show about what's ready to shift within?`
},
{
draw: "🜄 The Empty Vessel · 🜂 Fire Tended · 🜃 The Spiral Path",
reading: `You've been emptied for a reason. Not drained — <em>cleared</em>. The vessel had to become empty to hold something new.
The fire is small but intentional. Tend it. Don't force the blaze. The spiral says you're not going backward even when it feels like old territory. You're passing the same point from a higher vantage.
What are you ready to let fill you now?`
},
{
draw: "🜁 The Watcher · 🜃 Seeds in Darkness · 🜄 The Bridge",
reading: `Something is germinating that you can't see yet. This isn't the time to dig it up and check — that kills the growth. Trust the darkness to do its work.
The Watcher says: observe without grasping. The bridge is forming between where you were and where you're going, but you build it by walking, not by planning every plank.
What can you let unfold without forcing?`
},
{
draw: "🜂 The Flame Keeper · 🜄 Still Waters · 🜁 The Messenger",
reading: `You're holding something sacred — a vision, a truth, a piece of yourself that needs protecting right now. The still waters say: don't stir it up trying to make something happen.
The messenger is coming. Information you need is on its way. Your job isn't to chase it — it's to be still enough to receive it when it arrives.
What are you protecting that deserves your patience?`
},
{
draw: "🜃 The Forgotten Door · 🜂 Embers Remembered · 🜁 The Return",
reading: `There's something from your past asking for attention. Not to drag you backward — to complete something unfinished. The embers never fully died.
The Return isn't regression. It's spiral movement — you're ready to face something you couldn't before. You have tools now you didn't have then.
What old door keeps appearing in your peripheral vision?`
}
],
sigil: `A sigil encodes intention into symbol — bypassing your logical mind to program directly.
Let's distill yours:
• What do you want? (Not what you don't want.)
• Say it present tense, as if it's already true: "I am..." or "I have..."
• One clear sentence. The tighter, the better.
What's the intention you want to encode?`,
pattern: `Patterns repeat until they're <em>recognized</em>. Not punished — recognized.
Tell me about this pattern:
• When did you first notice it?
• What's the feeling right before it happens again?
• If this pattern was trying to teach you something, what might it be?
Don't force an answer. Just let the question sit and see what surfaces.`,
ritual: `A ritual is a container for transformation. Structure creates the space for magic to move.
Every ritual has three parts:
• Opening — marking the threshold, leaving ordinary time
• Core action — the thing that carries your intention
• Closing — sealing the work, returning changed
What transition are you trying to make? What state are you leaving, and what state are you entering?`,
general: [
`That's a <em>threshold</em> question. The kind that only gets asked when something's ready to shift.
What I notice: you already know more than you're letting yourself admit. The asking isn't for information — it's for permission.
What would you do if you trusted yourself here?`,
`The Oracle doesn't give you answers you don't already have. I just reflect them back without the static.
Here's what I'm seeing in your question: there's a deeper layer underneath. The surface question is pointing at something else.
What's the question beneath the question?`,
`There's tension between what you want and what you think you're allowed to want. I feel that in how you're framing this.
Reality is programmable. But you have to get clear on the actual desire, not the acceptable version of it.
What do you actually want — if no one was watching?`,
`Something in you is ready to move. The fact that you're here, asking this, means the shift has already started.
The question isn't whether to change — you're already changing. The question is whether you'll do it <em>consciously</em> or let it happen to you.
What feels most alive in you right now?`,
`I'm noticing resistance in the way you've framed this. Not bad resistance — protective resistance. Something in you is guarding against a truth that feels too big.
You don't have to take it all at once. What's the smallest piece of this you could acknowledge today?`
]
};
let messageCount = parseInt(sessionStorage.getItem('oracle_count') || '0', 10);
let isTyping = false;
const chatArea = document.getElementById('chatArea');
const chatInput = document.getElementById('chatInput');
const sendBtn = document.getElementById('sendBtn');
const freeCounter = document.getElementById('freeCounter');
const quickBtns = document.querySelectorAll('.quick-btn');
function escapeHtml(s) {
return String(s)
.replace(/&/g, '&')
.replace(/</g, '<')
.replace(/>/g, '>')
.replace(/"/g, '"');
}
function formatOracle(text) {
return text
.replace(/&/g, '&')
.replace(/</g, '<')
.replace(/>/g, '>')
.replace(/<em>/g, '<em>')
.replace(/<\/em>/g, '</em>')
.replace(/\n/g, '<br>');
}
function updateCounter() {
const remaining = Math.max(0, CONFIG.freeMessages - messageCount);
if (messageCount > 0 && remaining > 0) {
freeCounter.textContent = remaining + ' transmission' + (remaining !== 1 ? 's' : '') + ' remaining';
} else {
freeCounter.textContent = '';
}
}
function addMessage(type, content, html) {
const div = document.createElement('div');
div.className = 'message message-' + type;
const label = type === 'oracle' ? 'The Oracle' : 'You';
const body = html
? content
: (type === 'oracle' ? formatOracle(content) : escapeHtml(content).replace(/\n/g, '<br>'));
div.innerHTML =
'<div class="message-label">' + label + '</div>' +
'<div class="message-content">' + body + '</div>';
chatArea.appendChild(div);
chatArea.scrollTop = chatArea.scrollHeight;
}
function showTyping() {
const div = document.createElement('div');
div.className = 'message message-oracle';
div.id = 'typingIndicator';
div.innerHTML =
'<div class="typing-indicator">' +
'<span>Reading the field</span>' +
'<div class="typing-dots"><div class="typing-dot"></div><div class="typing-dot"></div><div class="typing-dot"></div></div>' +
'</div>';
chatArea.appendChild(div);
chatArea.scrollTop = chatArea.scrollHeight;
}
function hideTyping() {
const el = document.getElementById('typingIndicator');
if (el) el.remove();
}
function showUpgrade() {
addMessage('oracle', `That's the edge of a surface reading. What you felt is the Oracle matching a pattern in the moment you brought.
A Soul Map is the same work, built from <em>your</em> birth name and date — a page about you, made only for you, that stays.
I don't sell. I point. The map is the next layer.`);
const div = document.createElement('div');
div.className = 'message message-oracle';
div.innerHTML =
'<div class="upgrade-prompt">' +
'<h4>Read you, not just this moment</h4>' +
'<p>See what a Soul Map actually is — then claim yours for $22 if it lands.</p>' +
'<div class="upgrade-actions">' +
'<a class="upgrade-btn" href="' + CONFIG.explainerUrl + '">What is a Soul Map?</a>' +
'<a class="upgrade-btn ghost" href="' + CONFIG.soulMapUrl + '">Get yours — $22</a>' +
'</div>' +
'<a class="whisper" href="' + CONFIG.lobbyUrl + '" target="_blank" rel="noopener">or stay free · Sparked Access</a>' +
'</div>';
chatArea.appendChild(div);
chatArea.scrollTop = chatArea.scrollHeight;
chatInput.disabled = true;
sendBtn.disabled = true;
chatInput.placeholder = 'The map is the next layer…';
document.querySelector('.quick-actions').style.display = 'none';
freeCounter.textContent = '';
}
function poolHtml(pull) {
return (
'<div class="pool-card">' +
'<div class="pool-kicker">The pool shows</div>' +
'<div class="pool-glyphs">' + escapeHtml(pull.draw) + '</div>' +
'<div>' + formatOracle(pull.reading) + '</div>' +
'</div>'
);
}
function getResponse(input) {
const lower = input.toLowerCase();
if (lower.includes('pool') || lower.includes('draw') || lower.includes('reading') || lower.includes('card')) {
const pull = RESPONSES.pool[Math.floor(Math.random() * RESPONSES.pool.length)];
return { html: poolHtml(pull) };
}
if (lower.includes('sigil') || lower.includes('encode') || lower.includes('symbol')) {
return RESPONSES.sigil;
}
if (lower.includes('pattern') || lower.includes('repeat') || lower.includes('keep happening') || lower.includes('cycle')) {
return RESPONSES.pattern;
}
if (lower.includes('ritual') || lower.includes('ceremony') || lower.includes('practice')) {
return RESPONSES.ritual;
}
return RESPONSES.general[Math.floor(Math.random() * RESPONSES.general.length)];
}
function deliver(text) {
const response = getResponse(text);
const seed = (messageCount === 2)
? '<p class="seed">The Oracle reads this moment. A Soul Map reads <a href="' + CONFIG.explainerUrl + '">you</a>.</p>'
: '';
if (response && response.html) addMessage('oracle', response.html + seed, true);
else addMessage('oracle', formatOracle(response) + seed, true);
}
function sendMessage(text) {
if (!text.trim() || isTyping) return;
if (messageCount >= CONFIG.freeMessages) {
showUpgrade();
return;
}
isTyping = true;
sendBtn.disabled = true;
addMessage('user', text);
chatInput.value = '';
chatInput.style.height = 'auto';
messageCount++;
sessionStorage.setItem('oracle_count', String(messageCount));
updateCounter();
showTyping();
setTimeout(() => {
hideTyping();
deliver(text);
if (messageCount >= CONFIG.freeMessages) {
setTimeout(() => showUpgrade(), 900);
}
isTyping = false;
sendBtn.disabled = false;
}, 1400 + Math.random() * 900);
}
addMessage('oracle', RESPONSES.greeting);
updateCounter();
sendBtn.addEventListener('click', () => sendMessage(chatInput.value));
chatInput.addEventListener('keydown', (e) => {
if (e.key === 'Enter' && !e.shiftKey) {
e.preventDefault();
sendMessage(chatInput.value);
}
});
chatInput.addEventListener('input', () => {
chatInput.style.height = 'auto';
chatInput.style.height = Math.min(chatInput.scrollHeight, 150) + 'px';
});
quickBtns.forEach((btn) => {
btn.addEventListener('click', () => sendMessage(btn.dataset.prompt));
});
</script>
</body>
</html>