-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTorChatPage.html
More file actions
2720 lines (2470 loc) · 133 KB
/
Copy pathTorChatPage.html
File metadata and controls
2720 lines (2470 loc) · 133 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" itemscope itemtype="https://schema.org/WebPage">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Tor Chat - Self-hosted E2EE chat over Tor Hidden Service</title>
<meta name="description"
content="OffCode Tor Chat: self-hosted Tor chat with browser WebCrypto AES-GCM. Password rooms are server-blind E2EE; open rooms are public encrypted channels. SignalR relay, SQLCipher, Server Manager, optional Full Vanguards.">
<meta name="author" content="OffCrypt">
<meta name="last-modified" content="2026-07-23">
<meta name="keywords"
content="Tor Chat, TorChat, torchat, onion chat, .onion links, E2EE chat, Tor Hidden Service, SignalR, WebCrypto, AES-GCM, SQLCipher, Vanguards, OffCode, anonymous chat">
<meta name="robots" content="index, follow">
<meta property="og:type" content="website">
<meta property="og:locale" content="en_US">
<meta property="og:url" content="https://www.dev-offcode.com/TorChatPage.html">
<meta property="og:title" content="Tor Chat - Self-hosted E2EE chat over Tor">
<meta property="og:description"
content="Self-hosted Tor chat: password rooms are server-blind E2EE; open rooms are public encrypted channels. .onion HS, WebCrypto AES-GCM, Server Manager.">
<meta property="og:image" content="https://www.dev-offcode.com/TorChat1.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="OffCode Tor Chat interface">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@OffCryptAndroid">
<meta name="twitter:creator" content="@OffCryptAndroid">
<meta name="twitter:url" content="https://www.dev-offcode.com/TorChatPage.html">
<meta name="twitter:title" content="Tor Chat - Self-hosted E2EE chat over Tor">
<meta name="twitter:description"
content="Tor-only chat: password-protected server-blind E2EE, open public rooms, WebCrypto, SQLCipher, Server Manager, optional Full Vanguards.">
<meta name="twitter:image" content="https://www.dev-offcode.com/TorChat1.png">
<meta property="og:see_also" content="https://www.instagram.com/off.crypt86/">
<meta property="og:see_also" content="https://www.youtube.com/@OffCrypt">
<meta name="instagram:site" content="@off.crypt86">
<meta name="youtube:channel" content="@OffCrypt">
<link rel="canonical" href="https://www.dev-offcode.com/TorChatPage.html">
<link rel="alternate" hreflang="en" href="https://www.dev-offcode.com/TorChatPage.html">
<link rel="alternate" hreflang="x-default" href="https://www.dev-offcode.com/TorChatPage.html">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<link rel="preload" href="styles.css?v=2.9.3" as="style">
<link rel="preload" href="TorChat1.png" as="image">
<link rel="preload" href="TorManager1.png" as="image">
<link rel="preload" href="TorManager2.png" as="image">
<meta name="theme-color" content="#c45c26">
<meta name="msapplication-TileColor" content="#c45c26">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"@id": "https://www.dev-offcode.com/TorChatPage.html#software",
"name": "OffCode Tor Chat",
"applicationCategory": "CommunicationApplication, SecurityApplication",
"operatingSystem": "Windows (host); Linux/Docker (host); Tor Browser (clients)",
"description": "Self-hosted Tor Hidden Service chat. Browser WebCrypto AES-GCM with PBKDF2-v2 (600k). Password rooms are server-blind E2EE; open rooms use a room-id-derived key. Creator Settings (close/slow mode/lock/delete), SignalR relay, SQLCipher, Server Manager or Docker.",
"url": "https://www.dev-offcode.com/TorChatPage.html",
"image": "https://www.dev-offcode.com/TorChat1.png",
"offers": [
{
"@type": "Offer",
"name": "Free binary release",
"availability": "https://schema.org/ComingSoon",
"price": "0",
"priceCurrency": "USD"
},
{
"@type": "Offer",
"name": "Developer License - Source Code",
"availability": "https://schema.org/ComingSoon",
"price": "49",
"priceCurrency": "USD"
}
],
"inLanguage": ["en"],
"author": {
"@type": "Person",
"@id": "https://www.dev-offcode.com/#author",
"name": "EmptyCode0x86",
"url": "https://www.dev-offcode.com",
"sameAs": [
"https://twitter.com/OffCryptAndroid",
"https://www.instagram.com/off.crypt86/",
"https://www.youtube.com/@OffCrypt",
"https://github.com/emptycode0x86",
"https://bsky.app/profile/off-crypt86.bsky.social",
"https://www.linkedin.com/in/off-crypt-b94175382/"
]
},
"publisher": {
"@type": "Organization",
"@id": "https://www.dev-offcode.com/#organization",
"name": "OffCrypt",
"url": "https://www.dev-offcode.com",
"logo": {
"@type": "ImageObject",
"url": "https://www.dev-offcode.com/TorChat1.png"
},
"sameAs": [
"https://twitter.com/OffCryptAndroid",
"https://www.instagram.com/off.crypt86/",
"https://www.youtube.com/@OffCrypt",
"https://bsky.app/profile/off-crypt86.bsky.social",
"https://www.linkedin.com/in/off-crypt-b94175382/"
]
},
"datePublished": "2026-07-12",
"dateModified": "2026-07-21"
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is OffCode Tor Chat?",
"acceptedAnswer": {
"@type": "Answer",
"text": "OffCode Tor Chat is a self-hosted Tor-only realtime chat. Guests open your .onion in Tor Browser. Messages are encrypted in the browser with WebCrypto AES-GCM; ChatServer relays and stores ciphertext. Password-protected rooms are server-blind E2EE; open rooms are intentional public channels (key derived from the room id)."
}
},
{
"@type": "Question",
"name": "Do I host Tor Chat myself?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Server Manager on Windows starts ChatServer (health check) then a Tor v3 Hidden Service. Optional Full Vanguards hardens long-lived onions. Docker compose (ChatServer + Tor, no host ports) is also supported. There is no OffCode-hosted chat cloud; you control the onion URL and the stack."
}
},
{
"@type": "Question",
"name": "How does end-to-end encryption work?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Clients encrypt with WebCrypto (PBKDF2-HMAC-SHA256 at 600000 iterations, then AES-256-GCM) before sending. Locked rooms: join proof and room key use separate v2 KDF domains so the server cannot derive the message key; password never leaves the browser. The server stores a second PBKDF2 hash of the join proof (250000 iterations, iter:salt:hash). Open rooms encrypt too (pbkdf2-v2) but derive the key from the room id, so anyone who knows the id (including the host) can decrypt. 1:1 chats can use ECDH hybrid encryption plus a safety number for out-of-band peer verification."
}
},
{
"@type": "Question",
"name": "Are open rooms private from the server?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No. Open rooms are public encrypted channels: the key is derived from the room id. Use a password (and optionally a hidden room with invite link) for server-blind E2EE."
}
},
{
"@type": "Question",
"name": "How does Tor Chat relate to EU Chat Control 1.0?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Chat Control 1.0 lets major messaging providers voluntarily scan private communications. Tor Chat is a different model: self-hosted on Tor, not a centralized big-tech messenger. You avoid that scanned platform path by hosting your own Hidden Service with browser E2EE. This is architectural privacy, not legal advice."
}
},
{
"@type": "Question",
"name": "Do clients need Tor Browser?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Guests open http://ADDRESS.onion/ in Tor Browser. The chat HTTP stack binds loopback only; Tor publishes the Hidden Service. The UI is Tor Browser-friendly: self-hosted fonts, SRI scripts, and no third-party CDNs."
}
},
{
"@type": "Question",
"name": "Can the host delete rooms or wipe chat data?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Server Manager can remove a room in realtime with secure_delete/VACUUM for that room’s ciphertext. Remove SQL data overwrites then deletes the SQLCipher DB and db.key.dpapi (optional: also wipe Tor HS keys / .onion). Generate new address securely rotates the Hidden Service identity. Tor clients cannot call the admin delete API."
}
},
{
"@type": "Question",
"name": "What can room creators do in Settings?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Only the room creator sees Settings. Close room to new members rejects all new joins including invites; existing members stay. Slow mode sets a send cooldown for everyone including the creator. Lock later sets a one-way password on an open room and wipes open history. Delete this room wipes the room like Server Manager delete. The creator recovery code on Profile binds rooms you create; My rooms lists hidden ones — Copy and Restore after Tor New Identity or clear site data."
}
},
{
"@type": "Question",
"name": "Tor Chat not working: what should I check?",
"acceptedAnswer": {
"@type": "Answer",
"text": "If Tor Chat is not working, confirm Server Manager has started ChatServer and Tor, that the published .onion URL is copied correctly, and that guests use Tor Browser (not a normal browser). A Tor error or “Tor not working” on the client usually means Tor Browser cannot reach the network. Restart Tor Browser, wait for a circuit, then reopen http://ADDRESS.onion/."
}
},
{
"@type": "Question",
"name": "Does Tor Chat need port forwarding?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No. Tor Chat runs as a Tor Hidden Service — Tor itself establishes the connection through rendezvous points. The host only needs outbound Tor network access. No router ports need to be opened, no UPnP required, and no inbound connections allowed. It works behind NAT, CGNAT, firewalls, and restrictive ISPs."
}
},
{
"@type": "Question",
"name": "My .onion address won’t open: how do I fix it?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Ensure the Hidden Service is running in Server Manager, copy the full .onion link again, and open it only in Tor Browser. If the page fails to load, wait for Tor to bootstrap, try a new circuit, and verify the host PC is online with ChatServer still running."
}
}
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://www.dev-offcode.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Tor Chat",
"item": "https://www.dev-offcode.com/TorChatPage.html"
}
]
}
</script>
<!-- Video Schema: product overview -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "OffCode Tor Chat product overview",
"description": "Product overview of OffCode Tor Chat: self-hosted Tor Hidden Service chat with browser WebCrypto AES-GCM, password E2EE rooms, and Server Manager.",
"thumbnailUrl": "https://img.youtube.com/vi/BIefF56ShPc/maxresdefault.jpg",
"uploadDate": "2026-07-22",
"embedUrl": "https://www.youtube.com/embed/BIefF56ShPc",
"contentUrl": "https://www.youtube.com/watch?v=BIefF56ShPc"
}
</script>
<link rel="stylesheet" href="styles.css?v=2.9.3">
<style>
.torchat-hero-shot {
margin: 1.25rem auto 2rem;
max-width: min(100%, 920px);
border-radius: 12px;
overflow: hidden;
border: 1px solid rgba(196, 92, 38, 0.35);
box-shadow:
0 0 0 1px rgba(0, 0, 0, 0.35),
0 12px 48px rgba(196, 92, 38, 0.12),
0 24px 80px rgba(232, 160, 74, 0.06);
}
.torchat-hero-shot img {
display: block;
width: 100%;
height: auto;
vertical-align: middle;
}
.torchat-hero-hint {
display: block;
text-align: center;
font-size: 0.8rem;
color: rgba(200, 220, 210, 0.65);
margin: 0.5rem 0 0;
letter-spacing: 0.02em;
}
.torchat-hero-video {
margin: 0 auto 2rem;
max-width: min(100%, 920px);
}
/* Inline YouTube: must receive clicks (gallery .image-card sets pointer-events: none) */
.torchat-hero-video iframe {
pointer-events: auto;
}
.torchat-manager-shots {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1.25rem;
margin: 1.5rem 0 1.75rem;
max-width: min(100%, 960px);
}
.torchat-manager-shots .torchat-hero-shot {
margin: 0;
max-width: none;
}
.torchat-manager-copy {
max-width: 52rem;
margin: 0 auto 1rem;
color: #c9d1d9;
line-height: 1.65;
font-size: 0.95rem;
}
.torchat-manager-list {
max-width: 52rem;
margin: 0 auto;
padding-left: 1.25rem;
color: #c9d1d9;
line-height: 1.7;
font-size: 0.92rem;
}
.torchat-manager-list li {
margin-bottom: 0.45rem;
}
.torchat-why-note {
max-width: 52rem;
margin: 1.25rem auto 0;
padding: 0.85rem 1rem;
border-left: 3px solid rgba(196, 92, 38, 0.65);
background: rgba(196, 92, 38, 0.06);
color: rgba(200, 220, 210, 0.7);
font-size: 0.82rem;
line-height: 1.55;
}
@media (max-width: 720px) {
.torchat-manager-shots {
grid-template-columns: 1fr;
}
}
/* How it works — motion demo */
.hiw-demo {
max-width: 720px;
margin: 1.5rem auto 2rem;
}
.hiw-demo__kicker {
margin: 0 0 0.35rem;
text-align: center;
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #00bcd4;
}
.hiw-demo__question {
margin: 0 0 1.15rem;
text-align: center;
font-size: 1.05rem;
font-weight: 600;
color: #e8eef5;
line-height: 1.4;
}
.hiw-stage {
position: relative;
display: grid;
grid-template-columns: 1fr auto 1fr;
gap: 0.65rem;
align-items: stretch;
padding: 1.15rem 1rem 1.25rem;
border-radius: 16px;
border: 1px solid rgba(0, 188, 212, 0.22);
background:
radial-gradient(ellipse 80% 60% at 20% 30%, rgba(0, 188, 212, 0.08), transparent 55%),
radial-gradient(ellipse 70% 50% at 80% 70%, rgba(0, 230, 118, 0.07), transparent 50%),
linear-gradient(160deg, rgba(10, 14, 20, 0.98), rgba(6, 10, 14, 0.99));
overflow: hidden;
min-height: 220px;
}
.hiw-zone {
position: relative;
z-index: 2;
border-radius: 12px;
padding: 0.85rem 0.9rem;
border: 1px solid rgba(0, 188, 212, 0.2);
background: rgba(0, 0, 0, 0.28);
}
.hiw-zone--host {
border-color: rgba(0, 230, 118, 0.22);
}
.hiw-zone__badge {
display: inline-block;
margin-bottom: 0.35rem;
padding: 0.12rem 0.5rem;
border-radius: 999px;
font-size: 0.65rem;
font-weight: 700;
letter-spacing: 0.05em;
text-transform: uppercase;
color: #0a1018;
background: linear-gradient(135deg, #00bcd4, #4da6ff);
}
.hiw-zone--host .hiw-zone__badge {
background: linear-gradient(135deg, #00e676, #00bcd4);
}
.hiw-zone h4 {
margin: 0 0 0.65rem;
font-size: 0.95rem;
color: #fff;
}
.hiw-msg-slot {
position: relative;
min-height: 2.55rem;
margin-bottom: 0.55rem;
}
.hiw-bubble {
min-height: 2.4rem;
padding: 0.45rem 0.65rem;
border-radius: 8px;
font-size: 0.82rem;
font-weight: 600;
line-height: 1.35;
}
.hiw-bubble--plain {
color: #7dffa8;
border: 1px solid rgba(0, 230, 118, 0.35);
background: rgba(0, 230, 118, 0.08);
}
.hiw-bubble--cipher {
position: absolute;
inset: 0;
color: #7ec8ff;
border: 1px solid rgba(0, 188, 212, 0.4);
background: rgba(0, 188, 212, 0.1);
font-family: ui-monospace, Consolas, monospace;
font-size: 0.72rem;
letter-spacing: 0.04em;
opacity: 0;
display: flex;
align-items: center;
}
.hiw-chips {
display: flex;
flex-wrap: wrap;
gap: 0.35rem;
}
.hiw-chip {
padding: 0.2rem 0.45rem;
border-radius: 6px;
font-size: 0.68rem;
font-weight: 700;
color: rgba(200, 220, 210, 0.55);
border: 1px solid rgba(255, 255, 255, 0.08);
background: rgba(255, 255, 255, 0.03);
transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.hiw-host-items {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 0.35rem;
}
.hiw-host-items li {
font-size: 0.72rem;
color: rgba(200, 220, 210, 0.55);
padding: 0.3rem 0.45rem;
border-radius: 6px;
border: 1px solid transparent;
line-height: 1.35;
}
.hiw-host-items li strong {
color: #00e676;
}
.hiw-tor {
position: relative;
z-index: 3;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.5rem;
min-width: 5.5rem;
padding: 0.5rem 0.25rem;
}
.hiw-tor__rail {
position: absolute;
top: 48%;
left: -12%;
right: -12%;
height: 2px;
background: linear-gradient(90deg,
rgba(0, 188, 212, 0.15),
rgba(0, 230, 118, 0.45),
rgba(0, 188, 212, 0.15));
border-radius: 2px;
z-index: 0;
}
.hiw-tor__pill {
position: relative;
z-index: 2;
padding: 0.4rem 0.65rem;
border-radius: 999px;
font-size: 0.7rem;
font-weight: 700;
text-align: center;
line-height: 1.25;
color: #00e676;
border: 1px solid rgba(0, 230, 118, 0.4);
background: rgba(6, 16, 12, 0.92);
box-shadow: 0 0 18px rgba(0, 230, 118, 0.12);
}
.hiw-tor__pill small {
display: block;
font-size: 0.62rem;
font-weight: 600;
color: rgba(200, 220, 210, 0.65);
}
.hiw-packet {
position: absolute;
top: 48%;
left: 8%;
z-index: 4;
width: 14px;
height: 14px;
margin: -7px 0 0 -7px;
border-radius: 50%;
background: #e8a04a;
box-shadow: 0 0 14px rgba(232, 160, 74, 0.7);
opacity: 0;
}
.hiw-packet::after {
content: "🔒";
position: absolute;
left: 50%;
top: -1.35rem;
transform: translateX(-50%);
font-size: 0.75rem;
opacity: 0;
}
.hiw-caption {
position: relative;
margin-top: 0.9rem;
min-height: 4.6rem;
padding: 0.85rem 1rem;
border-radius: 12px;
border: 1px solid rgba(0, 188, 212, 0.18);
background: rgba(0, 0, 0, 0.28);
}
.hiw-caption__step {
position: absolute;
left: 1rem;
right: 1rem;
top: 0.85rem;
margin: 0;
font-size: 0.86rem;
line-height: 1.5;
color: rgba(200, 220, 210, 0.78);
opacity: 0;
}
.hiw-caption__step strong {
color: #e8eef5;
}
.hiw-caption__step em {
font-style: normal;
color: #00bcd4;
}
.hiw-caption__step--host strong,
.hiw-caption__step--host em {
color: #7dffa8;
}
/* Playing timeline (~14s) */
.hiw-demo.is-playing .hiw-bubble--plain {
animation: hiwPlainFade 14s ease-in-out infinite;
}
.hiw-demo.is-playing .hiw-bubble--cipher {
animation: hiwCipherIn 14s ease-in-out infinite;
}
.hiw-demo.is-playing .hiw-chip--kdf {
animation: hiwChipKdf 14s ease-in-out infinite;
}
.hiw-demo.is-playing .hiw-chip--aes {
animation: hiwChipAes 14s ease-in-out infinite;
}
.hiw-demo.is-playing .hiw-packet {
animation: hiwPacketTravel 14s ease-in-out infinite;
}
.hiw-demo.is-playing .hiw-packet::after {
animation: hiwPacketLock 14s ease-in-out infinite;
}
.hiw-demo.is-playing .hiw-tor__pill {
animation: hiwTorPulse 14s ease-in-out infinite;
}
.hiw-demo.is-playing .hiw-host-items li:nth-child(1) {
animation: hiwHostItem 14s ease-in-out infinite;
animation-delay: 0s;
}
.hiw-demo.is-playing .hiw-host-items li:nth-child(2) {
animation: hiwHostItem 14s ease-in-out infinite;
animation-delay: 0.35s;
}
.hiw-demo.is-playing .hiw-host-items li:nth-child(3) {
animation: hiwHostItem 14s ease-in-out infinite;
animation-delay: 0.7s;
}
.hiw-demo.is-playing .hiw-host-items li:nth-child(4) {
animation: hiwHostItem 14s ease-in-out infinite;
animation-delay: 1.05s;
}
.hiw-demo.is-playing .hiw-caption__step:nth-child(1) {
animation: hiwCap1 14s ease-in-out infinite;
}
.hiw-demo.is-playing .hiw-caption__step:nth-child(2) {
animation: hiwCap2 14s ease-in-out infinite;
}
.hiw-demo.is-playing .hiw-caption__step:nth-child(3) {
animation: hiwCap3 14s ease-in-out infinite;
}
.hiw-demo.is-playing .hiw-caption__step:nth-child(4) {
animation: hiwCap4 14s ease-in-out infinite;
}
.hiw-demo.is-playing .hiw-zone--client {
animation: hiwZoneClient 14s ease-in-out infinite;
}
.hiw-demo.is-playing .hiw-zone--host {
animation: hiwZoneHost 14s ease-in-out infinite;
}
@keyframes hiwPlainFade {
0%, 8% { opacity: 1; transform: scale(1); }
22%, 28% { opacity: 0; transform: scale(0.92); filter: blur(2px); }
90%, 100% { opacity: 1; transform: scale(1); filter: none; }
}
@keyframes hiwCipherIn {
0%, 12% { opacity: 0; transform: translateY(6px); }
22%, 78% { opacity: 1; transform: translateY(0); }
88%, 100% { opacity: 0; transform: translateY(-4px); }
}
@keyframes hiwChipKdf {
0%, 4% { color: rgba(200, 220, 210, 0.55); border-color: rgba(255, 255, 255, 0.08); box-shadow: none; }
8%, 18% { color: #7dffa8; border-color: rgba(0, 230, 118, 0.55); box-shadow: 0 0 12px rgba(0, 230, 118, 0.25); }
28%, 100% { color: rgba(200, 220, 210, 0.55); border-color: rgba(255, 255, 255, 0.08); box-shadow: none; }
}
@keyframes hiwChipAes {
0%, 12% { color: rgba(200, 220, 210, 0.55); border-color: rgba(255, 255, 255, 0.08); box-shadow: none; }
16%, 26% { color: #7ec8ff; border-color: rgba(0, 188, 212, 0.55); box-shadow: 0 0 12px rgba(0, 188, 212, 0.25); }
34%, 100% { color: rgba(200, 220, 210, 0.55); border-color: rgba(255, 255, 255, 0.08); box-shadow: none; }
}
@keyframes hiwPacketTravel {
0%, 24% { opacity: 0; left: 18%; }
28% { opacity: 1; left: 22%; }
48% { opacity: 1; left: 50%; }
68% { opacity: 1; left: 82%; }
76%, 100% { opacity: 0; left: 86%; }
}
@keyframes hiwPacketLock {
0%, 26% { opacity: 0; }
30%, 70% { opacity: 1; }
78%, 100% { opacity: 0; }
}
@keyframes hiwTorPulse {
0%, 30% { box-shadow: 0 0 18px rgba(0, 230, 118, 0.12); }
40%, 55% { box-shadow: 0 0 28px rgba(0, 230, 118, 0.45); border-color: rgba(0, 230, 118, 0.7); }
70%, 100% { box-shadow: 0 0 18px rgba(0, 230, 118, 0.12); }
}
@keyframes hiwHostItem {
0%, 55% { color: rgba(200, 220, 210, 0.55); border-color: transparent; background: transparent; }
62%, 82% { color: #c9d1d9; border-color: rgba(0, 230, 118, 0.28); background: rgba(0, 230, 118, 0.08); }
92%, 100% { color: rgba(200, 220, 210, 0.55); border-color: transparent; background: transparent; }
}
@keyframes hiwCap1 {
0%, 2% { opacity: 0; }
4%, 22% { opacity: 1; }
26%, 100% { opacity: 0; }
}
@keyframes hiwCap2 {
0%, 24% { opacity: 0; }
28%, 48% { opacity: 1; }
52%, 100% { opacity: 0; }
}
@keyframes hiwCap3 {
0%, 50% { opacity: 0; }
54%, 74% { opacity: 1; }
78%, 100% { opacity: 0; }
}
@keyframes hiwCap4 {
0%, 76% { opacity: 0; }
80%, 96% { opacity: 1; }
99%, 100% { opacity: 0; }
}
@keyframes hiwZoneClient {
0%, 5% { box-shadow: none; }
8%, 24% { box-shadow: 0 0 0 1px rgba(0, 188, 212, 0.45), 0 0 24px rgba(0, 188, 212, 0.12); }
32%, 100% { box-shadow: none; }
}
@keyframes hiwZoneHost {
0%, 55% { box-shadow: none; }
60%, 82% { box-shadow: 0 0 0 1px rgba(0, 230, 118, 0.45), 0 0 24px rgba(0, 230, 118, 0.12); }
90%, 100% { box-shadow: none; }
}
@media (max-width: 640px) {
.hiw-stage {
grid-template-columns: 1fr;
gap: 0.85rem;
min-height: 0;
}
.hiw-tor {
flex-direction: row;
min-width: 0;
padding: 0.35rem 0;
}
.hiw-tor__rail {
top: 50%;
left: 10%;
right: 10%;
}
.hiw-demo.is-playing .hiw-packet {
animation: hiwPacketTravelMobile 14s ease-in-out infinite;
}
}
@keyframes hiwPacketTravelMobile {
0%, 24% { opacity: 0; left: 50%; top: 28%; }
30% { opacity: 1; left: 50%; top: 42%; }
48% { opacity: 1; left: 50%; top: 50%; }
68% { opacity: 1; left: 50%; top: 72%; }
76%, 100% { opacity: 0; left: 50%; top: 78%; }
}
@media (prefers-reduced-motion: reduce) {
.hiw-demo.is-playing:not(.force-motion) .hiw-bubble--plain,
.hiw-demo.is-playing:not(.force-motion) .hiw-bubble--cipher,
.hiw-demo.is-playing:not(.force-motion) .hiw-chip,
.hiw-demo.is-playing:not(.force-motion) .hiw-packet,
.hiw-demo.is-playing:not(.force-motion) .hiw-packet::after,
.hiw-demo.is-playing:not(.force-motion) .hiw-tor__pill,
.hiw-demo.is-playing:not(.force-motion) .hiw-host-items li,
.hiw-demo.is-playing:not(.force-motion) .hiw-caption__step,
.hiw-demo.is-playing:not(.force-motion) .hiw-zone--client,
.hiw-demo.is-playing:not(.force-motion) .hiw-zone--host {
animation: none !important;
}
.hiw-demo:not(.force-motion) .hiw-bubble--cipher { opacity: 1; }
.hiw-demo:not(.force-motion) .hiw-bubble--plain { opacity: 0; }
.hiw-demo:not(.force-motion) .hiw-caption__step:first-child { opacity: 1; position: relative; left: auto; right: auto; top: auto; }
.hiw-demo:not(.force-motion) .hiw-caption__step:not(:first-child) { display: none; }
}
.security-block {
margin-bottom: 2.5rem;
}
.security-block-title {
font-size: 1.15rem;
font-weight: 700;
color: #00ff88;
margin-bottom: 0.85rem;
letter-spacing: 0.01em;
}
.security-table-wrap {
overflow-x: auto;
border-radius: 12px;
border: 1px solid rgba(0, 255, 136, 0.15);
background: rgba(255, 255, 255, 0.025);
backdrop-filter: blur(8px);
}
.security-table {
width: 100%;
border-collapse: collapse;
font-size: 0.875rem;
color: #c9d1d9;
}
.security-table thead tr {
background: rgba(0, 255, 136, 0.07);
border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}
.security-table th {
padding: 0.65rem 1rem;
text-align: left;
font-weight: 600;
color: #00ff88;
white-space: nowrap;
}
.security-table td {
padding: 0.6rem 1rem;
vertical-align: top;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
line-height: 1.5;
}
.security-table td:first-child {
white-space: nowrap;
color: #8b949e;
}
.security-table tbody tr:last-child td {
border-bottom: none;
}
.security-table tbody tr:hover {
background: rgba(0, 255, 136, 0.04);
}
.security-table code {
background: rgba(0, 255, 136, 0.1);
border-radius: 4px;
padding: 1px 5px;
font-size: 0.82rem;
color: #7ee8a2;
font-family: 'Cascadia Code', 'Consolas', monospace;
}
/* Vanguards section */
.vanguard-badge {
display: inline-block;
padding: 0.15rem 0.55rem;
border-radius: 999px;
font-size: 0.68rem;
font-weight: 700;
letter-spacing: 0.05em;
text-transform: uppercase;
color: #0a1018;
background: linear-gradient(135deg, #00e676, #00bcd4);
vertical-align: middle;
margin-left: 0.5rem;
}
.vanguard-intro {
max-width: 52rem;
font-size: 0.9rem;
color: #c9d1d9;
line-height: 1.65;
margin: 0 0 1rem;
}
.vanguard-layers {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 0.75rem;
}
.vanguard-layer {
flex: 1 1 200px;
padding: 0.75rem 1rem;
border-radius: 10px;
border: 1px solid rgba(0, 255, 136, 0.2);
background: rgba(0, 255, 136, 0.05);
}
.vanguard-layer--l3 {
border-color: rgba(0, 188, 212, 0.25);
background: rgba(0, 188, 212, 0.05);
}
.vanguard-layer__label {
font-weight: 700;
font-size: 0.9rem;
color: #00ff88;
margin-bottom: 0.3rem;
}
.vanguard-layer--l3 .vanguard-layer__label {
color: #00bcd4;
}
.vanguard-layer__desc {
font-size: 0.82rem;
color: rgba(200, 220, 210, 0.75);
line-height: 1.45;
}
.vanguard-circuit-box {
background: rgba(0, 0, 0, 0.35);
border: 1px dashed rgba(0, 255, 136, 0.2);
border-radius: 10px;
padding: 0.85rem 1rem;
display: flex;
flex-direction: column;
gap: 0.65rem;
font-family: 'Cascadia Code', 'Consolas', monospace;
font-size: 0.82rem;
overflow-x: auto;
}
.vanguard-circuit-row {
display: flex;
align-items: center;
gap: 0.4rem;
flex-wrap: wrap;
}
.vg-label {
font-weight: 700;
font-size: 0.72rem;
letter-spacing: 0.04em;
text-transform: uppercase;
padding: 0.15rem 0.5rem;
border-radius: 4px;
min-width: 9rem;
text-align: center;
}
.vg-label--off {
background: rgba(255, 70, 70, 0.12);
color: #ff8080;
border: 1px solid rgba(255, 70, 70, 0.25);
}
.vg-label--on {
background: rgba(0, 255, 136, 0.1);
color: #00ff88;
border: 1px solid rgba(0, 255, 136, 0.25);
}
.vg-hop {
padding: 0.2rem 0.5rem;
border-radius: 6px;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.1);
color: #c9d1d9;
font-size: 0.8rem;
white-space: nowrap;
}
.vg-hop--random {
background: rgba(255, 70, 70, 0.07);
border-color: rgba(255, 70, 70, 0.2);