-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·553 lines (487 loc) · 14.9 KB
/
index.html
File metadata and controls
executable file
·553 lines (487 loc) · 14.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mike Beshai — Software Engineer</title>
<meta name="description" content="Mike Beshai — Software Engineer. Building things that matter.">
<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=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=JetBrains+Mono:wght@300;400&family=Instrument+Sans:wght@300;400;500&display=swap" rel="stylesheet">
<style>
:root {
--bg: #12141a;
--surface: #181b23;
--border: #232840;
--border-light: #2e3550;
--text: #dde4f0;
--text-muted: #5a6a88;
--accent: #6d9db5;
--accent-light: #8bbdd4;
--mono: 'JetBrains Mono', monospace;
--serif: 'Cormorant Garamond', Georgia, serif;
--sans: 'Instrument Sans', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background-color: var(--bg);
color: var(--text);
font-family: var(--sans);
font-weight: 300;
line-height: 1.6;
overflow-x: hidden;
}
/* ─── NOISE OVERLAY ─── */
body::before {
content: '';
position: fixed;
inset: 0;
z-index: 0;
pointer-events: none;
opacity: 0.035;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* ─── NAV ─── */
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
padding: 1.6rem 3rem;
display: flex;
justify-content: space-between;
align-items: center;
}
nav::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to bottom, rgba(12,11,9,0.95) 60%, transparent);
z-index: -1;
}
.nav-logo {
font-family: var(--mono);
font-size: 0.8rem;
color: var(--accent);
letter-spacing: 0.08em;
text-decoration: none;
}
.nav-links {
display: flex;
gap: 2.5rem;
list-style: none;
}
.nav-links a {
font-family: var(--mono);
font-size: 0.68rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--text-muted);
text-decoration: none;
position: relative;
transition: color 0.2s;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -2px; left: 0;
width: 0; height: 1px;
background: var(--accent);
transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
/* ─── HERO ─── */
#hero {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
padding: 9rem 3rem 5rem;
position: relative;
}
.hero-eyebrow {
font-family: var(--mono);
font-size: 0.68rem;
letter-spacing: 0.28em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 2.5rem;
opacity: 0;
animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-name {
font-family: var(--serif);
font-weight: 300;
font-size: clamp(5.5rem, 15vw, 15rem);
line-height: 0.86;
letter-spacing: -0.025em;
margin-bottom: 3rem;
}
.hero-name .line1 {
display: block;
opacity: 0;
animation: fadeUp 1s ease 0.5s forwards;
}
.hero-name .line2 {
display: block;
padding-left: clamp(2.5rem, 9vw, 10rem);
color: var(--accent);
opacity: 0;
animation: fadeUp 1s ease 0.75s forwards;
}
.hero-rule {
width: clamp(3rem, 8vw, 6rem);
height: 1px;
background: var(--border-light);
margin-bottom: 2rem;
opacity: 0;
animation: fadeIn 0.8s ease 1.1s forwards;
}
.hero-tagline {
font-family: var(--mono);
font-size: 0.85rem;
color: var(--text-muted);
letter-spacing: 0.04em;
display: flex;
align-items: center;
gap: 0.6rem;
opacity: 0;
animation: fadeUp 0.8s ease 1.2s forwards;
}
.cursor {
display: inline-block;
width: 7px;
height: 1em;
background: var(--accent);
vertical-align: text-bottom;
animation: blink 1.1s step-end infinite;
}
.hero-scroll {
position: absolute;
bottom: 3rem; left: 3rem;
display: flex;
align-items: center;
gap: 1rem;
font-family: var(--mono);
font-size: 0.62rem;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--text-muted);
opacity: 0;
animation: fadeIn 1s ease 1.7s forwards;
}
.hero-scroll::before {
content: '';
display: block;
width: 36px;
height: 1px;
background: var(--border-light);
}
/* ─── SECTION COMMON ─── */
.section-label {
font-family: var(--mono);
font-size: 0.62rem;
letter-spacing: 0.32em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 5rem;
display: flex;
align-items: center;
gap: 1.5rem;
}
.section-label::after {
content: '';
height: 1px;
background: var(--border);
width: 5rem;
}
/* ─── ABOUT ─── */
#about {
padding: 8rem 3rem 8rem;
max-width: 1200px;
margin: 0 auto;
}
.about-grid {
display: grid;
grid-template-columns: auto 1fr;
gap: 0 5rem;
align-items: start;
}
.about-monogram {
font-family: var(--serif);
font-size: clamp(9rem, 20vw, 20rem);
font-weight: 300;
line-height: 1;
letter-spacing: -0.06em;
color: transparent;
-webkit-text-stroke: 1px #3a506a;
user-select: none;
margin-top: -1.5rem;
padding-right: 1rem;
}
.about-content h2 {
font-family: var(--serif);
font-size: clamp(2rem, 4.5vw, 3.8rem);
font-weight: 300;
line-height: 1.12;
letter-spacing: -0.015em;
margin-bottom: 2.2rem;
}
.about-content h2 em {
font-style: italic;
color: var(--accent);
}
.about-content p {
font-size: 0.95rem;
line-height: 1.85;
color: var(--text-muted);
margin-bottom: 1.3rem;
max-width: 52ch;
}
.about-content p strong {
color: var(--text);
font-weight: 400;
}
.about-tags {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-top: 2.5rem;
}
.tag {
font-family: var(--mono);
font-size: 0.62rem;
letter-spacing: 0.12em;
color: var(--text-muted);
border: 1px solid var(--border);
padding: 0.32rem 0.85rem;
text-transform: uppercase;
cursor: default;
transition: border-color 0.25s, color 0.25s;
}
.tag:hover {
border-color: var(--accent);
color: var(--accent-light);
}
/* ─── CONNECT ─── */
#connect {
padding: 6rem 3rem 10rem;
max-width: 1200px;
margin: 0 auto;
}
.connect-links { display: flex; flex-direction: column; }
.connect-link {
display: flex;
align-items: center;
justify-content: space-between;
padding: 2.2rem 0;
border-top: 1px solid var(--border);
text-decoration: none;
color: var(--text);
transition: padding-left 0.35s ease;
}
.connect-link:last-child { border-bottom: 1px solid var(--border); }
.connect-link:hover { padding-left: 1.8rem; }
.connect-link:hover .link-title { color: var(--accent); }
.connect-link:hover .link-arrow {
transform: translate(5px, -5px);
color: var(--accent);
}
.link-meta {
display: flex;
flex-direction: column;
gap: 0.2rem;
}
.link-label {
font-family: var(--mono);
font-size: 0.62rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--text-muted);
}
.link-title {
font-family: var(--serif);
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 300;
letter-spacing: -0.02em;
line-height: 1.1;
transition: color 0.25s;
}
.link-url {
font-family: var(--mono);
font-size: 0.68rem;
color: var(--text-muted);
margin-top: 0.2rem;
}
.link-arrow {
font-size: 1.4rem;
color: var(--border-light);
transition: transform 0.25s ease, color 0.25s;
flex-shrink: 0;
}
/* ─── FOOTER ─── */
footer {
padding: 2rem 3rem;
border-top: 1px solid var(--border);
display: flex;
justify-content: space-between;
align-items: center;
}
footer p {
font-family: var(--mono);
font-size: 0.62rem;
letter-spacing: 0.1em;
color: var(--text-muted);
}
/* ─── SCROLL REVEAL ─── */
.reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(22px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
nav { padding: 1.4rem 1.5rem; }
.nav-links { gap: 1.5rem; }
#hero { padding: 8rem 1.5rem 4rem; }
.hero-scroll { left: 1.5rem; bottom: 2rem; }
#about { padding: 5rem 1.5rem 6rem; }
.about-grid { grid-template-columns: 1fr; }
.about-monogram { display: none; }
#connect { padding: 5rem 1.5rem 8rem; }
footer {
padding: 1.5rem;
flex-direction: column;
gap: 0.5rem;
text-align: center;
}
}
@media (max-width: 480px) {
.nav-links li:not(:last-child) { display: none; }
.link-title { font-size: 2.4rem; }
}
</style>
</head>
<body>
<nav>
<a href="#hero" class="nav-logo">mb_</a>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#connect">Connect</a></li>
</ul>
</nav>
<!-- HERO -->
<section id="hero">
<p class="hero-eyebrow">Software Engineer — Cloud Infrastructure</p>
<h1 class="hero-name">
<span class="line1">Mike</span>
<span class="line2">Beshai</span>
</h1>
<div class="hero-rule"></div>
<p class="hero-tagline">
<span>Building things that matter</span>
<span class="cursor"></span>
</p>
<p class="hero-scroll">Scroll to explore</p>
</section>
<!-- ABOUT -->
<section id="about">
<p class="section-label reveal">01 — About</p>
<div class="about-grid">
<div class="about-monogram reveal">MB</div>
<div class="about-content reveal" style="transition-delay: 0.1s">
<h2>Technical leader,<br><em>systems thinker.</em></h2>
<p>
I'm <strong>Mike Beshai</strong>, a software engineer with a passion for distributed systems and cloud infrastructure. At <strong>Oracle Cloud Infrastructure</strong>, I've spent nearly seven years building and shipping the File Storage Service — a large-scale, production distributed system used by thousands of cloud customers.
</p>
<p>
Operational excellence isn't an afterthought for me — it's a design principle. I've led teams through the full arc of building cloud services: architecture, implementation, on-call, and the unglamorous work of keeping things reliable at scale.
</p>
<p>
Earlier I built backend systems at <strong>Udacity</strong> in Mountain View and scaled data infrastructure at <strong>Loblaw Digital</strong> in Toronto. I've shipped production software in Go, Python, Java, and Node across a range of domains — and I lead with that same hands-on perspective.
</p>
<div class="about-tags">
<span class="tag">Engineering Leadership</span>
<span class="tag">Cloud / OCI</span>
<span class="tag">Distributed Systems</span>
<span class="tag">File Storage</span>
<span class="tag">Go</span>
<span class="tag">Python</span>
<span class="tag">Java</span>
<span class="tag">AWS</span>
</div>
</div>
</div>
</section>
<!-- CONNECT -->
<section id="connect">
<p class="section-label reveal">02 — Connect</p>
<div class="connect-links">
<a href="https://github.com/mbesh" target="_blank" rel="noopener noreferrer" class="connect-link reveal" style="transition-delay: 0.05s">
<div class="link-meta">
<span class="link-label">Code & Projects</span>
<span class="link-title">GitHub</span>
<span class="link-url">github.com/mbesh</span>
</div>
<span class="link-arrow">↗</span>
</a>
<a href="https://linkedin.com/in/mike-beshai-88617b69" target="_blank" rel="noopener noreferrer" class="connect-link reveal" style="transition-delay: 0.12s">
<div class="link-meta">
<span class="link-label">Professional Network</span>
<span class="link-title">LinkedIn</span>
<span class="link-url">linkedin.com/in/mike-beshai-88617b69</span>
</div>
<span class="link-arrow">↗</span>
</a>
</div>
</section>
<footer>
<p>© 2026 Mike Beshai</p>
<p>mikebeshai.com</p>
</footer>
<script>
// Scroll reveal
const revealObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
revealObserver.unobserve(entry.target);
}
});
}, { threshold: 0.12, rootMargin: '0px 0px -40px 0px' });
document.querySelectorAll('.reveal').forEach(el => revealObserver.observe(el));
// Nav active state
const sections = document.querySelectorAll('section[id]');
const navLinks = document.querySelectorAll('.nav-links a');
const navObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
navLinks.forEach(link => {
const active = link.getAttribute('href') === `#${entry.target.id}`;
link.style.color = active ? 'var(--text)' : '';
});
}
});
}, { threshold: 0.45 });
sections.forEach(s => navObserver.observe(s));
</script>
</body>
</html>