-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtechnology.html
More file actions
829 lines (765 loc) · 35.4 KB
/
Copy pathtechnology.html
File metadata and controls
829 lines (765 loc) · 35.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Technology — Quantus Network</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500&family=Geist+Mono:wght@300;400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<style>
/* ═══════════════════════════
TECH PAGE -ALL SECTIONS
═══════════════════════════ */
/* ── HERO ── */
#tech-hero {
position: relative;
height: 100vh;
background: #0E0E0E;
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
padding: 0 52px;
overflow: hidden;
z-index: 1;
}
/* Dot lattice background */
#tech-hero::before {
content: '';
position: absolute;
inset: 0;
background-image: radial-gradient(
circle,
rgba(232,230,224,0.12) 1px,
transparent 1px
);
background-size: 28px 28px;
-webkit-mask-image: radial-gradient(
ellipse 80% 80% at 50% 50%,
transparent 30%,
rgba(0,0,0,0.6) 60%,
black 100%
);
mask-image: radial-gradient(
ellipse 80% 80% at 50% 50%,
transparent 30%,
rgba(0,0,0,0.6) 60%,
black 100%
);
pointer-events: none;
z-index: 0;
}
/* Orange accent lines -top right corner */
#tech-hero::after {
content: '';
position: absolute;
top: 0;
right: 0;
width: 320px;
height: 320px;
background:
linear-gradient(to bottom, #FF6B35 1px, transparent 1px),
linear-gradient(to right, #FF6B35 1px, transparent 1px);
background-size: 40px 40px;
opacity: 0.06;
pointer-events: none;
z-index: 0;
-webkit-mask-image: radial-gradient(circle at top right, black 0%, transparent 70%);
mask-image: radial-gradient(circle at top right, black 0%, transparent 70%);
}
.tech-hero-inner {
position: relative;
z-index: 2;
}
.tech-hero-visual {
display: flex;
align-items: center;
justify-content: flex-end;
height: 100%;
position: relative;
z-index: 2;
padding-right: 20px;
}
@keyframes lattice-spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.tech-eyebrow {
font-family: 'Geist Mono', monospace;
font-size: 12px;
font-weight: 400;
letter-spacing: 0.22em;
text-transform: uppercase;
color: #FF6B35;
display: block;
margin-bottom: 24px;
opacity: 0;
transform: translateY(6px);
transition: opacity 0.55s ease 0.1s, transform 0.55s ease 0.1s;
}
.tech-eyebrow.in { opacity: 1; transform: none; }
.tech-hero-h1 {
font-family: 'Geist', sans-serif;
font-size: clamp(36px, 4.5vw, 68px);
font-weight: 500;
line-height: 1.02;
letter-spacing: -0.025em;
color: #ffffff;
margin-bottom: 28px;
opacity: 0;
transform: translateY(10px);
transition: opacity 0.65s ease 0.25s, transform 0.65s ease 0.25s;
}
.tech-hero-h1.in { opacity: 1; transform: none; }
.tech-hero-sub {
font-family: 'Geist', sans-serif;
font-size: 18px;
font-weight: 400;
color: rgba(232,230,224,0.55);
line-height: 1.6;
max-width: 560px;
opacity: 0;
transform: translateY(6px);
transition: opacity 0.55s ease 0.42s, transform 0.55s ease 0.42s;
}
.tech-hero-sub.in { opacity: 1; transform: none; }
/* ── SHARED SECTION STYLES ── */
.tech-section {
background: #0E0E0E;
position: relative;
z-index: 50;
padding: 80px 52px 48px;
}
#architecture {
padding-top: 48px;
}
.tech-section-divider {
width: 0;
height: 1px;
background: #FF6B35;
margin-bottom: 48px;
margin-left: -52px;
transition: width 0.8s ease-out;
}
.tech-section-divider.expanded {
width: calc(100% + 104px);
}
.tech-section-eyebrow {
font-family: 'Geist Mono', monospace;
font-size: 12px;
font-weight: 400;
letter-spacing: 0.2em;
text-transform: uppercase;
color: rgba(232,230,224,0.35);
display: block;
margin-bottom: 20px;
}
.tech-section-h2 {
font-family: 'Geist', sans-serif;
font-size: clamp(32px, 3.8vw, 56px);
font-weight: 500;
line-height: 1.02;
letter-spacing: -0.02em;
color: #ffffff;
margin-bottom: 40px;
max-width: none;
white-space: nowrap;
}
.tech-section-intro {
font-family: 'Geist', sans-serif;
font-size: 17px;
font-weight: 400;
color: rgba(232,230,224,0.55);
line-height: 1.7;
max-width: 100%;
margin-bottom: 64px;
}
/* ── ARCHITECTURE -3 columns ── */
.tech-cols-3 {
display: grid;
grid-template-columns: repeat(3, 1fr);
border: 1px solid rgba(232,230,224,0.08);
}
.tech-col-card {
padding: 36px 32px;
border-right: 1px solid rgba(232,230,224,0.08);
transition: background 0.3s ease;
}
.tech-col-card:last-child { border-right: none; }
.tech-col-card:hover { background: rgba(232,230,224,0.03); }
.tech-col-title {
font-family: 'Geist Mono', monospace;
font-size: 12px;
font-weight: 500;
letter-spacing: 0.16em;
text-transform: uppercase;
color: #FF6B35;
display: block;
margin-bottom: 20px;
}
.tech-col-body {
font-family: 'Geist', sans-serif;
font-size: 15px;
font-weight: 400;
color: rgba(232,230,224,0.6);
line-height: 1.7;
}
/* ── CRYPTOGRAPHY -2 col + table ── */
.tech-crypto-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
border: 1px solid rgba(232,230,224,0.08);
margin-bottom: 64px;
}
.tech-crypto-col {
padding: 40px 36px;
border-right: 1px solid rgba(232,230,224,0.08);
}
.tech-crypto-col:last-child { border-right: none; }
.tech-crypto-col-title {
font-family: 'Geist Mono', monospace;
font-size: 12px;
font-weight: 500;
letter-spacing: 0.16em;
text-transform: uppercase;
color: rgba(232,230,224,0.35);
display: block;
margin-bottom: 20px;
}
.tech-crypto-col-body {
font-family: 'Geist', sans-serif;
font-size: 15px;
color: rgba(232,230,224,0.6);
line-height: 1.7;
}
/* Specs table -instrument panel style */
.tech-specs-frame {
position: relative;
border: 1px solid rgba(232,230,224,0.08);
}
.tech-specs-corner {
position: absolute;
width: 20px;
height: 20px;
}
.tech-specs-corner.tl { top:-1px; left:-1px; border-top:1px solid rgba(232,230,224,0.35); border-left:1px solid rgba(232,230,224,0.35); }
.tech-specs-corner.tr { top:-1px; right:-1px; border-top:1px solid rgba(232,230,224,0.35); border-right:1px solid rgba(232,230,224,0.35); }
.tech-specs-corner.bl { bottom:-1px; left:-1px; border-bottom:1px solid rgba(232,230,224,0.35); border-left:1px solid rgba(232,230,224,0.35); }
.tech-specs-corner.br { bottom:-1px; right:-1px; border-bottom:1px solid rgba(232,230,224,0.35); border-right:1px solid rgba(232,230,224,0.35); }
.tech-specs-top-row {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
padding: 16px 28px;
border-bottom: 1px solid rgba(232,230,224,0.08);
background: none;
}
.tech-specs-col-head {
font-family: 'Geist Mono', monospace;
font-size: 12px;
font-weight: 400;
letter-spacing: 0.16em;
text-transform: uppercase;
color: rgba(232,230,224,0.35);
}
.tech-specs-col-head.orange { color: #FF6B35; }
.tech-specs-row {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
padding: 18px 28px;
border-bottom: 1px solid rgba(232,230,224,0.06);
align-items: center;
}
.tech-specs-row:last-child { border-bottom: none; }
.tech-specs-label {
font-family: 'Geist Mono', monospace;
font-size: 12px;
letter-spacing: 0.1em;
text-transform: uppercase;
color: rgba(232,230,224,0.45);
}
.tech-specs-val {
font-family: 'Geist Mono', monospace;
font-size: 13px;
color: rgba(232,230,224,0.6);
}
.tech-specs-val.check-no {
color: rgba(255,107,53,0.7);
font-size: 16px;
}
.tech-specs-val.check-yes {
color: #4ade80;
font-size: 16px;
}
/* ── SCALABILITY -big stat ── */
.tech-stat-block {
border: 1px solid rgba(232,230,224,0.08);
padding: 52px;
position: relative;
margin-bottom: 40px;
}
.tech-stat-label {
font-family: 'Geist Mono', monospace;
font-size: 12px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: rgba(232,230,224,0.3);
display: block;
margin-bottom: 12px;
}
.tech-stat-num {
font-family: 'Geist Mono', monospace;
font-size: 96px;
font-weight: 500;
line-height: 1;
color: #FF6B35;
display: block;
}
.tech-stat-sub {
font-family: 'Geist', sans-serif;
font-size: 16px;
color: #FF6B35;
display: block;
margin-top: 16px;
letter-spacing: 0;
line-height: 1.6;
max-width: 520px;
}
.tech-stat-desc {
font-family: 'Geist', sans-serif;
font-size: 17px;
color: rgba(232,230,224,0.55);
line-height: 1.7;
max-width: 560px;
}
/* ── CONSENSUS ── */
.tech-consensus-block {
border: 1px solid rgba(232,230,224,0.08);
padding: 52px;
}
.tech-consensus-body {
font-family: 'Geist', sans-serif;
font-size: 17px;
color: rgba(232,230,224,0.55);
line-height: 1.7;
}
/* ── CTA SECTION ── */
#tech-cta {
background: #0E0E0E;
position: relative;
z-index: 50;
padding: 120px 52px;
text-align: center;
border-top: 1px solid rgba(232,230,224,0.08);
}
.tech-cta-h2 {
font-family: 'Geist', sans-serif;
font-size: 52px;
font-weight: 500;
letter-spacing: -0.02em;
color: #ffffff;
margin-bottom: 16px;
}
.tech-cta-sub {
font-family: 'Geist', sans-serif;
font-size: 17px;
color: rgba(232,230,224,0.45);
line-height: 1.7;
max-width: 520px;
margin: 0 auto 48px auto;
}
.tech-cta-btns {
display: flex;
gap: 14px;
justify-content: center;
}
.tech-cta-primary {
font-family: 'Geist Mono', monospace;
font-size: 12px;
font-weight: 500;
letter-spacing: 0.11em;
text-transform: uppercase;
background: #FF6B35;
color: #0E0E0E;
border: 1px solid #FF6B35;
padding: 14px 28px;
text-decoration: none;
transition: opacity 0.18s;
}
.tech-cta-primary:hover { opacity: 0.82; }
.tech-cta-secondary {
font-family: 'Geist Mono', monospace;
font-size: 12px;
font-weight: 400;
letter-spacing: 0.11em;
text-transform: uppercase;
background: #0E0E0E;
color: rgba(232,230,224,0.8);
border: 1px solid rgba(232,230,224,0.16);
padding: 14px 28px;
text-decoration: none;
transition: border-color 0.18s;
}
.tech-cta-secondary:hover { border-color: rgba(232,230,224,0.5); }
/* ── MOBILE ── */
@media (max-width: 768px) {
#tech-hero { grid-template-columns: 1fr; height: auto; min-height: 100vh; padding: 120px 24px 80px; }
.tech-hero-visual { display: none; }
.tech-hero-h1 { white-space: normal !important; font-size: clamp(28px, 8vw, 40px) !important; }
.tech-hero-sub { font-size: 15px; }
.tech-section { padding: 80px 24px; }
.tech-section-divider { margin-left: -24px; }
.tech-section-divider.expanded { width: calc(100% + 48px); }
.tech-section-h2 { white-space: normal !important; font-size: 28px !important; line-height: 1.1 !important; }
.tech-cols-3 { grid-template-columns: 1fr; }
.tech-col-card { border-right: none; border-bottom: 1px solid rgba(232,230,224,0.08); }
.tech-col-card:last-child { border-bottom: none; }
.tech-crypto-grid { grid-template-columns: 1fr; }
.tech-crypto-col { border-right: none; border-bottom: 1px solid rgba(232,230,224,0.08); }
.tech-crypto-col:last-child { border-bottom: none; }
.tech-specs-col-head { font-size: 10px !important; letter-spacing: 0.1em !important; }
.tech-specs-label { font-size: 10px !important; letter-spacing: 0.06em !important; }
.tech-specs-val { font-size: 11px !important; }
.tech-specs-top-row { grid-template-columns: 1.5fr 1fr 1fr; padding: 10px 12px !important; }
.tech-specs-row { grid-template-columns: 1.5fr 1fr 1fr; padding: 12px 12px !important; }
.tech-stat-block { padding: 32px 24px; }
.tech-stat-num { font-size: 64px; }
.tech-consensus-block { padding: 32px 24px; }
#tech-cta { padding: 80px 24px; }
.tech-cta-h2 { font-size: 32px; }
.tech-cta-btns { flex-direction: column; align-items: center; }
}
</style>
</head>
<body>
<!-- MOBILE MENU -->
<div class="mobile-menu" id="mobile-menu">
<div class="mobile-menu-links">
<a href="technology.html">Technology</a>
<a href="wallet.html">Wallet</a>
<a href="about.html">About</a>
<a href="community.html">Community</a>
<a href="quantum-risk-checker.html">Q-Day Checker</a>
<!-- <a href="quan.html">Quan</a> -->
</div>
<a href="#" class="mobile-menu-cta wallet-cta-link" target="_blank" rel="noopener">Download Wallet</a>
</div>
<!-- NAV -->
<nav>
<!-- QUANTUS LOGO -extracted from perfect_Q_3.svg -->
<!-- Q mark viewBox region: ~480-810 x 1126-1455, wordmark: 832-2082 x 1238-1420 -->
<a href="index.html" class="logo">
<svg viewBox="0 0 1657 320" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M269.654 320L160.891 211.138L179.29 192.738L288.053 301.6L269.654 320Z" fill="#FF6B35"/>
<path d="M192.805 179.225L211.197 160.833L319.978 269.677L301.575 288.08L192.805 179.225Z" fill="#FF6B35"/>
<path d="M308.465 124.709C307.659 120.7 306.69 116.751 305.568 112.875C294.853 75.0657 269.816 44.3815 238.04 24.6476C208.27 5.74302 172.341 -3.5182 135.873 1.22843C129.359 2.03375 122.844 3.27928 116.368 4.98889C94.4841 10.6432 73.2044 21.5321 54.0473 38.4166C54.0268 38.4337 54.0064 38.4508 53.9893 38.4678C53.8801 38.5634 53.7709 38.6623 53.6651 38.7579C53.3648 39.024 53.0611 39.2936 52.7608 39.5666C52.6107 39.7031 52.4605 39.8362 52.3138 39.9727C52.0306 40.232 51.7439 40.4914 51.4607 40.7507C51.198 40.9896 50.9386 41.2318 50.6793 41.4741C50.5598 41.5867 50.437 41.6994 50.3176 41.812C49.5293 42.549 48.7479 43.2895 47.9801 44.0334C46.0555 45.8659 44.148 47.7632 42.2643 49.7219C40.8414 51.2745 39.4559 52.8408 38.1081 54.4173C22.4179 72.3869 11.9657 92.1481 6.11009 112.486C4.2947 118.649 2.90586 124.846 1.9265 131.049C-4.56045 170.701 5.71084 209.896 27.0758 241.577C48.7922 274.544 82.493 299.689 123.554 308.19C127.267 308.981 131.031 309.63 134.846 310.138C153.29 312.68 172.761 311.8 192.672 306.76C193.433 306.582 194.194 306.402 194.955 306.211V306.204C196.453 305.811 197.955 305.398 199.449 304.958L199.401 304.9C200.633 304.532 201.868 304.146 203.104 303.747C205.54 302.979 207.987 302.153 210.437 301.263L210.43 301.256C211.884 300.706 213.334 300.14 214.774 299.546L214.726 299.498C216.566 298.751 218.408 297.966 220.251 297.144L190.191 267.057C189.782 267.183 189.376 267.313 188.963 267.432L188.946 267.415C187.315 267.913 185.684 268.371 184.049 268.79H184.046C182.408 269.193 180.763 269.565 179.104 269.899L179.087 269.882C176.491 270.435 173.894 270.892 171.304 271.254C169.898 271.442 168.485 271.609 167.069 271.742L167.055 271.725C163.428 272.107 159.821 272.308 156.245 272.339C132.761 272.387 110.004 265.115 90.9113 252.332C87.1372 249.794 83.5099 247.036 80.0497 244.085C63.6634 230.009 51.1058 211.51 44.4892 190.534C43.0355 185.815 41.8787 180.952 41.0427 175.956C40.7663 174.489 40.524 173.022 40.3124 171.554C40.0702 169.678 39.8688 167.787 39.7187 165.883C39.5788 164.47 39.4696 163.057 39.3877 161.652C39.2717 159.031 39.2478 156.39 39.3194 153.728C39.3672 147.033 40.0156 140.468 41.2065 134.08C44.9294 114.885 53.532 96.9869 65.7552 82.0269C83.1072 61.0305 107.584 46.0809 134.836 41.0339C138.374 40.4095 141.971 39.9556 145.622 39.6724C147.475 39.495 149.321 39.3653 151.16 39.28C152.693 39.2322 154.232 39.2151 155.781 39.2322C157.388 39.2185 158.988 39.2424 160.582 39.2936C163.039 39.4131 165.506 39.6144 167.983 39.901C175.743 40.6517 183.227 42.1737 190.382 44.3747C211.034 50.8855 229.328 63.1394 243.37 79.164C243.558 79.3789 243.745 79.5939 243.933 79.8123C243.984 79.8703 244.032 79.9283 244.083 79.9863C246.431 82.7299 248.656 85.5793 250.748 88.5276C263.141 106.081 270.802 126.951 272.201 148.787C272.211 148.978 272.225 149.172 272.235 149.364C272.58 155.967 272.351 162.699 271.491 169.5L271.549 169.551C271.137 172.872 270.573 176.202 269.853 179.536L269.939 179.621C269.185 183.153 268.25 186.685 267.137 190.203L297.153 220.242C298.558 217.072 299.855 213.909 301.046 210.749L301.131 210.834C302.032 208.326 302.872 205.828 303.65 203.337C304.24 201.522 304.796 199.713 305.318 197.905L305.376 197.953C305.626 197.007 305.864 196.066 306.096 195.124C312.717 170.616 313.054 146.791 308.465 124.699V124.709Z" fill="#FF6B35"/>
<path d="M442.153 289.168C411.192 289.168 388.566 283.346 374.276 271.702C359.854 260.059 352.709 241.138 352.709 215.204V108.162H394.52V210.97C394.52 226.848 398.093 238.227 405.502 245.107C412.912 252.12 424.952 255.56 441.889 255.56C458.825 255.56 470.998 252.12 478.407 245.24C485.685 238.359 489.389 226.848 489.389 210.97V108.162H530.804V215.204C530.804 241.27 523.659 260.059 509.501 271.702C495.344 283.346 472.85 289.168 442.153 289.168ZM759.903 287.051H716.239L701.42 252.12H607.609L592.393 287.051H550.979L630.897 108.162H680.25L759.903 287.051ZM649.024 157.515L620.312 223.408H689.115L660.932 157.515L655.904 143.225H654.184L649.024 157.515ZM827.844 287.051H788.017V108.162H836.444L916.362 215.998L931.048 236.904L932.107 236.639L931.313 202.502V108.162H971.14V287.051H921.257L827.844 160.823L826.917 161.088L827.844 195.225V287.051ZM1180.66 108.162V141.505H1112.38V287.051H1070.7V141.505H1002.03V108.162H1180.66ZM1300.6 289.168C1269.63 289.168 1247.01 283.346 1232.72 271.702C1218.3 260.059 1211.15 241.138 1211.15 215.204V108.162H1252.96V210.97C1252.96 226.848 1256.54 238.227 1263.95 245.107C1271.35 252.12 1283.4 255.56 1300.33 255.56C1317.27 255.56 1329.44 252.12 1336.85 245.24C1344.13 238.359 1347.83 226.848 1347.83 210.97V108.162H1389.25V215.204C1389.25 241.27 1382.1 260.059 1367.94 271.702C1353.79 283.346 1331.29 289.168 1300.6 289.168ZM1516.86 289.168C1486.83 289.168 1464.46 284.669 1449.78 275.539C1434.96 266.542 1426.89 251.855 1425.43 231.743H1466.18C1466.98 241.932 1471.61 249.209 1479.81 253.708C1488.02 258.206 1500.32 260.456 1516.86 260.456C1532.21 260.456 1543.32 258.339 1550.2 253.84C1557.08 249.341 1560.66 243.519 1560.66 236.11C1560.66 231.347 1559.2 227.509 1556.29 224.731C1553.38 221.952 1547.69 219.571 1539.49 217.454C1531.28 215.337 1519.11 213.484 1502.97 211.764C1491.19 210.573 1481.27 209.118 1473.07 207.265C1464.86 205.545 1457.72 203.428 1451.63 200.782C1445.54 198.268 1440.91 195.225 1437.47 191.52C1434.03 187.815 1431.39 183.713 1429.8 178.95C1428.21 174.187 1427.42 168.63 1427.42 162.146C1427.42 155.531 1428.34 149.444 1430.33 143.887C1432.31 138.33 1435.49 133.302 1439.99 128.539C1444.35 123.775 1449.91 119.806 1456.53 116.498C1463.14 113.322 1471.21 110.676 1480.87 108.824C1490.53 106.971 1501.38 106.045 1513.55 106.045C1540.94 106.045 1561.58 110.544 1575.61 119.277C1589.63 128.142 1597.31 141.638 1598.63 159.632L1559.33 159.368C1558.54 151.164 1554.44 144.945 1546.76 140.711C1539.09 136.61 1527.18 134.493 1511.17 134.493C1496.88 134.493 1486.3 136.61 1479.28 140.711C1472.27 144.945 1468.83 150.503 1468.83 157.515C1468.83 162.279 1470.29 165.983 1473.2 168.63C1476.11 171.276 1481.53 173.525 1489.6 175.378C1497.68 177.23 1509.85 178.95 1525.99 180.538C1540.81 182.126 1552.98 184.11 1562.51 186.492C1572.04 188.874 1579.71 192.049 1585.8 196.019C1591.75 199.988 1595.98 204.751 1598.37 210.309C1600.75 215.866 1601.94 222.746 1601.94 230.95C1601.94 239.418 1600.22 247.224 1597.04 254.105C1593.87 260.985 1588.84 267.204 1582.22 272.496C1575.61 277.789 1566.74 281.891 1555.63 284.801C1544.51 287.712 1531.68 289.168 1516.86 289.168Z" fill="#FF6B35"/>
</svg>
</a>
<ul class="nav-links">
<li><a href="technology.html" class="nav-active">Technology</a></li>
<li><a href="wallet.html">Wallet</a></li>
<li><a href="about.html">About</a></li>
<li><a href="community.html">Community</a></li>
<li><a href="quantum-risk-checker.html">Q-Day Checker</a></li>
<!-- <li><a href="quan.html">Quan</a></li> -->
</ul>
<a href="#" class="nav-dl wallet-cta-link" target="_blank" rel="noopener">Download Wallet</a>
<button class="nav-hamburger" id="nav-hamburger" aria-label="Open menu">
<svg class="hamburger-icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<line x1="3" y1="6" x2="21" y2="6" stroke="#E8E6E0" stroke-width="1.5" stroke-linecap="square"/>
<line x1="3" y1="12" x2="21" y2="12" stroke="#E8E6E0" stroke-width="1.5" stroke-linecap="square"/>
<line x1="3" y1="18" x2="21" y2="18" stroke="#E8E6E0" stroke-width="1.5" stroke-linecap="square"/>
</svg>
<svg class="close-icon" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<line x1="4" y1="4" x2="20" y2="20" stroke="#E8E6E0" stroke-width="1.5" stroke-linecap="square"/>
<line x1="20" y1="4" x2="4" y2="20" stroke="#E8E6E0" stroke-width="1.5" stroke-linecap="square"/>
</svg>
</button>
</nav>
<!-- HERO -->
<section id="tech-hero">
<div class="tech-hero-inner">
<span class="tech-eyebrow" id="tech-eyebrow">The Protocol</span>
<h1 class="tech-hero-h1" id="tech-h1">Quantum secure<br>encrypted money.</h1>
<p class="tech-hero-sub" id="tech-sub">Scaled with zero-knowledge proofs.<br> Secured by Proof of Work.</p>
</div>
<div class="tech-hero-visual">
<svg viewBox="0 0 500 500" fill="none"
xmlns="http://www.w3.org/2000/svg"
style="width:100%;max-width:580px;display:block;opacity:0.4;animation:lattice-spin 40s linear infinite;">
<!-- Outer hexagonal frame -->
<polygon points="250,40 420,145 420,355 250,460 80,355 80,145"
stroke="rgba(232,230,224,0.4)" stroke-width="0.75" fill="none"
stroke-dasharray="4,4"/>
<!-- Inner hexagon -->
<polygon points="250,110 370,177 370,323 250,390 130,323 130,177"
stroke="rgba(232,230,224,0.25)" stroke-width="0.75" fill="none"/>
<!-- Centre point -->
<circle cx="250" cy="250" r="5"
fill="#FF6B35" stroke="#FF6B35" stroke-width="1"/>
<!-- Spokes from centre to outer vertices -->
<line x1="250" y1="250" x2="250" y2="40"
stroke="rgba(232,230,224,0.15)" stroke-width="0.75"/>
<line x1="250" y1="250" x2="420" y2="145"
stroke="rgba(232,230,224,0.15)" stroke-width="0.75"/>
<line x1="250" y1="250" x2="420" y2="355"
stroke="rgba(232,230,224,0.15)" stroke-width="0.75"/>
<line x1="250" y1="250" x2="250" y2="460"
stroke="rgba(232,230,224,0.15)" stroke-width="0.75"/>
<line x1="250" y1="250" x2="80" y2="355"
stroke="rgba(232,230,224,0.15)" stroke-width="0.75"/>
<line x1="250" y1="250" x2="80" y2="145"
stroke="rgba(232,230,224,0.15)" stroke-width="0.75"/>
<!-- Spokes from centre to inner vertices -->
<line x1="250" y1="250" x2="250" y2="110"
stroke="rgba(255,107,53,0.2)" stroke-width="0.75"/>
<line x1="250" y1="250" x2="370" y2="177"
stroke="rgba(255,107,53,0.2)" stroke-width="0.75"/>
<line x1="250" y1="250" x2="370" y2="323"
stroke="rgba(255,107,53,0.2)" stroke-width="0.75"/>
<line x1="250" y1="250" x2="250" y2="390"
stroke="rgba(255,107,53,0.2)" stroke-width="0.75"/>
<line x1="250" y1="250" x2="130" y2="323"
stroke="rgba(255,107,53,0.2)" stroke-width="0.75"/>
<line x1="250" y1="250" x2="130" y2="177"
stroke="rgba(255,107,53,0.2)" stroke-width="0.75"/>
<!-- Cross connections outer -->
<line x1="250" y1="40" x2="420" y2="145"
stroke="rgba(232,230,224,0.1)" stroke-width="0.5"/>
<line x1="420" y1="145" x2="420" y2="355"
stroke="rgba(232,230,224,0.1)" stroke-width="0.5"/>
<line x1="420" y1="355" x2="250" y2="460"
stroke="rgba(232,230,224,0.1)" stroke-width="0.5"/>
<line x1="250" y1="460" x2="80" y2="355"
stroke="rgba(232,230,224,0.1)" stroke-width="0.5"/>
<line x1="80" y1="355" x2="80" y2="145"
stroke="rgba(232,230,224,0.1)" stroke-width="0.5"/>
<line x1="80" y1="145" x2="250" y2="40"
stroke="rgba(232,230,224,0.1)" stroke-width="0.5"/>
<!-- Cross connections inner -->
<line x1="250" y1="110" x2="370" y2="177"
stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/>
<line x1="370" y1="177" x2="370" y2="323"
stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/>
<line x1="370" y1="323" x2="250" y2="390"
stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/>
<line x1="250" y1="390" x2="130" y2="323"
stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/>
<line x1="130" y1="323" x2="130" y2="177"
stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/>
<line x1="130" y1="177" x2="250" y2="110"
stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/>
<!-- Outer vertex dots -->
<circle cx="250" cy="40" r="3" fill="rgba(232,230,224,0.5)"/>
<circle cx="420" cy="145" r="3" fill="rgba(232,230,224,0.5)"/>
<circle cx="420" cy="355" r="3" fill="rgba(232,230,224,0.5)"/>
<circle cx="250" cy="460" r="3" fill="rgba(232,230,224,0.5)"/>
<circle cx="80" cy="355" r="3" fill="rgba(232,230,224,0.5)"/>
<circle cx="80" cy="145" r="3" fill="rgba(232,230,224,0.5)"/>
<!-- Inner vertex dots orange -->
<circle cx="250" cy="110" r="3"
fill="rgba(255,107,53,0.6)" stroke="#FF6B35" stroke-width="0.75"/>
<circle cx="370" cy="177" r="3"
fill="rgba(255,107,53,0.6)" stroke="#FF6B35" stroke-width="0.75"/>
<circle cx="370" cy="323" r="3"
fill="rgba(255,107,53,0.6)" stroke="#FF6B35" stroke-width="0.75"/>
<circle cx="250" cy="390" r="3"
fill="rgba(255,107,53,0.6)" stroke="#FF6B35" stroke-width="0.75"/>
<circle cx="130" cy="323" r="3"
fill="rgba(255,107,53,0.6)" stroke="#FF6B35" stroke-width="0.75"/>
<circle cx="130" cy="177" r="3"
fill="rgba(255,107,53,0.6)" stroke="#FF6B35" stroke-width="0.75"/>
<!-- Mid-ring dots -->
<circle cx="250" cy="250" r="60"
stroke="rgba(232,230,224,0.06)" stroke-width="0.75"
fill="none" stroke-dasharray="3,6"/>
<circle cx="250" cy="250" r="120"
stroke="rgba(232,230,224,0.04)" stroke-width="0.75"
fill="none" stroke-dasharray="3,6"/>
</svg>
</div>
</section>
<!-- ARCHITECTURE -->
<section class="tech-section" id="architecture">
<div class="tech-section-divider"></div>
<span class="tech-section-eyebrow">Architecture</span>
<h2 class="tech-section-h2">No migration. No compromises.</h2>
<p class="tech-section-intro">Every existing blockchain was built before quantum computers were a real threat. That means their security is on borrowed time. Quantus is the next generation, with post-quantum cryptography as the foundation. No messy migration required.</p>
<div class="tech-cols-3">
<div class="tech-col-card">
<span class="tech-col-title">Quantum-Secure Signatures</span>
<p class="tech-col-body">Every transaction on Quantus is signed with ML-DSA-87. The highest security standard being adopted by organizations like Cloudflare and Signal.</p>
</div>
<div class="tech-col-card">
<span class="tech-col-title">Secured Network Layer</span>
<p class="tech-col-body">Most chains only secure transactions. Quantus secures everything - including the communications between nodes. There's no weak point in the stack.</p>
</div>
<div class="tech-col-card">
<span class="tech-col-title">Built to Scale</span>
<p class="tech-col-body">Post-quantum signatures are larger than classical ones. We solved that with a zero-knowledge proof system that compresses thousands of transactions into a single verifiable proof - without sacrificing security.</p>
</div>
</div>
</section>
<!-- CRYPTOGRAPHY -->
<section class="tech-section" id="cryptography">
<div class="tech-section-divider"></div>
<span class="tech-section-eyebrow">Cryptography</span>
<h2 class="tech-section-h2">The standard quantum can't break.</h2>
<p class="tech-section-intro">Post-quantum cryptography is here.</p>
<div class="tech-crypto-grid">
<div class="tech-crypto-col">
<span class="tech-crypto-col-title">What This Means</span>
<p class="tech-crypto-col-body">Classical blockchains use elliptic curve cryptography. A sufficiently powerful quantum computer can break it - deriving private keys from public ones, forging transactions, stealing funds. ML-DSA, the algorithm Quantus uses, has no known quantum vulnerability. Its security is based on a class of mathematical problems that quantum computers cannot solve efficiently.</p>
</div>
<div class="tech-crypto-col">
<span class="tech-crypto-col-title">Why It Matters Now</span>
<p class="tech-crypto-col-body">Pre-quantum chains face a hard migration. They need to implement new cryptographic standards, get every user to migrate, and decide what to do with unmigrated coins, all while figuring out how to scale PQC. The window to migrate is closing. Quantus doesn't need to migrate. It started there.</p>
</div>
</div>
<!-- Specs table -->
<div class="tech-specs-frame">
<div class="tech-specs-corner tl"></div>
<div class="tech-specs-corner tr"></div>
<div class="tech-specs-corner bl"></div>
<div class="tech-specs-corner br"></div>
<div class="tech-specs-top-row">
<span class="tech-specs-col-head">Property</span>
<span class="tech-specs-col-head">ECDSA</span>
<span class="tech-specs-col-head orange">ML-DSA</span>
</div>
<div class="tech-specs-row">
<span class="tech-specs-label">Quantum Resistant</span>
<span class="tech-specs-val check-no">✗</span>
<span class="tech-specs-val check-yes">✓</span>
</div>
<div class="tech-specs-row">
<span class="tech-specs-label">NIST Approved</span>
<span class="tech-specs-val check-no">✗</span>
<span class="tech-specs-val check-yes">✓</span>
</div>
<div class="tech-specs-row">
<span class="tech-specs-label">Security Level</span>
<span class="tech-specs-val">NIST Level 1</span>
<span class="tech-specs-val" style="color:#FF6B35;">NIST Level 5</span>
</div>
<div class="tech-specs-row">
<span class="tech-specs-label">Signature Scheme</span>
<span class="tech-specs-val">Elliptic Curve</span>
<span class="tech-specs-val" style="color:#FF6B35;">Module Lattice</span>
</div>
<div class="tech-specs-row">
<span class="tech-specs-label">Vulnerable to Shor's Algorithm</span>
<span class="tech-specs-val check-no">✓</span>
<span class="tech-specs-val check-yes">✗</span>
</div>
</div>
</section>
<!-- SCALABILITY -->
<section class="tech-section" id="scalability">
<div class="tech-section-divider"></div>
<span class="tech-section-eyebrow">Scalability</span>
<h2 class="tech-section-h2">Scaling superior money.</h2>
<p class="tech-section-intro">Post-quantum cryptography comes with a tradeoff - larger signatures mean fewer transactions per block. Every chain working on quantum security will hit this wall. Quantus already solved it.</p>
<div class="tech-stat-block">
<span class="tech-stat-label">Throughput Improvement</span>
<span class="tech-stat-num">223×</span>
<span class="tech-stat-sub">vs raw post-quantum transactions via ZK proof aggregation</span>
</div>
<p class="tech-stat-desc">Thousands of transactions. One compact proof. Verified on-chain.</p>
</section>
<!-- CONSENSUS -->
<section class="tech-section" id="consensus">
<div class="tech-section-divider"></div>
<span class="tech-section-eyebrow">Consensus</span>
<h2 class="tech-section-h2">Proof-of-Work. Built for ZK.</h2>
<div class="tech-consensus-block">
<p class="tech-consensus-body">Quantus uses Proof-of-Work consensus. The same battle-tested model as Bitcoin. One change: the hash function is optimized for zero-knowledge proof systems. That means Quantus's ZK infrastructure is native and efficient rather than bolted on.</p>
</div>
</section>
<!-- CTA -->
<section id="tech-cta">
<h2 class="tech-cta-h2">The full technical picture.</h2>
<p class="tech-cta-sub">Protocol architecture, cryptographic assumptions, and the complete security model - in the Quantus whitepaper.</p>
<div class="tech-cta-btns">
<a href="https://www.quantus.com/whitepaper/" class="tech-cta-primary" target="_blank" rel="noopener">Read Whitepaper</a>
<a href="https://explorer.quantus.com/" class="tech-cta-secondary" target="_blank" rel="noopener">Explore Network</a>
</div>
</section>
<!-- FOOTER -->
<footer id="footer">
<div style="position:absolute;bottom:-100px;left:-100px;width:500px;height:500px;background:radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 70%);pointer-events:none;z-index:0;"></div>
<div style="position:absolute;top:-80px;right:-80px;width:450px;height:450px;background:radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);pointer-events:none;z-index:0;"></div>
<div class="footer-left">
<a href="index.html" class="footer-brand-name">Quantus</a>
<div class="footer-left-bottom">
<span class="footer-copy">© 2026 Quantus Network.</span>
<span class="footer-copy">All rights reserved.</span>
</div>
</div>
<div class="footer-right">
<div class="footer-right-top">
<div class="footer-col">
<span class="footer-col-label">Protocol</span>
<a href="https://www.quantus.com/whitepaper/" class="footer-link" target="_blank" rel="noopener">Whitepaper</a>
<a href="technology.html" class="footer-link">Technology</a>
<a href="https://explorer.quantus.com/" target="_blank" rel="noopener" class="footer-link">Network</a>
<a href="wallet.html" class="footer-link">Wallet</a>
<a href="https://research.quantus.com/" target="_blank" rel="noopener" class="footer-link">Research</a>
<a href="https://github.com/Quantus-Network/chain" target="_blank" rel="noopener" class="footer-link">Documentation</a>
</div>
<div class="footer-col">
<span class="footer-col-label">Community</span>
<a href="https://t.me/quantusnetwork" target="_blank" rel="noopener" class="footer-link">Telegram</a>
<a href="https://x.com/QuantusNetwork" target="_blank" rel="noopener" class="footer-link">X (Twitter)</a>
<a href="https://www.instagram.com/quantusnetwork/" target="_blank" rel="noopener" class="footer-link">Instagram</a>
<a href="https://www.youtube.com/@QuantusNetwork" target="_blank" rel="noopener" class="footer-link">YouTube</a>
</div>
<div class="footer-col">
<span class="footer-col-label">Company</span>
<a href="about.html" class="footer-link">About</a>
<a href="blog/" class="footer-link">Blog</a>
<a href="community.html" class="footer-link">QDay Podcast</a>
<a href="about.html#contact" class="footer-link">Contact</a>
<a href="privacy-policy.html" class="footer-link">Privacy Policy</a>
<a href="terms.html" class="footer-link">Terms of Service</a>
<a href="https://www.coingecko.com/en/coins/quantus" target="_blank" rel="noopener" class="footer-link">CoinGecko</a>
</div>
</div>
<div class="footer-right-bottom">
<span class="footer-testnet">BUILT ON BELL TESTNET</span>
</div>
</div>
</footer>
<script src="scripts.js"></script>
<script>
/* PAGE-SPECIFIC JS HERE */
(function(){
const eyebrow = document.getElementById('tech-eyebrow');
const h1 = document.getElementById('tech-h1');
const sub = document.getElementById('tech-sub');
// Animate hero in on load
window.addEventListener('load', () => {
setTimeout(() => eyebrow.classList.add('in'), 100);
setTimeout(() => h1.classList.add('in'), 200);
setTimeout(() => sub.classList.add('in'), 350);
});
// Show nav
const nav = document.querySelector('nav');
if(nav) {
setTimeout(() => nav.classList.add('visible'), 100);
}
// Animate orange dividers on scroll
document.querySelectorAll('.tech-section-divider').forEach(divider => {
const obs = new IntersectionObserver(entries => {
if(entries[0].isIntersecting){
divider.classList.add('expanded');
obs.disconnect();
}
}, { threshold: 0.1 });
obs.observe(divider);
});
})();
</script>
</body>
</html>