-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1219 lines (1126 loc) · 64.6 KB
/
index.html
File metadata and controls
1219 lines (1126 loc) · 64.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Matteo Fontolan — itsjustwhitee</title>
<link rel="stylesheet" href="shared.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Syne:wght@700;800&display=swap" rel="stylesheet">
<meta name="description" content="Matteo Fontolan: MSc Computer Engineering student at UniBo. A personal space for my evolving ideas, tech projects, and my journey in engineering.">
<meta name="keywords" content="Matteo Fontolan, justwhitee, computer, engineering, CUDA, AI, Robotics, University of Bologna, ingegneria, informatica, Università di Bologna, CV, Portfolio, Projects, Skills, Experience, Education, unibo, ing, ingegnere">
<link rel="canonical" href="https://justwhitee.org/">
<meta property="og:type" content="website">
<meta property="og:url" content="https://justwhitee.org/">
<meta property="og:title" content="Matteo Fontolan — justwhitee | Computer Engineering Student ">
<meta property="og:description" content="Engineering with a side of curiosity. Explore my projects in Computer Engineering.">
<meta property="og:image" content="https://justwhitee.org/assets/og-image.jpg">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://justwhitee.org/">
<meta name="twitter:title" content="Matteo Fontolan — justwhitee | Computer Engineering Student">
<meta name="twitter:description" content="Matteo Fontolan: MSc Computer Engineering student at UniBo. A personal space for my evolving ideas, tech projects, and my journey in engineering.">
<meta name="twitter:image" content="https://justwhitee.org/assets/og-image.jpg">
<link rel="icon" type="image/png" href="/assets/favicon.png">
<link rel="icon" type="image/svg+xml" href="assets/logo.svg">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon.png">
<link rel="manifest" href="/manifest.json">
<meta name="theme-color" content="#00bbc9">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Matteo Fontolan",
"alternateName": "justwhitee",
"url": "https://justwhitee.org",
"email": "matteo.fontolan@justwhitee.org",
"publisher": {
"@type": "Person",
"name": "Matteo Fontolan"
},
"sameAs": [
"https://github.com/itsjustwhitee",
"https://www.instagram.com/matteo.ttf",
"https://www.instagram.com/justwhitee.studio",
"https://www.instagram.com/justwhitee.caricature",
"http://www.linkedin.com/in/justwhitee"
],
"hasPart": [
{
"@type": "WebPage",
"name": "Bento Portfolio",
"url": "https://justwhitee.org/bento/"
},
{
"@type": "WebPage",
"name": "Curriculum Vitae",
"url": "https://justwhitee.org/cv/"
}
]
}
</script>
<!-- i18n must load before DOMContentLoaded fires -->
<script src="./components.js"></script>
<script src="i18n.js"></script>
<style>
body { padding: 0; }
/* ── HERO ────────────────────────────────────────────────────────────── */
#hero {
min-height: 100vh;
display: flex; flex-direction: column;
justify-content: center; align-items: flex-start;
padding: 120px 28px 80px;
max-width: 1100px; margin: 0 auto;
position: relative; z-index: 1;
}
.hero-eyebrow {
font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
color: var(--accent-bright);
opacity: 0; animation: fadeUp 0.6s ease 0.2s forwards;
margin-bottom: 22px;
}
.hero-name {
font-family: 'Syne', sans-serif; font-weight: 800;
font-size: clamp(3.2rem, 8vw, 7rem);
line-height: 0.95; color: #fff;
opacity: 0; animation: fadeUp 0.7s ease 0.35s forwards;
margin-bottom: 24px;
}
.hero-name .accent { color: var(--accent-bright); }
.hero-role-tags {
display: flex; flex-wrap: wrap; gap: 8px;
opacity: 0; animation: fadeUp 0.7s ease 0.5s forwards;
margin-bottom: 38px;
}
.hero-tag {
font-family: 'JetBrains Mono', monospace;
font-size: 0.9rem; font-weight: 700;
padding: 9px 20px; border-radius: 999px;
background: rgba(0,187,201,0.1);
border: 1px solid rgba(0,187,201,0.32);
color: var(--accent-bright); letter-spacing: 0.03em;
transition: background 0.2s, border-color 0.2s;
}
.hero-tag:hover { background: rgba(0,187,201,0.2); border-color: rgba(0,187,201,0.6); }
.hero-desc {
font-size: 0.92rem; color: var(--text-bio);
line-height: 1.85; max-width: 560px;
opacity: 0; animation: fadeUp 0.7s ease 0.65s forwards;
margin-bottom: 48px;
}
.hero-ctas {
display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
opacity: 0; animation: fadeUp 0.7s ease 0.8s forwards;
}
.hero-ctas .btn-pill { padding: 11px 22px; font-size: 0.78rem; }
.btn-cv { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-cv:hover { background: rgba(255,255,255,0.15); }
.btn-bento { background: rgba(9,134,143,0.18); color: var(--accent-bright); border: 1px solid rgba(0,187,201,0.28); }
.btn-bento:hover { background: rgba(9,134,143,0.32); border-color: rgba(0,187,201,0.6); }
.hero-logo-giant {
position: fixed; right: 0; top: 50%;
transform: translateY(-50%) translateX(50%);
width: clamp(800px, 90vw, 1150px);
pointer-events: none; z-index: 0; opacity: 0;
filter: drop-shadow(0 0 120px rgba(0,187,201,0.08));
will-change: transform, opacity;
}
.hero-scroll {
position: absolute; bottom: 36px; left: 50%;
transform: translateX(-50%);
font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
color: rgba(255,255,255,0.2);
display: flex; flex-direction: column; align-items: center; gap: 8px;
opacity: 0; animation: fadeUp 0.7s ease 1.4s forwards;
}
.scroll-line {
width: 1px; height: 52px;
background: linear-gradient(to bottom, var(--accent-bright), transparent);
animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
0%,100% { opacity: 0.25; transform: scaleY(1); }
50% { opacity: 1; transform: scaleY(1.15); }
}
/* ── SECTIONS ────────────────────────────────────────────────────────── */
.section { padding: 100px 28px; max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 56px; }
.section-title {
font-family: 'Syne', sans-serif;
font-size: clamp(1.8rem, 4vw, 2.8rem);
font-weight: 800; color: #fff; line-height: 1.1;
}
.section-title .accent { color: var(--accent-bright); }
.section-sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 10px; line-height: 1.6; max-width: 520px; }
.section-divider {
width: calc(100% - 56px); margin: 0 28px; height: 1px;
background: linear-gradient(to right, rgba(0,187,201,0.3), transparent);
}
/* ── ABOUT ───────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: center; }
.about-pic-wrap { position: relative; }
.about-pic {
width: 100%; aspect-ratio: 1; border-radius: var(--radius);
object-fit: cover; box-shadow: 0 24px 60px rgba(0,0,0,0.55); display: block;
}
.about-pic-badge {
position: absolute; bottom: -16px; right: -16px;
background: linear-gradient(135deg, #0d6060, #083c3c);
border: 1px solid rgba(0,187,201,0.3); border-radius: 16px; padding: 14px 18px;
font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 700;
color: var(--accent-bright); box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.about-pic-badge span { font-size: 1.3rem; display: block; color: #fff; }
.about-text h3 { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.about-text p { font-size: 0.85rem; color: var(--text-bio); line-height: 1.85; margin-bottom: 16px; }
.about-text p:last-of-type { margin-bottom: 28px; }
.about-links { display: flex; gap: 10px; flex-wrap: wrap; }
.about-links .btn-pill { padding: 9px 18px; font-size: 0.72rem; }
/* ── PROJECTS ────────────────────────────────────────────────────────── */
/* HashCrackerz */
#hashcrackerz-card .project-img-wrap {
position: relative;
overflow: hidden;
}
.crumb {
position: absolute !important;
border: 1px solid #000;
pointer-events: none;
z-index: 100;
top: 0; left: 0;
}
@keyframes crumbFall {
0% {
transform: translate(0, 0) scale(1);
opacity: 1;
}
20% {
transform: translate(calc(var(--dx) * 0.2), -15px) scale(1.1);
}
100% {
transform: translate(var(--dx), 150px) rotate(var(--rot));
opacity: 0;
}
}
/* EdgeCV4Safety */
#edgecv-container {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
min-height: 250px;
}
#edgecv-container svg {
width: 100%;
height: auto;
max-height: 100%;
display: block;
}
#pupil-focus-group {
transition: transform 0.1s ease-out;
will-change: transform;
}
/* Rack Controller */
@keyframes fanSpin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.rack-spin-wrapper {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
.project-card:hover .rack-spin-wrapper {
animation-duration: 1.2s;
}
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.project-card {
position: relative;
background: linear-gradient(145deg, #0d2f2f 0%, #081c1c 100%);
border: 1px solid rgba(9,134,143,0.2);
border-radius: var(--radius); padding: 0; overflow: hidden;
transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275),
box-shadow 0.4s ease, border-color 0.4s ease;
}
.project-card::before {
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
background: linear-gradient(to right, var(--accent-bright), transparent);
opacity: 0; transition: opacity 0.35s ease;
}
.project-card:hover { transform: translateY(-7px); border-color: rgba(0,187,201,0.4); box-shadow: 0 28px 60px rgba(0,0,0,0.55), 0 0 22px rgba(9,134,143,0.15); }
.project-card:hover::before { opacity: 1; }
.project-img-wrap { overflow: hidden; background: rgba(9,134,143,0.08); display: flex; align-items: center; justify-content: center; }
.project-img {
width: 100%; height: 160px; object-fit: contain; display: block; padding: 16px;
transition: transform 0.5s ease, filter 0.5s ease;
filter: brightness(0.92);
}
.project-card:hover .project-img { transform: scale(1.04); filter: brightness(1); }
.project-img-placeholder {
width: 100%; height: 190px;
background: linear-gradient(135deg, rgba(9,134,143,0.2) 0%, rgba(0,0,0,0.35) 100%);
display: flex; align-items: center; justify-content: center;
font-size: 3rem; opacity: 0.35;
}
.project-body { padding: 26px 26px 22px; }
.project-card.featured {
grid-column: span 2;
display: grid; grid-template-columns: 1fr 1fr;
}
.project-card.featured .project-img-wrap { height: 100%; }
.project-card.featured .project-img { height: 100%; min-height: 280px; padding: 24px; }
.project-card.featured .project-img-placeholder { height: 100%; min-height: 280px; }
.project-card.featured .project-body { padding: 32px 30px 28px; }
.project-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.project-badge {
font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase;
padding: 4px 10px; border-radius: 999px;
background: rgba(0,187,201,0.12); border: 1px solid rgba(0,187,201,0.25); color: var(--accent-bright);
}
.project-badge.intern { background: rgba(255,168,0,0.1); border-color: rgba(255,168,0,0.25); color: #ffa800; }
.project-year { font-size: 0.59rem; color: var(--text-muted); letter-spacing: 0.1em; }
.project-card h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 800; color: #fff; line-height: 1.25; margin-bottom: 8px; }
.project-card .tagline { font-size: 0.72rem; color: var(--accent-bright); margin-bottom: 12px; font-style: italic; opacity: 0.8; }
.project-card .proj-desc { font-size: 0.78rem; color: var(--text-bio); line-height: 1.75; }
.project-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.tag { font-size: 0.56rem; padding: 3px 9px; border-radius: 6px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }
.project-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; flex-wrap: wrap; gap: 10px; }
.project-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.68rem; color: var(--accent-bright); transition: gap 0.2s; text-decoration: none; }
.project-link:hover { gap: 10px; }
.project-contributors { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.contrib-label { font-size: 0.56rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.contrib-chip { font-size: 0.57rem; padding: 2px 9px; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
.project-stats { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.stat-box { background: rgba(9,134,143,0.1); border: 1px solid rgba(9,134,143,0.2); border-radius: 12px; padding: 12px 14px; }
.stat-box-label { font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent-bright); margin-bottom: 4px; }
.stat-box-value { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: #fff; }
.stat-box-desc { font-size: 0.67rem; color: var(--text-muted); margin-top: 2px; line-height: 1.4; }
/* ── SKILLS ──────────────────────────────────────────────────────────── */
.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.skill-group { border-radius: var(--radius-sm); padding: 24px 22px; border: 1px solid rgba(9,134,143,0.18); transition: border-color 0.3s ease, transform 0.3s ease; }
.skill-group:hover { transform: translateY(-3px); }
.skill-group:nth-child(1) { background: linear-gradient(145deg, rgba(0,187,201,0.18) 0%, rgba(0,187,201,0.06) 100%); border-color: rgba(0,187,201,0.22); }
.skill-group:nth-child(1):hover { border-color: rgba(0,187,201,0.5); }
.skill-group:nth-child(2) { background: linear-gradient(145deg, rgba(255,210,60,0.18) 0%, rgba(255,210,60,0.05) 100%); border-color: rgba(255,210,60,0.2); }
.skill-group:nth-child(2):hover { border-color: rgba(255,210,60,0.45); }
.skill-group:nth-child(3) { background: linear-gradient(145deg, rgba(90,181,245,0.18) 0%, rgba(90,181,245,0.05) 100%); border-color: rgba(90,181,245,0.2); }
.skill-group:nth-child(3):hover { border-color: rgba(90,181,245,0.45); }
.skill-group:nth-child(4) { background: linear-gradient(145deg, rgba(192,122,240,0.18) 0%, rgba(192,122,240,0.05) 100%); border-color: rgba(192,122,240,0.2); }
.skill-group:nth-child(4):hover { border-color: rgba(192,122,240,0.45); }
.skill-group:nth-child(5) { background: linear-gradient(145deg, rgba(240,160,90,0.18) 0%, rgba(240,160,90,0.05) 100%); border-color: rgba(240,160,90,0.2); }
.skill-group:nth-child(5):hover { border-color: rgba(240,160,90,0.45); }
.skill-group:nth-child(6) { background: linear-gradient(145deg, rgba(90,240,160,0.18) 0%, rgba(90,240,160,0.05) 100%); border-color: rgba(90,240,160,0.18); }
.skill-group:nth-child(6):hover { border-color: rgba(90,240,160,0.42); }
.skill-group-label { font-size: 0.59rem; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 16px; opacity: 0.85; }
.skill-group:nth-child(1) .skill-group-label { color: var(--accent-bright); }
.skill-group:nth-child(2) .skill-group-label { color: #ffd060; }
.skill-group:nth-child(3) .skill-group-label { color: #5ab5f5; }
.skill-group:nth-child(4) .skill-group-label { color: #c07af0; }
.skill-group:nth-child(5) .skill-group-label { color: #f0a05a; }
.skill-group:nth-child(6) .skill-group-label { color: #5af0a0; }
.skill-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.skill-pill { font-size: 0.67rem; padding: 5px 11px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: var(--text-body); transition: background 0.2s, border-color 0.2s, transform 0.2s; }
.skill-pill:hover { background: rgba(255,255,255,0.13); transform: scale(1.05); }
/* ── EXPERIENCE & EDUCATION ──────────────────────────────────────────── */
.exp-edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.exp-col-label { font-size: 0.67rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 26px; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--accent-bright), transparent); opacity: 0.3; }
.tl-item { position: relative; margin-bottom: 40px; }
.tl-item::before { content: ''; position: absolute; left: -36px; top: 7px; width: 9px; height: 9px; border-radius: 50%; background: var(--accent-bright); box-shadow: 0 0 10px rgba(0,187,201,0.5); }
.tl-period { font-size: 0.61rem; letter-spacing: 0.12em; color: var(--accent-bright); opacity: 0.7; margin-bottom: 5px; text-transform: uppercase; }
.tl-role { font-family: 'Syne', sans-serif; font-size: 0.98rem; font-weight: 800; color: #fff; margin-bottom: 3px; }
.tl-company { font-size: 0.71rem; color: var(--text-muted); margin-bottom: 10px; }
.tl-desc { font-size: 0.77rem; color: var(--text-bio); line-height: 1.75; }
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.edu-card { background: linear-gradient(145deg, #0d2f2f 0%, #081c1c 100%); border: 1px solid rgba(9,134,143,0.18); border-radius: var(--radius-sm); padding: 20px 18px; transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; }
.edu-card:hover { border-color: rgba(0,187,201,0.35); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.35), 0 0 14px rgba(0,187,201,0.08); }
.edu-period { font-size: 0.59rem; color: var(--accent-bright); opacity: 0.7; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 7px; }
.edu-degree { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 800; color: #fff; margin-bottom: 3px; }
.edu-school { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 8px; }
.edu-grade { font-size: 0.67rem; color: var(--accent-bright); }
/* ── CTA ─────────────────────────────────────────────────────────────── */
#cta { padding: 80px 28px 120px; max-width: 1100px; margin: 0 auto; text-align: center; }
#cta h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 18px; line-height: 1.1; }
#cta h2 .accent { color: var(--accent-bright); }
#cta > div > p { font-size: 0.88rem; color: var(--text-bio); line-height: 1.75; max-width: 500px; margin: 0 auto 36px; }
.cta-links { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-links .btn-pill { padding: 12px 24px; font-size: 0.78rem; }
/* ── FOOTER ──────────────────────────────────────────────────────────── */
.site-footer { margin: 0; }
.site-footer .footer-inner { padding: 0 28px 32px; }
/* ── PARALLAX ORBS ───────────────────────────────────────────────────── */
.parallax-orb { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(90px); }
.orb1 { width: 550px; height: 550px; background: radial-gradient(circle, rgba(0,187,201,0.06) 0%, transparent 70%); top: -80px; right: -80px; }
.orb2 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(9,79,79,0.1) 0%, transparent 70%); bottom: 30%; left: -80px; }
/* ══════════════════════════════════════════════════════════════════════
RESPONSIVE
══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1000px) { .hero-logo-giant { display: none; } }
/* ── TABLET ≤900px ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
.about-grid { grid-template-columns: 1fr; }
.about-pic-wrap { max-width: 280px; margin: 0 auto; }
.projects-grid { grid-template-columns: 1fr; }
.project-card.featured {
grid-column: span 1;
display: flex; flex-direction: column;
}
.project-card.featured .project-img-wrap { height: auto; }
.project-card.featured .project-img { height: 200px; min-height: unset; padding: 16px; }
.skills-grid { grid-template-columns: 1fr 1fr; }
.exp-edu-grid { grid-template-columns: 1fr; gap: 40px; }
.edu-grid { grid-template-columns: 1fr 1fr; }
.edu-card[style*="grid-column"] { grid-column: span 2 !important; }
}
/* ── MOBILE ≤600px ───────────────────────────────────────────────────── */
@media (max-width: 600px) {
/* Hero */
#hero { padding: 84px 18px 56px; min-height: auto; }
.hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.18em; margin-bottom: 14px; }
.hero-name { font-size: clamp(2.6rem, 13vw, 3.8rem); margin-bottom: 18px; }
.hero-role-tags { margin-bottom: 20px; }
.hero-tag { font-size: 0.72rem; padding: 7px 14px; }
.hero-desc { font-size: 0.82rem; margin-bottom: 28px; max-width: 100%; }
.hero-ctas { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 9px; }
.hero-ctas .btn-pill { justify-content: center; padding: 10px 14px; font-size: 0.76rem; }
.hero-scroll { display: none; }
/* Sections */
.section { padding: 56px 18px; }
.section-header { margin-bottom: 32px; }
.section-divider { width: calc(100% - 36px); margin: 0 18px; }
/* About */
.about-pic-wrap { max-width: 200px; }
.about-pic-badge {
bottom: -10px; right: -10px;
padding: 10px 14px; font-size: 0.68rem; border-radius: 12px;
}
.about-pic-badge span { font-size: 1.1rem; }
.about-text h3 { font-size: 1.05rem; }
.about-links { gap: 8px; }
.about-links .btn-pill { flex: 1 1 auto; justify-content: center; min-width: 0; }
/* Projects */
.projects-grid { gap: 14px; }
.project-body { padding: 18px 16px 16px; }
.project-card h3 { font-size: 1rem; }
.project-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
.project-stats { gap: 8px; }
.stat-box-value { font-size: 1.2rem; }
/* Keep tags readable */
.project-tags { gap: 5px; }
.tag { font-size: 0.54rem; }
/* Skills */
.skills-grid { grid-template-columns: 1fr; gap: 10px; }
.skill-group { padding: 16px 14px; }
/* Experience */
.exp-edu-grid { gap: 28px; }
.timeline { padding-left: 22px; }
.tl-item { margin-bottom: 28px; }
.tl-item::before { left: -26px; width: 8px; height: 8px; }
.edu-grid { grid-template-columns: 1fr; gap: 10px; }
.edu-card[style*="grid-column"] { grid-column: span 1 !important; }
.edu-card { padding: 14px 14px; }
/* CTA */
#cta { padding: 52px 18px 72px; }
.cta-links {
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}
.cta-links .btn-pill { justify-content: center; }
/* Footer */
.site-footer .footer-inner { padding: 0 18px 28px; }
}
/* ── SMALL MOBILE ≤400px ─────────────────────────────────────────────── */
@media (max-width: 400px) {
.hero-name { font-size: clamp(2.2rem, 15vw, 2.9rem); }
.hero-tag { font-size: 0.65rem; padding: 6px 12px; }
.section { padding: 44px 14px; }
}
/* ── SECTION NAV (expanding pills) ─────────────────────────────────────── */
/* Container: fixed width = collapsed pill size so dots are always
right-aligned at the same x. overflow:visible lets expanded pills
protrude to the left without clipping. */
#section-nav {
position: fixed;
right: 18px;
top: 50%;
transform: translateY(-50%);
z-index: 90;
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 12px;
width: 22px; /* exact collapsed size — all dots share this column */
overflow: visible; /* expanded pills protrude left, never clipped */
pointer-events: none;
}
/* Base pill — ALL dots collapse to the same 22×22px circle */
.snav-dot {
pointer-events: all;
display: flex;
align-items: center;
justify-content: flex-end;
height: 22px;
width: max-content; /* natural content width when expanded */
max-width: 22px; /* collapsed: only the circle is visible */
overflow: hidden;
border-radius: 999px;
background: transparent;
border: 1.5px solid transparent;
cursor: pointer;
text-decoration: none;
transition:
max-width 0.45s cubic-bezier(0.23, 1, 0.32, 1),
background 0.3s ease,
border-color 0.3s ease,
box-shadow 0.3s ease;
}
/* Label */
.snav-dot::before {
content: attr(data-label);
flex-shrink: 0;
padding: 0 8px 0 12px;
font-family: 'JetBrains Mono', monospace;
font-size: 0.58rem;
letter-spacing: 0.08em;
color: var(--accent-bright);
white-space: nowrap;
opacity: 0;
transition: opacity 0.22s ease 0.12s;
pointer-events: none;
}
/* Dot circle — inactive: small white dot, right side, consistent margin */
.snav-dot::after {
content: '';
flex-shrink: 0;
width: 5px;
height: 5px;
border-radius: 50%;
background: rgba(255,255,255,0.3);
margin-right: 7px; /* (22 - 1.5border*2 - 5dot) / 2 ≈ centred in 22px */
transition:
background 0.3s ease,
width 0.3s ease,
height 0.3s ease,
box-shadow 0.3s ease,
margin-right 0.3s ease;
}
/* ── ACTIVE: same collapsed size, but teal dot + teal border ── */
.snav-dot.active {
border-color: rgba(0,187,201,0.45);
background: rgba(0,187,201,0.08);
box-shadow: 0 0 8px rgba(0,187,201,0.15);
}
.snav-dot.active::after {
width: 9px;
height: 9px;
background: var(--accent-bright);
box-shadow: 0 0 6px rgba(0,187,201,0.6);
margin-right: 5px; /* (22 - 3border - 9dot) / 2 ≈ re-centred */
}
/* ── HOVER (mouse) — expand left, show label ── */
.snav-dot:hover {
max-width: 160px;
background: rgba(0,187,201,0.12);
border-color: rgba(0,187,201,0.4);
}
.snav-dot:hover::before { opacity: 1; }
.snav-dot:hover::after {
width: 8px;
height: 8px;
background: var(--accent-bright);
margin-right: 5px;
}
/* ── FLASH (brief show on click) ── */
.snav-dot.flash {
max-width: 160px;
background: rgba(0,187,201,0.12);
border-color: rgba(0,187,201,0.4);
}
.snav-dot.flash::before { opacity: 1; }
.snav-dot.flash::after {
width: 8px;
height: 8px;
background: var(--accent-bright);
margin-right: 5px;
}
/* Tablet */
@media (max-width: 768px) {
#section-nav { right: 10px; gap: 10px; width: 18px; }
.snav-dot { height: 18px; max-width: 18px; }
.snav-dot::after { width: 4px; height: 4px; margin-right: 6px; }
.snav-dot.active::after { width: 7px; height: 7px; margin-right: 4px; }
.snav-dot:hover,
.snav-dot.flash { max-width: 140px; }
.snav-dot:hover::before,
.snav-dot.flash::before { font-size: 0.52rem; padding: 0 6px 0 10px; }
.snav-dot:hover::after,
.snav-dot.flash::after { width: 7px; height: 7px; margin-right: 4px; }
}
/* Mobile — hide entirely */
@media (max-width: 480px) {
#section-nav { display: none; }
}
</style>
</head>
<body data-page="home">
<div class="parallax-orb orb1" id="orb1"></div>
<div class="parallax-orb orb2" id="orb2"></div>
<!-- ── NAV ──────────────────────────────────────────────────────────── -->
<!-- SECTION NAV (vertical dots) — home only -->
<nav id="section-nav" aria-label="Page sections">
<a href="#hero" class="snav-dot" data-label="// hello" aria-label="Hero"></a>
<a href="#about" class="snav-dot" data-label="// about" aria-label="About"></a>
<a href="#projects" class="snav-dot" data-label="// projects" aria-label="Projects"></a>
<a href="#skills" class="snav-dot" data-label="// skills" aria-label="Skills"></a>
<a href="#experience" class="snav-dot" data-label="// exp" aria-label="Experience"></a>
<a href="#cta" class="snav-dot" data-label="// contact" aria-label="Contact"></a>
</nav>
<nav id="site-nav" class="site-nav" data-active="home"></nav>
<!-- ── HERO ─────────────────────────────────────────────────────────── -->
<section id="hero">
<p class="hero-eyebrow" data-i18n="hero.eyebrow">// hello world · itsjustwhitee</p>
<h1 class="hero-name">
Matteo<br><span class="accent">Fontolan</span>
</h1>
<div class="hero-role-tags">
<span class="hero-tag" data-i18n="hero.role_tag">MSc Computer Engineering · Università di Bologna</span>
</div>
<p class="hero-desc" data-i18n="hero.desc">
I build things at the intersection of software and hardware,
from Edge AI systems to IoT controllers to parallel GPU algorithms.
I'm a firm believer that you don't truly 'own' a system until you've understood exactly how it works under the hood.
</p>
<div class="hero-ctas">
<a href="#projects" class="btn-pill btn-primary">
<i class="fa-solid fa-folder-open"></i> <span data-i18n="hero.btn_projects">View Projects</span>
</a>
<a href="bento/" class="btn-pill btn-bento">
<img src="assets/bento.webp" alt="bento icon" width="15" height="15" style="object-fit:contain;opacity:0.9;vertical-align:middle;" aria-hidden="true"> Bento
</a>
<a href="cv/" class="btn-pill btn-cv">
<i class="fa-solid fa-file-lines"></i> <span data-i18n="hero.btn_cv">Curriculum</span>
</a>
</div>
<img src="assets/logo.svg" alt="logo justwhitee svg" class="hero-logo-giant" id="logo-giant" aria-hidden="true">
<div class="hero-scroll"><span data-i18n="hero.scroll">scroll</span><div class="scroll-line"></div></div>
</section>
<div class="section-divider"></div>
<!-- ── ABOUT ─────────────────────────────────────────────────────────── -->
<section id="about" class="section">
<div class="section-header reveal">
<p class="section-label" data-i18n="about.label">// 01 — about me</p>
<h2 class="section-title" data-i18n-html="about.title">Passionate geek,<br><span class="accent">practical engineer.</span></h2>
</div>
<div class="about-grid">
<div class="about-pic-wrap reveal">
<img src="assets/propic.webp" alt="Matteo Fontolan profile picture" class="about-pic">
<div class="about-pic-badge"><span>96/110</span><span data-i18n="about.badge">BSc grade</span></div>
</div>
<div class="about-text reveal" style="transition-delay:0.12s">
<h3 data-i18n="about.h3">From Corbola to...</h3>
<p data-i18n="about.p1">I'm a Computer Engineering student at the University of Bologna (Alma Mater Studiorum), currently pursuing my Master's Degree after graduating, but I'm originally from Corbola, a small quiet town (really?) in the Rovigo province (Veneto).</p>
<p data-i18n="about.p2">I love digging into how things actually work and I define myself as a practical person. My journey has taken me from designing real-time safety systems for industrial robots to optimizing parallel algorithms on GPUs.</p>
<p data-i18n-html="about.p3_html">When I'm not staring at a terminal, I'm likely eating sushi 🍣, or drawing caricatures or overthinking a graphic design layout 🖱️. <br> I believe <em>knowledge is worthless if it's not shared</em>.</p>
<div class="about-links">
<a href="http://www.linkedin.com/in/justwhitee" target="_blank" rel="noopener noreferrer" class="btn-pill btn-ghost"><i class="fa-brands fa-linkedin"></i> LinkedIn</a>
<a href="https://github.com/itsjustwhitee" target="_blank" rel="noopener noreferrer" class="btn-pill btn-ghost"><i class="fa-brands fa-github"></i> GitHub</a>
<a href="/cdn-cgi/l/email-protection#ec818d98988983c28a83829883808d82ac86999f989b8485988989c2839e8b" target="_blank" rel="noopener noreferrer" class="btn-pill btn-ghost"><i class="fa-solid fa-envelope"></i> Email</a>
</div>
</div>
</div>
</section>
<div class="section-divider"></div>
<!-- ── PROJECTS ───────────────────────────────────────────────────────── -->
<section id="projects" class="section">
<div class="section-header reveal">
<p class="section-label" data-i18n="projects.label">// 02 — projects</p>
<h2 class="section-title" data-i18n-html="projects.title">Things I've <span class="accent">built.</span></h2>
<p class="section-sub" data-i18n="projects.sub">Selected work from university courses, internships, and personal curiosity.</p>
</div>
<div class="projects-grid">
<!-- EdgeCV4Safety FEATURED -->
<div class="project-card featured reveal">
<div class="project-img-wrap">
<div class="project-img-wrap" id="edgecv-container"></div>
<div class="project-img-placeholder" style="display:none;">🤖</div>
</div>
<div class="project-body">
<div class="project-meta">
<span class="project-badge intern" data-i18n="proj.edgecv.badge">Internship · Thesis</span>
<span class="project-year">apr–oct 2025</span>
</div>
<h3>EdgeCV4Safety</h3>
<p class="tagline" data-i18n="proj.edgecv.tagline">AI-Driven Contextual Safety System for Industry 5.0</p>
<p class="proj-desc" data-i18n="proj.edgecv.desc">Modular Computer Vision system replacing physical safety barriers. Deployed on NVIDIA Jetson AGX Orin: YOLO + UniDepth/DepthAnything over ONNX Runtime, robot control via RTDE, real-time proximity awareness for Universal Robots.</p>
<div class="project-stats">
<div class="stat-box">
<p class="stat-box-label" data-i18n="proj.edgecv.stat1_lbl">Inference</p>
<p class="stat-box-value">~5 FPS</p>
<p class="stat-box-desc" data-i18n="proj.edgecv.stat1_desc">on Jetson AGX Orin via TensorRT</p>
</div>
<div class="stat-box">
<p class="stat-box-label" data-i18n="proj.edgecv.stat2_lbl">Architecture</p>
<p class="stat-box-desc" data-i18n="proj.edgecv.stat2_desc">Super-repo with Git Submodules — strict decoupling of Vision and Robot Control components.</p>
</div>
</div>
<div class="project-tags">
<span class="tag">Python</span><span class="tag">ONNX</span><span class="tag">CUDA/TensorRT</span>
<span class="tag">YOLO</span><span class="tag">UniDepth</span><span class="tag">DepthAnything</span>
<span class="tag">RTDE</span><span class="tag">Docker</span><span class="tag">Aravis</span>
</div>
<div class="project-footer">
<a href="https://github.com/EdgeCV4Safety/EdgeCV4Safety" target="_blank" rel="noopener noreferrer" class="project-link">
<i class="fa-brands fa-github"></i> GitHub <i class="fa-solid fa-arrow-right" style="font-size:0.58rem;"></i>
</a>
<div class="project-contributors">
<span class="contrib-label" data-i18n="projects.contrib_label">with</span>
<div class="contrib-names">
<span class="contrib-chip">Riccardo Venanzi</span>
<span class="contrib-chip">Davide Tazzioli</span>
</div>
</div>
</div>
</div>
</div>
<!-- HashCrackerz -->
<div class="project-card reveal" id="hashcrackerz-card">
<div class="project-img-wrap">
<img src="assets/projects/hashcrackerz.webp"
onerror="this.style.display='none';this.nextElementSibling.style.display='flex';"
alt="HashCrackerz project logo" class="project-img">
<div class="project-img-placeholder" style="display:none;">⚡</div>
</div>
<div class="project-body">
<div class="project-meta">
<span class="project-badge" data-i18n="proj.hash.badge">MSc Course</span>
<span class="project-year">dec 2025 – feb 2026</span>
</div>
<h3>HashCrackerz</h3>
<p class="tagline" data-i18n="proj.hash.tagline">Multi-Platform SHA-256 Parallel Cracking Suite</p>
<p class="proj-desc" data-i18n="proj.hash.desc">High-performance SHA-256 cracker comparing NVIDIA CUDA, AMD ROCm/HIP, and multi-core CPU via OpenMP. Kernel optimizations include constant memory, loop unrolling, and dynamic work scheduling.</p>
<div class="project-tags">
<span class="tag">C++</span><span class="tag">CUDA</span><span class="tag">ROCm/HIP</span>
<span class="tag">OpenMP</span><span class="tag">OpenSSL</span>
</div>
<div class="project-footer">
<a href="https://github.com/HashCrackerz" target="_blank" rel="noopener noreferrer" class="project-link">
<i class="fa-brands fa-github"></i> GitHub <i class="fa-solid fa-arrow-right" style="font-size:0.58rem;"></i>
</a>
<div class="project-contributors">
<span class="contrib-label" data-i18n="projects.contrib_label">with</span>
<div class="contrib-names">
<span class="contrib-chip">Andrea Vitale</span>
</div>
</div>
</div>
</div>
</div>
<!-- RackController -->
<div class="project-card reveal">
<div class="project-img-wrap">
<div class="rack-spin-wrapper" id="rack-fan-wrapper">
<img src="assets/projects/rackcontroller.svg"
onerror="this.style.display='none';this.nextElementSibling.style.display='flex';"
alt="RackController project logo" class="project-img">
</div>
<div class="project-img-placeholder" style="display:none;">🖥️</div>
</div>
<div class="project-body">
<div class="project-meta">
<span class="project-badge" data-i18n="proj.rack.badge">Personal</span>
<span class="project-year">jan – feb 2026</span>
</div>
<h3>RackController v3.0</h3>
<p class="tagline" data-i18n-html="proj.rack.tagline">Smart Cooling & IoT Ecosystem</p>
<p class="proj-desc" data-i18n="proj.rack.desc">Custom cooling system for a DIY network rack on ESP32-S3. Decoupled: C++ REST firmware + Nginx/Docker frontend. Dynamic PWM fan control, OLED night-mode display, real-time web dashboard.</p>
<div class="project-tags">
<span class="tag">C++</span><span class="tag">ESP32-S3</span><span class="tag">Docker</span>
<span class="tag">Nginx</span><span class="tag">HTML/JS</span><span class="tag">JSON</span>
</div>
<div class="project-footer">
<a href="https://github.com/itsjustwhitee/RackController" target="_blank" rel="noopener noreferrer" class="project-link">
<i class="fa-brands fa-github"></i> GitHub <i class="fa-solid fa-arrow-right" style="font-size:0.58rem;"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<div class="section-divider"></div>
<!-- ── SKILLS ─────────────────────────────────────────────────────────── -->
<section id="skills" class="section">
<div class="section-header reveal">
<p class="section-label" data-i18n="skills.label">// 03 — skills</p>
<h2 class="section-title" data-i18n-html="skills.title">Tech <span class="accent">stack.</span></h2>
<p class="section-sub" data-i18n="skills.sub">A focused collection of technologies I use to bridge the gap between hardware and software.</p>
</div>
<div class="skills-grid">
<div class="skill-group reveal">
<p class="skill-group-label">// performance & low-level</p>
<div class="skill-pills">
<span class="skill-pill">C / C++</span>
<span class="skill-pill">CUDA</span>
<span class="skill-pill">ROCm / HIP</span>
<span class="skill-pill">OpenMP</span>
<span class="skill-pill">Go</span>
<span class="skill-pill">Bash</span>
</div>
</div>
<div class="skill-group reveal">
<p class="skill-group-label">// ai & computer vision</p>
<div class="skill-pills">
<span class="skill-pill">Python</span>
<span class="skill-pill">Torch</span>
<span class="skill-pill">TensorRT</span>
<span class="skill-pill">ONNX Runtime</span>
<span class="skill-pill">YOLO</span>
<span class="skill-pill">Depth Anything</span>
<span class="skill-pill">UniDepth</span>
</div>
</div>
<div class="skill-group reveal">
<p class="skill-group-label">// systems & robotics</p>
<div class="skill-pills">
<span class="skill-pill">Linux / Unix</span>
<span class="skill-pill">Proxmox</span>
<span class="skill-pill">Docker</span>
<span class="skill-pill">Ansible / Vagrant</span>
<span class="skill-pill">ESP32</span>
</div>
</div>
<div class="skill-group reveal">
<p class="skill-group-label">// backend & protocols</p>
<div class="skill-pills">
<span class="skill-pill">Java</span>
<span class="skill-pill">SQL</span>
<span class="skill-pill">Git</span>
<span class="skill-pill">Nginx</span>
<span class="skill-pill">Node.js</span>
</div>
</div>
<div class="skill-group reveal">
<p class="skill-group-label">// design & publishing</p>
<div class="skill-pills">
<span class="skill-pill">HTML / CSS</span>
<span class="skill-pill">JavaScript</span>
<span class="skill-pill">Typst</span>
<span class="skill-pill">LaTeX</span>
<span class="skill-pill">Figma</span>
</div>
</div>
</div>
</section>
<div class="section-divider"></div>
<!-- ── EXPERIENCE & EDUCATION ─────────────────────────────────────────── -->
<section id="experience" class="section">
<div class="section-header reveal">
<p class="section-label" data-i18n-html="exp.label">// 04 — experience & education</p>
<h2 class="section-title" data-i18n-html="exp.title">Where I've <span class="accent">been.</span></h2>
</div>
<div class="exp-edu-grid">
<div class="reveal">
<p class="exp-col-label" data-i18n="exp.col_work">Work</p>
<div class="timeline">
<div class="tl-item">
<p class="tl-period" data-i18n="exp.tutor.period">may 2025 — now</p>
<p class="tl-role" data-i18n="exp.tutor.role">Didactic Tutor</p>
<p class="tl-company" data-i18n="exp.tutor.company"> Ferrara, IT</p>
<p class="tl-desc" data-i18n="exp.tutor.desc">Academic support for upper secondary students in Computer Science and Mathematics, with a focus on logic and problem solving.</p>
</div>
<div class="tl-item">
<p class="tl-period" data-i18n="exp.birex.period">apr 2025 — ott 2025</p>
<p class="tl-role" data-i18n="exp.birex.role">Computer Vision Engineer Intern</p>
<p class="tl-company" data-i18n="exp.birex.company">BI-REX Competence Center · Bologna, IT</p>
<p class="tl-desc" data-i18n="exp.birex.desc">Development of the EdgeCV4Safety framework on the industrial pilot line: optimized computer vision pipelines integrated with collaborative robotics UR.</p>
</div>
</div>
</div>
<div class="reveal" style="transition-delay:0.1s">
<p class="exp-col-label" data-i18n="exp.col_edu">Education</p>
<div class="edu-grid">
<div class="edu-card">
<p class="edu-period" data-i18n="edu.msc.period">oct 2025 — in progress</p>
<p class="edu-degree" data-i18n-html="edu.msc.degree">Master Degree <br>Computer Engineering</p>
<p class="edu-school" data-i18n="edu.msc.school">Università di Bologna</p>
<p class="edu-grade" data-i18n="edu.msc.grade">// Real-Time Systems · Accelerated Computing</p>
</div>
<div class="edu-card">
<p class="edu-period" data-i18n="edu.bsc.period">oct 2022 — dec 2025</p>
<p class="edu-degree" data-i18n-html="edu.bsc.degree">Bachelor Degree<br>Computer Engineering</p>
<p class="edu-school" data-i18n="edu.bsc.school">Università di Bologna</p>
<p class="edu-grade" data-i18n="edu.bsc.grade">// Grade 96/110</p>
</div>
<div class="edu-card" style="grid-column:span 2">
<p class="edu-period" data-i18n="edu.hs.period">sep 2017 — jul 2022</p>
<p class="edu-degree" data-i18n="edu.hs.degree">Scientific High School Diploma</p>
<p class="edu-school" data-i18n="edu.hs.school">Liceo Galileo Galilei · Adria (RO)</p>
<p class="edu-grade" data-i18n="edu.hs.grade">// Grade 96/100 · Applied Sciences</p>
</div>
</div>
</div>
</div>
</section>
<div class="section-divider"></div>
<!-- ── CTA ───────────────────────────────────────────────────────────── -->
<section id="cta">
<div class="reveal">
<p class="section-label" style="display:block;margin-bottom:18px;" data-i18n="cta.label">// let's connect</p>
<h2 data-i18n-html="cta.title">Want to <span class="accent">work together?</span></h2>
<p data-i18n="cta.desc">I'm open to internships, collaborations, and interesting projects. If you have an idea or just want to chat tech, I'm always up for it.</p>
<div class="cta-links">
<a href="/cdn-cgi/l/email-protection#107d716464757f3e767f7e647f7c717e507a6563646778796475753e7f6277" class="btn-pill btn-primary">
<i class="fa-solid fa-envelope"></i> Email
</a>
<a href="https://t.me/justwhitee" target="_blank" rel="noopener noreferrer" class="btn-pill btn-ghost">
<i class="fa-brands fa-telegram"></i> Telegram
</a>
<a href="https://github.com/itsjustwhitee" target="_blank" rel="noopener noreferrer" class="btn-pill btn-ghost">
<i class="fa-brands fa-github"></i> GitHub
</a>
</div>
</div>
</section>
<!-- ── FOOTER ─────────────────────────────────────────────────────────── -->
<footer id="site-footer" class="site-footer" data-footer="full" data-copy-key="home.footer_copy"></footer><script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script>
// Scroll reveal — bidirectional (in on scroll down, out on scroll up)
// Guard: ignore "exit" callbacks for the first 800ms (initial load quirk on file://)
const revealStart = Date.now();
const reveals = document.querySelectorAll('.reveal');
const revealObs = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
const siblings = [...entry.target.parentElement.querySelectorAll('.reveal')];
const idx = siblings.indexOf(entry.target);
const delay = Math.min(idx * 80, 280);
entry.target.style.transitionDelay = delay + 'ms';
entry.target.classList.add('visible');
} else if (Date.now() - revealStart > 800) {
// Only hide after page has settled — avoids flash-of-invisible on load
entry.target.style.transitionDelay = '0ms';
entry.target.classList.remove('visible');
}
});
}, { threshold: 0.05, rootMargin: '0px 0px -20px 0px' });
reveals.forEach(el => revealObs.observe(el));
// Hard fallback: anything still hidden after 2s gets force-shown
setTimeout(() => {
document.querySelectorAll('.reveal:not(.visible)').forEach(el => {
el.style.transitionDelay = '0ms';
el.classList.add('visible');
});
}, 2000);
// Nav active highlighting
const sections = document.querySelectorAll('section[id]');
const navLinks = document.querySelectorAll('.nav-links a[href^="#"]');
// Giant logo scroll parallax
const logoGiant = document.getElementById('logo-giant');
const heroSection = document.getElementById('hero');
if (logoGiant) {