forked from buriedsignals/spotlight
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
4744 lines (4480 loc) · 190 KB
/
Copy pathindex.html
File metadata and controls
4744 lines (4480 loc) · 190 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>Spotlight — OSINT investigation system for journalists</title>
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M6 2h4v4h-4zM10 2h4v4h-4zM14 2h4v4h-4zM6 6h4v4h-4zM6 10h4v4h-4zM14 10h4v4h-4zM14 14h4v4h-4zM6 18h4v4h-4zM10 18h4v4h-4zM14 18h4v4h-4z'/></svg>">
<meta name="description" content="Turn your agent into an investigative system. Spotlight is an open-source skill file for journalists: methodology, investigator and fact-checker loops, human review gates, and local-first workflows for sensitive reporting.">
<script>
if (new URLSearchParams(window.location.search).has('backdrop')) {
document.documentElement.classList.add('backdrop-mode');
}
</script>
<!-- Open Graph / social share previews -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://spotlight.buriedsignals.com/">
<meta property="og:title" content="Spotlight — OSINT investigation system for journalists">
<meta property="og:description" content="Turn your agent into an investigative system. Methodology, investigator and fact-checker loops, human review gates, local-first workflows.">
<meta property="og:image" content="https://spotlight.buriedsignals.com/og-image.png">
<meta property="og:image:width" content="2400">
<meta property="og:image:height" content="1260">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Spotlight — OSINT investigation system for journalists">
<meta name="twitter:description" content="Turn your agent into an investigative system. Methodology, investigator and fact-checker loops, human review gates, local-first workflows.">
<meta name="twitter:image" content="https://spotlight.buriedsignals.com/og-image.png">
<link rel="alternate" type="text/markdown" title="llms.txt" href="/llms.txt">
<link rel="alternate" type="text/markdown" title="llms_full.txt" href="/llms_full.txt">
<meta name="feedback-endpoint" content="https://api.buriedsignals.com/v1/feedback">
<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=Fraunces:opsz,[email protected],400;9..144,500;9..144,600;9..144,700&family=Geist+Mono:wght@400;500;600&display=swap" rel="stylesheet">
<style>
:root {
--ink: #07070a;
--ink-2: #0c0c10;
--paper: #ede8dc;
--paper-2: #e3ddce;
--paper-fg: #17140e;
--muted-dark: rgba(237, 232, 220, 0.55);
--muted-faint-dark: rgba(237, 232, 220, 0.18);
--muted-light: rgba(23, 20, 14, 0.55);
--muted-faint-light: rgba(23, 20, 14, 0.15);
--warm: #fff5d9;
/* Editorial accent — deep terracotta dominates. Saturated darker tones so
* they read as the same color in flat CSS and as particle tints in the
* 3D scene (where additive blending tends to brighten + wash colors). */
--accent-warm: #c16a34; /* deep terracotta — primary site accent */
--accent-cool: #346fa8; /* deep steel blue — paired in cube scene */
/* Status — semantic only (verdicts, warnings, errors). Never decoration. */
--green: #4a7d3f;
--amber: #8a6212;
--red: #a83838;
/* Pre-mixed accent-warm fades (used in CTA hovers, selected states) */
--accent-warm-14: rgba(193, 106, 52, 0.14);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--ink); color: var(--paper); }
body {
font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
font-size: 14px;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.serif {
font-family: "Fraunces", serif;
font-variation-settings: "opsz" 144;
font-weight: 500;
letter-spacing: -0.02em;
}
.mono { font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace; }
code {
background: var(--paper-2);
color: var(--paper-fg);
padding: 1px 5px;
font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
font-size: 0.92em;
border: 1px solid var(--muted-faint-dark);
}
/* ── NAV ────────────────────────────────────────────────
Transparent across the whole page. mix-blend-mode: difference flips the
brand + Install pill against whatever sits underneath (cubes, text,
section bg) so it stays legible without its own background. */
nav.topnav {
position: fixed; top: 0; left: 0; right: 0; z-index: 50;
display: flex; justify-content: space-between; align-items: center;
padding: 20px 28px;
background: transparent;
color: var(--paper);
pointer-events: none;
mix-blend-mode: difference;
}
nav.topnav > * { pointer-events: auto; }
nav.topnav .brand {
display: flex; align-items: center; gap: 10px;
font-family: "Fraunces", serif; font-size: 17px; font-weight: 500;
letter-spacing: -0.01em;
}
nav.topnav .brand svg { width: 18px; height: 18px; }
nav.topnav .links {
display: flex; gap: 22px; align-items: center;
font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
}
nav.topnav .links a { transition: color 0.2s ease; opacity: 0.85; }
nav.topnav .links a:hover { color: var(--accent-warm); opacity: 1; }
/* Install — promoted as a CTA (bordered pill) in the topnav. */
nav.topnav .links a[href$="setup.html"] {
display: inline-flex; align-items: center;
padding: 9px 14px;
border: 1px solid currentColor;
opacity: 1;
letter-spacing: 0.22em;
font-weight: 500;
transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
nav.topnav .links a[href$="setup.html"]:hover {
background: var(--accent-warm-14);
border-color: var(--accent-warm);
color: var(--accent-warm);
}
/* Going Sovereign — new-post pill: filled orange, pulsing dot signals the update. */
nav.topnav .links a.new-pill {
display: inline-flex; align-items: center; gap: 8px;
padding: 9px 14px;
background: var(--accent-warm);
border: 1px solid var(--accent-warm);
color: var(--ink);
opacity: 1;
letter-spacing: 0.22em;
font-weight: 600;
transition: background 0.2s ease, border-color 0.2s ease;
}
nav.topnav .links a.new-pill:hover {
background: #d87f45;
border-color: #d87f45;
color: var(--ink);
}
nav.topnav .links a.new-pill .dot {
width: 7px; height: 7px; border-radius: 999px;
background: var(--ink);
animation: newPillPulse 2.2s ease-in-out infinite;
}
@keyframes newPillPulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.35; transform: scale(0.8); }
}
/* The filled pill would be colour-inverted by the nav's mix-blend-mode: difference,
and a child cannot opt out of its parent's blend group. So the blended nav keeps an
invisible spacer pill (layout only), and a mirrored non-blended overlay nav paints
the real pill in exactly the same flex position. */
nav.topnav:not(.topnav-overlay) .new-pill { visibility: hidden; }
nav.topnav.topnav-overlay {
mix-blend-mode: normal;
background: transparent;
border-bottom: none;
pointer-events: none;
}
nav.topnav.topnav-overlay .brand,
nav.topnav.topnav-overlay .links a:not(.new-pill) { visibility: hidden; }
nav.topnav.topnav-overlay .links a.new-pill { visibility: visible; pointer-events: auto; }
/* ── DEV PANEL ───────────────────────────────────────────
Tiny floating toggles, bottom-right, for showing the lil-gui and
swapping the cube theme between bi-colour and neutral. Hidden by
default in production — keep `display:none` here when shipping. */
#dev-panel {
position: fixed;
bottom: 14px;
right: 14px;
z-index: 9999;
display: none;
flex-direction: column; gap: 6px;
pointer-events: auto;
}
#dev-panel button {
appearance: none;
background: rgba(7, 7, 10, 0.8);
color: #fff;
border: 1px solid rgba(255, 255, 255, 0.15);
padding: 6px 10px;
font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
font-size: 10px;
letter-spacing: 0.14em;
text-transform: uppercase;
cursor: pointer;
backdrop-filter: blur(6px);
transition: background 0.2s, border-color 0.2s, color 0.2s;
}
#dev-panel button:hover {
background: var(--accent-warm);
border-color: var(--accent-warm);
color: #fff;
}
/* ── GLOBAL SCENE CANVAS ──────────────────────────────────
One WebGL canvas for the whole page. Sits fixed. The hero slot keeps
rendering persistently across the whole page (full-viewport fallback
when its DOM rect scrolls offscreen), so cubes act as an ambient
backdrop behind every dark section below the hero.
Z-stack: canvas z-index 5. Sections below the hero are lifted to
z-index 10 with a slightly-transparent ink background so the cubes
peek through at ~12% alpha. */
#global-canvas {
position: fixed;
top: 0; left: 0;
width: 100vw; height: 100vh;
pointer-events: none;
z-index: 5;
}
#global-canvas canvas { display: block; width: 100% !important; height: 100% !important; }
html.backdrop-mode body { overflow: hidden; }
html.backdrop-mode nav.topnav,
html.backdrop-mode .hero-content,
html.backdrop-mode .hero-gradient,
html.backdrop-mode .scroll-cue,
html.backdrop-mode .chapter-break,
html.backdrop-mode #what,
html.backdrop-mode #integrations,
html.backdrop-mode #works-with,
html.backdrop-mode #offers,
html.backdrop-mode #footer,
html.backdrop-mode #dev-panel {
display: none !important;
}
html.backdrop-mode #hero {
height: 100vh;
min-height: 100vh;
border-bottom: 0;
}
/* ── HERO ─────────────────────────────────────────────── */
#hero {
position: relative;
height: 100vh;
min-height: 640px;
/* Transparent — the global canvas shows the scene through the hero.
z-index:10 sits ABOVE the canvas so hero children (content, gradient)
paint on top of the scene without being covered by opaque cube pixels. */
overflow: hidden;
z-index: 10;
}
/* #hero-canvas is now a slot placeholder — no canvas inside, just used
to measure the hero region for scissor rendering. */
#hero-canvas {
position: absolute; inset: 0;
width: 100%; height: 100%;
}
/* Fade the hero scene into the 50%-alpha ink of the sections below so the
visual transition from "full-brightness cubes" to "backdrop cubes" is
smooth rather than a hard cutoff at the section boundary. */
.hero-gradient {
position: absolute; inset: 0;
background: linear-gradient(to bottom, transparent 0%, transparent 55%, rgba(7, 7, 10, 0) 100%);
pointer-events: none;
z-index: 2;
}
.hero-content {
position: absolute; inset: 0;
z-index: 3;
display: flex; flex-direction: column; justify-content: flex-end;
padding: 96px 48px 118px;
pointer-events: none;
}
.hero-grid {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
align-items: end;
gap: 28px;
}
.hero-title {
font-family: "Fraunces", serif;
font-variation-settings: "opsz" 144;
font-weight: 500;
font-size: clamp(48px, 7vw, 108px);
line-height: 0.98;
letter-spacing: -0.025em;
margin: 0;
max-width: 10.5ch;
}
.hero-title .accent {
font-style: italic;
font-variation-settings: "opsz" 144, "wght" 400;
color: var(--accent-warm);
display: block;
}
.hero-side {
max-width: 380px;
width: 100%;
justify-self: end;
font-size: 13px;
line-height: 1.55;
color: var(--muted-dark);
padding-bottom: 0;
}
.hero-description {
margin: 0;
color: rgba(237, 232, 220, 0.92);
font-size: 14px;
font-weight: 500;
line-height: 1.6;
}
.hero-helper {
margin-top: 12px;
max-width: 34ch;
color: var(--muted-dark);
}
.hero-actions {
display: flex;
align-items: center;
gap: 16px;
margin-top: 28px;
}
.hero-side .cta,
.install-reminder .cta {
display: inline-flex; align-items: center; gap: 10px;
flex-wrap: nowrap;
margin-top: 0;
padding: 14px 18px 14px 20px;
border: 1px solid rgba(255,245,217,0.75);
background: var(--paper);
color: var(--ink);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
pointer-events: auto;
white-space: nowrap;
transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
}
.hero-side .cta:hover,
.install-reminder .cta:hover {
background: var(--accent-warm);
border-color: var(--accent-warm);
color: var(--paper);
transform: translateY(-1px);
}
.hero-side .secondary {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
margin-top: 0;
margin-left: 0;
padding: 14px 18px;
background: transparent;
color: rgba(237, 232, 220, 0.92);
border: 1px solid rgba(255, 245, 217, 0.68);
font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
pointer-events: auto;
text-decoration: none;
white-space: nowrap;
transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.hero-side .secondary:hover {
background: transparent;
color: var(--accent-warm);
border-color: var(--accent-warm);
transform: translateY(-1px);
}
.scroll-cue {
position: absolute;
bottom: 28px;
left: 48px;
font-size: 10px;
letter-spacing: 0.25em;
text-transform: uppercase;
opacity: 0.5;
z-index: 3;
display: flex; align-items: center; gap: 12px;
}
.scroll-cue .tick { width: 24px; height: 1px; background: currentColor; animation: scrollTick 2.2s ease-in-out infinite; transform-origin: left; }
@keyframes scrollTick {
0%, 100% { transform: scaleX(0.4); opacity: 0.4; }
50% { transform: scaleX(1); opacity: 1; }
}
/* ── TRANSITION BAND ──────────────────────────────────── */
.chapter-break {
position: relative;
background: var(--ink);
padding: 120px 48px;
text-align: center;
}
.chapter-break .pull {
font-family: "Fraunces", serif;
font-variation-settings: "opsz" 72, "wght" 400;
font-size: clamp(24px, 3.2vw, 42px);
line-height: 1.2;
letter-spacing: -0.01em;
max-width: 22ch;
margin: 0 auto;
color: var(--paper);
font-style: italic;
}
.chapter-break .pull em {
font-style: normal;
color: var(--accent-warm);
}
/* Canonical section header — chap label + Fraunces title.
Per-section instances add their own padding/margin/border via #id overrides. */
.header { display: flex; justify-content: space-between; align-items: baseline; }
.header .chap {
font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
opacity: 0.55; font-weight: 500;
}
.header .title {
font-family: "Fraunces", serif;
font-variation-settings: "opsz" 96, "wght" 500;
font-size: clamp(32px, 4.5vw, 60px);
letter-spacing: -0.02em;
margin: 0;
}
#integrations .header .title,
#works-with .header .title,
#attribution .header .title,
#offers .header .title {
font-size: clamp(40px, 5.4vw, 78px);
line-height: 1.02;
max-width: 13ch;
}
/* ── WHAT IT DOES (split-scroll) ──────────────────────── */
#what {
position: relative;
background: var(--ink);
color: var(--paper);
}
#what .header {
padding: 80px 48px 20px;
border-bottom: 1px solid var(--muted-faint-dark);
}
.split-scroll {
display: grid;
/* Counter | step text */
grid-template-columns: 200px 1fr;
gap: 60px;
padding: 0 48px;
}
/* Sentinel — only used on mobile to detect when .split-left becomes sticky. */
.split-left-sentinel { display: none; }
.split-left {
position: sticky;
top: 0;
height: 100vh;
display: flex; flex-direction: column; justify-content: center;
padding: 60px 0;
border-right: 1px solid var(--muted-faint-dark);
padding-right: 24px;
}
.split-left .counter {
font-family: "Fraunces", serif;
font-variation-settings: "opsz" 144, "wght" 400;
font-size: 140px;
line-height: 0.85;
color: var(--accent-warm);
font-feature-settings: "lnum";
transition: color 0.5s;
}
.split-left .counter.active { color: var(--accent-warm); }
.split-left .counter-label {
font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
opacity: 0.55;
margin-top: 14px;
min-height: 16px;
transition: opacity 0.4s;
}
.split-left .progress {
margin-top: 40px;
height: 1px;
background: var(--muted-faint-dark);
position: relative;
}
.split-left .progress .fill {
position: absolute; top: 0; left: 0; height: 100%;
background: var(--accent-warm);
transition: width 0.3s;
}
.split-right {
padding: 60px 0 80px;
}
.step {
min-height: 85vh;
display: flex; flex-direction: column; justify-content: center;
padding: 40px 0;
opacity: 0.3;
transition: opacity 0.5s;
}
.step.active { opacity: 1; }
.step .step-title {
font-family: "Fraunces", serif;
font-variation-settings: "opsz" 72, "wght" 500;
font-size: clamp(28px, 3.8vw, 48px);
line-height: 1.1;
letter-spacing: -0.015em;
margin: 0 0 20px;
max-width: 18ch;
}
.step .step-body {
font-size: 15px;
line-height: 1.65;
max-width: 54ch;
opacity: 0.75;
}
.step-meta {
display: none;
margin-bottom: 20px;
}
.step-meta .step-num {
font-family: "Fraunces", serif;
font-variation-settings: "opsz" 72, "wght" 500;
font-size: 34px;
line-height: 0.9;
color: var(--accent-warm);
}
.step-meta .step-label {
margin-top: 10px;
font-size: 10px;
letter-spacing: 0.2em;
text-transform: uppercase;
opacity: 0.62;
}
/* ── INTEGRATIONS — static 3-col grid of integration cards ─────────── */
#integrations {
position: relative;
background: var(--ink);
color: var(--paper);
padding-bottom: 120px;
}
#integrations .header {
padding: 80px 48px 40px;
}
.integrations-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0;
border-top: 1px solid var(--muted-faint-dark);
border-bottom: 1px solid var(--muted-faint-dark);
}
.int-card {
padding: 28px 24px 24px;
display: flex; flex-direction: column;
position: relative;
min-height: 220px;
border-right: 1px solid var(--muted-faint-dark);
border-bottom: 1px solid var(--muted-faint-dark);
}
/* Right edge: last in each row has no right border */
.int-card:nth-child(3n) { border-right: none; }
/* Bottom edge: last row loses its bottom border */
.int-card:nth-last-child(-n+3) { border-bottom: none; }
.int-card .idx {
font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.85;
color: var(--accent-warm);
}
.int-card .name {
font-family: "Fraunces", serif;
font-variation-settings: "opsz" 72, "wght" 500;
font-size: clamp(20px, 1.8vw, 26px);
line-height: 1.1;
letter-spacing: -0.02em;
margin-top: auto;
margin-bottom: 10px;
}
.int-card .desc {
font-size: 12px; line-height: 1.55; opacity: 0.7;
}
/* ── STATS ────────────────────────────────────────────── */
#box {
background: var(--paper);
color: var(--paper-fg);
padding: 120px 48px;
border-top: 1px solid var(--muted-faint-dark);
}
#box .header { margin-bottom: 60px; }
.stats-row {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 0;
align-items: end;
border-top: 1px solid var(--muted-faint-dark);
border-bottom: 1px solid var(--muted-faint-dark);
}
.stat-cell {
padding: 32px 20px 28px;
border-right: 1px solid var(--muted-faint-dark);
min-height: 220px;
display: flex; flex-direction: column; justify-content: space-between;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:first-child { padding-left: 0; }
.stat-cell .n {
font-family: "Fraunces", serif;
font-variation-settings: "opsz" 144, "wght" 500;
font-size: clamp(72px, 11vw, 160px);
line-height: 0.85;
letter-spacing: -0.04em;
color: var(--accent-warm);
}
.stat-cell:first-child .n { font-size: clamp(100px, 15vw, 220px); }
.stat-cell .l {
font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.6;
margin-top: 16px;
}
#box .note {
margin-top: 40px;
max-width: 60ch;
font-size: 13px; line-height: 1.65; opacity: 0.7;
}
/* ── WORKS WITH — agent chips on dark bg (design-system §3.5 CTA pattern) ─── */
#works-with {
background: var(--ink);
color: var(--paper);
padding: 120px 48px 160px;
}
#works-with .header {
padding: 0 0 40px;
border-bottom: 1px solid var(--muted-faint-dark);
margin-bottom: 60px;
}
.works-chips {
display: flex; flex-wrap: wrap; gap: 10px;
}
.works-chip {
display: inline-flex; align-items: center;
padding: 10px 16px;
border: 1px solid currentColor;
font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
font-size: 12px; letter-spacing: 0;
color: var(--paper);
text-decoration: none;
transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
a.works-chip:hover {
background: var(--accent-warm-14);
border-color: var(--accent-warm);
color: var(--accent-warm);
}
.works-chip-static { opacity: 1; }
.install-reminder {
margin-top: 44px;
display: flex;
justify-content: flex-start;
}
/* ── ATTRIBUTION ──────────────────────────────────────── */
#attribution {
background: var(--ink);
color: var(--paper);
padding: 140px 48px 120px;
border-top: 1px solid var(--muted-faint-dark);
position: relative;
overflow: hidden;
}
#attribution .header { margin-bottom: 80px; }
.attr-lede {
font-family: "Fraunces", serif;
font-variation-settings: "opsz" 72, "wght" 400;
font-size: clamp(22px, 2.6vw, 34px);
line-height: 1.3;
letter-spacing: -0.01em;
font-style: italic;
max-width: 30ch;
margin: 0 0 80px;
color: var(--paper);
}
.attr-lede em { font-style: normal; color: var(--accent-warm); }
.credits {
display: grid;
grid-template-columns: 200px 1fr;
gap: 40px;
padding: 28px 0;
border-top: 1px solid var(--muted-faint-dark);
align-items: start;
}
.credits:last-of-type { border-bottom: 1px solid var(--muted-faint-dark); }
.credits .role {
font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
opacity: 0.55;
padding-top: 6px;
}
.credits .entities {
display: flex; flex-direction: column; gap: 4px;
}
.credits .entity {
font-family: "Fraunces", serif;
font-variation-settings: "opsz" 72, "wght" 500;
font-size: clamp(22px, 2.4vw, 32px);
line-height: 1.15;
letter-spacing: -0.02em;
display: inline-flex; align-items: baseline; gap: 14px;
}
.credits .entity .ext {
font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
opacity: 0.45;
font-weight: 500;
}
.credits .entity a {
border-bottom: 1px solid transparent;
transition: border-color 0.3s, color 0.3s;
}
.credits .entity a:hover { border-bottom-color: var(--accent-warm); color: var(--accent-warm); }
.credits .sub {
font-size: 13px; line-height: 1.6; opacity: 0.6;
margin-top: 8px;
max-width: 58ch;
}
/* ── MEMBERSHIP + CONSULTING (split) ──────────────────── */
#offers {
background: var(--ink);
color: var(--paper);
padding: 168px 48px 120px;
}
#offers .header { margin-bottom: 60px; }
.about-bs {
max-width: 72ch; margin: 0 48px 60px; padding: 0;
font-size: 14px; line-height: 1.65;
color: var(--muted-dark);
}
.about-bs strong { font-weight: 500; color: inherit; }
.offers-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
border-top: 1px solid var(--muted-faint-dark);
border-bottom: 1px solid var(--muted-faint-dark);
}
.offer {
padding: 48px 40px 44px;
border-right: 1px solid var(--muted-faint-dark);
display: flex; flex-direction: column;
position: relative;
min-height: 580px;
}
.offer:last-child { border-right: none; }
.offer .kicker {
display: flex; justify-content: flex-start; align-items: baseline; gap: 16px; flex-wrap: wrap;
font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.82;
padding-bottom: 24px;
border-bottom: 1px solid var(--muted-faint-dark);
}
.offer .kicker .launch {
color: var(--accent-warm);
opacity: 1;
}
.offer h3 {
font-family: "Fraunces", serif;
font-variation-settings: "opsz" 96, "wght" 500;
font-size: clamp(36px, 4.4vw, 56px);
line-height: 1.02;
letter-spacing: -0.025em;
margin: 40px 0 20px;
max-width: 18ch;
}
.offer .lede {
font-size: 14px; line-height: 1.65; opacity: 0.75;
max-width: 44ch;
margin: 0 0 32px;
}
.offer ul {
list-style: none; padding: 0; margin: 0 0 40px;
display: flex; flex-direction: column; gap: 10px;
}
.offer ul li {
display: block;
font-size: 13px; line-height: 1.5;
padding-left: 22px;
position: relative;
opacity: 0.8;
background: transparent !important;
background-image: none !important;
border: none;
box-shadow: none;
outline: none;
}
.offer ul li::before {
content: '';
position: absolute; left: 0; top: 0.7em;
width: 10px; height: 1px;
background: var(--paper);
opacity: 0.5;
}
.offer .actions {
display: flex; align-items: center; gap: 20px;
flex-wrap: wrap;
}
.offer-footer {
margin-top: auto;
min-height: 116px;
display: flex;
flex-direction: column;
justify-content: flex-end;
gap: 12px;
}
.offer-footer--newsletter {
margin-top: 36px;
padding-top: 24px;
border-top: 1px solid var(--muted-faint-dark);
}
.offer-footer .actions {
margin-top: 0;
}
.offer-footer .actions.stack {
flex-direction: column;
align-items: stretch;
gap: 12px;
justify-content: flex-end;
}
.offer .btn {
display: inline-flex; align-items: center; gap: 10px;
padding: 14px 18px;
border: none;
background: var(--paper);
color: var(--ink);
font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
cursor: pointer;
transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.offer .btn:hover { background: var(--accent-warm); color: var(--paper); }
.offer .btn.ghost {
background: transparent;
color: var(--paper);
border: 1px solid var(--paper);
}
.offer .btn.ghost:hover { background: var(--accent-warm-14); border-color: var(--accent-warm); color: var(--accent-warm); }
.offer .aside {
font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.5;
}
.offer-signup-form {
display: flex;
align-items: stretch;
gap: 10px;
width: 100%;
}
.offer-signup-form input[type="email"] {
appearance: none;
-webkit-appearance: none;
flex: 1;
min-width: 0;
min-height: 52px;
height: 52px;
padding: 0 14px;
border: 1px solid var(--muted-faint-dark);
background: rgba(237, 232, 220, 0.04);
color: var(--paper);
font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
font-size: 13px;
line-height: 1.2;
transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.offer-signup-form .btn {
min-height: 52px;
justify-content: center;
}
.offer-signup-form input[type="email"]::placeholder { color: var(--muted-dark); }
.offer-signup-form input[type="email"]:focus {
outline: none;
border-color: var(--accent-warm);
box-shadow: 0 0 0 3px rgba(193, 106, 52, 0.16);
background: rgba(237, 232, 220, 0.06);
}
.offer-signup-form input[type="email"]:disabled { opacity: 0.65; }
.offer-newsletter-options {
display: grid;
gap: 8px;
}
.offer-newsletter-heading {
margin: 0;
color: var(--muted-dark);
font-size: 11px;
letter-spacing: 0.15em;
text-transform: uppercase;
}
.offer-newsletter-toggle {
display: grid;
grid-template-columns: 16px minmax(0, 1fr);
align-items: start;
gap: 10px;
width: 100%;
padding: 12px;
border: 1px solid var(--muted-faint-dark);
background: transparent;
color: var(--muted-dark);
cursor: pointer;
text-align: left;
}
.offer-newsletter-toggle[aria-pressed="true"] {
border-color: var(--accent-warm);
background: var(--accent-warm-14);
color: var(--warm);
}
.offer-newsletter-toggle:focus-visible {
outline: 2px solid var(--accent-warm);
outline-offset: 2px;
}
.offer-newsletter-check {
display: inline-grid;
width: 13px;
height: 13px;
place-items: center;
border: 1px solid currentColor;
font-size: 9px;
line-height: 1;
}
.offer-newsletter-copy {
display: grid;
gap: 4px;
}
.offer-newsletter-title {
color: var(--paper);
font-size: 11px;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
}
.offer-newsletter-description {
color: var(--muted-dark);
font-size: 12px;
letter-spacing: 0;
line-height: 1.5;
}
.offer .indicator-lab-link {
display: inline-flex;
align-items: center;
align-self: flex-start;
gap: 8px;
width: auto;
max-width: 100%;
padding: 0 0 4px;
border: 0;
border-bottom: 1px solid var(--muted-faint-dark);
background: transparent;
color: var(--muted-dark);
font-size: 10px;
transition: border-color 0.2s ease, color 0.2s ease;
}
.offer .indicator-lab-link:hover {
border-color: var(--accent-warm);
background: transparent;
color: var(--accent-warm);
}
.offer .indicator-lab-link span {
transition: transform 0.2s ease;
}
.offer .indicator-lab-link:hover span {
transform: translateX(4px);
}
.offer-signup-error {
margin: 0;
font-size: 12px;
color: #f0a4a4;
}
.offer-signup-success {
display: flex;
align-items: center;
gap: 10px;
margin: 0;
font-size: 13px;
color: var(--warm);
}
.offer-signup-success svg { flex-shrink: 0; }
.offer-disclaimer {
margin: 0;
font-size: 11px;
letter-spacing: 0.12em;
text-transform: uppercase;
opacity: 0.62;
}
.hidden { display: none !important; }
/* ── FOOTER ───────────────────────────────────────────── */
#footer {
background: rgba(7, 7, 10, 0);
color: var(--paper);
padding: 96px 48px 32px;
position: relative;
overflow: hidden;
z-index: 10;
}
.footer-simple {
display: grid;
grid-template-columns: minmax(0, 56ch) auto;
align-items: start;
gap: 32px;
padding-top: 28px;
border-top: 1px solid var(--muted-faint-dark);