-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourse.html
More file actions
468 lines (420 loc) · 16.9 KB
/
Copy pathcourse.html
File metadata and controls
468 lines (420 loc) · 16.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ATIS Framework Executive Course</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
body {
background: #f8fafc;
color: #0f172a;
}
.navbar {
background: white;
border-bottom: 1px solid #e2e8f0;
padding: 1rem 2rem;
position: sticky;
top: 0;
z-index: 100;
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
color: #0b1e33;
text-decoration: none;
}
.logo span {
color: #3b82f6;
}
.nav-links {
display: flex;
gap: 2rem;
}
.nav-links a {
color: #475569;
text-decoration: none;
font-weight: 500;
}
.nav-links a:hover, .nav-links a.active {
color: #3b82f6;
}
.course-header {
background: linear-gradient(135deg, #0b1e33 0%, #1e3a5f 100%);
color: white;
padding: 4rem 2rem;
text-align: center;
}
.course-header h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.course-header p {
font-size: 1.2rem;
max-width: 800px;
margin: 0 auto;
opacity: 0.9;
}
.badge {
background: rgba(59,130,246,0.2);
color: #93c5fd;
padding: 0.5rem 1.5rem;
border-radius: 50px;
display: inline-block;
margin-bottom: 1.5rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 3rem 2rem;
}
.course-stats {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
margin-bottom: 3rem;
}
.stat-card {
background: white;
padding: 2rem;
border-radius: 16px;
text-align: center;
border: 1px solid #e2e8f0;
}
.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: #3b82f6;
margin-bottom: 0.5rem;
}
.stat-label {
color: #475569;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.course-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin: 3rem 0;
}
.module-card {
background: white;
border-radius: 16px;
overflow: hidden;
border: 1px solid #e2e8f0;
transition: transform 0.2s;
}
.module-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 20px -8px rgba(0,0,0,0.1);
}
.card-header {
padding: 1.5rem;
border-bottom: 1px solid #e2e8f0;
}
.module-number {
color: #3b82f6;
font-weight: 600;
font-size: 0.9rem;
margin-bottom: 0.5rem;
}
.card-header h3 {
font-size: 1.3rem;
color: #0b1e33;
}
.card-body {
padding: 1.5rem;
}
.card-body p {
color: #475569;
margin-bottom: 1rem;
}
.module-meta {
display: flex;
justify-content: space-between;
color: #64748b;
font-size: 0.9rem;
margin: 1rem 0;
}
.btn {
display: inline-block;
background: #3b82f6;
color: white;
padding: 0.75rem 1.5rem;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
transition: background 0.2s;
}
.btn:hover {
background: #2563eb;
}
.btn-outline {
background: transparent;
border: 2px solid #3b82f6;
color: #3b82f6;
}
.btn-outline:hover {
background: #3b82f6;
color: white;
}
.research-note {
background: #f0f9ff;
border-left: 4px solid #3b82f6;
padding: 1.5rem;
border-radius: 8px;
margin: 2rem 0;
}
.quote {
font-style: italic;
color: #334155;
padding: 1rem;
background: #f8fafc;
border-radius: 8px;
margin: 1rem 0;
}
.quote-author {
margin-top: 0.5rem;
font-weight: 600;
color: #0b1e33;
}
.footer {
text-align: center;
padding: 3rem 2rem;
background: white;
border-top: 1px solid #e2e8f0;
}
@media (max-width: 768px) {
.course-stats, .course-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<nav class="navbar">
<div class="nav-container">
<a href="index.html" class="logo">ATIS <span>Framework</span></a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="assessment.html">Self-Assessment</a>
<a href="course.html" class="active">Executive Course</a>
<a href="about.html">Research</a>
</div>
</div>
</nav>
<div class="course-header">
<div class="badge">📚 ATIS Executive Education</div>
<h1>Master AI Project Management</h1>
<p>A research-based course for business leaders, project managers, and AI practitioners</p>
</div>
<div class="container">
<!-- Course Stats -->
<div class="course-stats">
<div class="stat-card">
<div class="stat-number">6</div>
<div class="stat-label">Core Modules</div>
</div>
<div class="stat-card">
<div class="stat-number">48</div>
<div class="stat-label">Expert Interviews</div>
</div>
<div class="stat-card">
<div class="stat-number">1,392</div>
<div class="stat-label">Analytical Units</div>
</div>
<div class="stat-card">
<div class="stat-number">279</div>
<div class="stat-label">Resilience Cases</div>
</div>
</div>
<!-- Research Foundation -->
<div class="research-note">
<h3>📊 Built on Rigorous Research</h3>
<p>This course is based on a multi-staged qualitative study with 48 international AI experts across three rounds of interviews (2023-2025). The ATIS Framework emerged from both manual thematic coding and computational latent semantic analysis of 1,392 analytical units.</p>
</div>
<!-- Course Grid -->
<h2 style="margin: 2rem 0;">Course Modules</h2>
<div class="course-grid">
<!-- Module 1 -->
<div class="module-card">
<div class="card-header">
<div class="module-number">MODULE 01</div>
<h3>Introduction: The AI Project Management Challenge</h3>
</div>
<div class="card-body">
<p>Understand why AI projects fail differently than traditional IT projects and the concept of "stochastic friction."</p>
<div class="module-meta">
<span>⏱️ 20 minutes</span>
<span>📊 3 lessons</span>
</div>
<div class="quote" style="font-size: 0.9rem;">
"Data science is that like a lot of times, we don't know. It's different."
<div class="quote-author">— P5</div>
</div>
<a href="course-module-1.html" class="btn" style="width: 100%; text-align: center; margin-top: 1rem;">Start Module</a>
</div>
</div>
<!-- Module 2 -->
<div class="module-card">
<div class="card-header">
<div class="module-number">MODULE 02</div>
<h3>The Four AI Specificities</h3>
</div>
<div class="card-body">
<p>Deep dive into stochastic uncertainty, autocatalysis, process disruption, and high customer expectations.</p>
<div class="module-meta">
<span>⏱️ 30 minutes</span>
<span>📊 4 lessons</span>
</div>
<div class="quote" style="font-size: 0.9rem;">
"Every day there's something new. Every day there's a new discovery."
<div class="quote-author">— P9</div>
</div>
<a href="course-module-2.html" class="btn" style="width: 100%; text-align: center; margin-top: 1rem;">Start Module</a>
</div>
</div>
<!-- Module 3 -->
<div class="module-card">
<div class="card-header">
<div class="module-number">MODULE 03</div>
<h3>The ATIS Framework: Four Pillars</h3>
</div>
<div class="card-body">
<p>Learn how Act, Train, Inquire, and Standardize create organizational resilience.</p>
<div class="module-meta">
<span>⏱️ 35 minutes</span>
<span>📊 5 lessons</span>
</div>
<div class="quote" style="font-size: 0.9rem;">
"When hiring... if it's Kenya, we get Kenyan, so they have intimate understanding."
<div class="quote-author">— P33</div>
</div>
<a href="course-module-3.html" class="btn" style="width: 100%; text-align: center; margin-top: 1rem;">Start Module</a>
</div>
</div>
<!-- Module 4 -->
<div class="module-card">
<div class="card-header">
<div class="module-number">MODULE 04</div>
<h3>Cross-Cultural Dynamics in AI</h3>
</div>
<div class="card-body">
<p>Navigate cultural friction in data treatment, feedback, and knowledge sharing.</p>
<div class="module-meta">
<span>⏱️ 30 minutes</span>
<span>📊 4 lessons</span>
</div>
<div class="quote" style="font-size: 0.9rem;">
"Difficult to us to tell that way so directly."
<div class="quote-author">— P1, P2</div>
</div>
<a href="course-module-4.html" class="btn" style="width: 100%; text-align: center; margin-top: 1rem;">Start Module</a>
</div>
</div>
<!-- Module 5 -->
<div class="module-card">
<div class="card-header">
<div class="module-number">MODULE 05</div>
<h3>The ATIS Maturity Model</h3>
</div>
<div class="card-body">
<p>Understand the three levels of maturity and calculate your Pillar Saturation Ratio (PSR).</p>
<div class="module-meta">
<span>⏱️ 25 minutes</span>
<span>📊 3 lessons</span>
</div>
<div class="quote" style="font-size: 0.9rem;">
"One thing I did was writing extensive documentation... 50 pages."
<div class="quote-author">— P17</div>
</div>
<a href="course-module-5.html" class="btn" style="width: 100%; text-align: center; margin-top: 1rem;">Start Module</a>
</div>
</div>
<!-- Module 6 -->
<div class="module-card">
<div class="card-header">
<div class="module-number">MODULE 06</div>
<h3>Implementation & Action Planning</h3>
</div>
<div class="card-body">
<p>Translate your assessment results into concrete organizational changes.</p>
<div class="module-meta">
<span>⏱️ 25 minutes</span>
<span>📊 3 lessons + Workshop</span>
</div>
<div class="quote" style="font-size: 0.9rem;">
"We need this responsibility of building the model."
<div class="quote-author">— P2</div>
</div>
<a href="course-module-6.html" class="btn" style="width: 100%; text-align: center; margin-top: 1rem;">Start Module</a>
</div>
</div>
</div>
<!-- Integration with Assessment -->
<div style="background: white; border-radius: 16px; padding: 2rem; margin: 3rem 0; border: 1px solid #e2e8f0;">
<h2>🎯 Connect with Your Assessment</h2>
<p style="margin: 1rem 0;">This course is designed to work hand-in-hand with your ATIS self-assessment. After completing each module, you'll understand how to interpret your PSR scores and implement targeted improvements.</p>
<div style="display: flex; gap: 1rem;">
<a href="assessment.html" class="btn">Take the Assessment</a>
</div>
</div>
<!-- Learning Outcomes -->
<h2 style="margin: 2rem 0;">By the end of this course, you will be able to:</h2>
<div style="display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;">
<div style="display: flex; gap: 1rem; align-items: center;">
<span style="color: #3b82f6; font-size: 1.5rem;">✓</span>
<span>Identify the four technical specificities causing AI project friction</span>
</div>
<div style="display: flex; gap: 1rem; align-items: center;">
<span style="color: #3b82f6; font-size: 1.5rem;">✓</span>
<span>Diagnose your organization's ATIS maturity level using PSR</span>
</div>
<div style="display: flex; gap: 1rem; align-items: center;">
<span style="color: #3b82f6; font-size: 1.5rem;">✓</span>
<span>Implement Act, Train, Inquire, and Standardize interventions</span>
</div>
<div style="display: flex; gap: 1rem; align-items: center;">
<span style="color: #3b82f6; font-size: 1.5rem;">✓</span>
<span>Bridge cross-cultural gaps in AI project teams</span>
</div>
<div style="display: flex; gap: 1rem; align-items: center;">
<span style="color: #3b82f6; font-size: 1.5rem;">✓</span>
<span>Move from "hero-dependent" firefighting to systemic resilience</span>
</div>
<div style="display: flex; gap: 1rem; align-items: center;">
<span style="color: #3b82f6; font-size: 1.5rem;">✓</span>
<span>Apply lessons from 48 global AI experts to your context</span>
</div>
</div>
<!-- Expert Network -->
<div style="margin: 4rem 0; text-align: center;">
<h2>🌍 The Research Behind the Course</h2>
<p style="max-width: 700px; margin: 1rem auto;">This course distills insights from 48 international AI experts across 15 countries, including Project Managers, Business Translators, and Engineers.</p>
<div style="display: flex; justify-content: center; gap: 2rem; margin: 2rem 0;">
<div><span style="font-weight: 700;">🇺🇸 USA</span> | 🇬🇧 UK | 🇫🇷 France</div>
<div><span style="font-weight: 700;">🇧🇷 Brazil</span> | 🇮🇳 India | 🇰🇪 Kenya</div>
<div><span style="font-weight: 700;">🇯🇵 Japan</span> | 🇲🇽 Mexico | 🇸🇪 Sweden</div>
</div>
</div>
</div>
<footer class="footer">
<p>© 2026 ATIS Framework. Based on peer-reviewed research.</p>
<p style="margin-top: 0.5rem; font-size: 0.9rem; color: #94a3b8;">*All expert quotes anonymized (P1-P48) and used with permission.</p>
</footer>
</body>
</html>