-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.html
More file actions
520 lines (451 loc) · 19 KB
/
info.html
File metadata and controls
520 lines (451 loc) · 19 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Oditan — L'IA qui vous mène quelque part</title>
<meta name="description" content="Oditan conçoit des applications d'intelligence artificielle qui aident les gens et les organisations à atteindre ce qui compte. Studio de développement basé en Abitibi-Ouest, Québec.">
<meta property="og:title" content="Oditan — L'IA qui vous mène quelque part">
<meta property="og:description" content="Applications d'intelligence artificielle conçues en Abitibi-Ouest, Québec. Premier produit en développement.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://oditan.com">
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='44' fill='none' stroke='%232a7a8a' stroke-width='5'/%3E%3Cpath d='M26 68 L50 28 L74 68' fill='none' stroke='%232a7a8a' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M39 68 L50 48 L61 68' fill='none' stroke='%232a7a8a' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E">
<style>
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=Instrument+Serif:ital@0;1&display=swap');
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--teal: #2a7a8a;
--teal-light: #3a9aad;
--teal-dim: rgba(42, 122, 138, 0.08);
--teal-border: rgba(42, 122, 138, 0.2);
--dark: #0a0e11;
--dark-card: #0e1317;
--dark-card-border: rgba(255, 255, 255, 0.04);
--grey: #4a5568;
--grey-light: #7a8a96;
--light: #c0ced8;
--white: #e4ecf0;
}
html {
height: 100%;
scroll-behavior: smooth;
}
body {
background-color: var(--dark);
color: var(--light);
font-family: 'DM Sans', sans-serif;
font-weight: 300;
min-height: 100vh;
line-height: 1.75;
-webkit-font-smoothing: antialiased;
}
/* Ambient glow */
body::before {
content: '';
position: fixed;
top: 25%;
left: 50%;
transform: translate(-50%, -50%);
width: 700px;
height: 700px;
background: radial-gradient(ellipse, rgba(42, 122, 138, 0.04) 0%, transparent 70%);
pointer-events: none;
z-index: 0;
}
.serif { font-family: 'Instrument Serif', serif; }
.italic { font-style: italic; }
/* ─────────────── HERO ─────────────── */
.hero {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 2rem;
position: relative;
z-index: 1;
}
.logo-wrap {
animation: float 6s ease-in-out infinite;
animation-delay: 2.5s;
}
.logo {
width: 88px;
height: 88px;
opacity: 0;
animation: fadeIn 2s ease-out 0.4s forwards;
}
.logo circle { fill: none; stroke: var(--teal); stroke-width: 3.5; }
.logo .m-outer { fill: none; stroke: var(--teal); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; }
.logo .m-inner { fill: none; stroke: var(--teal); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.wordmark {
margin-top: 2rem;
font-size: 2.2rem;
font-weight: 300;
letter-spacing: 0.45em;
text-transform: uppercase;
color: var(--white);
padding-left: 0.45em;
opacity: 0;
animation: fadeIn 2s ease-out 0.8s forwards;
}
.hero-tagline {
margin-top: 1.2rem;
font-size: 0.95rem;
font-weight: 300;
letter-spacing: 0.08em;
color: var(--teal-light);
opacity: 0;
animation: fadeIn 2s ease-out 1.4s forwards;
}
.scroll-hint {
position: absolute;
bottom: 2.5rem;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.6rem;
opacity: 0;
animation: fadeIn 2s ease-out 2.5s forwards;
cursor: pointer;
}
.scroll-hint span {
font-size: 0.65rem;
letter-spacing: 0.2em;
color: var(--grey);
text-transform: uppercase;
}
.scroll-hint .arrow {
width: 1px;
height: 28px;
background: linear-gradient(to bottom, var(--grey), transparent);
animation: pulse 2s ease-in-out infinite;
}
/* ─────────────── SECTIONS ─────────────── */
.page-content {
max-width: 620px;
margin: 0 auto;
padding: 4rem 2rem;
position: relative;
z-index: 1;
}
.reveal {
opacity: 0;
transform: translateY(24px);
transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
.section-divider {
width: 30px;
height: 1px;
background: var(--teal);
margin: 5rem auto;
}
.section-label {
font-size: 0.6rem;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--teal);
margin-bottom: 1.5rem;
}
.section-title {
font-family: 'Instrument Serif', serif;
font-weight: 400;
font-size: 1.6rem;
color: var(--white);
line-height: 1.4;
margin-bottom: 1.5rem;
}
p {
font-size: 0.92rem;
color: var(--grey-light);
line-height: 1.85;
margin-bottom: 1rem;
}
p:last-child { margin-bottom: 0; }
.hl { color: var(--white); font-weight: 400; }
.teal { color: var(--teal-light); }
em { color: var(--light); }
/* ─────────────── SERVICES GRID ─────────────── */
.services-grid {
display: grid;
grid-template-columns: 1fr;
gap: 1.2rem;
margin-top: 2rem;
}
.service-card {
border: 1px solid var(--dark-card-border);
background: var(--dark-card);
border-radius: 8px;
padding: 1.6rem 1.8rem;
transition: border-color 0.4s ease;
}
.service-card:hover {
border-color: var(--teal-border);
}
.service-card .card-icon {
font-size: 1.2rem;
margin-bottom: 0.8rem;
display: block;
opacity: 0.7;
}
.service-card h3 {
font-family: 'DM Sans', sans-serif;
font-weight: 500;
font-size: 0.88rem;
color: var(--white);
margin-bottom: 0.5rem;
letter-spacing: 0.01em;
}
.service-card p {
font-size: 0.82rem;
color: var(--grey);
margin-bottom: 0;
line-height: 1.7;
}
/* ─────────────── FOUNDERS ─────────────── */
.founders-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.2rem;
margin-top: 2rem;
}
.founder-card {
border: 1px solid var(--dark-card-border);
background: var(--dark-card);
border-radius: 8px;
padding: 1.6rem;
}
.founder-card .founder-role {
font-size: 0.65rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--teal);
margin-bottom: 0.8rem;
}
.founder-card p {
font-size: 0.82rem;
color: var(--grey-light);
margin-bottom: 0;
line-height: 1.7;
}
/* ─────────────── QUOTE / PHILOSOPHY ─────────────── */
.philosophy {
border-left: 2px solid var(--teal);
padding-left: 1.6rem;
margin: 2rem 0;
}
.philosophy p {
font-family: 'Instrument Serif', serif;
font-style: italic;
font-size: 1.05rem;
color: var(--light);
line-height: 1.7;
}
/* ─────────────── CTA ─────────────── */
.cta {
text-align: center;
padding: 5rem 2rem 3rem;
position: relative;
z-index: 1;
}
.cta-divider {
width: 30px;
height: 1px;
background: var(--teal);
margin: 0 auto 2.5rem;
}
.cta-title {
font-family: 'Instrument Serif', serif;
font-size: 1.4rem;
color: var(--white);
margin-bottom: 0.8rem;
}
.cta-sub {
font-size: 0.85rem;
color: var(--grey);
letter-spacing: 0.03em;
margin-bottom: 2rem;
}
.cta-email {
display: inline-block;
font-size: 0.82rem;
letter-spacing: 0.06em;
color: var(--teal);
text-decoration: none;
padding: 0.7rem 1.8rem;
border: 1px solid var(--teal-border);
border-radius: 4px;
transition: all 0.3s ease;
}
.cta-email:hover {
background: var(--teal-dim);
border-color: var(--teal);
color: var(--teal-light);
}
/* ─────────────── FOOTER ─────────────── */
.footer {
text-align: center;
padding: 2.5rem 2rem;
font-size: 0.68rem;
letter-spacing: 0.1em;
color: var(--grey);
border-top: 1px solid var(--dark-card-border);
position: relative;
z-index: 1;
}
.footer-logo {
width: 28px;
height: 28px;
margin-bottom: 1rem;
opacity: 0.3;
}
.footer-logo circle { fill: none; stroke: var(--grey); stroke-width: 4; }
.footer-logo .m-outer { fill: none; stroke: var(--grey); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.footer-logo .m-inner { fill: none; stroke: var(--grey); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; }
/* ─────────────── ANIMATIONS ─────────────── */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-4px); }
}
@keyframes pulse {
0%, 100% { opacity: 0.3; }
50% { opacity: 0.8; }
}
/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 600px) {
.wordmark { font-size: 1.6rem; }
.logo { width: 72px; height: 72px; }
.page-content { padding: 3rem 1.5rem; }
.section-title { font-size: 1.35rem; }
.founders-grid { grid-template-columns: 1fr; }
.section-divider { margin: 3.5rem auto; }
}
</style>
</head>
<body>
<!-- ═══ HERO ═══ -->
<section class="hero">
<div class="logo-wrap">
<svg class="logo" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<circle cx="50" cy="50" r="44" />
<path class="m-outer" d="M26 68 L50 28 L74 68" />
<path class="m-inner" d="M39 68 L50 48 L61 68" />
</svg>
</div>
<div class="wordmark">Oditan</div>
<div class="hero-tagline">L'IA qui vous mène quelque part.</div>
<a href="#content" class="scroll-hint">
<span>Découvrir</span>
<div class="arrow"></div>
</a>
</section>
<!-- ═══ CONTENT ═══ -->
<div class="page-content" id="content">
<!-- Intro -->
<div class="reveal">
<p style="font-size: 1.05rem; color: var(--light);">L'intelligence artificielle est partout. Les promesses aussi. Les résultats concrets, moins.</p>
<p>Oditan existe pour combler cet écart. Nous concevons et développons des <span class="hl">applications mobiles et web</span> qui utilisent l'IA pour résoudre de vrais problèmes : automatiser ce qui peut l'être, clarifier ce qui est complexe, et libérer du temps pour ce qui demande un jugement humain.</p>
</div>
<div class="section-divider reveal"></div>
<!-- Le nom -->
<div class="reveal">
<div class="section-label">Le nom</div>
<div class="section-title">Un mot. Deux repères.</div>
<p><span class="hl">Oditan</span> est un mot <em>anishinaabemowin</em>, la langue des Premiers Peuples de l'Abitibi. Il signifie <span class="teal">« atteindre un lieu, arriver à destination »</span>. Dans la grammaire anishinaabe, le verbe s'applique spécifiquement à un objectif concret, tangible. Pas à une abstraction.</p>
<p>C'est aussi le nom de la plus haute colline de l'Abitibi-Ouest, au Québec. À 463 mètres, la colline Oditan émerge de la plaine argileuse comme un point de repère naturel. Il y a 10 000 ans, son sommet formait une île au milieu du lac glaciaire Ojibway. Aujourd'hui encore, elle oriente ceux qui parcourent le territoire.</p>
<div class="philosophy">
<p>Une destination claire et les moyens concrets d'y arriver.</p>
</div>
</div>
<div class="section-divider reveal"></div>
<!-- Ce que nous construisons -->
<div class="reveal">
<div class="section-label">Ce que nous construisons</div>
<div class="section-title">Des applications d'IA<br>pour le monde réel.</div>
<p>Chaque projet part du même principe : la technologie est un moyen, pas une fin. L'IA la plus sophistiquée ne vaut rien si elle ne vous aide pas à atteindre un objectif réel.</p>
<div class="services-grid">
<div class="service-card">
<span class="card-icon">◈</span>
<h3>Produits SaaS</h3>
<p>Des applications propulsées par l'IA qui s'intègrent dans le quotidien professionnel. Nous concevons nos propres produits, de l'idée au lancement.</p>
</div>
<div class="service-card">
<span class="card-icon">◇</span>
<h3>Solutions sur mesure</h3>
<p>Votre organisation a un défi unique. Nous développons des applications IA conçues spécifiquement pour vos besoins et votre secteur.</p>
</div>
<div class="service-card">
<span class="card-icon">○</span>
<h3>Applications mobiles</h3>
<p>iPhone et Android. Des outils intelligents qui rendent l'IA accessible et utile au quotidien, pour les professionnels et le grand public.</p>
</div>
</div>
</div>
<div class="section-divider reveal"></div>
<!-- Qui nous sommes -->
<div class="reveal">
<div class="section-label">Qui nous sommes</div>
<div class="section-title">Deux parcours complémentaires.</div>
<p>Oditan a été fondée par deux associés en Abitibi-Ouest qui partagent une conviction : les meilleures solutions technologiques naissent quand on comprend profondément les problèmes humains qu'elles doivent résoudre.</p>
<div class="founders-grid">
<div class="founder-card">
<div class="founder-role">Stratégie & contenu</div>
<p>25 ans de direction d'organisation. 12 ans d'enseignement universitaire. Plus de 1 200 personnes formées à l'IA depuis 2024.</p>
</div>
<div class="founder-card">
<div class="founder-role">Développement & marketing</div>
<p>Maîtrise en marketing numérique. Plusieurs années en accompagnement entrepreneurial. Expérience concrète en développement d'applications IA.</p>
</div>
</div>
</div>
<div class="section-divider reveal"></div>
<!-- L'origine -->
<div class="reveal">
<div class="section-label">L'origine</div>
<div class="section-title">Loin des grands centres.<br>Proche du terrain.</div>
<p>Oditan est née en <span class="hl">Abitibi-Ouest, au Québec</span>. Ici, on bâtit des choses qui fonctionnent. On parle clairement. Et on comprend que la technologie doit servir les gens, pas l'inverse.</p>
<p>Cette origine n'est pas anecdotique. Elle est notre avantage.</p>
</div>
</div>
<!-- ═══ CTA ═══ -->
<div class="cta reveal">
<div class="cta-divider"></div>
<div class="cta-title">Premier produit en développement.</div>
<div class="cta-sub">Quelque chose se prépare. Restez à l'affût.</div>
<a href="mailto:info@oditan.com" class="cta-email">info@oditan.com</a>
</div>
<!-- ═══ FOOTER ═══ -->
<div class="footer">
<svg class="footer-logo" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<circle cx="50" cy="50" r="44" />
<path class="m-outer" d="M26 68 L50 28 L74 68" />
<path class="m-inner" d="M39 68 L50 48 L61 68" />
</svg>
<div>Oditan — Abitibi-Ouest, Québec</div>
<div style="margin-top: 0.4rem;">© 2026</div>
</div>
<!-- Scroll reveal -->
<script>
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
}, { threshold: 0.15 });
document.querySelectorAll('.reveal').forEach(el => observer.observe(el));
</script>
</body>
</html>