-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
822 lines (745 loc) · 34.1 KB
/
Copy pathabout.html
File metadata and controls
822 lines (745 loc) · 34.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About — 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>
/* ═══════════════════════════
ABOUT PAGE - ALL SECTIONS
═══════════════════════════ */
/* ── DIVIDER ── */
.about-divider {
display: block;
height: 1px;
background: #FF6B35;
width: 0;
margin-left: -52px;
transition: width 0.8s ease-out;
}
.about-divider.expanded { width: calc(100% + 104px); }
/* ── SECTION STRUCTURE ── */
.about-section-inner {
padding-top: 80px;
padding-bottom: 80px;
}
/* ── ANIMATE ── */
.about-animate {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.about-animate.in {
opacity: 1;
transform: none;
}
/* ── SHARED EYEBROW ── */
.about-eyebrow {
font-family: 'Geist Mono', monospace;
font-size: 12px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: rgba(232,230,224,0.35);
display: block;
margin-bottom: 20px;
}
/* ══════════════════════════════════════
HERO
══════════════════════════════════════ */
#about-hero {
position: relative;
height: 100vh;
background: #0E0E0E;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 0 52px;
overflow: hidden;
z-index: 1;
}
#about-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;
}
#about-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%);
}
.about-hero-content {
position: relative;
z-index: 2;
}
.about-hero-eyebrow {
font-family: 'Geist Mono', monospace;
font-size: 12px;
letter-spacing: 0.22em;
text-transform: uppercase;
color: #FF6B35;
display: block;
opacity: 0;
transform: translateY(8px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.about-hero-eyebrow.in { opacity: 1; transform: none; }
.about-hero-h1 {
font-family: 'Geist', sans-serif;
font-size: clamp(36px, 4.2vw, 64px);
font-weight: 500;
letter-spacing: -0.025em;
color: #ffffff;
max-width: 800px;
margin: 20px auto 0;
line-height: 1.08;
opacity: 0;
transform: translateY(8px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.about-hero-h1.in { opacity: 1; transform: none; }
.about-hero-sub {
font-family: 'Geist', sans-serif;
font-size: 18px;
font-weight: 400;
color: rgba(232,230,224,0.6);
max-width: 520px;
margin: 24px auto 0;
line-height: 1.6;
opacity: 0;
transform: translateY(8px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.about-hero-sub.in { opacity: 1; transform: none; }
/* ══════════════════════════════════════
MISSION
══════════════════════════════════════ */
#mission {
background: #0E0E0E;
padding: 0 52px;
}
.mission-grid {
display: grid;
grid-template-columns: 50% 50%;
gap: 80px;
align-items: start;
}
.mission-left { max-width: 420px; }
.mission-right { max-width: 420px; }
.mission-h2 {
font-family: 'Geist', sans-serif;
font-size: 32px;
font-weight: 500;
letter-spacing: -0.02em;
color: #ffffff;
line-height: 1.1;
margin: 0;
}
.mission-body {
font-family: 'Geist', sans-serif;
font-size: 16px;
line-height: 1.75;
color: rgba(232,230,224,0.65);
margin: 0 0 24px;
}
.mission-body:last-child { margin-bottom: 0; }
/* ══════════════════════════════════════
TEAM
══════════════════════════════════════ */
#team {
background: #0E0E0E;
padding: 0 52px;
}
.team-h2 {
font-family: 'Geist', sans-serif;
font-size: 48px;
font-weight: 500;
color: #ffffff;
margin-top: 16px;
margin-bottom: 56px;
}
.team-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 320px));
justify-content: center;
gap: 24px;
max-width: 1040px;
margin-left: auto;
margin-right: auto;
width: 100%;
}
.team-card {
background: #0E0E0E;
border: 1px solid rgba(232,230,224,0.08);
width: 100%;
padding: 0;
overflow: hidden;
cursor: default;
transition: background 0.2s ease;
}
.team-card:hover { background: #181818; }
.team-img-wrap {
width: 100%;
height: 0;
padding-bottom: 100%;
position: relative;
overflow: hidden;
background: #111;
}
.team-img-wrap img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
display: block;
filter: grayscale(100%);
}
.team-img-wrap a img {
transition: opacity 0.2s ease;
}
.team-img-wrap a:hover img {
opacity: 0.8;
}
.team-card-body {
padding: 24px 20px 28px;
}
.team-name {
font-family: 'Geist', sans-serif;
font-size: 16px;
font-weight: 500;
color: #ffffff;
display: block;
}
.team-role {
font-family: 'Geist Mono', monospace;
font-size: 11px;
color: #FF6B35;
text-transform: uppercase;
letter-spacing: 0.14em;
display: block;
margin-top: 6px;
}
.team-bg {
font-family: 'Geist', sans-serif;
font-size: 12px;
color: rgba(232,230,224,0.35);
display: block;
margin-top: 4px;
}
.team-x-link {
display: inline-flex;
align-items: center;
gap: 6px;
margin-top: 12px;
text-decoration: none;
font-family: 'Geist Mono', monospace;
font-size: 11px;
color: rgba(232,230,224,0.35);
letter-spacing: 0.1em;
transition: color 0.2s ease;
}
.team-x-link:hover { color: rgba(232,230,224,0.7); }
/* ══════════════════════════════════════
ADVISORS + INVESTORS
══════════════════════════════════════ */
#advisors,
#investors {
background: #0E0E0E;
padding: 0 52px;
}
.advisor-rows {
margin-top: 32px;
}
.advisor-row {
text-decoration: none;
display: flex;
align-items: center;
justify-content: space-between;
padding: 28px 16px;
border-bottom: 1px solid rgba(232,230,224,0.08);
cursor: pointer;
transition: background 0.2s ease;
margin-left: -16px;
margin-right: -16px;
}
.advisor-row:first-of-type {
border-top: 1px solid rgba(232,230,224,0.08);
}
.advisor-row:hover {
background: rgba(232,230,224,0.04);
}
.advisor-row .advisor-name {
color: #ffffff;
}
.advisor-row .advisor-role {
color: rgba(232,230,224,0.4);
}
.advisor-row .advisor-x-link {
color: rgba(232,230,224,0.35);
}
.advisor-row:hover .advisor-x-link {
color: #FF6B35;
transition: color 0.2s ease;
}
.advisor-name {
font-family: 'Geist', sans-serif;
font-size: 17px;
font-weight: 500;
color: #ffffff;
display: block;
}
.advisor-role {
font-family: 'Geist Mono', monospace;
font-size: 12px;
color: rgba(232,230,224,0.4);
letter-spacing: 0.12em;
display: block;
margin-top: 4px;
}
.advisor-x-link {
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none;
color: rgba(232,230,224,0.35);
font-family: 'Geist Mono', monospace;
font-size: 12px;
letter-spacing: 0.08em;
transition: color 0.2s ease;
flex-shrink: 0;
}
.advisor-x-link:hover { color: #FF6B35; }
/* ══════════════════════════════════════
CONTACT
══════════════════════════════════════ */
#contact {
background: #0E0E0E;
padding: 0 52px;
}
#contact .about-section-inner {
padding-bottom: 120px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.contact-h2 {
font-family: 'Geist', sans-serif;
font-size: 48px;
font-weight: 500;
color: #ffffff;
max-width: 560px;
margin-top: 16px;
line-height: 1.1;
}
.contact-body {
font-family: 'Geist', sans-serif;
font-size: 16px;
color: rgba(232,230,224,0.6);
margin-top: 20px;
}
.contact-email {
font-family: 'Geist Mono', monospace;
font-size: 20px;
color: #FF6B35;
text-decoration: none;
display: block;
margin-top: 16px;
transition: opacity 0.2s ease;
}
.contact-email:hover { opacity: 0.75; }
.contact-cta {
font-family: 'Geist Mono', monospace;
font-size: 12px;
color: #FF6B35;
text-transform: uppercase;
letter-spacing: 0.16em;
text-decoration: none;
display: block;
margin-top: 28px;
transition: opacity 0.2s ease;
}
.contact-cta:hover { opacity: 0.75; }
/* ══════════════════════════════════════
MOBILE
══════════════════════════════════════ */
@media (max-width: 768px) {
#about-hero { padding: 100px 24px 60px; }
.about-divider { margin-left: -24px; }
.about-divider.expanded { width: calc(100% + 48px); }
#mission { padding: 0 24px; }
.mission-grid { grid-template-columns: 1fr; gap: 32px; }
.mission-h2 { font-size: 28px; }
#team { padding: 0 24px; }
.team-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
.team-h2 { font-size: 32px; }
#advisors,
#investors { padding: 0 24px; }
.advisor-row { flex-direction: column; align-items: flex-start; gap: 12px; }
#contact { padding: 0 24px; }
#contact .about-section-inner { padding-bottom: 80px; }
.contact-h2 { font-size: 32px; }
}
</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 -->
<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">Technology</a></li>
<li><a href="wallet.html">Wallet</a></li>
<li><a href="about.html" class="nav-active">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="about-hero">
<div class="about-hero-content">
<span class="about-hero-eyebrow" id="about-eyebrow">ABOUT QUANTUS</span>
<h1 class="about-hero-h1" id="about-h1">Built by people who saw the threat before it was obvious.</h1>
<p class="about-hero-sub" id="about-sub">Quantus is a team of engineers, researchers, and operators building the infrastructure for a post-quantum financial system.</p>
</div>
</section>
<!-- MISSION -->
<section id="mission">
<div class="about-divider"></div>
<div class="about-section-inner">
<div class="mission-grid">
<div class="mission-left about-animate" data-delay="0">
<span class="about-eyebrow">MISSION</span>
<h2 class="mission-h2">Permanent Economic Freedom</h2>
</div>
<div class="mission-right about-animate" data-delay="0.15">
<p class="mission-body">Every decision we make, from protocol design to user interface, is grounded in deep technical knowledge and a respect for simplicity. </p>
<p class="mission-body">We focus on the fundamentals: mathematically proven security, high performance, and a product experience that feels effortless.</p>
<p class="mission-body">We build with precision. We move fast without cutting corners. And we design for the world that is coming, not the one that has already passed.</p>
</div>
</div>
</div>
</section>
<!-- TEAM -->
<section id="team">
<div class="about-divider"></div>
<div class="about-section-inner">
<span class="about-eyebrow about-animate" data-delay="0">THE TEAM</span>
<h2 class="team-h2 about-animate" data-delay="0.1">The people building it.</h2>
<div class="team-grid">
<!-- Christopher Smith -->
<div class="team-card about-animate" data-delay="0">
<div class="team-img-wrap">
<a href="https://x.com/YuviLightman" target="_blank" rel="noopener" style="display:block;line-height:0;"><img src="images/Christopher_Smith.png" alt="Christopher Smith"></a>
</div>
<div class="team-card-body">
<span class="team-name">Christopher Smith</span>
<span class="team-role">CEO and CTO</span>
<a href="https://x.com/YuviLightman" target="_blank" rel="noopener" class="team-x-link">
<svg viewBox="0 0 24 24" width="12" height="12" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
@YuviLightman
</a>
</div>
</div>
<!-- Joseph Mattia -->
<div class="team-card about-animate" data-delay="0.08">
<div class="team-img-wrap">
<a href="https://x.com/JoeMattia" target="_blank" rel="noopener" style="display:block;line-height:0;"><img src="images/Joe_Mattia.png" alt="Joseph Mattia"></a>
</div>
<div class="team-card-body">
<span class="team-name">Joseph Mattia</span>
<span class="team-role">COO · Sales and Operations</span>
<a href="https://x.com/JoeMattia" target="_blank" rel="noopener" class="team-x-link">
<svg viewBox="0 0 24 24" width="12" height="12" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
@JoeMattia
</a>
</div>
</div>
<!-- Cezary Olborski -->
<div class="team-card about-animate" data-delay="0.16">
<div class="team-img-wrap">
<a href="https://x.com/czareko" target="_blank" rel="noopener" style="display:block;line-height:0;"><img src="images/Cezary_Olborski.png" alt="Cezary Olborski"></a>
</div>
<div class="team-card-body">
<span class="team-name">Cezary Olborski</span>
<span class="team-role">Senior Engineer · DeFi HFT</span>
<a href="https://x.com/czareko" target="_blank" rel="noopener" class="team-x-link">
<svg viewBox="0 0 24 24" width="12" height="12" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
@czareko
</a>
</div>
</div>
<!-- Ethan Cemer -->
<div class="team-card about-animate" data-delay="0.24">
<div class="team-img-wrap">
<a href="https://x.com/ethan_t_c_" target="_blank" rel="noopener" style="display:block;line-height:0;"><img src="images/Ethan_Cemer.png" alt="Ethan Cemer"></a>
</div>
<div class="team-card-body">
<span class="team-name">Ethan Cemer</span>
<span class="team-role">Zero-Knowledge Engineer</span>
<a href="https://x.com/ethan_t_c_" target="_blank" rel="noopener" class="team-x-link">
<svg viewBox="0 0 24 24" width="12" height="12" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
@ethan_t_c_
</a>
</div>
</div>
<!-- Nikolaus Hager -->
<div class="team-card about-animate" data-delay="0.32">
<div class="team-img-wrap">
<a href="https://x.com/n13" target="_blank" rel="noopener" style="display:block;line-height:0;"><img src="images/Nikolaus_Hager.png" alt="Nikolaus Hager"></a>
</div>
<div class="team-card-body">
<span class="team-name">Nikolaus Hager</span>
<span class="team-role">Senior Engineer · Blockchain</span>
<a href="https://x.com/n13" target="_blank" rel="noopener" class="team-x-link">
<svg viewBox="0 0 24 24" width="12" height="12" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
@n13
</a>
</div>
</div>
<!-- Jonathan Angle -->
<div class="team-card about-animate" data-delay="0.4">
<div class="team-img-wrap">
<a href="https://x.com/defijangle" target="_blank" rel="noopener" style="display:block;line-height:0;"><img src="images/Jonathan_Angle.png" alt="Jonathan Angle"></a>
</div>
<div class="team-card-body">
<span class="team-name">Jonathan "Jangle" Angle</span>
<span class="team-role">Communications Director</span>
<a href="https://x.com/defijangle" target="_blank" rel="noopener" class="team-x-link">
<svg viewBox="0 0 24 24" width="12" height="12" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
@defijangle
</a>
</div>
</div>
</div>
</div>
</section>
<!-- ADVISORS -->
<section id="advisors">
<div class="about-divider"></div>
<div class="about-section-inner">
<span class="about-eyebrow about-animate" data-delay="0">ADVISORS</span>
<div class="advisor-rows">
<a href="https://x.com/rargulati" target="_blank" rel="noopener" class="advisor-row about-animate" data-delay="0">
<div>
<span class="advisor-name">Raghav Gulati</span>
<span class="advisor-role">CEO, CoinList</span>
</div>
<span class="advisor-x-link">
<svg viewBox="0 0 24 24" width="14" height="14" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
@rargulati
</span>
</a>
<a href="https://x.com/_TomHoward" target="_blank" rel="noopener" class="advisor-row about-animate" data-delay="0.1">
<div>
<span class="advisor-name">Tom Howard</span>
<span class="advisor-role">Board, Zcash</span>
</div>
<span class="advisor-x-link">
<svg viewBox="0 0 24 24" width="14" height="14" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
@_TomHoward
</span>
</a>
<a href="https://x.com/arjunkhemani" target="_blank" rel="noopener" class="advisor-row about-animate" data-delay="0.2">
<div>
<span class="advisor-name">Arjun Khemani</span>
<span class="advisor-role">Writer · Crypto Advocate</span>
</div>
<span class="advisor-x-link">
<svg viewBox="0 0 24 24" width="14" height="14" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
@arjunkhemani
</span>
</a>
</div>
</div>
</section>
<!-- INVESTORS -->
<section id="investors">
<div class="about-divider"></div>
<div class="about-section-inner">
<span class="about-eyebrow about-animate" data-delay="0">BACKED BY</span>
<div class="advisor-rows">
<a href="https://x.com/balajis" target="_blank" rel="noopener" class="advisor-row about-animate" data-delay="0">
<div>
<span class="advisor-name">Balaji Srinivasan</span>
<span class="advisor-role">Founder, Network School</span>
</div>
<span class="advisor-x-link">
<svg viewBox="0 0 24 24" width="14" height="14" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
@balajis
</span>
</a>
<a href="https://x.com/nivi" target="_blank" rel="noopener" class="advisor-row about-animate" data-delay="0.1">
<div>
<span class="advisor-name">Babak Nivi</span>
<span class="advisor-role">Co-Founder, AngelList</span>
</div>
<span class="advisor-x-link">
<svg viewBox="0 0 24 24" width="14" height="14" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
@nivi
</span>
</a>
</div>
</div>
</section>
<!-- CONTACT -->
<section id="contact">
<div class="about-divider"></div>
<div class="about-section-inner">
<span class="about-eyebrow about-animate" data-delay="0">GET IN TOUCH</span>
<h2 class="contact-h2 about-animate" data-delay="0.15">Want to work with us or learn more?</h2>
<p class="contact-body about-animate" data-delay="0.3">For partnerships, press, and investment inquiries:</p>
<a href="mailto:hello@quantus.com" class="contact-email about-animate" data-delay="0.45">hello@quantus.com</a>
<a href="mailto:hello@quantus.com?subject=Inquiry%20from%20Quantus%20Website" class="contact-cta about-animate" data-delay="0.6">SEND US A MESSAGE →</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>
(function(){
// Nav
const nav = document.querySelector('nav');
if (nav) nav.classList.add('visible');
// Hero animate
const eyebrow = document.getElementById('about-eyebrow');
const h1 = document.getElementById('about-h1');
const sub = document.getElementById('about-sub');
window.addEventListener('load', () => {
setTimeout(() => eyebrow.classList.add('in'), 100);
setTimeout(() => h1.classList.add('in'), 250);
setTimeout(() => sub.classList.add('in'), 400);
});
// Dividers
document.querySelectorAll('.about-divider').forEach(el => {
new IntersectionObserver(([e]) => {
if (e.isIntersecting) { el.classList.add('expanded'); }
}, { threshold: 0.1 }).observe(el);
});
// Scroll animations
document.querySelectorAll('.about-animate').forEach(el => {
new IntersectionObserver(([e]) => {
if (e.isIntersecting) {
el.style.transitionDelay = (el.dataset.delay || '0') + 's';
el.classList.add('in');
}
}, { threshold: 0.12 }).observe(el);
});
})();
</script>
</body>
</html>