-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
2458 lines (2323 loc) · 90.6 KB
/
Copy pathindex.html
File metadata and controls
2458 lines (2323 loc) · 90.6 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" />
<title>Halen | Local AI that never leaves your Mac</title>
<meta name="description" content="Halen is a local AI plugin platform for macOS — writing assistance, prompt polish, focus tools. Runs Gemma 4 on Apple Silicon. No cloud, no uploads, no account." />
<meta name="keywords" content="local AI, on-device AI, macOS AI, Gemma 4, private AI, local LLM, Apple Intelligence, AI writing assistant, snippet expansion, voice dictation" />
<meta name="author" content="Halen Labs" />
<meta name="theme-color" content="#1635D6" />
<link rel="canonical" href="https://halen.dev/" />
<!-- Open Graph / Facebook / LinkedIn -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Halen" />
<meta property="og:title" content="Halen | Local AI that never leaves your Mac" />
<meta property="og:description" content="On-device AI plugin platform for macOS. Writing assistance, prompt polish, focus tools — every byte stays on your Mac." />
<meta property="og:url" content="https://halen.dev/" />
<meta property="og:image" content="https://halen.dev/assets/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Halen: at your cursor, all on-device. Floating mockups of typing, tone selection, snippets, and model picker on a cobalt background." />
<meta property="og:locale" content="en_US" />
<!-- Twitter / X -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Halen | Local AI that never leaves your Mac" />
<meta name="twitter:description" content="On-device AI plugin platform for macOS. Writing assistance, prompt polish, focus tools — every byte stays on your Mac." />
<meta name="twitter:image" content="https://halen.dev/assets/og-image.png" />
<meta name="twitter:image:alt" content="Halen: at your cursor, all on-device." />
<link rel="icon" type="image/svg+xml" href="assets/halen-icon.svg" />
<link rel="apple-touch-icon" href="assets/halen-icon.svg" />
<!-- Structured data: identifies the page as a downloadable SoftwareApplication
so Google can render a rich result with the icon, price, OS, and direct
download link instead of a plain blue link. -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Halen",
"description": "On-device AI plugin platform for macOS. Writing assistance, prompt polish, focus tools — all running locally on Apple Silicon.",
"applicationCategory": "ProductivityApplication",
"operatingSystem": "macOS 14+",
"url": "https://halen.dev/",
"downloadUrl": "https://github.com/lukataylo/halen/releases/latest",
"softwareVersion": "0.3.0",
"image": "https://halen.dev/assets/og-image.png",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"publisher": {
"@type": "Organization",
"name": "Halen Labs",
"url": "https://halen.dev/"
}
}
</script>
<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=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" />
<style>
:root {
--bg: #ffffff;
--ink: #0A0A0A;
--ink-soft: #2A2A2A;
--muted: #8A8A8A;
--quiet: #B8B8B8;
--line: rgba(10,10,10,0.08);
--accent: #1635D6;
--accent-strong: #0F2BB8;
--accent-soft: #EBEEFF;
--sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
--mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
--ease: cubic-bezier(0.22, 1, 0.36, 1);
--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
--spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); }
body {
font-family: var(--sans);
font-size: 16px;
line-height: 1.5;
letter-spacing: -0.011em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
}
::selection { background: var(--accent); color: #fff; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
/* nav */
.nav {
position: fixed; top: 0; left: 0; right: 0;
z-index: 50;
display: flex; align-items: center; justify-content: space-between;
padding: 18px 28px;
background: rgba(255,255,255,0.96);
backdrop-filter: blur(18px) saturate(160%);
-webkit-backdrop-filter: blur(18px) saturate(160%);
border-bottom: 1px solid transparent;
opacity: 0;
transform: translateY(-100%);
transition: opacity 0.6s var(--ease), transform 0.7s var(--ease), border-color 0.4s var(--ease);
pointer-events: none;
}
.nav.show { opacity: 1; transform: translateY(0); pointer-events: auto; border-bottom-color: var(--line); }
.nav .brand { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15.5px; letter-spacing: -0.018em; }
.nav .brand img { width: 22px; height: 22px; }
.nav .links { display: flex; gap: 28px; }
.nav .links a { font-size: 13.5px; color: var(--ink-soft); font-weight: 500; transition: color 0.2s var(--ease); }
.nav .links a:hover { color: var(--accent); }
.nav .dl-btn {
display: inline-flex; align-items: center; gap: 8px;
background: var(--ink); color: #fff;
padding: 9px 14px 9px 12px;
border-radius: 999px;
font-size: 13px; font-weight: 500;
transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.nav .dl-btn:hover { transform: translateY(-1px); background: var(--accent); }
.nav .dl-btn svg { width: 12px; height: 12px; }
/* hero */
.hero {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 80px 28px 120px;
position: relative;
text-align: center;
gap: 56px;
}
.brandmark {
width: clamp(72px, 8vw, 112px);
height: clamp(72px, 8vw, 112px);
opacity: 0;
transform: scale(0.7);
animation: brandIn 1.2s var(--spring) 0.1s forwards;
}
@keyframes brandIn { to { opacity: 1; transform: scale(1); } }
.brandmark img { width: 100%; height: 100%; display: block; }
.hero h1 {
font-size: clamp(54px, 8.4vw, 132px);
font-weight: 600;
line-height: 1.0;
letter-spacing: -0.045em;
max-width: 16ch;
margin: 0;
}
.hero h1 .w {
display: inline-block;
opacity: 0;
transform: translateY(40px);
filter: blur(10px);
animation: rise 1.2s var(--ease) forwards;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); filter: blur(0); } }
.hero h1 .w1 { animation-delay: 0.20s; }
.hero h1 .w2 { animation-delay: 0.30s; }
.hero h1 .w3 { animation-delay: 0.40s; }
.hero h1 .w4 { animation-delay: 0.50s; }
.hero h1 .w5 { animation-delay: 0.60s; }
.hero h1 .w6 { animation-delay: 0.70s; }
.hero h1 .w7 { animation-delay: 0.80s; }
.hero h1 .ac { color: var(--accent); }
.hero h1 .grp { display: inline-block; white-space: nowrap; }
.hero h1 .dot {
display: inline-block;
width: 0.14em; height: 0.14em;
border-radius: 50%;
background: var(--accent);
vertical-align: 0.1em;
margin-left: 0.04em;
transform: scale(0);
animation: pop 0.6s var(--spring) 1.4s forwards;
}
@keyframes pop { to { transform: scale(1); } }
.cue {
position: absolute; bottom: 36px;
left: 50%; transform: translateX(-50%);
font-family: var(--mono);
font-size: 10.5px;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--muted);
display: flex; flex-direction: column; align-items: center; gap: 12px;
opacity: 0;
animation: rise 1.2s var(--ease) 1.8s forwards;
}
.cue .line {
width: 1px; height: 36px;
background: linear-gradient(to bottom, transparent, var(--ink) 50%, transparent);
animation: cue-pulse 2.4s ease-in-out infinite;
}
@keyframes cue-pulse {
0%, 100% { transform: scaleY(0.3) translateY(-12px); opacity: 0.3; }
50% { transform: scaleY(1) translateY(0); opacity: 1; }
}
/* story */
.story {
max-width: 760px;
margin: 0 auto;
padding: 60px 32px 160px;
display: flex;
flex-direction: column;
align-items: flex-start;
text-align: left;
gap: 96px;
}
.stanza {
display: flex;
flex-direction: column;
gap: 36px;
width: 100%;
}
.st {
font-size: clamp(28px, 2.4vw, 36px);
font-weight: 400;
line-height: 1.38;
letter-spacing: -0.022em;
color: var(--ink);
margin: 0;
width: 100%;
text-wrap: balance;
transform: translateY(28px);
transition: transform 1.2s var(--ease-out);
}
.st.in { transform: translateY(0); }
/* per-word scroll-tracked reveal */
.st .w, .st .kw {
display: inline;
opacity: 0.22;
color: var(--ink);
transition: opacity 0.55s var(--ease);
}
.st .w.read, .st .kw.read { opacity: 1; }
.st-end { margin-top: 80px; align-self: center; text-align: center; }
.st-brand {
font-size: clamp(64px, 10vw, 160px);
font-weight: 700;
letter-spacing: -0.045em;
line-height: 1;
color: var(--accent);
opacity: 0;
transform: translateY(28px);
transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
display: inline-flex;
/* Align the Halen mark to the TOP of the cap-height of "Halen" rather
than its centre — sits up near the H's apex, the way the real
overlay-indicator sits at the top of a line of text. */
align-items: flex-start;
gap: 0.18em;
}
.st-brand.in { opacity: 1; transform: translateY(0); }
.st-brand .mark {
display: inline-block;
width: 0.78em; height: 0.78em;
/* Tiny nudge down so the mark's optical centre lines up with the
H's top serif/cap rather than floating above it. Eyeballed against
the screenshot the user shared from Notes. */
margin-top: 0.06em;
}
.st-brand .mark img { width: 100%; height: 100%; display: block; }
/* keyword highlights — distinct treatments */
.kw {
position: relative;
cursor: default;
font-weight: 500;
padding: 0 2px;
border-bottom: 1.5px dotted rgba(22,53,214,0.55);
transition: color 0.25s var(--ease), border-bottom-color 0.25s var(--ease), border-bottom-style 0.25s var(--ease);
}
.kw:hover {
color: var(--accent);
border-bottom-color: var(--accent);
border-bottom-style: solid;
}
/* keyword variant: caret — adds a blinking | after the word on hover */
.kw[data-swarm="caret"]::after {
content: "";
display: inline-block;
width: 2px; height: 0.85em;
background: var(--accent);
margin-left: 5px;
vertical-align: -2px;
opacity: 0;
transform: scaleY(0.4);
transition: opacity 0.2s, transform 0.3s var(--spring);
}
.kw[data-swarm="caret"]:hover::after {
opacity: 1;
transform: scaleY(1);
animation: blink 1s steps(2,start) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
/* keyword variant: pulse — just turns the word blue, no overlay */
.kw[data-swarm="pulse"]:hover { color: var(--accent); }
.kw[data-swarm="pulse"]:hover { mix-blend-mode: normal; }
.ac { color: var(--accent); }
/* swarm stage */
.swarm-stage {
position: fixed; inset: 0;
z-index: 60; pointer-events: none;
overflow: hidden;
}
.swarm-item {
position: absolute;
transform: translate(-50%, -50%) scale(0) rotate(0deg);
opacity: 0;
transition: transform 0.9s var(--spring), opacity 0.4s var(--ease);
will-change: transform, opacity;
pointer-events: none;
}
/* app squircles */
.swarm-app {
width: 64px; height: 64px;
border-radius: 16px;
display: flex; align-items: center; justify-content: center;
font-size: 32px;
line-height: 1;
box-shadow: 0 10px 28px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.03);
}
.swarm-app .badge {
position: absolute;
top: -3px; right: -4px;
width: 16px; height: 16px;
border-radius: 50%;
background: var(--accent);
border: 2px solid #fff;
display: flex; align-items: center; justify-content: center;
}
.swarm-app .badge::after { content: ""; width: 4px; height: 4px; background: #fff; border-radius: 50%; }
.swarm-app .lbl {
position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%);
font-size: 10px; font-weight: 500;
color: var(--muted); white-space: nowrap;
font-family: var(--mono); letter-spacing: 0.04em;
}
/* model chips */
.swarm-model {
font-family: var(--mono); font-size: 12.5px; font-weight: 500;
padding: 7px 12px; border-radius: 8px;
white-space: nowrap;
box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}
.swarm-model.dark { background: var(--ink); color: #fff; }
.swarm-model.tag { background: #fff; border: 1px solid var(--line); color: var(--ink-soft); }
.swarm-model.blue { background: var(--accent); color: #fff; }
/* clouds — drift upward, fade */
.swarm-cloud {
width: 56px; height: 38px;
color: rgba(140, 150, 170, 0.95);
transition: transform 2.4s cubic-bezier(0.2, 0.6, 0.2, 1), opacity 2.4s ease-out;
}
.swarm-cloud svg { width: 100%; height: 100%; display: block; }
/* subscription cards — plain white pills, line-through, fade */
.swarm-sub {
background: #fff;
border: 1px solid var(--line);
border-radius: 999px;
padding: 8px 14px;
font-family: var(--mono);
font-size: 12px;
color: var(--ink);
box-shadow: 0 4px 14px rgba(0,0,0,0.06);
white-space: nowrap;
transition: text-decoration-color 0.4s var(--ease);
}
.swarm-sub .price { color: #C7352D; font-weight: 600; margin-left: 8px; }
.swarm-sub.struck {
text-decoration: line-through;
text-decoration-color: #C7352D;
text-decoration-thickness: 2px;
color: rgba(10,10,10,0.55);
}
.swarm-sub.struck .price { color: rgba(199,53,45,0.55); }
/* pulse — large halen mark at center */
.pulse-stage {
position: fixed; inset: 0;
z-index: 55; pointer-events: none;
display: flex; align-items: center; justify-content: center;
}
.pulse-mark {
width: 70vmin; height: 70vmin;
background: var(--accent);
-webkit-mask: url("assets/halen-icon.svg") center/contain no-repeat;
mask: url("assets/halen-icon.svg") center/contain no-repeat;
opacity: 0;
transform: scale(0.7);
transition: opacity 0.6s var(--ease), transform 0.9s var(--spring);
}
.pulse-mark.show { opacity: 0.08; transform: scale(1); }
.pulse-mark.show.beat { animation: beat 2.4s ease-in-out infinite; }
@keyframes beat {
0%, 100% { opacity: 0.06; transform: scale(1); }
50% { opacity: 0.12; transform: scale(1.04); }
}
/* dotted aside (italicized line group for the rhythmic stanzas) */
.stack {
display: flex; flex-direction: column;
gap: 0;
}
/* DEMO */
.demo {
padding: 140px 28px 160px;
max-width: 1160px;
margin: 0 auto;
}
.demo-head { text-align: center; margin-bottom: 80px; }
.demo-head .eyebrow {
font-family: var(--mono); font-size: 11px;
letter-spacing: 0.22em; text-transform: uppercase;
color: var(--accent);
margin-bottom: 22px;
display: inline-flex; align-items: center; gap: 10px;
}
.demo-head .eyebrow .pulse {
width: 7px; height: 7px; background: var(--accent); border-radius: 50%;
animation: dotpulse 2s ease-out infinite;
}
@keyframes dotpulse {
0% { box-shadow: 0 0 0 0 rgba(22,53,214,0.55); }
70% { box-shadow: 0 0 0 9px rgba(22,53,214,0); }
100% { box-shadow: 0 0 0 0 rgba(22,53,214,0); }
}
.demo-head h2 {
font-size: clamp(36px, 4.6vw, 64px);
font-weight: 600;
letter-spacing: -0.035em;
line-height: 1.05;
max-width: 18ch;
margin: 0 auto 16px;
}
.demo-head p { font-size: 16.5px; color: var(--muted); max-width: 52ch; margin: 0 auto; line-height: 1.55; }
.stage { display: grid; grid-template-columns: 1fr 1.55fr; gap: 28px; align-items: start; }
.rail h4 {
font-family: var(--mono); font-size: 10.5px;
letter-spacing: 0.2em; text-transform: uppercase;
color: var(--muted);
margin-bottom: 14px; padding-left: 4px;
}
.rail .list { display: flex; flex-direction: column; gap: 6px; }
.rail .group-head {
font-family: var(--mono); font-size: 10px;
letter-spacing: 0.2em; text-transform: uppercase;
color: var(--quiet);
padding: 14px 4px 4px;
}
.rail .group-head:first-child { padding-top: 0; }
.snip {
display: block; width: 100%;
background: transparent;
border: 1px solid var(--line);
border-radius: 14px;
padding: 14px 16px;
text-align: left;
transition: all 0.3s var(--ease);
position: relative; overflow: hidden;
}
.snip:hover { border-color: rgba(22,53,214,0.25); background: rgba(22,53,214,0.015); transform: translateY(-1px); }
.snip.active { background: #fff; border-color: rgba(22,53,214,0.35); box-shadow: 0 8px 30px rgba(22,53,214,0.08), 0 0 0 1px rgba(22,53,214,0.06); }
.snip .row1 { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3px; gap: 8px; }
.snip .key { font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.snip .key.tx::before { content: "✓"; color: #1F9E5A; font-weight: 700; }
.snip .key.sg::before { content: "!"; color: #C7352D; font-weight: 700; }
.snip .key.sty::before { content: "✎"; color: #8A4BB8; font-weight: 700; }
.snip .ms { font-family: var(--mono); font-size: 10.5px; color: var(--muted); letter-spacing: 0.04em; }
.snip .label { font-size: 13.5px; font-weight: 500; color: var(--ink); margin-bottom: 1px; }
.snip .desc { font-size: 12.5px; color: var(--muted); line-height: 1.45; }
.snip .bar { position: absolute; bottom: 0; left: 0; height: 2px; background: var(--accent); width: 0%; border-radius: 0 2px 2px 0; }
/* yellow note field */
.field {
background: #FFFFFF;
border: 1px solid var(--line);
border-radius: 10px;
overflow: hidden;
box-shadow:
0 24px 60px rgba(0,0,0,0.10),
0 6px 14px rgba(0,0,0,0.05),
0 0 0 1px rgba(0,0,0,0.02);
position: relative;
}
.field-top {
display: flex; align-items: center; gap: 10px;
padding: 11px 14px;
background: linear-gradient(180deg, #F2F1ED 0%, #E8E6E0 100%);
border-bottom: 1px solid rgba(0,0,0,0.10);
position: relative; z-index: 1;
}
.field-top .dots { display: flex; gap: 6px; }
.field-top .dot { width: 11px; height: 11px; border-radius: 50%; box-shadow: 0 0 0 0.5px rgba(0,0,0,0.08); }
.field-top .dot.r { background: #FF5F57; }
.field-top .dot.y { background: #FEBC2E; }
.field-top .dot.g { background: #28C840; }
.field-top .title { margin-left: 10px; font-size: 12.5px; color: rgba(0,0,0,0.55); font-weight: 500; }
.field-top .right { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px; color: rgba(0,0,0,0.4); letter-spacing: 0.04em; }
.field-top .right .pulse { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: dotpulse 2s ease-out infinite; }
/* Outlook for Mac compose window */
.field-toolbar {
display: flex; align-items: center; gap: 4px;
padding: 8px 12px;
background: #FAF9F8;
border-bottom: 1px solid rgba(0,0,0,0.08);
}
.field-toolbar .send {
background: #0F6CBD;
color: #fff;
font-size: 13px;
font-weight: 600;
padding: 6px 16px;
border-radius: 4px;
border: none;
display: inline-flex; align-items: center; gap: 7px;
font-family: var(--sans);
margin-right: 8px;
letter-spacing: -0.005em;
}
.field-toolbar .send svg { width: 13px; height: 13px; }
.field-toolbar .send .car { font-size: 11px; opacity: 0.85; margin-left: 2px; }
.field-toolbar .tbtn {
display: inline-flex; align-items: center; gap: 5px;
padding: 5px 9px;
border-radius: 4px;
font-size: 12.5px;
color: rgba(0,0,0,0.7);
font-family: var(--sans);
background: transparent;
border: none;
}
.field-toolbar .tbtn svg { width: 13px; height: 13px; opacity: 0.7; }
.field-toolbar .tbtn .car { font-size: 9px; opacity: 0.5; margin-left: 2px; }
.field-toolbar .sep { width: 1px; height: 18px; background: rgba(0,0,0,0.1); margin: 0 4px; }
.field-toolbar .spacer { flex: 1; }
.field-toolbar .right-icon {
width: 26px; height: 26px;
display: inline-flex; align-items: center; justify-content: center;
border-radius: 4px;
color: rgba(0,0,0,0.55);
}
.field-toolbar .right-icon svg { width: 14px; height: 14px; }
/* email header rows (From / To / Cc / Subject) */
.field-headers {
background: #fff;
padding: 4px 0;
}
.field-row {
display: flex;
padding: 6px 18px;
font-size: 13px;
align-items: center;
gap: 12px;
border-bottom: 1px solid rgba(0,0,0,0.06);
}
.field-row .lbl {
width: 48px;
flex-shrink: 0;
color: rgba(0,0,0,0.45);
font-size: 12.5px;
}
.field-row .val {
color: var(--ink);
flex: 1;
}
.field-row .val.subject { font-weight: 600; font-size: 14px; }
.field-row .val .chip {
display: inline-flex; align-items: center; gap: 7px;
background: #F3F2F1;
padding: 3px 9px 3px 3px;
border-radius: 999px;
font-size: 12.5px;
color: var(--ink);
font-weight: 500;
}
.field-row .val .chip .avatar {
width: 22px; height: 22px;
border-radius: 50%;
background: linear-gradient(135deg, #4F8EF7, #1F5EE0);
color: #fff;
display: inline-flex; align-items: center; justify-content: center;
font-size: 10.5px;
font-weight: 600;
font-family: var(--sans);
}
.field-row .end {
font-size: 12px;
color: rgba(0,0,0,0.4);
font-family: var(--sans);
display: inline-flex; align-items: center; gap: 6px;
}
.field-row .end .ic {
width: 18px; height: 18px;
display: inline-flex; align-items: center; justify-content: center;
opacity: 0.6;
}
.field-row .end .ic svg { width: 12px; height: 12px; }
.field-body {
padding: 22px 28px 36px;
min-height: 200px;
position: relative;
font-family: 'Inter', sans-serif;
font-size: 16.5px;
line-height: 1.5;
letter-spacing: -0.005em;
color: #1A1A1A;
z-index: 1;
background: #FFFFFF;
}
.meta { display: none; }
.field-body .note-title { display: none; }
.draft .snip-tag {
display: inline-block;
font-family: var(--mono); font-size: 17px;
background: rgba(22,53,214,0.12);
color: var(--accent);
padding: 2px 8px; border-radius: 6px;
border: 1px solid rgba(22,53,214,0.32);
transition: all 0.35s var(--ease);
vertical-align: 1px;
}
.draft .snip-tag.expanding { background: rgba(22,53,214,0.22); border-color: rgba(22,53,214,0.5); transform: scale(1.04); }
.draft .snip-tag.gone { opacity: 0; transform: scale(0.4); width: 0; padding: 0; border-width: 0; margin: 0; }
.draft .expanded { background: linear-gradient(180deg, transparent 70%, rgba(22,53,214,0.18) 70%); transition: background 1.2s var(--ease) 0.3s; }
.draft .typo { display: inline-block; position: relative; color: #D24F3F; transition: color 0.3s var(--ease); }
.draft .typo::after {
content: ""; position: absolute; left: 0; right: 0; top: 55%;
height: 1.5px; background: #D24F3F;
transform: scaleX(0); transform-origin: left;
transition: transform 0.28s var(--ease);
}
.draft .typo.struck::after { transform: scaleX(1); }
.draft .fixed-word {
display: inline-block; color: #1A1A1A;
background: linear-gradient(180deg, transparent 72%, rgba(22,53,214,0.18) 72%);
transition: background 1.4s var(--ease) 0.5s;
animation: fixedIn 0.35s var(--ease);
}
@keyframes fixedIn { from { transform: translateY(-2px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.guard-card {
position: absolute; bottom: 18px; left: 18px; right: 18px;
background: rgba(255,255,255,0.96);
backdrop-filter: blur(20px) saturate(160%);
-webkit-backdrop-filter: blur(20px) saturate(160%);
border: 1px solid rgba(199,53,45,0.32);
border-radius: 12px;
padding: 12px 14px;
display: flex; align-items: center; gap: 12px;
box-shadow: 0 18px 40px rgba(199,53,45,0.16), 0 0 0 1px rgba(199,53,45,0.04);
font-size: 13.5px;
opacity: 0; transform: translateY(12px);
transition: opacity 0.42s var(--spring), transform 0.5s var(--spring);
z-index: 10; pointer-events: none;
}
.guard-card.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.guard-card .icon { width: 34px; height: 34px; background: rgba(199,53,45,0.12); color: #C7352D; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 17px; flex-shrink: 0; }
.guard-card .txt { flex: 1; }
.guard-card .txt strong { font-weight: 500; color: var(--ink); }
.guard-card .txt strong span { color: #C7352D; }
.guard-card .txt em { color: var(--muted); font-style: normal; font-size: 11px; display: block; font-family: var(--mono); letter-spacing: 0.04em; margin-top: 2px; }
.guard-card .actions { display: flex; gap: 6px; }
.guard-card .actions button { padding: 8px 12px; font-size: 12.5px; font-weight: 500; border-radius: 7px; border: 1px solid var(--line); background: transparent; cursor: pointer; color: var(--ink); transition: all 0.2s var(--ease); }
.guard-card .actions button.primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.guard-card .actions button:hover { transform: translateY(-1px); }
.guard-card .actions button.primary:hover { background: var(--accent-strong); }
.caret { display: inline-block; width: 2px; height: 22px; background: var(--accent); vertical-align: -4px; margin-left: 1px; animation: blink 1s steps(2,start) infinite; }
/* The Halen indicator that sits beside the user's caret in the real app
(see OverlayController.swift). Painted with the icon SVG as a mask so
it inherits the cobalt accent colour and matches the rest of the page
instead of carrying its own palette. Hidden by default; the demo JS
adds .show to fade it in alongside whatever's being typed.
`vertical-align: text-top` parks the mark at the top of the font's
cap-height instead of riding the baseline — matches how it looks in
the real app screenshot the user shared (mark sits roughly at the
top of the capital letters, not mid-line). */
.halen-cursor {
display: inline-block;
width: 16px; height: 16px;
margin-left: 6px;
vertical-align: text-top;
background: var(--accent);
-webkit-mask: url("assets/halen-icon.svg") center/contain no-repeat;
mask: url("assets/halen-icon.svg") center/contain no-repeat;
filter: drop-shadow(0 1px 2px rgba(22,53,214,0.35));
opacity: 0;
transform: scale(0.6);
transition: opacity 0.28s var(--ease), transform 0.34s var(--spring);
}
.halen-cursor.show { opacity: 1; transform: scale(1); }
.pop {
position: absolute;
display: flex; align-items: center; gap: 11px;
background: rgba(255,255,255,0.94);
backdrop-filter: blur(16px);
border: 1px solid rgba(22,53,214,0.22);
border-radius: 12px;
padding: 10px 14px 10px 11px;
box-shadow: 0 16px 40px rgba(22,53,214,0.12), 0 0 0 1px rgba(22,53,214,0.04);
font-size: 12.5px; color: var(--ink);
white-space: nowrap; z-index: 5;
opacity: 0;
transform: translateY(8px) scale(0.92);
transition: opacity 0.34s var(--spring), transform 0.45s var(--spring);
pointer-events: none;
}
.pop.show { opacity: 1; transform: translateY(0) scale(1); }
.pop .mark { width: 17px; height: 17px; }
.pop .msg .l { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.06em; display: block; margin-bottom: 1px; }
.pop .msg .v { font-weight: 500; }
.pop .kbd { font-family: var(--mono); font-size: 10.5px; color: var(--muted); border: 1px solid var(--line); padding: 2px 6px; border-radius: 4px; }
.stage-foot { margin-top: 24px; text-align: center; font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }
.stage-foot .acc { color: var(--accent); }
/* CTA (cobalt) */
.cta {
position: relative;
padding: 160px 28px 140px;
text-align: center;
background: var(--accent);
color: #fff;
overflow: hidden;
}
/* ---- CTA hierarchy elements ---------------------------------------- */
/* z-index:2 puts the whole content stack above the floating cards (z=0)
and the radial glows from .cta::after (z=auto). The cards explode
from behind it. */
.cta-content {
position: relative; z-index: 2;
display: flex; flex-direction: column; align-items: center;
}
/* Eyebrow: small mono pill above the headline. Anchors the section as
"this is the download" without competing with the headline's weight. */
.cta-eyebrow {
font-family: var(--mono);
font-size: 11px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: rgba(255,255,255,0.6);
padding: 7px 16px;
border: 1px solid rgba(255,255,255,0.18);
border-radius: 999px;
margin-bottom: 32px;
display: inline-flex; align-items: center; gap: 8px;
}
.cta-eyebrow .dot {
width: 6px; height: 6px; border-radius: 50%;
background: #6FE6A0;
box-shadow: 0 0 8px rgba(111,230,160,0.6);
}
/* (No supporting subhead — the headline flows straight into the button
for a cleaner stack.) */
/* (Trust strip removed — the spec chips already do the "this is the
real thing" job; the trust line was over-promising.) */
.cta::before {
content: "";
position: absolute;
top: -160px; left: 0; right: 0;
height: 160px;
background: linear-gradient(to bottom, #fff 0%, var(--accent) 100%);
pointer-events: none;
}
.cta::after {
content: "";
position: absolute;
inset: 0;
background:
radial-gradient(ellipse at 20% 0%, rgba(255,255,255,0.10), transparent 50%),
radial-gradient(ellipse at 80% 100%, rgba(0,0,0,0.18), transparent 55%);
pointer-events: none;
}
.cta > * { position: relative; z-index: 1; }
.cta .stamp {
font-family: var(--mono); font-size: 11px;
letter-spacing: 0.24em; text-transform: uppercase;
color: rgba(255,255,255,0.7);
margin-bottom: 36px;
display: inline-flex; align-items: center; gap: 12px;
}
.cta .stamp::before, .cta .stamp::after { content: ""; width: 26px; height: 1px; background: rgba(255,255,255,0.45); }
.cta h2 {
/* Match the hero h1 size scale so both display headlines on the page
have the same typographic weight (clamp values copied verbatim). */
font-size: clamp(54px, 8.4vw, 132px);
font-weight: 600;
letter-spacing: -0.045em;
line-height: 1.0;
margin-bottom: 24px;
max-width: 16ch;
margin-left: auto; margin-right: auto;
color: #fff;
}
/* `quiet` keeps the dimmed colour for vertical hierarchy between the two
lines, but no longer italic — same weight and posture as the line above. */
.cta h2 .quiet { color: rgba(255,255,255,0.55); font-weight: 600; }
.download-stack { display: inline-flex; flex-direction: column; align-items: center; gap: 14px; }
/* Push the spec chips further from the button so they read as a
separate "fine-print" group, not a continuation of the CTA. */
.download-stack .dl-specs { margin-top: 24px; }
/* Minimal pill button — keep the focal weight on the headline + the
floating mockup cards. White pill, cobalt icon disc, short label.
Width fits the content; no spec metadata stuffed inside (it lives
in the chips row below). */
.dl {
display: inline-flex; align-items: center; gap: 12px;
background: #fff; color: var(--ink);
padding: 12px 22px 12px 12px;
border-radius: 999px;
font-size: 15px; font-weight: 500;
transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
box-shadow: 0 18px 40px rgba(0,0,0,0.20);
}
.dl:hover { transform: translateY(-2px); box-shadow: 0 24px 50px rgba(0,0,0,0.28); }
.dl .ic {
width: 30px; height: 30px;
background: var(--accent);
border-radius: 50%;
display: inline-flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.dl .ic svg { width: 13px; height: 13px; }
/* Spec chips row beneath the button — three quiet pills with the
only-the-essentials info. Same mono caps treatment as the
eyebrow/trust strip so the whole vertical stack reads as one
typographic family. */
.dl-specs {
display: inline-flex; gap: 8px;
font-family: var(--mono);
font-size: 10.5px;
letter-spacing: 0.14em;
text-transform: uppercase;
}
.dl-specs .chip {
padding: 5px 12px;
border: 1px solid rgba(255,255,255,0.18);
border-radius: 999px;
color: rgba(255,255,255,0.65);
background: rgba(255,255,255,0.04);
}
.cta .bg-mark { display: none; }
/* ============ CTA floating cards ============ */
/* Six product-mockup windows that drift gently around the headline +
download button. Pure decoration: pointer-events:none so they never
eat clicks meant for the CTA itself. Hidden below 1100px so the
button stays the focal point on tablets/phones (the cards would
crash into the headline at narrower widths). */
.cta-cards {
position: absolute;
inset: 0;
pointer-events: none;
overflow: hidden;
z-index: 0;
}
.cta-card {
position: absolute;
background: #fff;
color: var(--accent);
border-radius: 14px;
box-shadow: 0 22px 60px rgba(0,0,0,0.22), 0 0 0 1px rgba(255,255,255,0.04);
font-family: 'JetBrains Mono', ui-monospace, monospace;
font-size: 12.5px;
overflow: hidden;
will-change: transform;
}
.cta-card .cc-titlebar {
display: flex; align-items: center; gap: 8px;
padding: 10px 12px;
border-bottom: 1px solid rgba(22,53,214,0.08);
}
.cta-card .cc-dots { display: inline-flex; gap: 5px; }
.cta-card .cc-dots span {
width: 7px; height: 7px; border-radius: 50%;
background: rgba(22,53,214,0.22);
}
.cta-card .cc-title {
font-size: 11.5px; font-weight: 500; color: var(--accent);
letter-spacing: 0.02em;
}
.cta-card .cc-end {
margin-left: auto; color: rgba(22,53,214,0.45);
display: inline-flex; gap: 3px;
}
.cta-card .cc-end span {
width: 3px; height: 3px; border-radius: 50%;
background: currentColor;
}
.cta-card .cc-body { padding: 14px 14px 12px; }
/* Typing card — top-left */
.cta-card.c-typing {
width: 290px; top: 6%; left: 3%;
animation: ctaFloatA 7s ease-in-out infinite;
}
.cta-card.c-typing .cc-text {
font-size: 13px; line-height: 1.5;
min-height: 64px;
}
.cta-card.c-typing .cc-caret {
display: inline-block; width: 6px; height: 14px;
background: var(--accent); vertical-align: -2px;
margin-left: 1px;
animation: ctaCaret 1s steps(2,start) infinite;
}
.cta-card.c-typing .cc-foot {
display: flex; justify-content: space-between;
font-size: 10.5px; color: rgba(22,53,214,0.55);
border-top: 1px solid rgba(22,53,214,0.06);
padding-top: 8px; margin-top: 10px;
}
/* Local Assistant — left middle */
.cta-card.c-assistant {
width: 270px; top: 42%; left: 6%;
animation: ctaFloatB 9s ease-in-out infinite;
}
.cta-card.c-assistant .cc-greet {
font-size: 13px; padding: 4px 0 10px;
color: var(--accent); font-weight: 500;
}
.cta-card.c-assistant .cc-list { list-style: none; padding: 0; margin: 0; font-size: 11.5px; }
.cta-card.c-assistant .cc-list li {
display: flex; align-items: center; gap: 8px;
padding: 8px 0;
border-top: 1px solid rgba(22,53,214,0.06);
color: rgba(22,53,214,0.85);
}
.cta-card.c-assistant .cc-list li .ic {
width: 14px; opacity: 0.55; text-align: center;
}
/* Model card — bottom-left */
.cta-card.c-model {
width: 210px; bottom: 8%; left: 2%;
animation: ctaFloatC 8s ease-in-out infinite;
}
.cta-card.c-model .cc-radio { padding: 4px 0; }
.cta-card.c-model .cc-radio div {
display: flex; align-items: center; gap: 9px;
padding: 7px 0; font-size: 12px;
color: rgba(22,53,214,0.7);
}
.cta-card.c-model .cc-radio .dot {
width: 11px; height: 11px; border-radius: 50%;
border: 1.4px solid rgba(22,53,214,0.4);
flex-shrink: 0;
}
.cta-card.c-model .cc-radio div.active { color: var(--accent); }
.cta-card.c-model .cc-radio div.active .dot {
border-color: var(--accent);
background:
radial-gradient(circle, var(--accent) 35%, transparent 38%);
}
/* Tone card — top-right */
.cta-card.c-tone {