-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1482 lines (1322 loc) Β· 69.8 KB
/
Copy pathindex.html
File metadata and controls
1482 lines (1322 loc) Β· 69.8 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" />
<meta name="description" content="Chase Key β AI Engineer. Production AI systems, autonomous agents, and modular cognitive architecture." />
<title>Chase Key Β· AI Engineer</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" />
<!-- Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" />
<!-- Favicon -->
<link rel="icon" type="image/png" href="./src/components/img/favicon.png" />
<style>
/* βββ Reset & Variables βββββββββββββββββββββββββββββββββββββββββββ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #080b14;
--bg-card: rgba(12, 18, 32, 0.75);
--border: rgba(0, 212, 255, 0.12);
--border-glow: rgba(0, 212, 255, 0.35);
--accent: #00d4ff;
--accent2: #7b2fff;
--accent-mid: #3b6fff;
--text: #e2e8f0;
--text-muted: #8892a4;
--text-dim: #4a5568;
--mono: 'JetBrains Mono', monospace;
--sans: 'Inter', -apple-system, sans-serif;
--radius: 12px;
--radius-lg: 20px;
--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
html { scroll-behavior: smooth; }
body {
font-family: var(--sans);
background: var(--bg);
color: var(--text);
line-height: 1.65;
overflow-x: hidden;
}
/* βββ Scrollbar βββββββββββββββββββββββββββββββββββββββββββββββββββ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
/* βββ Background dot-grid βββββββββββββββββββββββββββββββββββββββββ */
.bg-grid {
position: fixed; inset: 0; z-index: 0; pointer-events: none;
background-image:
radial-gradient(circle at 20% 20%, rgba(0,212,255,0.04) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(123,47,255,0.04) 0%, transparent 50%),
linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
}
/* βββ Grid spotlight (mouse hover glow) βββββββββββββββββββββββββββ */
.bg-grid-spotlight {
position: fixed; inset: 0; z-index: 0; pointer-events: none;
background-image:
linear-gradient(rgba(0,212,255,0.45) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,212,255,0.45) 1px, transparent 1px);
background-size: 60px 60px;
-webkit-mask-image: radial-gradient(circle 90px at var(--mx, -999px) var(--my, -999px), black 0%, transparent 100%);
mask-image: radial-gradient(circle 90px at var(--mx, -999px) var(--my, -999px), black 0%, transparent 100%);
}
/* βββ Navigation βββββββββββββββββββββββββββββββββββββββββββββββββββ */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
display: flex; align-items: center; justify-content: space-between;
padding: 1rem 2.5rem;
background: rgba(8,11,20,0.85);
backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border);
transition: box-shadow var(--transition);
}
.nav-logo {
font-family: var(--mono);
font-size: 1.05rem;
font-weight: 500;
color: var(--accent);
text-decoration: none;
letter-spacing: 0.05em;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
color: var(--text-muted);
text-decoration: none;
font-size: 0.875rem;
font-weight: 500;
letter-spacing: 0.03em;
transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
border: 1px solid var(--accent) !important;
color: var(--accent) !important;
padding: 0.35rem 1rem;
border-radius: 6px;
transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--accent) !important; color: var(--bg) !important; }
.nav-toggle {
display: none; background: none; border: none;
color: var(--text); font-size: 1.25rem; cursor: pointer;
}
/* βββ Sections βββββββββββββββββββββββββββββββββββββββββββββββββββββ */
main { position: relative; z-index: 1; }
section {
max-width: 1080px;
margin: 0 auto;
padding: 6rem 2rem;
}
.section-label {
font-family: var(--mono);
font-size: 0.72rem;
color: var(--accent);
letter-spacing: 0.18em;
text-transform: uppercase;
margin-bottom: 0.5rem;
}
.section-title {
font-size: clamp(1.75rem, 3vw, 2.25rem);
font-weight: 700;
color: #fff;
margin-bottom: 0.5rem;
}
.section-divider {
width: 48px; height: 3px;
background: linear-gradient(90deg, var(--accent), var(--accent2));
border-radius: 2px;
margin-bottom: 3rem;
}
/* βββ Scroll Reveal ββββββββββββββββββββββββββββββββββββββββββββββββ */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
/* βββ HERO βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
#hero {
min-height: 100vh;
display: flex; align-items: center;
padding-top: 5rem;
}
.hero-inner {
display: grid;
grid-template-columns: 1fr auto;
gap: 4rem;
align-items: center;
width: 100%;
}
.hero-eyebrow {
font-family: var(--mono);
font-size: 0.85rem;
color: var(--accent);
letter-spacing: 0.2em;
text-transform: uppercase;
margin-bottom: 0.75rem;
}
.hero-name {
font-size: clamp(2.8rem, 6vw, 5rem);
font-weight: 700;
line-height: 1.05;
color: #fff;
margin-bottom: 0.5rem;
}
.hero-name span {
background: linear-gradient(135deg, var(--accent), var(--accent2));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-typed {
font-size: clamp(1.05rem, 2.5vw, 1.45rem);
color: var(--text-muted);
min-height: 2rem;
margin-bottom: 1.5rem;
}
.cursor {
display: inline-block;
background: var(--accent);
width: 2px; height: 1.2em;
margin-left: 2px;
vertical-align: text-bottom;
animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.hero-summary {
font-size: 1rem;
color: var(--text-muted);
max-width: 560px;
line-height: 1.8;
margin-bottom: 2.5rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-primary {
display: inline-flex; align-items: center; gap: 0.5rem;
padding: 0.75rem 1.75rem;
background: linear-gradient(135deg, var(--accent), var(--accent-mid));
color: #080b14; font-weight: 600; font-size: 0.9rem;
text-decoration: none; border-radius: 8px;
transition: opacity var(--transition), transform var(--transition);
}
.btn-primary:hover { opacity: 0.87; transform: translateY(-2px); }
.btn-ghost {
display: inline-flex; align-items: center; gap: 0.5rem;
padding: 0.75rem 1.75rem;
border: 1px solid var(--border-glow);
color: var(--text); font-size: 0.9rem; font-weight: 500;
text-decoration: none; border-radius: 8px;
backdrop-filter: blur(8px);
transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.hero-status {
display: inline-flex; align-items: center; gap: 0.5rem;
background: rgba(0,212,255,0.06);
border: 1px solid rgba(0,212,255,0.2);
color: var(--accent);
font-size: 0.78rem; font-family: var(--mono);
padding: 0.35rem 0.85rem; border-radius: 50px;
margin-bottom: 1.25rem;
}
.status-dot {
width: 7px; height: 7px; border-radius: 50%;
background: var(--accent);
animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
0%,100% { box-shadow: 0 0 0 0 rgba(0,212,255,0.5); }
50% { box-shadow: 0 0 0 6px rgba(0,212,255,0); }
}
.hero-photo-wrap { position: relative; }
.hero-photo {
width: 200px; height: 200px;
border-radius: 50%;
object-fit: cover;
border: 2px solid var(--border-glow);
display: block;
filter: grayscale(20%);
transition: filter var(--transition);
}
.hero-photo:hover { filter: grayscale(0%); }
.hero-photo-ring {
position: absolute; inset: -10px;
border-radius: 50%;
border: 1px dashed rgba(0,212,255,0.22);
animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
/* βββ Glass Card βββββββββββββββββββββββββββββββββββββββββββββββββββ */
.glass-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 2rem;
backdrop-filter: blur(16px);
transition: border-color var(--transition), transform var(--transition);
}
.glass-card:hover { border-color: var(--border-glow); transform: translateY(-3px); }
/* βββ ABOUT ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2.5rem;
align-items: start;
}
.about-text p {
color: var(--text-muted); font-size: 0.965rem; line-height: 1.8;
margin-bottom: 1rem;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--text); }
.about-facts { display: flex; flex-direction: column; gap: 1.25rem; }
.fact-item { display: flex; align-items: flex-start; gap: 1rem; }
.fact-icon {
width: 38px; height: 38px; flex-shrink: 0;
display: flex; align-items: center; justify-content: center;
background: rgba(0,212,255,0.08);
border: 1px solid rgba(0,212,255,0.2);
border-radius: 8px; color: var(--accent); font-size: 0.9rem;
}
.fact-label { font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.fact-value { font-size: 0.92rem; color: var(--text); font-weight: 500; }
.fact-value a { color: var(--accent); text-decoration: none; }
.fact-value a:hover { text-decoration: underline; }
/* βββ SKILLS βββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
.skills-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
}
.skill-category {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 1.75rem;
backdrop-filter: blur(16px);
transition: border-color var(--transition);
}
.skill-category:hover { border-color: var(--border-glow); }
.skill-cat-header {
display: flex; align-items: center; gap: 0.75rem;
margin-bottom: 1.25rem;
}
.skill-cat-icon {
width: 34px; height: 34px;
display: flex; align-items: center; justify-content: center;
background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(123,47,255,0.12));
border-radius: 8px; font-size: 0.85rem;
}
.skill-category h3 { font-size: 0.88rem; font-weight: 600; color: #fff; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.skill-tag {
font-family: var(--mono); font-size: 0.7rem;
background: rgba(0,212,255,0.06);
border: 1px solid rgba(0,212,255,0.14);
color: var(--text-muted);
padding: 0.28rem 0.6rem; border-radius: 4px;
transition: background var(--transition), color var(--transition);
}
.skill-tag:hover { background: rgba(0,212,255,0.14); color: var(--accent); }
/* βββ PROJECTS βββββββββββββββββββββββββββββββββββββββββββββββββββββ */
.projects-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
.project-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 1.75rem;
backdrop-filter: blur(16px);
display: flex; flex-direction: column;
transition: border-color var(--transition), transform var(--transition);
}
.project-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.project-card.featured {
grid-column: span 2;
border-color: rgba(0,212,255,0.18);
background: rgba(0,212,255,0.02);
}
.project-card.featured:hover { border-color: rgba(0,212,255,0.42); }
.project-header {
display: flex; align-items: flex-start; justify-content: space-between;
gap: 1rem; margin-bottom: 0.75rem;
}
.project-badge {
font-family: var(--mono); font-size: 0.67rem;
padding: 0.22rem 0.55rem; border-radius: 4px; white-space: nowrap; flex-shrink: 0;
}
.badge-live { background: rgba(0,255,128,0.08); border: 1px solid rgba(0,255,128,0.28); color: #00d46a; }
.badge-sub { background: rgba(123,47,255,0.1); border: 1px solid rgba(123,47,255,0.28); color: #a97cff; }
.badge-prod { background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.22); color: var(--accent); }
.badge-local { background: rgba(255,165,0,0.08); border: 1px solid rgba(255,165,0,0.28); color: #ffaa44; }
.project-title { font-size: 1.08rem; font-weight: 600; color: #fff; margin-bottom: 0.3rem; }
.project-subtitle {
font-family: var(--mono); font-size: 0.73rem;
color: var(--accent); margin-bottom: 0.7rem;
}
.project-desc {
font-size: 0.875rem; color: var(--text-muted);
line-height: 1.75; flex: 1; margin-bottom: 1.25rem;
}
.project-desc ul { padding-left: 1.1rem; margin-top: 0.5rem; }
.project-desc li { margin-bottom: 0.25rem; }
.project-tech { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.tech-tag {
font-family: var(--mono); font-size: 0.67rem;
background: rgba(59,111,255,0.09);
border: 1px solid rgba(59,111,255,0.2);
color: #7da8ff;
padding: 0.2rem 0.52rem; border-radius: 4px;
}
.project-links { display: flex; gap: 1rem; margin-top: auto; }
.project-link {
display: inline-flex; align-items: center; gap: 0.4rem;
font-size: 0.8rem; font-weight: 500;
color: var(--text-muted); text-decoration: none;
transition: color var(--transition);
}
.project-link:hover { color: var(--accent); }
.aurelion-table { width: 100%; border-collapse: collapse; margin: 0.75rem 0; font-size: 0.84rem; }
.aurelion-table td { padding: 0.5rem 0.7rem; border-bottom: 1px solid rgba(255,255,255,0.05); vertical-align: top; }
.aurelion-table td:first-child { font-family: var(--mono); font-size: 0.77rem; color: var(--accent); white-space: nowrap; width: 42%; }
.aurelion-table td:last-child { color: var(--text-muted); }
.aurelion-table tr:last-child td { border-bottom: none; }
/* βββ EXPERIENCE βββββββββββββββββββββββββββββββββββββββββββββββββββ */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
content: '';
position: absolute;
left: 0; top: 8px; bottom: 8px; width: 1px;
background: linear-gradient(to bottom, var(--accent), var(--accent2), transparent);
}
.timeline-item { position: relative; margin-bottom: 2.75rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
position: absolute; left: -2.43rem; top: 5px;
width: 12px; height: 12px; border-radius: 50%;
background: var(--accent); border: 2px solid var(--bg);
box-shadow: 0 0 10px rgba(0,212,255,0.55);
}
.timeline-header {
display: flex; align-items: baseline; justify-content: space-between;
flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.2rem;
}
.timeline-role { font-size: 1.05rem; font-weight: 600; color: #fff; }
.timeline-date { font-family: var(--mono); font-size: 0.73rem; color: var(--text-dim); flex-shrink: 0; }
.timeline-company { font-size: 0.85rem; color: var(--accent); margin-bottom: 0.15rem; }
.timeline-company a:hover { text-decoration: underline !important; }
.timeline-promo {
display: inline-block;
font-family: var(--mono); font-size: 0.65rem;
background: rgba(0,255,128,0.07); border: 1px solid rgba(0,255,128,0.22);
color: #00cc66;
padding: 0.12rem 0.5rem; border-radius: 4px; margin-bottom: 0.85rem;
}
.timeline-bullets { list-style: none; padding: 0; }
.timeline-bullets li {
position: relative; padding-left: 1.2rem;
margin-bottom: 0.45rem;
font-size: 0.87rem; color: var(--text-muted); line-height: 1.7;
}
.timeline-bullets li::before {
content: 'βΈ'; position: absolute; left: 0;
color: var(--accent); font-size: 0.68rem; top: 0.22rem;
}
/* βββ EDUCATION & CERTS ββββββββββββββββββββββββββββββββββββββββββββ */
.edu-certs-grid {
display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.edu-card {
background: var(--bg-card); border: 1px solid var(--border);
border-radius: var(--radius-lg); padding: 1.75rem; backdrop-filter: blur(16px);
}
.edu-card h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.25rem; }
.edu-sub { font-size: 0.84rem; color: var(--accent); margin-bottom: 0.3rem; }
.edu-years { font-family: var(--mono); font-size: 0.73rem; color: var(--text-dim); margin-bottom: 0.85rem; }
.edu-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.75; font-style: italic; }
.cert-list { list-style: none; padding: 0; }
.cert-list li {
display: flex; align-items: flex-start; gap: 0.6rem;
padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
font-size: 0.84rem; color: var(--text-muted);
}
.cert-list li:last-child { border-bottom: none; }
.cert-icon { color: var(--accent); margin-top: 0.12rem; flex-shrink: 0; font-size: 0.72rem; }
.cert-list li strong { color: var(--text); display: block; }
.cert-inprogress { color: var(--text-dim); font-style: italic; }
.cert-list a { color: inherit; text-decoration: none; }
.cert-list a:hover strong { color: var(--accent); }
.cert-list a strong { transition: color var(--transition); }
.aurelion-table a { color: var(--accent); text-decoration: none; }
.aurelion-table a:hover { text-decoration: underline; opacity: 0.85; }
/* βββ CONTACT ββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
#contact { text-align: center; }
.contact-intro {
max-width: 540px; margin: 0 auto 2.5rem;
color: var(--text-muted); font-size: 1rem; line-height: 1.8;
}
.contact-links {
display: flex; flex-wrap: wrap; justify-content: center; gap: 1.1rem;
margin-bottom: 2.5rem;
}
.contact-link {
display: inline-flex; align-items: center; gap: 0.6rem;
padding: 0.75rem 1.4rem;
background: var(--bg-card); border: 1px solid var(--border);
color: var(--text); text-decoration: none;
border-radius: 10px; font-size: 0.88rem; font-weight: 500;
backdrop-filter: blur(12px);
transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.contact-link:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.anthropic-note {
display: inline-flex; align-items: center; gap: 0.6rem;
background: rgba(123,47,255,0.07); border: 1px solid rgba(123,47,255,0.2);
color: #c0a0ff; font-family: var(--mono); font-size: 0.76rem;
padding: 0.6rem 1.2rem; border-radius: 8px;
}
.anthropic-note a { color: #c0a0ff; text-decoration: none; }
.anthropic-note a:hover { text-decoration: underline; }
/* βββ FOOTER βββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
footer {
position: relative; z-index: 1;
text-align: center; padding: 2rem;
border-top: 1px solid var(--border);
color: var(--text-dim); font-size: 0.78rem; font-family: var(--mono);
}
footer a { color: var(--accent); text-decoration: none; }
/* βββ Responsive βββββββββββββββββββββββββββββββββββββββββββββββββββ */
@media (max-width: 900px) {
nav { padding: 1rem 1.5rem; }
.nav-links { display: none; }
.nav-links.open {
display: flex; flex-direction: column; gap: 1rem;
position: fixed; top: 61px; left: 0; right: 0;
background: rgba(8,11,20,0.97); backdrop-filter: blur(20px);
padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); z-index: 99;
}
.nav-toggle { display: block; }
.hero-inner { grid-template-columns: 1fr; }
.hero-photo-wrap { display: flex; justify-content: center; order: -1; }
.hero-photo { width: 150px; height: 150px; }
.hero-photo-ring { display: none; }
.about-grid, .skills-grid, .projects-grid, .edu-certs-grid { grid-template-columns: 1fr; }
.project-card.featured { grid-column: span 1; }
}
@media (max-width: 580px) {
section { padding: 4rem 1.25rem; }
.hero-btns { flex-direction: column; }
.btn-primary, .btn-ghost { justify-content: center; }
}
</style>
</head>
<body>
<div class="bg-grid" aria-hidden="true"></div>
<div class="bg-grid-spotlight" aria-hidden="true"></div>
<!-- ββ Navigation βββββββββββββββββββββββββββββββββββββββββββββββββββ -->
<nav id="navbar">
<a href="#hero" class="nav-logo">chase-key<span style="color:var(--text-muted)">.</span><span style="color:var(--accent2)">io</span></a>
<ul class="nav-links" id="navLinks">
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#education">Education</a></li>
<li><a href="/resume.html" target="_blank">Resume</a></li>
<li><a href="#contact" class="nav-cta">Contact</a></li>
</ul>
<button class="nav-toggle" id="navToggle" aria-label="Toggle navigation">
<i class="fa-solid fa-bars"></i>
</button>
</nav>
<main>
<!-- ββ HERO ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ -->
<section id="hero">
<div class="hero-inner">
<div class="hero-content">
<div class="hero-status reveal">
<span class="status-dot"></span>
Open to AI Engineer Opportunities
</div>
<div class="hero-eyebrow reveal reveal-delay-1">Hello, I'm</div>
<h1 class="hero-name reveal reveal-delay-1">Chase<br /><span>Key</span></h1>
<div class="hero-typed reveal reveal-delay-2">
<span id="typedText"></span><span class="cursor"></span>
</div>
<p class="hero-summary reveal reveal-delay-3">
AI Engineer with roots in professional aviation and enterprise data systems.
I design and ship production AI β from autonomous agents and local LLM infrastructure
to real-time game servers and client deployments.
My open-source work has been submitted to Anthropic's skills repository.
</p>
<div class="hero-btns reveal reveal-delay-4">
<a href="#projects" class="btn-primary">
<i class="fa-solid fa-bolt"></i> View Projects
</a>
<a href="/resume.html" target="_blank" class="btn-ghost">
<i class="fa-solid fa-file-lines"></i> Resume
</a>
<a href="https://github.com/chase-key" target="_blank" rel="noopener" class="btn-ghost">
<i class="fa-brands fa-github"></i> GitHub
</a>
<a href="https://linkedin.com/in/chase-key" target="_blank" rel="noopener" class="btn-ghost">
<i class="fa-brands fa-linkedin"></i> LinkedIn
</a>
</div>
</div>
<div class="hero-photo-wrap reveal reveal-delay-2">
<div class="hero-photo-ring"></div>
<img src="./src/components/img/profile-pic.png" alt="Chase Key"
class="hero-photo" onerror="this.style.display='none'" />
</div>
</div>
</section>
<!-- ββ ABOUT ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ -->
<section id="about">
<div class="section-label reveal">Who I Am</div>
<h2 class="section-title reveal">About Me</h2>
<div class="section-divider reveal"></div>
<div class="about-grid">
<div class="glass-card about-text reveal reveal-delay-1">
<p>
I am genuinely grateful for every opportunity that has led here. My path has not been linear β
<strong>aviation</strong>, enterprise <strong>data analysis</strong>, and now <strong>AI engineering</strong>
β but each chapter built something the next one needed.
</p>
<p>
Aviation gave me systems thinking and a deep respect for what happens when precision fails.
The FAR-AIM β a massive cross-referenced regulatory framework governing all U.S. flight operations β
became my earliest model for information architecture. That principle carries into everything I build.
</p>
<p>
Data analysis grounded that thinking in real-world complexity: multi-year anomalies,
cross-jurisdictional investigations, SLA risk, and the weight of getting it right
for teams depending on accurate data.
</p>
<p>
AI development gave me a new medium to build things that genuinely help people work better.
I believe the most valuable thing an engineer can do is understand a system well enough to make it
trustworthy β whether that system is a flight regime, a data pipeline, or an autonomous agent.
</p>
</div>
<div class="about-facts reveal reveal-delay-2">
<div class="glass-card">
<div class="fact-item">
<div class="fact-icon"><i class="fa-solid fa-building"></i></div>
<div>
<div class="fact-label">Current Role</div>
<div class="fact-value">Data Performance Analyst I<br />
<a href="https://risk.lexisnexis.com/about-us" target="_blank" rel="noopener" style="color:var(--text-muted);font-size:0.8rem;">LexisNexis</a><span style="color:var(--text-muted);font-size:0.8rem;"> Β· </span><a href="https://www.relx.com/our-business/our-business-overview" target="_blank" rel="noopener" style="color:var(--text-muted);font-size:0.8rem;">RELX Group</a>
</div>
</div>
</div>
</div>
<div class="glass-card">
<div class="fact-item">
<div class="fact-icon"><i class="fa-brands fa-github"></i></div>
<div>
<div class="fact-label">Open Source</div>
<div class="fact-value">
<a href="https://github.com/chase-key" target="_blank">57 Public Repositories</a><br />
<span style="color:var(--text-muted);font-size:0.8rem;">
<a href="https://github.com/anthropics/skills/pull/444" target="_blank" style="color:#a97cff;">
anthropics/skills PR #444 β
</a>
</span>
</div>
</div>
</div>
</div>
<div class="glass-card">
<div class="fact-item">
<div class="fact-icon"><i class="fa-solid fa-plane"></i></div>
<div>
<div class="fact-label">Aviation Background</div>
<div class="fact-value">
PPL Β· Instrument Rating Β· Complex<br />
<a href="https://www.se.edu/aerospace/professional-pilot/" target="_blank" rel="noopener" style="color:var(--text-muted);font-size:0.8rem;">B.S. Aviation Sciences, 2010</a>
</div>
</div>
</div>
</div>
<div class="glass-card">
<div class="fact-item">
<div class="fact-icon"><i class="fa-solid fa-graduation-cap"></i></div>
<div>
<div class="fact-label">Education</div>
<div class="fact-value">
CS50p β Harvard University / edX<br />
<a href="https://www.coursera.org/professional-certificates/google-data-analytics" target="_blank" rel="noopener" style="color:var(--text-muted);font-size:0.8rem;">Google Professional Data Analytics Certificate</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ββ SKILLS ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ -->
<section id="skills">
<div class="section-label reveal">Capabilities</div>
<h2 class="section-title reveal">Technical Skills</h2>
<div class="section-divider reveal"></div>
<div class="skills-grid">
<div class="skill-category reveal reveal-delay-1">
<div class="skill-cat-header">
<div class="skill-cat-icon">π€</div>
<h3>AI & Agentic Systems</h3>
</div>
<div class="skill-tags">
<span class="skill-tag">OpenAI API</span>
<span class="skill-tag">GPT-4 / GPT-3.5</span>
<span class="skill-tag">Anthropic API</span>
<span class="skill-tag">Claude 3.5 / Sonnet 4.6</span>
<span class="skill-tag">LLM Fundamentals</span>
<span class="skill-tag">AI Systems Design</span>
<span class="skill-tag">AI Reasoning Models</span>
<span class="skill-tag">Agentic AI Development</span>
<span class="skill-tag">Autonomous Agents</span>
<span class="skill-tag">Multi-Agent Systems</span>
<span class="skill-tag">AI Workflow Automation</span>
<span class="skill-tag">Context-Aware Systems</span>
<span class="skill-tag">Memory Architecture Design</span>
<span class="skill-tag">File-Based Persistence</span>
<span class="skill-tag">Knowledge Representation</span>
<span class="skill-tag">System Architecture</span>
<span class="skill-tag">Narrative System Design</span>
<span class="skill-tag">Simulation Design</span>
<span class="skill-tag">ChromaDB</span>
<span class="skill-tag">Vector Databases</span>
<span class="skill-tag">RAG Pipelines</span>
<span class="skill-tag">Semantic Search</span>
<span class="skill-tag">Embeddings</span>
<span class="skill-tag">Prompt Engineering</span>
<span class="skill-tag">API Integrations</span>
<span class="skill-tag">LangChain</span>
<span class="skill-tag">Modular Architecture</span>
<span class="skill-tag">AI Evaluation & QA</span>
<span class="skill-tag">Cognitive Frameworks</span>
<span class="skill-tag">Ollama</span>
<span class="skill-tag">Local LLM Deployment</span>
<span class="skill-tag">MCP Protocol</span>
</div>
</div>
<div class="skill-category reveal reveal-delay-2">
<div class="skill-cat-header">
<div class="skill-cat-icon">ποΈ</div>
<h3>Data Engineering & SQL</h3>
</div>
<div class="skill-tags">
<span class="skill-tag">SQL Β· T-SQL</span>
<span class="skill-tag">CTEs</span>
<span class="skill-tag">Window Functions</span>
<span class="skill-tag">Stored Procedures</span>
<span class="skill-tag">Dynamic SQL</span>
<span class="skill-tag">Query Optimization</span>
<span class="skill-tag">Execution Plans</span>
<span class="skill-tag">SQL Server</span>
<span class="skill-tag">PostgreSQL</span>
<span class="skill-tag">MySQL</span>
<span class="skill-tag">BigQuery</span>
<span class="skill-tag">ETL / ELT</span>
<span class="skill-tag">Data Pipeline Design</span>
<span class="skill-tag">ETL Logic & Debugging</span>
<span class="skill-tag">Data Validation</span>
<span class="skill-tag">Data Cleaning</span>
<span class="skill-tag">Data Quality Engineering</span>
<span class="skill-tag">Statistical Analysis</span>
<span class="skill-tag">Anomaly Detection</span>
<span class="skill-tag">Root-Cause Analysis</span>
<span class="skill-tag">Systems Thinking</span>
<span class="skill-tag">Decision Frameworks</span>
<span class="skill-tag">Process Optimization</span>
<span class="skill-tag">Data Governance</span>
</div>
</div>
<div class="skill-category reveal reveal-delay-3">
<div class="skill-cat-header">
<div class="skill-cat-icon">βοΈ</div>
<h3>Software & Infrastructure</h3>
</div>
<div class="skill-tags">
<span class="skill-tag">Python</span>
<span class="skill-tag">Pandas</span>
<span class="skill-tag">NumPy</span>
<span class="skill-tag">FastAPI</span>
<span class="skill-tag">Docker</span>
<span class="skill-tag">Uvicorn</span>
<span class="skill-tag">Git / GitHub</span>
<span class="skill-tag">REST API</span>
<span class="skill-tag">API Integrations</span>
<span class="skill-tag">Back-end Operations</span>
<span class="skill-tag">Workflow Automation</span>
<span class="skill-tag">fly.io</span>
<span class="skill-tag">Cloud Deployment</span>
<span class="skill-tag">HTML5 Β· CSS Β· JS</span>
<span class="skill-tag">JavaScript</span>
<span class="skill-tag">C++</span>
<span class="skill-tag">R</span>
<span class="skill-tag">Tableau</span>
<span class="skill-tag">Power BI</span>
<span class="skill-tag">Excel (Advanced)</span>
<span class="skill-tag">VS Code</span>
<span class="skill-tag">JSON</span>
<span class="skill-tag">Technical Documentation</span>
<span class="skill-tag">SOP Development</span>
<span class="skill-tag">Railway</span>
<span class="skill-tag">Next.js</span>
<span class="skill-tag">TypeScript</span>
<span class="skill-tag">WebSocket</span>
</div>
</div>
</div>
</section>
<!-- ββ PROJECTS ββββββββββββββββββββββββββββββββββββββββββββββββββββββ -->
<section id="projects">
<div class="section-label reveal">Work</div>
<h2 class="section-title reveal">Projects</h2>
<div class="section-divider reveal"></div>
<div class="projects-grid">
<!-- AURELION β Featured -->
<div class="project-card featured reveal">
<div class="project-header">
<div>
<div class="project-title">AURELION Modular AI Suite</div>
<div class="project-subtitle">Submitted to Anthropic Β· anthropics/skills PR #444 Β· Feb 21, 2026</div>
</div>
<span class="project-badge badge-sub">Anthropic PR #444</span>
</div>
<p class="project-desc">
Designed and published a modular, open-source cognitive AI architecture spanning six interoperable repositories.
Each module is independently deployable and composable β submitted for inclusion in Anthropic's public skills library,
reviewed against their contribution standards for structure, documentation, and reusability.
</p>
<table class="aurelion-table">
<tr><td><a href="https://github.com/Chase-Key/aurelion-kernel-lite" target="_blank" rel="noopener">aurelion-kernel-lite</a></td><td>5-layer cognitive structure templates for organizing complex reasoning</td></tr>
<tr><td><a href="https://github.com/Chase-Key/aurelion-memory-lite" target="_blank" rel="noopener">aurelion-memory-lite</a></td><td>File-based persistent knowledge graph (Python)</td></tr>
<tr><td><a href="https://github.com/Chase-Key/aurelion-advisor-lite" target="_blank" rel="noopener">aurelion-advisor-lite</a></td><td>Strategic planning templates and methodology library</td></tr>
<tr><td><a href="https://github.com/Chase-Key/aurelion-agent-lite" target="_blank" rel="noopener">aurelion-agent-lite</a></td><td>100+ AI collaboration prompts and agentic thinking protocols</td></tr>
<tr><td><a href="https://github.com/Chase-Key/aurelion-nexus-lite" target="_blank" rel="noopener">aurelion-nexus-lite</a></td><td>Story-agnostic NPC and world simulation framework (Python)</td></tr>
<tr><td><a href="https://github.com/Chase-Key/aurelion-hub" target="_blank" rel="noopener">aurelion-hub</a></td><td>Central orchestration hub and documentation index for the suite</td></tr>
</table>
<p style="font-size:0.8rem;color:var(--text-muted);margin-top:0.75rem;">All six repos are also packaged as pip-installable Python modules under <span style="font-family:var(--mono);color:var(--accent);">aurelion-eco/modules/</span> β composable, editable packages for any project.</p>
<div class="project-tech">
<span class="tech-tag">Python</span>
<span class="tech-tag">Modular Architecture</span>
<span class="tech-tag">Open Source</span>
<span class="tech-tag">Cognitive AI</span>
<span class="tech-tag">JSON Schema</span>
<span class="tech-tag">pip packages</span>
</div>
<div class="project-links">
<a href="https://github.com/chase-key" target="_blank" rel="noopener" class="project-link">
<i class="fa-brands fa-github"></i> GitHub Suite
</a>
<a href="https://github.com/anthropics/skills/pull/444" target="_blank" rel="noopener" class="project-link">
<i class="fa-solid fa-arrow-up-right-from-square"></i> Anthropic PR #444
</a>
</div>
</div>
<!-- Memoria Engine -->
<div class="project-card reveal reveal-delay-1">
<div class="project-header">
<div>
<div class="project-title">Memoria Engine</div>
<div class="project-subtitle">Production Autonomous AI Agent Β· Feb 2026</div>
</div>
<span class="project-badge badge-live">β Live</span>
</div>
<p class="project-desc">
Architected, built, containerized, and deployed a fully-functional autonomous AI agent
with persistent memory, contextual reasoning, and semantic lore retrieval (ChromaDB).
Concept to production in under five hours.
<ul>
<li>Lazy indexing: cold-start reduced from 30s to <2s</li>
<li>Three-tier character resolution fallback for zero-downtime operation</li>
<li>Cross-platform encoding hardened (Windows dev β Linux container)</li>
<li>GPT-4 β GPT-3.5-turbo cost routing: ~$0.02β$0.05/query</li>
</ul>
</p>
<div class="project-tech">
<span class="tech-tag">Python</span>
<span class="tech-tag">FastAPI</span>
<span class="tech-tag">OpenAI API</span>
<span class="tech-tag">ChromaDB</span>
<span class="tech-tag">Docker</span>
<span class="tech-tag">fly.io</span>
</div>
<div class="project-links">
<a href="https://app.reclaim.ai/m/chase-key/meet-with-chase" target="_blank" rel="noopener" class="project-link">
<i class="fa-regular fa-calendar"></i> Schedule for Live Demo
</a>
<a href="https://github.com/chase-key" target="_blank" rel="noopener" class="project-link">
<i class="fa-brands fa-github"></i> Code
</a>
</div>
</div>
<!-- AAI Knowledge Architecture -->
<div class="project-card reveal reveal-delay-2">
<div class="project-header">
<div>
<div class="project-title">AAI Knowledge Architecture</div>