dreamloop 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1503 @@
1
+ :root {
2
+ color-scheme: dark;
3
+ --night: #090713;
4
+ --night-2: #110c24;
5
+ --panel: #171129;
6
+ --panel-2: #201735;
7
+ --line: rgba(178, 151, 255, 0.2);
8
+ --line-strong: rgba(201, 182, 255, 0.34);
9
+ --text: #f3edf7;
10
+ --muted: #a99fb9;
11
+ --quiet: #776f86;
12
+ --violet: #8e63ff;
13
+ --violet-2: #c16cff;
14
+ --rose: #ff6fa8;
15
+ --cyan: #52e7d2;
16
+ --amber: #f0c66a;
17
+ --green: #7df0a8;
18
+ --shadow: rgba(0, 0, 0, 0.42);
19
+ }
20
+
21
+ * {
22
+ box-sizing: border-box;
23
+ }
24
+
25
+ html {
26
+ background: var(--night);
27
+ }
28
+
29
+ body {
30
+ margin: 0;
31
+ min-height: 100vh;
32
+ overflow-x: hidden;
33
+ background:
34
+ radial-gradient(circle at 78% 8%, rgba(142, 99, 255, 0.28), transparent 34%),
35
+ radial-gradient(circle at 25% 18%, rgba(82, 231, 210, 0.12), transparent 28%),
36
+ linear-gradient(135deg, #090713 0%, #0f0a1d 42%, #07060d 100%);
37
+ color: var(--text);
38
+ font-family: "Aptos", "Segoe UI", sans-serif;
39
+ line-height: 1.55;
40
+ }
41
+
42
+ body::before {
43
+ position: fixed;
44
+ inset: 0;
45
+ z-index: -1;
46
+ pointer-events: none;
47
+ content: "";
48
+ background-image:
49
+ radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.7px),
50
+ radial-gradient(circle, rgba(193, 108, 255, 0.48) 0 1px, transparent 1.8px);
51
+ background-position: 0 0, 38px 42px;
52
+ background-size: 94px 94px, 132px 132px;
53
+ opacity: 0.24;
54
+ }
55
+
56
+ a {
57
+ color: inherit;
58
+ }
59
+
60
+ .app-frame {
61
+ display: grid;
62
+ grid-template-columns: 198px minmax(0, 1fr);
63
+ min-height: 100vh;
64
+ }
65
+
66
+ .sidebar {
67
+ position: sticky;
68
+ top: 0;
69
+ height: 100vh;
70
+ border-right: 1px solid var(--line);
71
+ background: rgba(12, 8, 24, 0.78);
72
+ padding: 22px 16px;
73
+ backdrop-filter: blur(18px);
74
+ }
75
+
76
+ .brand-mark {
77
+ display: flex;
78
+ align-items: center;
79
+ gap: 10px;
80
+ color: var(--text);
81
+ text-decoration: none;
82
+ }
83
+
84
+ .brand-mark strong {
85
+ font-family: Georgia, "Times New Roman", serif;
86
+ font-size: 18px;
87
+ }
88
+
89
+ .brand-orbit {
90
+ width: 26px;
91
+ height: 26px;
92
+ border: 1px solid var(--violet-2);
93
+ border-radius: 50%;
94
+ background:
95
+ radial-gradient(circle at 68% 30%, var(--cyan) 0 2px, transparent 3px),
96
+ radial-gradient(circle at 42% 58%, var(--violet) 0 5px, transparent 6px);
97
+ box-shadow: 0 0 26px rgba(142, 99, 255, 0.5);
98
+ }
99
+
100
+ .side-nav {
101
+ display: grid;
102
+ gap: 7px;
103
+ margin-top: 34px;
104
+ }
105
+
106
+ .side-nav a {
107
+ border: 1px solid transparent;
108
+ border-radius: 6px;
109
+ color: var(--muted);
110
+ font-family: "Cascadia Mono", "JetBrains Mono", Consolas, monospace;
111
+ font-size: 12px;
112
+ padding: 9px 10px;
113
+ text-decoration: none;
114
+ text-transform: uppercase;
115
+ }
116
+
117
+ .side-nav a.active,
118
+ .side-nav a:hover {
119
+ border-color: var(--line);
120
+ background: rgba(142, 99, 255, 0.14);
121
+ color: var(--text);
122
+ }
123
+
124
+ .side-note {
125
+ position: absolute;
126
+ right: 16px;
127
+ bottom: 20px;
128
+ left: 16px;
129
+ border-top: 1px solid var(--line);
130
+ color: var(--muted);
131
+ padding-top: 16px;
132
+ }
133
+
134
+ .side-note span {
135
+ color: var(--cyan);
136
+ font-family: "Cascadia Mono", Consolas, monospace;
137
+ font-size: 22px;
138
+ }
139
+
140
+ .side-note p {
141
+ margin: 4px 0 0;
142
+ font-size: 12px;
143
+ }
144
+
145
+ .dashboard {
146
+ width: min(1180px, calc(100% - 42px));
147
+ margin: 0 auto;
148
+ padding: 22px 0 48px;
149
+ }
150
+
151
+ .topbar {
152
+ display: grid;
153
+ grid-template-columns: minmax(0, 1fr) auto;
154
+ gap: 18px;
155
+ align-items: start;
156
+ margin-bottom: 18px;
157
+ }
158
+
159
+ .topbar h1 {
160
+ margin-bottom: 0;
161
+ }
162
+
163
+ .language-toggle {
164
+ display: inline-grid;
165
+ grid-template-columns: 1fr 1fr;
166
+ overflow: hidden;
167
+ border: 1px solid var(--line);
168
+ border-radius: 8px;
169
+ background: rgba(255, 255, 255, 0.04);
170
+ }
171
+
172
+ .language-toggle a {
173
+ min-width: 86px;
174
+ color: var(--muted);
175
+ font-family: "Cascadia Mono", "JetBrains Mono", Consolas, monospace;
176
+ font-size: 12px;
177
+ padding: 9px 12px;
178
+ text-align: center;
179
+ text-decoration: none;
180
+ }
181
+
182
+ .language-toggle a.active {
183
+ background: var(--violet);
184
+ color: var(--text);
185
+ }
186
+
187
+ .hero-panel,
188
+ .dashboard-hero,
189
+ .insight-card,
190
+ .gallery-card,
191
+ .detail-hero,
192
+ .panel,
193
+ .stat-card,
194
+ .dream-compose,
195
+ .analysis-panel,
196
+ .status-strip > div {
197
+ border: 1px solid var(--line);
198
+ border-radius: 8px;
199
+ background: linear-gradient(180deg, rgba(32, 23, 53, 0.88), rgba(16, 12, 29, 0.92));
200
+ box-shadow: 0 20px 70px var(--shadow);
201
+ }
202
+
203
+ .constellation-sky {
204
+ position: relative;
205
+ isolation: isolate;
206
+ overflow: hidden;
207
+ }
208
+
209
+ .star-field {
210
+ position: absolute;
211
+ inset: 0;
212
+ z-index: -1;
213
+ background:
214
+ linear-gradient(115deg, rgba(82, 231, 210, 0.14), transparent 34%),
215
+ radial-gradient(circle at 75% 26%, rgba(193, 108, 255, 0.36), transparent 28%),
216
+ radial-gradient(circle at 44% 64%, rgba(255, 111, 168, 0.16), transparent 24%);
217
+ }
218
+
219
+ .star-field::before {
220
+ position: absolute;
221
+ inset: 0;
222
+ content: "";
223
+ background-image:
224
+ radial-gradient(circle, rgba(255, 255, 255, 0.86) 0 1px, transparent 1.7px),
225
+ linear-gradient(90deg, transparent 0 55%, rgba(142, 99, 255, 0.18) 55% 56%, transparent 56%);
226
+ background-size: 70px 70px, 100% 100%;
227
+ opacity: 0.34;
228
+ }
229
+
230
+ .hero-panel {
231
+ display: grid;
232
+ grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
233
+ gap: 24px;
234
+ min-height: 260px;
235
+ padding: clamp(24px, 4vw, 42px);
236
+ }
237
+
238
+ .dashboard-hero {
239
+ position: relative;
240
+ isolation: isolate;
241
+ overflow: hidden;
242
+ display: grid;
243
+ grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
244
+ gap: 18px;
245
+ min-height: 320px;
246
+ padding: clamp(24px, 5vw, 46px);
247
+ }
248
+
249
+ .dashboard-hero .hero-copy {
250
+ align-self: center;
251
+ }
252
+
253
+ .dashboard-hero h2 {
254
+ max-width: 780px;
255
+ font-size: clamp(34px, 5vw, 64px);
256
+ line-height: 0.95;
257
+ }
258
+
259
+ .insight-card {
260
+ align-self: stretch;
261
+ display: grid;
262
+ align-content: center;
263
+ min-width: 0;
264
+ padding: 20px;
265
+ background: rgba(9, 7, 19, 0.62);
266
+ }
267
+
268
+ .insight-card strong {
269
+ display: block;
270
+ color: var(--text);
271
+ font-family: Georgia, "Times New Roman", serif;
272
+ font-size: clamp(28px, 4vw, 44px);
273
+ line-height: 1;
274
+ overflow-wrap: anywhere;
275
+ }
276
+
277
+ .insight-card p {
278
+ margin: 12px 0 0;
279
+ color: var(--muted);
280
+ }
281
+
282
+ .hero-actions {
283
+ display: flex;
284
+ flex-wrap: wrap;
285
+ align-items: center;
286
+ gap: 12px;
287
+ margin-top: 22px;
288
+ }
289
+
290
+ .primary-cta {
291
+ min-height: 42px;
292
+ border-radius: 6px;
293
+ background: var(--text);
294
+ color: var(--night);
295
+ display: inline-grid;
296
+ place-items: center;
297
+ font-family: "Cascadia Mono", "JetBrains Mono", Consolas, monospace;
298
+ font-size: 13px;
299
+ font-weight: 800;
300
+ padding: 0 16px;
301
+ text-decoration: none;
302
+ }
303
+
304
+ .hero-actions span,
305
+ .filter-badge {
306
+ color: var(--muted);
307
+ font-family: "Cascadia Mono", "JetBrains Mono", Consolas, monospace;
308
+ font-size: 12px;
309
+ }
310
+
311
+ .dashboard-grid,
312
+ .pattern-grid,
313
+ .gallery-grid {
314
+ display: grid;
315
+ gap: 14px;
316
+ margin-top: 14px;
317
+ }
318
+
319
+ .dashboard-grid {
320
+ grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
321
+ }
322
+
323
+ .pattern-grid {
324
+ grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
325
+ }
326
+
327
+ .gallery-grid {
328
+ grid-template-columns: repeat(3, minmax(0, 1fr));
329
+ }
330
+
331
+ .recent-list {
332
+ display: grid;
333
+ gap: 9px;
334
+ }
335
+
336
+ .recent-row {
337
+ border: 1px solid var(--line);
338
+ border-radius: 8px;
339
+ background: rgba(255, 255, 255, 0.04);
340
+ color: var(--text);
341
+ display: grid;
342
+ gap: 6px;
343
+ padding: 12px;
344
+ text-decoration: none;
345
+ }
346
+
347
+ .recent-row:hover,
348
+ .trend-link:hover,
349
+ .gallery-card:hover {
350
+ border-color: var(--line-strong);
351
+ background: rgba(142, 99, 255, 0.12);
352
+ }
353
+
354
+ .recent-row span {
355
+ color: var(--muted);
356
+ font-family: "Cascadia Mono", "JetBrains Mono", Consolas, monospace;
357
+ font-size: 11px;
358
+ }
359
+
360
+ .recent-row strong {
361
+ font-family: Georgia, "Times New Roman", serif;
362
+ font-size: 18px;
363
+ line-height: 1.18;
364
+ }
365
+
366
+ .mini-heatmap {
367
+ max-height: 300px;
368
+ overflow: auto;
369
+ }
370
+
371
+ .primary-workbench {
372
+ position: relative;
373
+ isolation: isolate;
374
+ overflow: hidden;
375
+ display: grid;
376
+ grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
377
+ gap: 16px;
378
+ min-height: 430px;
379
+ margin-bottom: 14px;
380
+ }
381
+
382
+ .dream-compose,
383
+ .analysis-panel {
384
+ min-width: 0;
385
+ padding: clamp(18px, 3vw, 28px);
386
+ }
387
+
388
+ .dream-compose {
389
+ display: grid;
390
+ grid-template-rows: auto auto 1fr auto;
391
+ }
392
+
393
+ .analysis-panel {
394
+ display: grid;
395
+ align-content: start;
396
+ gap: 14px;
397
+ }
398
+
399
+ .hero-copy {
400
+ max-width: 720px;
401
+ }
402
+
403
+ .eyebrow,
404
+ .section-title span,
405
+ .stat-card span {
406
+ color: var(--cyan);
407
+ font-family: "Cascadia Mono", "JetBrains Mono", Consolas, monospace;
408
+ font-size: 12px;
409
+ font-weight: 700;
410
+ text-transform: uppercase;
411
+ }
412
+
413
+ h1,
414
+ h2,
415
+ h3,
416
+ p {
417
+ margin-top: 0;
418
+ }
419
+
420
+ h1,
421
+ h2 {
422
+ font-family: Georgia, "Times New Roman", serif;
423
+ letter-spacing: 0;
424
+ text-wrap: balance;
425
+ }
426
+
427
+ h1 {
428
+ margin-bottom: 10px;
429
+ font-size: clamp(42px, 6.2vw, 82px);
430
+ line-height: 0.94;
431
+ }
432
+
433
+ h2 {
434
+ margin-bottom: 14px;
435
+ font-size: clamp(24px, 2.8vw, 36px);
436
+ line-height: 1;
437
+ }
438
+
439
+ h3 {
440
+ margin-bottom: 8px;
441
+ color: var(--muted);
442
+ font-size: 13px;
443
+ text-transform: uppercase;
444
+ }
445
+
446
+ p {
447
+ text-wrap: pretty;
448
+ }
449
+
450
+ .tagline {
451
+ margin-bottom: 10px;
452
+ color: var(--text);
453
+ font-size: clamp(18px, 2.2vw, 26px);
454
+ font-weight: 700;
455
+ }
456
+
457
+ .lede {
458
+ max-width: 680px;
459
+ margin-bottom: 0;
460
+ color: var(--muted);
461
+ font-size: 15px;
462
+ }
463
+
464
+ .hero-capture {
465
+ align-self: stretch;
466
+ border: 1px solid rgba(201, 182, 255, 0.28);
467
+ border-radius: 8px;
468
+ background: rgba(9, 7, 19, 0.62);
469
+ color: var(--text);
470
+ display: grid;
471
+ grid-template-rows: auto 1fr auto;
472
+ min-width: 0;
473
+ overflow: hidden;
474
+ }
475
+
476
+ .capture-heading {
477
+ display: flex;
478
+ align-items: baseline;
479
+ justify-content: space-between;
480
+ gap: 12px;
481
+ border-bottom: 1px solid rgba(201, 182, 255, 0.16);
482
+ padding: 14px 16px 12px;
483
+ }
484
+
485
+ .capture-heading span,
486
+ .capture-heading strong {
487
+ font-family: "Cascadia Mono", "JetBrains Mono", Consolas, monospace;
488
+ font-size: 12px;
489
+ font-weight: 700;
490
+ text-transform: uppercase;
491
+ }
492
+
493
+ .capture-heading span {
494
+ color: var(--cyan);
495
+ }
496
+
497
+ .capture-heading strong {
498
+ color: var(--muted);
499
+ }
500
+
501
+ .hero-command {
502
+ display: grid;
503
+ grid-template-columns: 22px minmax(0, 1fr);
504
+ gap: 10px;
505
+ border-top: 1px solid rgba(201, 182, 255, 0.16);
506
+ background: rgba(255, 255, 255, 0.03);
507
+ padding: 13px 16px;
508
+ }
509
+
510
+ .hero-command span,
511
+ .hero-command code,
512
+ pre,
513
+ code,
514
+ textarea,
515
+ input,
516
+ button,
517
+ .runtime-list,
518
+ .dream-card span,
519
+ .dream-card small,
520
+ .back-link {
521
+ font-family: "Cascadia Mono", "JetBrains Mono", Consolas, monospace;
522
+ }
523
+
524
+ .hero-command span {
525
+ color: var(--cyan);
526
+ }
527
+
528
+ .hero-command code {
529
+ overflow-wrap: anywhere;
530
+ }
531
+
532
+ .dream-compose .hero-command {
533
+ border: 1px solid rgba(201, 182, 255, 0.18);
534
+ border-radius: 8px;
535
+ margin-top: 12px;
536
+ }
537
+
538
+ .dream-compose textarea {
539
+ min-height: 190px;
540
+ }
541
+
542
+ .latest-dream-preview {
543
+ border: 1px solid rgba(201, 182, 255, 0.18);
544
+ border-radius: 8px;
545
+ background: rgba(255, 255, 255, 0.04);
546
+ padding: 12px;
547
+ }
548
+
549
+ .latest-dream-preview span,
550
+ .analysis-status,
551
+ .analysis-list dt,
552
+ .status-strip span,
553
+ .status-strip small {
554
+ font-family: "Cascadia Mono", "JetBrains Mono", Consolas, monospace;
555
+ }
556
+
557
+ .latest-dream-preview span {
558
+ color: var(--muted);
559
+ font-size: 11px;
560
+ }
561
+
562
+ .latest-dream-preview p {
563
+ margin: 8px 0 0;
564
+ color: var(--text);
565
+ }
566
+
567
+ .analysis-status {
568
+ width: fit-content;
569
+ border: 1px solid var(--line);
570
+ border-radius: 999px;
571
+ color: var(--text);
572
+ font-size: 12px;
573
+ font-weight: 700;
574
+ padding: 7px 10px;
575
+ }
576
+
577
+ .analysis-status.ready {
578
+ background: rgba(82, 231, 210, 0.12);
579
+ border-color: rgba(82, 231, 210, 0.38);
580
+ }
581
+
582
+ .analysis-status.pending {
583
+ background: rgba(240, 198, 106, 0.12);
584
+ border-color: rgba(240, 198, 106, 0.4);
585
+ }
586
+
587
+ .analysis-status.unavailable,
588
+ .status-message.warning {
589
+ background: rgba(255, 111, 168, 0.12);
590
+ border-color: rgba(255, 111, 168, 0.36);
591
+ }
592
+
593
+ .analysis-list {
594
+ display: grid;
595
+ gap: 9px;
596
+ margin: 0;
597
+ }
598
+
599
+ .analysis-list div {
600
+ display: grid;
601
+ grid-template-columns: 128px minmax(0, 1fr);
602
+ gap: 12px;
603
+ border-top: 1px solid var(--line);
604
+ padding-top: 9px;
605
+ }
606
+
607
+ .analysis-list dt {
608
+ color: var(--muted);
609
+ font-size: 12px;
610
+ }
611
+
612
+ .analysis-list dd {
613
+ margin: 0;
614
+ overflow-wrap: anywhere;
615
+ }
616
+
617
+ .analysis-summary {
618
+ border-left: 2px solid var(--cyan);
619
+ margin-bottom: 0;
620
+ padding-left: 12px;
621
+ }
622
+
623
+ .analyze-form button {
624
+ width: 100%;
625
+ }
626
+
627
+ .status-message {
628
+ border: 1px solid var(--line);
629
+ border-radius: 8px;
630
+ margin-bottom: 0;
631
+ padding: 10px 12px;
632
+ }
633
+
634
+ .stat-strip {
635
+ display: grid;
636
+ grid-template-columns: repeat(4, minmax(0, 1fr));
637
+ gap: 12px;
638
+ margin: 14px 0;
639
+ }
640
+
641
+ .status-strip {
642
+ display: grid;
643
+ grid-template-columns: repeat(4, minmax(0, 1fr));
644
+ gap: 12px;
645
+ margin: 14px 0;
646
+ }
647
+
648
+ .status-strip > div {
649
+ min-width: 0;
650
+ padding: 12px 14px;
651
+ }
652
+
653
+ .status-strip span {
654
+ display: block;
655
+ color: var(--cyan);
656
+ font-size: 11px;
657
+ font-weight: 700;
658
+ text-transform: uppercase;
659
+ }
660
+
661
+ .status-strip strong {
662
+ display: block;
663
+ margin: 5px 0 2px;
664
+ color: var(--text);
665
+ font-family: Georgia, "Times New Roman", serif;
666
+ font-size: 24px;
667
+ line-height: 1;
668
+ overflow-wrap: anywhere;
669
+ }
670
+
671
+ .status-strip small {
672
+ color: var(--quiet);
673
+ font-size: 11px;
674
+ }
675
+
676
+
677
+ .stat-card {
678
+ min-width: 0;
679
+ padding: 16px;
680
+ }
681
+
682
+ .stat-card strong {
683
+ display: block;
684
+ margin: 8px 0 3px;
685
+ color: var(--text);
686
+ font-family: Georgia, "Times New Roman", serif;
687
+ font-size: 30px;
688
+ line-height: 1;
689
+ overflow-wrap: anywhere;
690
+ }
691
+
692
+ .stat-card small {
693
+ color: var(--quiet);
694
+ }
695
+
696
+ .work-grid {
697
+ display: grid;
698
+ grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
699
+ gap: 14px;
700
+ }
701
+
702
+ .panel {
703
+ min-width: 0;
704
+ padding: 18px;
705
+ }
706
+
707
+ .panel-wide {
708
+ grid-row: span 2;
709
+ }
710
+
711
+ .section-title {
712
+ display: flex;
713
+ align-items: baseline;
714
+ justify-content: space-between;
715
+ gap: 16px;
716
+ margin-bottom: 16px;
717
+ }
718
+
719
+ .section-title h2 {
720
+ margin: 0;
721
+ }
722
+
723
+ .constellation-map {
724
+ display: grid;
725
+ grid-template-columns: repeat(auto-fill, minmax(44px, 1fr));
726
+ gap: 7px;
727
+ }
728
+
729
+ .heat-cell {
730
+ min-height: 48px;
731
+ border: 1px solid rgba(201, 182, 255, 0.13);
732
+ border-radius: 4px;
733
+ background: rgba(255, 255, 255, 0.05);
734
+ color: var(--muted);
735
+ display: grid;
736
+ padding: 7px;
737
+ text-decoration: none;
738
+ }
739
+
740
+ .heat-cell span {
741
+ font-family: "Cascadia Mono", Consolas, monospace;
742
+ font-size: 10px;
743
+ }
744
+
745
+ .heat-cell strong {
746
+ align-self: end;
747
+ color: var(--text);
748
+ font-size: 17px;
749
+ }
750
+
751
+ .heat-level-1 {
752
+ background: rgba(142, 99, 255, 0.34);
753
+ }
754
+
755
+ .heat-level-2 {
756
+ background: rgba(193, 108, 255, 0.55);
757
+ }
758
+
759
+ .heat-level-3 {
760
+ background: rgba(255, 111, 168, 0.65);
761
+ }
762
+
763
+ .heat-level-4 {
764
+ background: linear-gradient(135deg, rgba(255, 111, 168, 0.78), rgba(82, 231, 210, 0.5));
765
+ }
766
+
767
+ .spectrum-list,
768
+ .symbol-stack,
769
+ .dream-grid {
770
+ display: grid;
771
+ gap: 10px;
772
+ }
773
+
774
+ .spectrum-row,
775
+ .symbol-row {
776
+ display: grid;
777
+ grid-template-columns: 74px minmax(0, 1fr) 28px;
778
+ gap: 10px;
779
+ align-items: center;
780
+ }
781
+
782
+ .trend-link {
783
+ border: 1px solid transparent;
784
+ border-radius: 6px;
785
+ color: inherit;
786
+ padding: 7px;
787
+ text-decoration: none;
788
+ }
789
+
790
+ .spectrum-row span,
791
+ .symbol-row span,
792
+ .runtime-list dt {
793
+ color: var(--muted);
794
+ font-family: "Cascadia Mono", Consolas, monospace;
795
+ font-size: 12px;
796
+ overflow-wrap: anywhere;
797
+ }
798
+
799
+ .spectrum-row strong,
800
+ .symbol-row strong {
801
+ color: var(--text);
802
+ font-family: "Cascadia Mono", Consolas, monospace;
803
+ font-size: 12px;
804
+ text-align: right;
805
+ }
806
+
807
+ .spectrum-track,
808
+ .symbol-row i {
809
+ height: 6px;
810
+ overflow: hidden;
811
+ border-radius: 999px;
812
+ background: rgba(255, 255, 255, 0.08);
813
+ }
814
+
815
+ .spectrum-track i,
816
+ .symbol-row i {
817
+ display: block;
818
+ background: linear-gradient(90deg, var(--cyan), var(--violet-2), var(--rose));
819
+ }
820
+
821
+ .spectrum-track i {
822
+ height: 100%;
823
+ }
824
+
825
+ .insight-callout {
826
+ border-left: 2px solid var(--cyan);
827
+ background: rgba(82, 231, 210, 0.08);
828
+ margin-bottom: 16px;
829
+ padding: 12px 14px;
830
+ }
831
+
832
+ .insight-callout strong {
833
+ color: var(--text);
834
+ font-family: Georgia, "Times New Roman", serif;
835
+ font-size: 26px;
836
+ }
837
+
838
+ .insight-callout p {
839
+ margin: 4px 0 0;
840
+ color: var(--muted);
841
+ }
842
+
843
+ .muted-row {
844
+ opacity: 0.72;
845
+ }
846
+
847
+ .runtime-list {
848
+ display: grid;
849
+ gap: 10px;
850
+ margin: 0;
851
+ }
852
+
853
+ .runtime-list div {
854
+ display: grid;
855
+ grid-template-columns: 84px minmax(0, 1fr);
856
+ gap: 12px;
857
+ align-items: baseline;
858
+ }
859
+
860
+ .runtime-list dd {
861
+ margin: 0;
862
+ overflow-wrap: anywhere;
863
+ }
864
+
865
+ .runtime-note,
866
+ .empty-state,
867
+ .quiet-panel,
868
+ .dream-card small {
869
+ color: var(--muted);
870
+ }
871
+
872
+ .runtime-note {
873
+ border-top: 1px solid var(--line);
874
+ margin: 14px 0 0;
875
+ padding-top: 12px;
876
+ font-size: 13px;
877
+ }
878
+
879
+ .capture-log-grid,
880
+ .detail-grid,
881
+ .settings-grid {
882
+ display: grid;
883
+ grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
884
+ gap: 14px;
885
+ margin-top: 14px;
886
+ }
887
+
888
+ .log-page-grid {
889
+ display: grid;
890
+ gap: 14px;
891
+ }
892
+
893
+ .terminal-panel {
894
+ overflow: hidden;
895
+ padding: 0;
896
+ background: #0c1114;
897
+ }
898
+
899
+ .terminal-bar {
900
+ display: flex;
901
+ align-items: center;
902
+ gap: 8px;
903
+ border-bottom: 1px solid rgba(125, 240, 168, 0.18);
904
+ padding: 12px 14px;
905
+ }
906
+
907
+ .terminal-bar span {
908
+ width: 10px;
909
+ height: 10px;
910
+ border-radius: 999px;
911
+ background: var(--rose);
912
+ }
913
+
914
+ .terminal-bar span:nth-child(2) {
915
+ background: var(--amber);
916
+ }
917
+
918
+ .terminal-bar span:nth-child(3) {
919
+ background: var(--green);
920
+ }
921
+
922
+ .terminal-bar strong {
923
+ margin-left: 4px;
924
+ color: var(--muted);
925
+ font-family: "Cascadia Mono", Consolas, monospace;
926
+ font-size: 12px;
927
+ text-transform: uppercase;
928
+ }
929
+
930
+ pre {
931
+ margin: 0;
932
+ overflow: auto;
933
+ padding: 18px;
934
+ color: #d9ffe8;
935
+ white-space: pre-wrap;
936
+ }
937
+
938
+ .quick-capture {
939
+ border-top: 1px solid rgba(125, 240, 168, 0.18);
940
+ padding: 16px;
941
+ }
942
+
943
+ .hero-quick-capture {
944
+ border-top: 0;
945
+ display: grid;
946
+ align-content: start;
947
+ gap: 12px;
948
+ }
949
+
950
+ textarea,
951
+ input,
952
+ select {
953
+ width: 100%;
954
+ border: 1px solid rgba(125, 240, 168, 0.22);
955
+ border-radius: 6px;
956
+ background: rgba(255, 255, 255, 0.05);
957
+ color: var(--text);
958
+ font-size: 14px;
959
+ }
960
+
961
+ textarea {
962
+ min-height: 96px;
963
+ padding: 12px;
964
+ resize: vertical;
965
+ }
966
+
967
+ input,
968
+ select {
969
+ height: 40px;
970
+ padding: 0 10px;
971
+ }
972
+
973
+ select {
974
+ appearance: none;
975
+ }
976
+
977
+ option {
978
+ background: var(--panel);
979
+ color: var(--text);
980
+ }
981
+
982
+ .form-row {
983
+ display: grid;
984
+ grid-template-columns: 1fr 136px auto;
985
+ gap: 9px;
986
+ margin-top: 9px;
987
+ }
988
+
989
+ button {
990
+ min-height: 40px;
991
+ border: 0;
992
+ border-radius: 6px;
993
+ background: var(--text);
994
+ color: var(--night);
995
+ cursor: pointer;
996
+ font-weight: 800;
997
+ padding: 0 14px;
998
+ }
999
+
1000
+ .form-actions,
1001
+ .draft-actions {
1002
+ display: flex;
1003
+ flex-wrap: wrap;
1004
+ gap: 10px;
1005
+ align-items: center;
1006
+ }
1007
+
1008
+ .form-actions button {
1009
+ min-width: 160px;
1010
+ }
1011
+
1012
+ .privacy-line {
1013
+ margin: 0;
1014
+ color: var(--quiet);
1015
+ font-family: "Cascadia Mono", "JetBrains Mono", Consolas, monospace;
1016
+ font-size: 12px;
1017
+ }
1018
+
1019
+ .secondary-button {
1020
+ border: 1px solid var(--line);
1021
+ background: rgba(255, 255, 255, 0.06);
1022
+ color: var(--muted);
1023
+ }
1024
+
1025
+ .secondary-link {
1026
+ border: 1px solid var(--line);
1027
+ border-radius: 6px;
1028
+ color: var(--muted);
1029
+ font-family: "Cascadia Mono", "JetBrains Mono", Consolas, monospace;
1030
+ font-size: 13px;
1031
+ padding: 9px 12px;
1032
+ text-decoration: none;
1033
+ }
1034
+
1035
+ .secondary-link:hover,
1036
+ .secondary-button:hover {
1037
+ border-color: var(--line-strong);
1038
+ color: var(--text);
1039
+ }
1040
+
1041
+ .settings-panel {
1042
+ display: grid;
1043
+ gap: 16px;
1044
+ }
1045
+
1046
+ .settings-form {
1047
+ display: grid;
1048
+ gap: 13px;
1049
+ }
1050
+
1051
+ .settings-form label {
1052
+ display: grid;
1053
+ gap: 6px;
1054
+ }
1055
+
1056
+ .settings-form label span {
1057
+ color: var(--muted);
1058
+ font-family: "Cascadia Mono", "JetBrains Mono", Consolas, monospace;
1059
+ font-size: 12px;
1060
+ text-transform: uppercase;
1061
+ }
1062
+
1063
+ .settings-form button {
1064
+ width: fit-content;
1065
+ min-width: 150px;
1066
+ }
1067
+
1068
+ .ready-message {
1069
+ background: rgba(82, 231, 210, 0.12);
1070
+ border-color: rgba(82, 231, 210, 0.38);
1071
+ }
1072
+
1073
+ .developer-note {
1074
+ border-top: 1px solid var(--line);
1075
+ margin-top: 16px;
1076
+ padding-top: 14px;
1077
+ }
1078
+
1079
+ .developer-note strong {
1080
+ color: var(--cyan);
1081
+ font-family: "Cascadia Mono", "JetBrains Mono", Consolas, monospace;
1082
+ font-size: 12px;
1083
+ text-transform: uppercase;
1084
+ }
1085
+
1086
+ .developer-note p {
1087
+ margin: 8px 0 0;
1088
+ color: var(--muted);
1089
+ }
1090
+
1091
+ .dream-grid {
1092
+ grid-template-columns: repeat(3, minmax(0, 1fr));
1093
+ }
1094
+
1095
+ .dream-card {
1096
+ display: grid;
1097
+ min-height: 154px;
1098
+ border: 1px solid var(--line);
1099
+ border-radius: 8px;
1100
+ background: rgba(255, 255, 255, 0.04);
1101
+ color: var(--text);
1102
+ gap: 9px;
1103
+ padding: 14px;
1104
+ text-decoration: none;
1105
+ }
1106
+
1107
+ .dream-card:hover {
1108
+ border-color: var(--line-strong);
1109
+ background: rgba(142, 99, 255, 0.12);
1110
+ }
1111
+
1112
+ .dream-card strong {
1113
+ color: var(--text);
1114
+ font-family: Georgia, "Times New Roman", serif;
1115
+ font-size: 18px;
1116
+ font-weight: 600;
1117
+ line-height: 1.2;
1118
+ }
1119
+
1120
+ .dream-card span,
1121
+ .dream-card small {
1122
+ font-size: 11px;
1123
+ }
1124
+
1125
+ .back-link {
1126
+ display: inline-block;
1127
+ margin-bottom: 14px;
1128
+ color: var(--cyan);
1129
+ font-size: 13px;
1130
+ text-decoration: none;
1131
+ }
1132
+
1133
+ .detail-dashboard {
1134
+ max-width: 980px;
1135
+ }
1136
+
1137
+ .detail-hero {
1138
+ padding: clamp(24px, 5vw, 46px);
1139
+ }
1140
+
1141
+ .dream-text {
1142
+ max-width: 820px;
1143
+ color: var(--text);
1144
+ font-family: Georgia, "Times New Roman", serif;
1145
+ font-size: clamp(24px, 4vw, 42px);
1146
+ line-height: 1.22;
1147
+ }
1148
+
1149
+ .tag-shelf {
1150
+ display: flex;
1151
+ flex-wrap: wrap;
1152
+ gap: 8px;
1153
+ margin-top: 18px;
1154
+ }
1155
+
1156
+ .tag-shelf span {
1157
+ border: 1px solid var(--line);
1158
+ border-radius: 999px;
1159
+ background: rgba(255, 255, 255, 0.05);
1160
+ color: var(--muted);
1161
+ font-family: "Cascadia Mono", Consolas, monospace;
1162
+ font-size: 12px;
1163
+ padding: 6px 9px;
1164
+ }
1165
+
1166
+ .gallery-card {
1167
+ position: relative;
1168
+ isolation: isolate;
1169
+ overflow: hidden;
1170
+ min-height: 230px;
1171
+ display: grid;
1172
+ align-content: end;
1173
+ gap: 10px;
1174
+ color: var(--text);
1175
+ padding: 18px;
1176
+ text-decoration: none;
1177
+ }
1178
+
1179
+ .gallery-card span,
1180
+ .gallery-card small {
1181
+ color: var(--muted);
1182
+ font-family: "Cascadia Mono", "JetBrains Mono", Consolas, monospace;
1183
+ font-size: 12px;
1184
+ }
1185
+
1186
+ .gallery-card strong {
1187
+ color: var(--text);
1188
+ font-family: Georgia, "Times New Roman", serif;
1189
+ font-size: 24px;
1190
+ line-height: 1.12;
1191
+ }
1192
+
1193
+ .empty-gallery {
1194
+ grid-column: 1 / -1;
1195
+ }
1196
+
1197
+ .visual-memory-action {
1198
+ display: flex;
1199
+ flex-wrap: wrap;
1200
+ gap: 10px;
1201
+ align-items: center;
1202
+ margin-top: 18px;
1203
+ }
1204
+
1205
+ .visual-memory-action p {
1206
+ flex: 1 1 260px;
1207
+ margin: 0;
1208
+ color: var(--muted);
1209
+ font-size: 13px;
1210
+ }
1211
+
1212
+ .filter-badge {
1213
+ display: inline-flex;
1214
+ align-items: center;
1215
+ gap: 10px;
1216
+ border: 1px solid var(--line);
1217
+ border-radius: 999px;
1218
+ background: rgba(255, 255, 255, 0.05);
1219
+ margin-top: -4px;
1220
+ padding: 7px 10px;
1221
+ }
1222
+
1223
+ .filter-badge a {
1224
+ color: var(--cyan);
1225
+ text-decoration: none;
1226
+ }
1227
+
1228
+ .reflection-fields {
1229
+ border: 1px solid rgba(124, 94, 255, 0.28);
1230
+ border-radius: 14px;
1231
+ background: rgba(255, 255, 255, 0.035);
1232
+ display: grid;
1233
+ gap: 10px;
1234
+ padding: 12px;
1235
+ }
1236
+
1237
+ .reflection-heading {
1238
+ color: var(--cyan);
1239
+ font-family: "Cascadia Mono", "JetBrains Mono", Consolas, monospace;
1240
+ font-size: 12px;
1241
+ font-weight: 800;
1242
+ letter-spacing: 0.08em;
1243
+ margin: 0;
1244
+ text-transform: uppercase;
1245
+ }
1246
+
1247
+ .reflection-fields label {
1248
+ display: grid;
1249
+ gap: 6px;
1250
+ }
1251
+
1252
+ .reflection-fields span {
1253
+ color: var(--muted);
1254
+ font-size: 12px;
1255
+ }
1256
+
1257
+ .reflection-fields input {
1258
+ background: rgba(8, 6, 20, 0.72);
1259
+ border: 1px solid var(--line);
1260
+ border-radius: 10px;
1261
+ color: var(--text);
1262
+ font: inherit;
1263
+ padding: 10px 11px;
1264
+ }
1265
+
1266
+ .reflection-fields input:focus {
1267
+ border-color: rgba(105, 240, 215, 0.55);
1268
+ box-shadow: 0 0 0 3px rgba(105, 240, 215, 0.12);
1269
+ outline: none;
1270
+ }
1271
+
1272
+ .dream-report {
1273
+ display: grid;
1274
+ gap: 14px;
1275
+ margin-top: 18px;
1276
+ }
1277
+
1278
+ .report-section {
1279
+ border: 1px solid rgba(255, 255, 255, 0.08);
1280
+ border-radius: 14px;
1281
+ background: rgba(255, 255, 255, 0.035);
1282
+ padding: 14px;
1283
+ }
1284
+
1285
+ .report-section h3 {
1286
+ color: var(--text);
1287
+ font-family: Georgia, "Times New Roman", serif;
1288
+ font-size: 20px;
1289
+ margin: 0 0 10px;
1290
+ }
1291
+
1292
+ .report-section p,
1293
+ .report-section li {
1294
+ color: var(--text-soft);
1295
+ line-height: 1.65;
1296
+ }
1297
+
1298
+ .report-section ul {
1299
+ margin: 0;
1300
+ padding-left: 18px;
1301
+ }
1302
+
1303
+ .interpretation-list {
1304
+ display: grid;
1305
+ gap: 10px;
1306
+ }
1307
+
1308
+ .interpretation-list article {
1309
+ border-left: 3px solid var(--cyan);
1310
+ background: rgba(8, 6, 20, 0.38);
1311
+ border-radius: 10px;
1312
+ display: grid;
1313
+ gap: 7px;
1314
+ padding: 12px;
1315
+ }
1316
+
1317
+ .interpretation-list strong {
1318
+ color: var(--text);
1319
+ }
1320
+
1321
+ .interpretation-list small {
1322
+ color: var(--muted);
1323
+ display: block;
1324
+ line-height: 1.5;
1325
+ }
1326
+
1327
+ .interpretation-list em {
1328
+ color: var(--cyan);
1329
+ font-style: normal;
1330
+ line-height: 1.5;
1331
+ }
1332
+
1333
+ .reality-focus {
1334
+ border-color: rgba(105, 240, 215, 0.45);
1335
+ background: linear-gradient(135deg, rgba(105, 240, 215, 0.12), rgba(124, 94, 255, 0.08));
1336
+ }
1337
+
1338
+ details {
1339
+ border-top: 1px solid var(--line);
1340
+ margin-top: 18px;
1341
+ padding-top: 12px;
1342
+ }
1343
+
1344
+ summary {
1345
+ cursor: pointer;
1346
+ color: var(--cyan);
1347
+ font-family: "Cascadia Mono", Consolas, monospace;
1348
+ font-size: 13px;
1349
+ }
1350
+
1351
+ @media (max-width: 1020px) {
1352
+ .app-frame {
1353
+ grid-template-columns: 1fr;
1354
+ }
1355
+
1356
+ .sidebar {
1357
+ position: static;
1358
+ height: auto;
1359
+ display: grid;
1360
+ grid-template-columns: 1fr;
1361
+ gap: 14px;
1362
+ }
1363
+
1364
+ .side-nav {
1365
+ display: flex;
1366
+ flex-wrap: wrap;
1367
+ margin-top: 0;
1368
+ }
1369
+
1370
+ .side-note {
1371
+ position: static;
1372
+ }
1373
+
1374
+ .hero-panel {
1375
+ gap: 16px;
1376
+ }
1377
+
1378
+ .dashboard {
1379
+ width: min(100% - 28px, 1180px);
1380
+ padding-top: 14px;
1381
+ }
1382
+
1383
+ .hero-panel,
1384
+ .dashboard-hero,
1385
+ .primary-workbench,
1386
+ .capture-log-grid,
1387
+ .detail-grid,
1388
+ .settings-grid,
1389
+ .dashboard-grid,
1390
+ .pattern-grid,
1391
+ .gallery-grid {
1392
+ grid-template-columns: 1fr;
1393
+ }
1394
+
1395
+ .stat-strip,
1396
+ .status-strip {
1397
+ grid-template-columns: repeat(2, minmax(0, 1fr));
1398
+ }
1399
+ }
1400
+
1401
+ @media (max-width: 760px) {
1402
+ .hero-panel,
1403
+ .dashboard-hero,
1404
+ .insight-card,
1405
+ .dream-compose,
1406
+ .analysis-panel,
1407
+ .panel,
1408
+ .stat-card,
1409
+ .detail-hero {
1410
+ padding: 16px;
1411
+ }
1412
+
1413
+ .topbar {
1414
+ grid-template-columns: 1fr;
1415
+ gap: 10px;
1416
+ margin-bottom: 12px;
1417
+ }
1418
+
1419
+ .language-toggle {
1420
+ width: 100%;
1421
+ }
1422
+
1423
+ .sidebar {
1424
+ padding: 14px;
1425
+ }
1426
+
1427
+ .brand-mark strong {
1428
+ font-size: 17px;
1429
+ }
1430
+
1431
+ .side-nav a {
1432
+ padding: 7px 9px;
1433
+ }
1434
+
1435
+ .side-note {
1436
+ display: none;
1437
+ }
1438
+
1439
+ h1 {
1440
+ font-size: clamp(36px, 10vw, 50px);
1441
+ }
1442
+
1443
+ .tagline {
1444
+ margin-bottom: 0;
1445
+ font-size: 16px;
1446
+ }
1447
+
1448
+ .lede {
1449
+ margin-bottom: 8px;
1450
+ font-size: 13px;
1451
+ }
1452
+
1453
+ textarea {
1454
+ min-height: 96px;
1455
+ }
1456
+
1457
+ .dream-compose textarea {
1458
+ min-height: 104px;
1459
+ }
1460
+
1461
+ .hero-quick-capture {
1462
+ padding: 4px 0 0;
1463
+ }
1464
+
1465
+ .dream-compose .hero-command {
1466
+ display: none;
1467
+ }
1468
+
1469
+ .primary-workbench {
1470
+ gap: 10px;
1471
+ min-height: 0;
1472
+ }
1473
+
1474
+ .work-grid {
1475
+ grid-template-columns: 1fr;
1476
+ }
1477
+
1478
+ .stat-strip,
1479
+ .status-strip,
1480
+ .dream-grid,
1481
+ .gallery-grid,
1482
+ .form-row {
1483
+ grid-template-columns: 1fr;
1484
+ }
1485
+
1486
+ .analysis-list div {
1487
+ grid-template-columns: 1fr;
1488
+ gap: 4px;
1489
+ }
1490
+
1491
+ .section-title {
1492
+ display: block;
1493
+ }
1494
+
1495
+ .section-title span {
1496
+ display: inline-block;
1497
+ margin-bottom: 8px;
1498
+ }
1499
+
1500
+ .constellation-map {
1501
+ grid-template-columns: repeat(auto-fill, minmax(38px, 1fr));
1502
+ }
1503
+ }