-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv.html
More file actions
656 lines (595 loc) · 27.8 KB
/
cv.html
File metadata and controls
656 lines (595 loc) · 27.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ari Klopfer - Curriculum Vitae</title>
<link href="https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<style>
@page {
size: letter;
margin: 0.75in;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Crimson Pro', Georgia, serif;
font-size: 11pt;
line-height: 1.5;
color: #222;
background: white;
max-width: 8.5in;
margin: 0 auto;
padding: 0.75in;
}
/* Header */
.header {
text-align: center;
margin-bottom: 24px;
padding-bottom: 16px;
border-bottom: 3px double #333;
}
.name {
font-size: 28pt;
font-weight: 700;
color: #000;
margin-bottom: 6px;
letter-spacing: 2px;
text-transform: uppercase;
}
.subtitle {
font-size: 13pt;
color: #444;
font-style: italic;
margin-bottom: 12px;
}
.contact-info {
font-family: 'Inter', sans-serif;
font-size: 9pt;
color: #555;
line-height: 1.6;
}
.contact-info .row {
margin-bottom: 2px;
}
/* Sections */
.section {
margin-bottom: 20px;
page-break-inside: avoid;
}
.section-title {
font-size: 12pt;
font-weight: 700;
color: #000;
text-transform: uppercase;
letter-spacing: 2px;
border-bottom: 1px solid #999;
padding-bottom: 4px;
margin-bottom: 12px;
}
/* Statement */
.statement {
font-size: 11pt;
line-height: 1.7;
color: #333;
text-align: justify;
margin-bottom: 8px;
}
/* Experience entries */
.entry {
margin-bottom: 16px;
}
.entry-header {
display: flex;
justify-content: space-between;
align-items: baseline;
margin-bottom: 2px;
}
.entry-title {
font-size: 12pt;
font-weight: 600;
color: #000;
}
.entry-date {
font-family: 'Inter', sans-serif;
font-size: 9pt;
color: #666;
}
.entry-org {
font-size: 11pt;
font-style: italic;
color: #444;
margin-bottom: 6px;
}
.entry-location {
font-size: 10pt;
color: #666;
}
.entry-desc {
font-size: 10.5pt;
color: #333;
line-height: 1.6;
margin-top: 6px;
}
.entry-desc li {
margin-bottom: 4px;
margin-left: 20px;
}
/* Projects */
.project-entry {
margin-bottom: 14px;
padding-left: 16px;
border-left: 2px solid #ddd;
}
.project-title {
font-size: 11pt;
font-weight: 600;
color: #000;
margin-bottom: 2px;
}
.project-meta {
font-family: 'Inter', sans-serif;
font-size: 9pt;
color: #666;
margin-bottom: 4px;
}
.project-status {
display: inline-block;
font-family: 'Inter', sans-serif;
font-size: 8pt;
font-weight: 600;
background: #059669;
color: white;
padding: 1px 6px;
border-radius: 2px;
margin-left: 8px;
}
.project-status.in-progress {
background: #d97706;
}
.project-desc {
font-size: 10.5pt;
color: #333;
line-height: 1.6;
}
/* Skills table */
.skills-table {
width: 100%;
border-collapse: collapse;
font-family: 'Inter', sans-serif;
font-size: 9.5pt;
}
.skills-table td {
padding: 6px 8px;
vertical-align: top;
border-bottom: 1px solid #eee;
}
.skills-table td:first-child {
font-weight: 600;
color: #333;
width: 140px;
}
.skills-table td:last-child {
color: #444;
}
/* Certifications */
.cert-entry {
display: flex;
justify-content: space-between;
margin-bottom: 6px;
font-size: 10.5pt;
}
.cert-name {
font-weight: 600;
color: #000;
}
.cert-issuer {
color: #666;
font-style: italic;
}
/* Publications/Contributions */
.contribution {
margin-bottom: 8px;
font-size: 10.5pt;
}
.contribution-title {
font-weight: 600;
}
.contribution-detail {
color: #555;
}
/* Two-column layout */
.two-col {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
}
/* Metrics box */
.metrics-box {
background: #f8f8f8;
border: 1px solid #ddd;
padding: 12px 16px;
margin: 12px 0;
font-family: 'Inter', sans-serif;
font-size: 9.5pt;
}
.metrics-row {
display: flex;
justify-content: space-between;
margin-bottom: 4px;
}
.metrics-label {
color: #666;
}
.metrics-value {
font-weight: 600;
color: #000;
}
@media print {
body {
padding: 0;
}
}
</style>
</head>
<body>
<!-- Header -->
<header class="header">
<h1 class="name">Ari Klopfer</h1>
<p class="subtitle">AI Agent & Developer Tools Engineer</p>
<div class="contact-info">
<div class="row">3639 W Shakespeare Ave, Apt 1E, Chicago, IL 60647</div>
<div class="row">(312) 646-8344 | Ariklopfer@gmail.com</div>
<div class="row">GitHub: github.com/Adkr1989 | LinkedIn: linkedin.com/in/ari-klopfer-976481318</div>
</div>
</header>
<!-- Professional Statement -->
<section class="section">
<h2 class="section-title">Professional Statement</h2>
<p class="statement">
AI Agent Developer and integration specialist with a distinctive background spanning heavy equipment
operation, electrical systems, live event production, and enterprise AI development. My career has
taken me through construction sites, energy audits, concert venues, and corporate offices - and at
every stop, I observed the same pattern: businesses struggling with manual processes, tribal knowledge,
and systems that couldn't scale.
</p>
<p class="statement">
That frustration became my mission. I couldn't stop analyzing how technology could transform the
workflows I witnessed daily - the paper forms that should be automated, the compliance tracking done
in unreliable spreadsheets, the institutional knowledge that walked out the door when employees left.
This obsession with operational improvement led me to AI agent development, where I now build the
exact solutions I spent years wishing existed.
</p>
<p class="statement">
My unconventional path is my competitive advantage. I understand how businesses actually operate -
the permits, the compliance requirements, the stakeholders who need solutions explained without jargon.
Combined with deep proficiency in Claude Agent SDK, MCP servers, and multi-agent orchestration,
I deliver AI solutions that work on day one because they're built by someone who's lived the problems
they solve.
</p>
<p class="statement">
Currently shipping production systems with measurable business impact: 363,000+ lines of code
delivered in 65 days at 918x cost efficiency ($458,900 equivalent development value),
$500/month in recurring revenue, and a pipeline of enterprise clients in energy, compliance,
and grant management sectors.
</p>
</section>
<!-- Portfolio Summary -->
<section class="section">
<h2 class="section-title">Portfolio Metrics</h2>
<div class="metrics-box">
<div class="metrics-row">
<span class="metrics-label">Total Lines of Production Code</span>
<span class="metrics-value">363,000+</span>
</div>
<div class="metrics-row">
<span class="metrics-label">Production Systems Deployed</span>
<span class="metrics-value">5</span>
</div>
<div class="metrics-row">
<span class="metrics-label">Git Commits</span>
<span class="metrics-value">126</span>
</div>
<div class="metrics-row">
<span class="metrics-label">Development Timeline</span>
<span class="metrics-value">65 days</span>
</div>
<div class="metrics-row">
<span class="metrics-label">Cost Efficiency</span>
<span class="metrics-value">918x</span>
</div>
<div class="metrics-row">
<span class="metrics-label">Equivalent Development Value</span>
<span class="metrics-value">$458,900</span>
</div>
<div class="metrics-row">
<span class="metrics-label">AI Tools/Agents Built</span>
<span class="metrics-value">12</span>
</div>
<div class="metrics-row">
<span class="metrics-label">Monthly Recurring Revenue</span>
<span class="metrics-value">$500</span>
</div>
<div class="metrics-row">
<span class="metrics-label">Active Revenue Pipeline</span>
<span class="metrics-value">$2,000+</span>
</div>
</div>
</section>
<!-- Technical Projects -->
<section class="section">
<h2 class="section-title">Technical Projects & Systems</h2>
<div class="project-entry">
<div class="project-title">
EV_LV Grant Intelligence Platform
<span class="project-status">PRODUCTION</span>
</div>
<div class="project-meta">
Claude API, Node.js, TypeScript, Railway, PostgreSQL, n8n, WebSocket | 2,323 files, 81 commits
</div>
<p class="project-desc">
Full-stack AI platform for EV charging grant research, deployed for Law Ventures LTD.
Features AVA, a conversational agent with 12 specialized tools covering grant eligibility
(200K+ programs indexed), NEVI compliance verification, ComEd $100M program analysis,
and automated funding calculations. Integrates with NREL, Grants.gov, ChargeHub, WattTime,
and ComEd APIs. Deployed to Railway with auto-scaling, health monitoring, and WebSocket
streaming. Generates $500/month recurring revenue with 100% test coverage on critical paths.
</p>
</div>
<div class="project-entry">
<div class="project-title">
ADEV Agent Orchestration Dashboard
<span class="project-status">PRODUCTION</span>
</div>
<div class="project-meta">
Claude Agent SDK, FastAPI, Python, MCP Servers, WebSocket, HTTPS/TLS | 8,139 files, 50 commits
</div>
<p class="project-desc">
Real-time multi-agent orchestration platform managing 6 specialized subagents: grant researcher,
compliance expert, form filler, agent developer, workflow builder, and documentation writer.
Features WebSocket streaming for real-time updates, API key authentication, and secure HTTPS
deployment with self-signed certificates. Includes comprehensive 6-module Claude Agent SDK
tutorial progression demonstrating querying, conversations, tools, streaming, MCP, and subagents.
</p>
</div>
<div class="project-entry">
<div class="project-title">
AI Agent SaaS Platform
<span class="project-status in-progress">95% COMPLETE</span>
</div>
<div class="project-meta">
React, Vite, FastAPI, JWT Authentication, Stripe, PostgreSQL | 4,339 lines, 7 components
</div>
<p class="project-desc">
Consumer-facing SaaS application for AI agent services. React frontend with landing page
(693 lines), 4-tier pricing model (Free/$99/$499/Enterprise), JWT authentication system,
and beta feedback collection. FastAPI backend with 8+ API endpoints, user management,
and agent orchestration. Stripe integration ready. Full SEO implementation including
meta tags, Open Graph, Twitter cards, sitemap.xml. Target launch: January 2026.
</p>
</div>
<div class="project-entry">
<div class="project-title">
Maine Scientific Compliance Platform
<span class="project-status in-progress">MVP READY</span>
</div>
<div class="project-meta">
Ollama, PowerShell, Python, PostgreSQL, 21 CFR, HACCP | 600+ lines SQL, 25 tables
</div>
<p class="project-desc">
FDA/GMP/HACCP compliance assistant for food and pharmaceutical manufacturers.
Local Ollama model deployment (994 MB, zero API costs) ensures complete data privacy.
PowerShell automation module (ComplianceTools.psm1) for FDA recall searches, 21 CFR
section lookups, and HACCP checklist automation. 25-table compliance database schema
for tracking audits, deviations, and corrective actions.
</p>
</div>
<div class="project-entry">
<div class="project-title">A.Development R&D Platform</div>
<div class="project-meta">
Strands SDK, Node.js, Supabase, N8N Cloud, MCP Servers | 2,918 files, 11 commits
</div>
<p class="project-desc">
Reusable enterprise AI agent framework serving as the foundation for client solutions.
Includes base agent classes with tool integration, expert consensus with weighted scoring,
and custom MCP servers (PowerShell executor, N8N bridge, grant tracker). Integrates with
InsightsLM RAG engine and Supabase vector search. Used as integration layer for EV_LV
and other client projects.
</p>
</div>
</section>
<!-- Professional Experience -->
<section class="section">
<h2 class="section-title">Professional Experience</h2>
<div class="entry">
<div class="entry-header">
<span class="entry-title">AI Agent Developer & Integration Specialist</span>
<span class="entry-date">2024 - Present</span>
</div>
<div class="entry-org">A.Development (Independent) <span class="entry-location">| Chicago, IL</span></div>
<ul class="entry-desc">
<li>Design and deploy production AI systems using Claude Agent SDK, MCP servers, and multi-agent orchestration patterns</li>
<li>Developed and deployed EV_LV grant intelligence platform, generating $500/month recurring revenue</li>
<li>Built 363,000+ lines of production code across 5 major enterprise systems in 65 days</li>
<li>Achieved 918x cost efficiency delivering $458,900 equivalent development value at ~$500 actual cost</li>
<li>Created n8n automation workflows integrating Slack, Airtable, and custom webhooks for client operations</li>
<li>Developed specialized subagents for grant research, compliance verification, and documentation generation</li>
<li>Implemented secure deployment patterns with API key authentication, HTTPS/TLS, and Railway auto-scaling</li>
</ul>
</div>
<div class="entry">
<div class="entry-header">
<span class="entry-title">Electrical Apprentice</span>
<span class="entry-date">2023 - Present</span>
</div>
<div class="entry-org">Harrison Electrical Contracting <span class="entry-location">| Chicago, IL</span></div>
<ul class="entry-desc">
<li>Install and upgrade commercial electrical systems, improving building envelope efficiency and safety compliance</li>
<li>Implement low voltage security and fire alarm systems ensuring regulatory compliance</li>
<li>Collaborate with senior electricians on complex commercial and industrial projects</li>
<li>Maintain rigorous safety standards through effective communication and teamwork</li>
<li>Currently pursuing Electrician's License to expand professional credentials</li>
</ul>
</div>
<div class="entry">
<div class="entry-header">
<span class="entry-title">Energy Efficiency Consultant / Lighting Specialist</span>
<span class="entry-date">August 2018 - Present</span>
</div>
<div class="entry-org">Law Ventures LTD <span class="entry-location">| Chicago, IL</span></div>
<ul class="entry-desc">
<li>Conduct comprehensive energy audits for commercial and industrial clients, achieving average 30% energy consumption reduction</li>
<li>Specialize in lighting system retrofits using LED technology, significantly reducing operational costs</li>
<li>Develop detailed technical and sales proposals combining engineering analysis with business case justification</li>
<li>Lead large-scale energy efficiency projects coordinating with client management teams and contractors</li>
<li>Now building AI automation tools (EV_LV platform) for same employer's EV charging grant tracking operations</li>
<li>Transitioned domain expertise in energy sector into production AI systems serving same business needs</li>
</ul>
</div>
<div class="entry">
<div class="entry-header">
<span class="entry-title">Production Manager / Production Compliance Consultant</span>
<span class="entry-date">2020 - 2023</span>
</div>
<div class="entry-org">Maine Scientific <span class="entry-location">| Richmond, ME</span></div>
<ul class="entry-desc">
<li>Assisted in designing scientific laboratories adhering to strict quality and safety standards</li>
<li>Contributed to certification and management of laboratory operations</li>
<li>Managed production process in cannabis manufacturing, ensuring regulatory compliance across multiple states</li>
<li>Oversaw 8-person production crew, implementing process improvements that increased efficiency by 20%</li>
<li>Created and oversaw manufacturing of vitamin supplements and cannabis products for legal distribution</li>
<li>Experience directly informs current development of Maine Scientific AI Compliance Platform</li>
</ul>
</div>
<div class="entry">
<div class="entry-header">
<span class="entry-title">Event Production Manager & Creative Consultant</span>
<span class="entry-date">April 2022 - Present</span>
</div>
<div class="entry-org">Bizar Entertainment <span class="entry-location">| Deerfield, IL</span></div>
<ul class="entry-desc">
<li>Created DMX lighting shows with automated processes for rapid show design, reducing setup time from hours to minutes</li>
<li>Developed agentic designs for LED walls using shader programming (GLSL, HLSL) for real-time generative visuals</li>
<li>Operated LED wall systems with comprehensive understanding of IP data flow for DMX and MIDI protocols using Resolume</li>
<li>Applied machine learning processes to automate lighting cue generation and visual effects, pioneering AI-augmented event production</li>
<li>Implemented OSHA, fire safety, rigging, and electrical standards, streamlining operations and ensuring regulatory compliance</li>
<li>Produced comprehensive Standard Operating Procedures for safety and event management, still in active use for staff training and legal compliance</li>
<li>Collaborated with artists, vendors, and clients to produce successful large-scale events, combining creative direction with logistical and technical excellence</li>
</ul>
</div>
<div class="entry">
<div class="entry-header">
<span class="entry-title">Wheel Loader & Heavy Diesel Machine Operator</span>
<span class="entry-date">Previous</span>
</div>
<div class="entry-org">Ground Pros Inc <span class="entry-location">| Itasca, IL</span></div>
<ul class="entry-desc">
<li>Operated wheel loaders and heavy diesel machinery for construction, landscaping, and site preparation projects</li>
<li>Maintained strict equipment safety standards and performed comprehensive daily pre-operation inspections</li>
<li>Coordinated with site supervisors and project managers on material handling, grading, and logistics operations</li>
<li>Demonstrated mechanical aptitude and problem-solving skills in equipment maintenance and troubleshooting</li>
</ul>
</div>
<div class="entry">
<div class="entry-header">
<span class="entry-title">Production Tech Engineer / Associate Promotional Manager</span>
<span class="entry-date">March 2023</span>
</div>
<div class="entry-org">Davenports Cabaret <span class="entry-location">| Chicago, IL</span></div>
<ul class="entry-desc">
<li>Managed promotion of diverse events, consistently exceeding audience attendance expectations through innovative strategies</li>
<li>Oversaw event execution, coordinating artists, staff, and venue resources, improving client satisfaction and business growth</li>
<li>Led promotional campaigns that built solid network of promoters and collaborative relationships with vendors and partners</li>
<li>Managed logistical planning for major concerts, ensuring smooth coordination between artists, technical teams, and vendors</li>
</ul>
</div>
</section>
<!-- Technical Skills -->
<section class="section">
<h2 class="section-title">Technical Competencies</h2>
<table class="skills-table">
<tr>
<td>AI & Machine Learning</td>
<td>Claude Agent SDK, Claude Code, MCP Server Development, Anthropic API, Ollama (local models), LangChain, RAG Systems, Vector Embeddings, Prompt Engineering, Multi-Agent Orchestration</td>
</tr>
<tr>
<td>Backend Development</td>
<td>Python, FastAPI, Node.js, TypeScript, Express, WebSocket, REST API Design, PostgreSQL, SQLite, Supabase</td>
</tr>
<tr>
<td>Infrastructure</td>
<td>Railway (deployment), Docker, Git/GitHub, CI/CD Pipelines, HTTPS/TLS, API Key Authentication, Health Monitoring</td>
</tr>
<tr>
<td>Automation</td>
<td>n8n Workflows, Slack Integration, Webhook Systems, PowerShell Scripting, Airtable, Cron Scheduling</td>
</tr>
<tr>
<td>Frontend</td>
<td>React, Vite, HTML5/CSS3, JavaScript ES6+, Responsive Design, Dashboard UI/UX</td>
</tr>
<tr>
<td>Production Tech</td>
<td>Live Sound Mixing, LED Mapping, DMX Control, Audio-Visual Systems, Event Logistics</td>
</tr>
</table>
</section>
<!-- Certifications -->
<section class="section">
<h2 class="section-title">Certifications & Credentials</h2>
<div class="cert-entry">
<span class="cert-name">ComEd Energy Efficiency Program Certification</span>
<span class="cert-issuer">Commonwealth Edison</span>
</div>
<div class="cert-entry">
<span class="cert-name">OSHA Safety Standards Certification</span>
<span class="cert-issuer">Occupational Safety and Health Administration</span>
</div>
</section>
<!-- Domain Expertise -->
<section class="section">
<h2 class="section-title">Domain Expertise</h2>
<table class="skills-table">
<tr>
<td>Energy Sector</td>
<td>ComEd programs, NEVI/CFI grants, EV charging infrastructure, energy auditing, lighting retrofits, utility rebate programs</td>
</tr>
<tr>
<td>Regulatory</td>
<td>FDA compliance (21 CFR), GMP, HACCP food safety, OSHA safety standards, fire safety codes</td>
</tr>
<tr>
<td>Grant Programs</td>
<td>Federal grants (Grants.gov), state energy programs, NEVI formula funding, CFI discretionary grants, utility incentive programs</td>
</tr>
<tr>
<td>Event Production</td>
<td>Large-scale event management, vendor coordination, compliance documentation, SOP development</td>
</tr>
</table>
</section>
<!-- Technical Contributions -->
<section class="section">
<h2 class="section-title">Open Source & Technical Contributions</h2>
<div class="contribution">
<span class="contribution-title">Claude Agent SDK Examples</span>
<span class="contribution-detail"> - 6-module tutorial progression demonstrating production patterns for querying, conversations, tools, streaming, MCP integration, and subagent orchestration</span>
</div>
<div class="contribution">
<span class="contribution-title">MCP Server Development</span>
<span class="contribution-detail"> - Custom MCP servers for PowerShell execution, N8N workflow bridging, and grant tracking automation</span>
</div>
<div class="contribution">
<span class="contribution-title">Compliance Automation Tools</span>
<span class="contribution-detail"> - PowerShell module (ComplianceTools.psm1) for FDA/HACCP compliance checking and 21 CFR lookup</span>
</div>
</section>
<!-- Footer -->
<footer style="margin-top: 32px; padding-top: 16px; border-top: 1px solid #ddd; text-align: center; font-size: 9pt; color: #666;">
<p>References available upon request | Portfolio: https://github.com/Adkr1989/Ari-Klopfer-Portfolio | Last updated: December 2025</p>
</footer>
</body>
</html>