-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
634 lines (463 loc) · 21.1 KB
/
Copy pathteam.html
File metadata and controls
634 lines (463 loc) · 21.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
<!doctype html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EPN29KP695"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-EPN29KP695');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<title>Polycog — Team</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png" />
<link rel="manifest" href="images/site.webmanifest" />
<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=DM+Serif+Display:ital@0;1&family=Quicksand:wght@300;400;500;600&family=Poppins:wght@800&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="css/variables.css" />
<link rel="stylesheet" href="css/base.css" />
<style>
/* team grid */
.team-section {
padding: 0 48px 120px;
}
.team-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.team-card {
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 4px;
padding: 48px 40px 40px;
display: flex;
flex-direction: column;
gap: 20px;
text-decoration: none;
color: inherit;
transition: border-color .3s, box-shadow .3s, transform .3s var(--ease);
position: relative;
overflow: hidden;
}
.team-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(--secondary), transparent);
opacity: 0;
transition: opacity .35s;
}
.team-card:hover::before { opacity: 1; }
.team-card:hover {
border-color: var(--card-hover-border);
box-shadow: 0 8px 48px rgba(123,47,190,.1), 0 2px 12px rgba(0,0,0,.08);
transform: translateY(-3px);
}
.founder-avatar {
width: 64px; height: 64px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(123,47,190,.15), rgba(196,125,32,.12));
border: 1px solid var(--card-border);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.founder-initials {
font-family: var(--font-d);
font-size: 1.2rem;
color: var(--secondary);
letter-spacing: -.02em;
}
.founder-role {
font-size: .58rem;
letter-spacing: .2em;
text-transform: uppercase;
color: var(--secondary);
}
.team-card h2 {
font-family: var(--font-d);
font-weight: 700;
font-size: 1.3rem;
letter-spacing: -.025em;
color: var(--text);
line-height: 1.2;
margin-top: 4px;
}
.team-card p {
font-size: .78rem;
color: var(--text-2);
line-height: 1.85;
font-weight: 300;
flex: 1;
}
.linkedin-link {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: .65rem;
letter-spacing: .1em;
text-transform: uppercase;
color: var(--accent);
text-decoration: none;
padding-top: 16px;
border-top: 1px solid rgba(17,17,24,.08);
transition: gap .25s var(--ease);
}
.team-card:hover .linkedin-link { gap: 12px; }
.founder-stats {
display: flex;
gap: 24px;
padding: 16px 0;
border-top: 1px solid rgba(17,17,24,.08);
border-bottom: 1px solid rgba(17,17,24,.08);
}
.founder-stat {
display: flex;
flex-direction: column;
gap: 3px;
}
.stat-value {
font-family: var(--font-d);
font-size: 1.3rem;
letter-spacing: -.03em;
color: var(--text);
line-height: 1;
}
.stat-label {
font-size: .56rem;
letter-spacing: .13em;
text-transform: uppercase;
color: var(--text-3);
}
.exp-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.exp-tag {
font-size: .58rem;
letter-spacing: .13em;
text-transform: uppercase;
color: var(--text-2);
border: 1px solid rgba(17,17,24,.12);
border-radius: 2px;
padding: 4px 10px;
}
.exp-tag.highlight {
color: var(--accent);
border-color: rgba(196,125,32,.3);
background: rgba(196,125,32,.06);
}
/* advisors */
.advisors-section {
padding: 0 48px 120px;
}
.advisors-header {
max-width: 1200px;
margin: 0 auto 40px;
padding-top: 60px;
border-top: 1px solid rgba(123,47,190,.1);
}
.advisors-grid {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
/* responsive */
@media (max-width: 960px) {
.team-section { padding: 0 24px 80px; }
.team-grid { grid-template-columns: 1fr; }
.advisors-section { padding: 0 24px 80px; }
.advisors-grid { grid-template-columns: 1fr; }
}
</style>
<style>
/* reveal */
.reveal {
opacity: 0;
transform: translateY(24px);
transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.in { opacity:1; transform:none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
</style>
</head>
<body>
<!-- Nav -->
<nav>
<a href="index.html" class="nav-logo">
<img src="images/logo.svg" width="24" height="24" alt="" />
polycog
</a>
<ul>
<li><a href="index.html#platform">Platform</a></li><li><a href="index.html#how">How It Works</a></li><li><a href="index.html#principles">Principles</a></li><li><a href="research.html">Research</a></li><li><a href="team.html">Team</a></li><li><a href="https://docs.polycog.ai" target="_blank">Docs</a></li><li><a href="https://github.com/polycog/cognition" class="nav-btn" target="_blank">⭐ GitHub</a></li>
</ul>
<button class="nav-hamburger" id="navToggle" aria-label="Toggle menu" aria-expanded="false">
<span></span><span></span><span></span>
</button>
</nav>
<!-- Mobile nav drawer -->
<div class="nav-mobile" id="navMobile">
<a href="index.html#platform" class="nav-mobile-link">Platform</a><a href="index.html#how" class="nav-mobile-link">How It Works</a><a href="index.html#principles" class="nav-mobile-link">Principles</a><a href="research.html" class="nav-mobile-link">Research</a><a href="team.html" class="nav-mobile-link">Team</a><a href="https://docs.polycog.ai" class="nav-mobile-link">Docs</a><a href="https://github.com/polycog/cognition" class="nav-btn">⭐ GitHub</a>
</div>
<div class="page-header reveal">
<div class="label">Team</div>
<h1>The Founders</h1>
<p class="page-lead">
We're scientists and engineers who believe the next frontier of AI isn't capability — it's trustworthiness.
</p>
</div>
<div class="team-section">
<div class="team-grid">
<a href="https://www.linkedin.com/in/shiwalimohan/" target="_blank" rel="noopener noreferrer" class="team-card reveal d1">
<div class="founder-avatar"><span class="founder-initials">SM</span></div>
<div>
<div class="founder-role">Co-Founder</div>
<h2>Shiwali Mohan</h2>
</div>
<p>
AI scientist with an expertise in neuro-symbolic reasoning and in AI systems that are safe, explainable, and aligned with human intent.
</p>
<div class="founder-stats">
<div class="founder-stat">
<span class="stat-value">$10M+</span>
<span class="stat-label">Research Portfolio</span>
</div>
<div class="founder-stat">
<span class="stat-value">50+</span>
<span class="stat-label">Publications</span>
</div>
<div class="founder-stat">
<span class="stat-value">10</span>
<span class="stat-label">Patents</span>
</div>
</div>
<div class="exp-tags">
<span class="exp-tag">DARPA</span>
<span class="exp-tag">Xerox PARC</span>
<span class="exp-tag highlight">Ph.D · U of Michigan</span>
</div>
<div class="linkedin-link">
<svg width="14" height="14" viewBox="0 0 14 14" fill="none">
<rect x="1" y="1" width="12" height="12" rx="2" stroke="currentColor" stroke-width="1.2"/>
<line x1="4" y1="6" x2="4" y2="10" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/>
<line x1="4" y1="4" x2="4" y2="4.5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round"/>
<path d="M7 10V7.5C7 6.7 7.5 6 8.5 6S10 6.7 10 7.5V10" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/>
</svg>
LinkedIn
</div>
</a>
<a href="https://www.linkedin.com/in/natederbinsky/" target="_blank" rel="noopener noreferrer" class="team-card reveal d2">
<div class="founder-avatar"><span class="founder-initials">ND</span></div>
<div>
<div class="founder-role">Co-Founder</div>
<h2>Nate Derbinsky</h2>
</div>
<p>
Expert in cognitive architectures with deep experience in building reasoning and optimization systems for complex, real-world domains.
</p>
<div class="founder-stats">
<div class="founder-stat">
<span class="stat-value">40+</span>
<span class="stat-label">Publications</span>
</div>
<div class="founder-stat">
<span class="stat-value">3</span>
<span class="stat-label">Patents</span>
</div>
</div>
<div class="exp-tags">
<span class="exp-tag">Northeastern</span>
<span class="exp-tag">Disney</span>
<span class="exp-tag highlight">Ph.D · U of Michigan</span>
</div>
<div class="linkedin-link">
<svg width="14" height="14" viewBox="0 0 14 14" fill="none">
<rect x="1" y="1" width="12" height="12" rx="2" stroke="currentColor" stroke-width="1.2"/>
<line x1="4" y1="6" x2="4" y2="10" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/>
<line x1="4" y1="4" x2="4" y2="4.5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round"/>
<path d="M7 10V7.5C7 6.7 7.5 6 8.5 6S10 6.7 10 7.5V10" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/>
</svg>
LinkedIn
</div>
</a>
</div>
</div>
<div class="advisors-section">
<div class="advisors-header reveal">
<div class="label">Advisors</div>
<h2 style="font-family:var(--font-d);font-size:clamp(1.6rem,3vw,2.4rem);letter-spacing:-.03em;color:var(--text);">Our Advisors</h2>
</div>
<div class="advisors-grid">
<a href="https://www.linkedin.com/in/ktalamad/" target="_blank" rel="noopener noreferrer" class="team-card reveal d1">
<div class="founder-avatar"><span class="founder-initials">KT</span></div>
<div>
<div class="founder-role">Advisor</div>
<h2>Kartik Talamadupula</h2>
</div>
<p>
AI researcher and Distinguished Architect at Oracle, with deep expertise in LLMs, reasoning, and planning.
Previously led AI research at IBM Research and Symbl.ai.
AAAI Senior Member.
</p>
<div class="exp-tags">
<span class="exp-tag">Oracle</span>
<span class="exp-tag">IBM Research</span>
<span class="exp-tag highlight">Ph.D · ASU</span>
</div>
<div class="linkedin-link">
<svg width="14" height="14" viewBox="0 0 14 14" fill="none">
<rect x="1" y="1" width="12" height="12" rx="2" stroke="currentColor" stroke-width="1.2"/>
<line x1="4" y1="6" x2="4" y2="10" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/>
<line x1="4" y1="4" x2="4" y2="4.5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round"/>
<path d="M7 10V7.5C7 6.7 7.5 6 8.5 6S10 6.7 10 7.5V10" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/>
</svg>
LinkedIn
</div>
</a>
<a href="https://www.linkedin.com/in/mamthabanerjee/" target="_blank" rel="noopener noreferrer" class="team-card reveal d2">
<div class="founder-avatar"><span class="founder-initials">MB</span></div>
<div>
<div class="founder-role">Advisor</div>
<h2>Mamtha Banerjee</h2>
</div>
<p>
Applied AI and Enterprise platform executive, technology entrepreneur, and product leader with a track record of building and scaling cloud-native platforms and AI-led productivity at scale.
</p>
<div class="exp-tags">
<span class="exp-tag">GM · JPMC</span>
<span class="exp-tag">VP · Expedia</span>
<span class="exp-tag highlight">UIUC</span>
</div>
<div class="linkedin-link">
<svg width="14" height="14" viewBox="0 0 14 14" fill="none">
<rect x="1" y="1" width="12" height="12" rx="2" stroke="currentColor" stroke-width="1.2"/>
<line x1="4" y1="6" x2="4" y2="10" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/>
<line x1="4" y1="4" x2="4" y2="4.5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round"/>
<path d="M7 10V7.5C7 6.7 7.5 6 8.5 6S10 6.7 10 7.5V10" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/>
</svg>
LinkedIn
</div>
</a>
<a href="https://laird.engin.umich.edu/" target="_blank" rel="noopener noreferrer" class="team-card reveal d3">
<div class="founder-avatar"><span class="founder-initials">JL</span></div>
<div>
<div class="founder-role">Advisor</div>
<h2>John E. Laird</h2>
</div>
<p>
Pioneer of cognitive architectures and creator of Soar, a foundational architecture for general AI that integrates reasoning, planning, and learning.
John L. Tishman Professor Emeritus of Engineering at the University of Michigan.
</p>
<div class="exp-tags">
<span class="exp-tag">Soar</span>
<span class="exp-tag">U of Michigan</span>
<span class="exp-tag highlight">Ph.D · CMU</span>
</div>
<div class="linkedin-link">
<svg width="14" height="14" viewBox="0 0 14 14" fill="none">
<rect x="0.5" y="0.5" width="13" height="13" rx="2" stroke="currentColor" stroke-width="1.2"/>
<circle cx="7" cy="5" r="1.5" stroke="currentColor" stroke-width="1.1"/>
<path d="M4 11c0-1.66 1.34-3 3-3s3 1.34 3 3" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/>
</svg>
Website
</div>
</a>
<a href="https://dekleer.org" target="_blank" rel="noopener noreferrer" class="team-card reveal d1">
<div class="founder-avatar"><span class="founder-initials">JK</span></div>
<div>
<div class="founder-role">Advisor</div>
<h2>Johan de Kleer</h2>
</div>
<p>
Internationally recognized scientist in AI and cyber-physical systems with expertise in knowledge representation, qualitative reasoning, and large-scale inference.
Chief Scientist and Co-founder at C-Infinity.
</p>
<div class="exp-tags">
<span class="exp-tag">c-infinity</span>
<span class="exp-tag">Xerox PARC</span>
<span class="exp-tag highlight">Ph.D · MIT</span>
</div>
<div class="linkedin-link">
<svg width="14" height="14" viewBox="0 0 14 14" fill="none">
<rect x="0.5" y="0.5" width="13" height="13" rx="2" stroke="currentColor" stroke-width="1.2"/>
<circle cx="7" cy="5" r="1.5" stroke="currentColor" stroke-width="1.1"/>
<path d="M4 11c0-1.66 1.34-3 3-3s3 1.34 3 3" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/>
</svg>
Website
</div>
</a>
<a href="https://www.linkedin.com/in/parulbatra/" target="_blank" rel="noopener noreferrer" class="team-card reveal d2">
<div class="founder-avatar"><span class="founder-initials">PB</span></div>
<div>
<div class="founder-role">Advisor</div>
<h2>Parul Batra</h2>
</div>
<p>
Product and go-to-market leader with a track record of bringing AI-powered platforms to enterprise scale, bridging technical depth with real customer value.
</p>
<div class="exp-tags">
<span class="exp-tag">Meesho</span>
<span class="exp-tag">LinkedIn</span>
<span class="exp-tag highlight">MBA · MIT</span>
</div>
<div class="linkedin-link">
<svg width="14" height="14" viewBox="0 0 14 14" fill="none">
<rect x="1" y="1" width="12" height="12" rx="2" stroke="currentColor" stroke-width="1.2"/>
<line x1="4" y1="6" x2="4" y2="10" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/>
<line x1="4" y1="4" x2="4" y2="4.5" stroke="currentColor" stroke-width="1.4" stroke-linecap="round"/>
<path d="M7 10V7.5C7 6.7 7.5 6 8.5 6S10 6.7 10 7.5V10" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/>
</svg>
LinkedIn
</div>
</a>
</div>
</div>
<footer>
<a href="index.html" class="foot-logo">
<img src="images/logo.svg" width="20" height="20" alt="" />
polycog
</a>
<div class="foot-copy">© 2026 POLYCOG, INC.</div>
</footer>
<script>
// Mobile nav toggle
const navToggle = document.getElementById('navToggle');
const navMobile = document.getElementById('navMobile');
navToggle.addEventListener('click', () => {
const open = navMobile.classList.toggle('open');
navToggle.classList.toggle('open', open);
navToggle.setAttribute('aria-expanded', open);
});
navMobile.querySelectorAll('a').forEach(a => {
a.addEventListener('click', () => {
navMobile.classList.remove('open');
navToggle.classList.remove('open');
navToggle.setAttribute('aria-expanded', false);
});
});
// Scroll reveal
const ro = new IntersectionObserver(entries=>{
entries.forEach(e=>{ if(e.isIntersecting){ e.target.classList.add('in'); ro.unobserve(e.target); } });
},{ threshold: 0.08 });
document.querySelectorAll('.reveal').forEach(el=>ro.observe(el));
//
</script>
</body>
</html>