-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
559 lines (519 loc) · 29.3 KB
/
Copy pathindex.html
File metadata and controls
559 lines (519 loc) · 29.3 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
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ResonLab — des outils qui restent chez vous</title>
<meta name="description" content="ResonLab conçoit quatre logiciels pour indépendants et petites structures : Ohmnia (gestion), Scenika (son et lumière), Acustika (acoustique), Lumika (plan de feu). Vos données restent sur votre ordinateur." />
<link rel="icon" href="logos/resonlab.svg" type="image/svg+xml" />
<meta property="og:title" content="ResonLab" />
<meta property="og:description" content="Trois logiciels pour indépendants et petites structures. Vos données restent chez vous." />
<meta property="og:type" content="website" />
<script>
/* Le thème est appliqué avant le premier rendu : sans cela, une page sombre
clignoterait en blanc le temps que le script s'exécute. */
(function () {
try {
var choix = localStorage.getItem('resonlab-theme')
if (choix) document.documentElement.setAttribute('data-theme', choix)
} catch (e) { /* navigation privée : on suit le réglage du système */ }
})()
</script>
<style>
:root {
--bg: #0c0b10;
--bg-2: #08070c;
--card: #16151d;
--border: rgba(255,255,255,.09);
--fg: #f1eff5;
--fg-dim: #9d97ab;
--fg-faint: #6f6a80;
--lien: #b58cff;
/* Le dégradé de la maison : les trois marques réunies. */
--grad: linear-gradient(120deg, #1BE7B6, #FFB648, #8B5CF6);
--stripe: rgba(255,255,255,.045);
--aurora-op: .30;
--radius: 14px;
--maxw: 1120px;
--ease: cubic-bezier(.16, 1, .3, 1);
}
@media (prefers-color-scheme: light) {
/* Sans JavaScript, on suit le réglage du système. */
:root:not([data-theme]) {
--bg: #f7f6fa; --bg-2: #efedf4; --card: #ffffff;
--border: rgba(17,13,26,.12);
--fg: #16121f; --fg-dim: #544d66; --fg-faint: #7b7390;
--stripe: rgba(17,13,26,.05);
--aurora-op: .17; --lien: #6d4ae0;
}
}
/* Choix explicite de l'utilisateur : il l'emporte sur le système. */
:root[data-theme="clair"] {
--bg: #f7f6fa; --bg-2: #efedf4; --card: #ffffff;
--border: rgba(17,13,26,.12);
--fg: #16121f; --fg-dim: #544d66; --fg-faint: #7b7390;
--stripe: rgba(17,13,26,.05);
--aurora-op: .17; --lien: #6d4ae0;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
/* ─── transition d'une page à l'autre ────────────────────── */
@view-transition { navigation: auto; }
@media (prefers-reduced-motion: no-preference) {
::view-transition-old(root) { animation: sortiePage .32s cubic-bezier(.4,0,1,1) both; }
::view-transition-new(root) { animation: entreePage .48s cubic-bezier(.16,1,.3,1) both; }
header .brand svg { view-transition-name: logo-resonlab; }
}
@keyframes sortiePage { to { opacity: 0; transform: translateY(-14px) scale(.99); } }
@keyframes entreePage { from { opacity: 0; transform: translateY(20px) scale(.995); } }
body {
margin: 0;
background: var(--bg);
color: var(--fg);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
font-size: 17px; line-height: 1.6; text-wrap: pretty; overflow-x: hidden;
}
a { color: var(--lien); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
/* ─── fond animé ─────────────────────────────────────────── */
.aurora { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.aurora i { position: absolute; display: block; border-radius: 50%; filter: blur(100px); opacity: var(--aurora-op); }
/* Une aurore par marque : le turquoise d'Ohmnia, l'ambre de Scenika,
le violet d'Acustika. La maison se reconnaît sans qu'on l'explique. */
.aurora .a1 { width: 540px; height: 540px; background: #1BE7B6; top: -180px; left: -140px; animation: derive1 34s ease-in-out infinite alternate; }
.aurora .a2 { width: 600px; height: 600px; background: #F2751A; top: -120px; right: -200px; animation: derive2 42s ease-in-out infinite alternate; }
.aurora .a3 { width: 460px; height: 460px; background: #8B5CF6; top: 46%; left: 42%; animation: derive3 50s ease-in-out infinite alternate; opacity: calc(var(--aurora-op) * .75); }
@keyframes derive1 { to { transform: translate3d(140px, 90px, 0) scale(1.18); } }
@keyframes derive2 { to { transform: translate3d(-120px, 140px, 0) scale(1.12); } }
@keyframes derive3 { to { transform: translate3d(-180px, -110px, 0) scale(1.25); } }
/* ─── barre de progression de lecture ────────────────────── */
.progres {
position: fixed; top: 0; left: 0; height: 3px; width: 100%;
transform: scaleX(0); transform-origin: left;
background: var(--grad); z-index: 20;
}
/* ─── révélation au défilement ───────────────────────────── */
.js .reveal {
opacity: 0; transform: translateY(28px);
transition: opacity .8s var(--ease) var(--d, 0s), transform .8s var(--ease) var(--d, 0s);
will-change: opacity, transform;
}
.js .reveal.vu { opacity: 1; transform: none; }
.grad-text {
background: var(--grad); background-size: 220% 100%;
-webkit-background-clip: text; background-clip: text; color: transparent;
animation: flux 11s ease-in-out infinite;
}
@keyframes flux { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
/* ─── en-tête ────────────────────────────────────────────── */
header {
position: sticky; top: 0; z-index: 10;
background: color-mix(in srgb, var(--bg) 82%, transparent);
backdrop-filter: blur(14px);
border-bottom: 1px solid transparent;
transition: border-color .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
}
header.pose { border-bottom-color: var(--border); box-shadow: 0 10px 30px -24px rgba(0,0,0,.9); }
.bar { display: flex; align-items: center; gap: 16px; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 600; letter-spacing: -.01em; font-size: 19px; color: var(--fg); }
.brand:hover { text-decoration: none; }
.brand img { display: block; transition: transform .6s var(--ease); }
.brand:hover img { transform: rotate(-8deg) scale(1.08); }
.nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--fg-dim); font-size: 15px; position: relative; }
.nav a::after {
content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1.5px;
background: var(--grad); transform: scaleX(0); transform-origin: right;
transition: transform .4s var(--ease);
}
.nav a:hover { color: var(--fg); text-decoration: none; }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav .langue { font-variant: small-caps; letter-spacing: .04em; }
@media (max-width: 880px) { .nav .hide-sm { display: none; } .nav { gap: 18px; } .nav a { font-size: 14px; } }
@media (max-width: 700px) { .brand .nom { display: none; } }
/* ─── bouton clair / sombre ──────────────────────────────── */
.theme {
margin-left: 18px; flex: none;
width: 40px; height: 40px; display: grid; place-items: center;
background: transparent; border: 1px solid var(--border);
border-radius: 10px; color: var(--fg-dim); cursor: pointer;
transition: color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.theme:hover { color: var(--fg); border-color: rgba(181,140,255,.5); transform: translateY(-1px); }
.theme svg { display: block; }
.theme .i-clair { display: none; }
:root[data-theme="sombre"] .theme .i-clair { display: block; }
:root[data-theme="sombre"] .theme .i-sombre { display: none; }
@media (max-width: 700px) { .theme { margin-left: 12px; width: 36px; height: 36px; } }
/* ─── boutons ────────────────────────────────────────────── */
.btn {
position: relative; overflow: hidden;
display: inline-flex; align-items: center; justify-content: center; gap: 9px;
padding: 13px 22px; border-radius: 10px;
background: var(--g, var(--grad)); color: #120b22;
font-weight: 600; font-size: 15px; min-height: 46px;
border: 0; cursor: pointer; white-space: nowrap;
transition: transform .35s var(--ease), box-shadow .35s var(--ease), filter .35s var(--ease);
box-shadow: 0 10px 26px -16px rgba(139,92,246,.9);
}
.btn::before {
content: ''; position: absolute; top: 0; bottom: 0; left: -75%; width: 55%;
background: linear-gradient(100deg, transparent, rgba(255,255,255,.42), transparent);
transform: skewX(-18deg); transition: left .7s var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 18px 38px -18px rgba(139,92,246,.95); }
.btn:hover::before { left: 125%; }
.btn:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--fg); border: 1px solid var(--border); box-shadow: none; }
.btn-ghost:hover { border-color: rgba(181,140,255,.5); box-shadow: none; }
/* ─── hero ───────────────────────────────────────────────── */
.hero { padding-top: 96px; padding-bottom: 76px; }
h1 { font-size: clamp(34px, 5.4vw, 58px); line-height: 1.08; letter-spacing: -.03em; margin: 0 0 22px; max-width: 17ch; font-weight: 650; }
.hero p.chapo { font-size: clamp(17px, 2.1vw, 20px); color: var(--fg-dim); max-width: 46ch; margin: 0 0 34px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.etat-ligne {
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
font-size: 12.5px; color: var(--fg-faint); letter-spacing: .1em; margin: 0 0 18px;
}
.hero code, .intro code, .card code {
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
font-size: .9em; background: var(--stripe); padding: 1px 5px; border-radius: 5px;
}
body .hero > * { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
body.charge .hero > * { opacity: 1; transform: none; }
body.charge .hero > *:nth-child(2) { transition-delay: .09s; }
body.charge .hero > *:nth-child(3) { transition-delay: .18s; }
/* ─── les trois applications ─────────────────────────────── */
section { padding: 90px 0; }
h2.titre { font-size: clamp(25px, 3.4vw, 34px); letter-spacing: -.02em; margin: 0 0 12px; font-weight: 640; }
.intro { color: var(--fg-dim); max-width: 52ch; margin: 0 0 40px; }
.apps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.app {
position: relative; overflow: hidden; display: flex; flex-direction: column;
background: var(--card); border: 1px solid var(--border);
border-radius: var(--radius); padding: 26px;
transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
/* Le filet de couleur se déroule au survol : chaque application garde
son dégradé, la maison garde le sien. */
.app::after {
content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px;
background: var(--g); transform: scaleX(0); transform-origin: left;
transition: transform .55s var(--ease);
}
.app:hover { transform: translateY(-6px); border-color: var(--bord); box-shadow: 0 24px 48px -30px var(--ombre); }
.app:hover::after { transform: scaleX(1); }
.app img.logo { width: 46px; height: 46px; transition: transform .55s var(--ease); }
.app:hover img.logo { transform: rotate(-6deg) scale(1.06); }
.app h3 { margin: 16px 0 4px; font-size: 21px; font-weight: 620; letter-spacing: -.01em; }
.etat {
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
font-size: 12px; color: var(--fg-faint); display: block; margin-bottom: 14px;
transition: color .45s var(--ease), letter-spacing .45s var(--ease);
}
.app:hover .etat { color: var(--accent); letter-spacing: .1em; }
.app > p { margin: 0 0 16px; color: var(--fg-dim); font-size: 15.5px; }
.app ul { margin: 0 0 22px; padding-left: 18px; color: var(--fg-dim); font-size: 14.5px; }
.app ul li { margin-bottom: 4px; }
.app .actions { margin-top: auto; }
/* ─── principes ──────────────────────────────────────────── */
.bande { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
position: relative; overflow: hidden;
background: var(--card); border: 1px solid var(--border);
border-radius: var(--radius); padding: 26px;
transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.card::after {
content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px;
background: var(--grad); transform: scaleX(0); transform-origin: left;
transition: transform .55s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(181,140,255,.38); box-shadow: 0 24px 48px -30px rgba(139,92,246,.75); }
.card:hover::after { transform: scaleX(1); }
.card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
.card p { margin: 0; color: var(--fg-dim); font-size: 15.5px; }
.card .num {
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
font-size: 12.5px; color: var(--fg-faint); display: block; margin-bottom: 14px;
transition: color .45s var(--ease), letter-spacing .45s var(--ease);
}
.card:hover .num { color: #B58CFF; letter-spacing: .12em; }
/* ─── pied ───────────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 54px 0 64px; color: var(--fg-dim); font-size: 15px; }
.famille { display: flex; gap: 12px; align-items: center; margin-bottom: 20px; }
.famille img { width: 28px; height: 28px; opacity: .8; transition: opacity .4s var(--ease), transform .4s var(--ease); }
.famille img:hover { opacity: 1; transform: translateY(-3px); }
footer p { margin: 0 0 8px; }
@media (max-width: 980px) { .apps, .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) {
.apps, .cards { grid-template-columns: 1fr; }
section { padding: 64px 0; }
.hero { padding-top: 64px; padding-bottom: 54px; }
}
/* Quelqu'un qui demande moins d'animation ne doit pas avoir à la subir. */
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after { animation: none !important; transition: none !important; }
.app:hover, .card:hover, .btn:hover { transform: none; }
.progres { display: none; }
}
</style>
</head>
<body>
<div class="aurora" aria-hidden="true"><i class="a1"></i><i class="a2"></i><i class="a3"></i></div>
<div class="progres" id="progres" aria-hidden="true"></div>
<header id="entete">
<div class="wrap bar">
<a class="brand" href="./">
<img src="logos/resonlab.svg" alt="" width="30" height="30" />
<span class="nom">ResonLab</span>
</a>
<nav class="nav">
<a href="#applications">Applications</a>
<a href="#multipostes" class="hide-sm">Multi-postes</a>
<a href="#principes" class="hide-sm">Nos principes</a>
<a href="decouvrir.html">Découvrir</a>
<a href="suite.html" class="hide-sm">La suite</a>
<a href="telecharger.html">Télécharger</a>
<a href="https://github.com/ResonLab">GitHub</a>
<a href="en/" class="langue" hreflang="en">EN</a>
<button class="theme" id="theme" type="button" aria-label="Changer le thème">
<svg class="i-sombre" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round">
<path d="M21 12.8A9 9 0 1 1 11.2 3a7 7 0 0 0 9.8 9.8z"/>
</svg>
<svg class="i-clair" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round">
<circle cx="12" cy="12" r="4.2"/>
<path d="M12 2v2.6M12 19.4V22M2 12h2.6M19.4 12H22M4.9 4.9l1.9 1.9M17.2 17.2l1.9 1.9M19.1 4.9l-1.9 1.9M6.8 17.2l-1.9 1.9"/>
</svg>
</button>
</nav>
</div>
</header>
<main>
<section class="hero wrap">
<h1>Des outils qui <span class="grad-text">restent chez vous</span>.</h1>
<p class="chapo">
Trois logiciels pour indépendants et petites structures. Pas de compte, pas d'abonnement,
pas de serveur : vos factures et vos projets ne quittent pas votre ordinateur.
</p>
<div class="actions">
<a class="btn" href="#applications">Voir les applications</a>
<a class="btn btn-ghost" href="#principes">Ce à quoi nous tenons</a>
</div>
</section>
<section id="applications" class="wrap">
<h2 class="titre reveal">Quatre métiers, quatre logiciels</h2>
<p class="intro reveal" style="--d:.06s">
Un indépendant qui facture, un technicien son et lumière, un acousticien, un régisseur
lumière de théâtre. Quatre publics différents — donc quatre logiciels, pas une usine à gaz
qui prétend tout faire.
</p>
<div class="apps">
<article class="app reveal" style="--g:linear-gradient(120deg,#1BE7B6,#0E9CD9); --accent:#1BE7B6; --bord:rgba(27,231,182,.38); --ombre:rgba(14,156,217,.75)">
<img class="logo" src="logos/ohmnia.svg" alt="Logo Ohmnia" width="46" height="46" />
<h3>Ohmnia</h3>
<span class="etat">PUBLIÉ</span>
<p>La gestion d'un indépendant, sans usine à gaz : factures, devis, suivi du temps, inventaire, comptabilité simplifiée.</p>
<ul>
<li>Devis converti en facture en un clic</li>
<li>Rappels de paiement et journal comptable</li>
<li>Import de relevés bancaires (CSV, CAMT.053)</li>
<li>Suisse, France, Belgique, Luxembourg, Allemagne</li>
</ul>
<div class="actions">
<a class="btn" style="--g:linear-gradient(120deg,#1BE7B6,#0E9CD9)" href="https://resonlab.github.io/ohmnia/">Découvrir</a>
<a class="btn btn-ghost" href="https://github.com/ResonLab/ohmnia">Code</a>
</div>
</article>
<article class="app reveal" style="--d:.09s; --g:linear-gradient(120deg,#FFC961,#F2751A); --accent:#FFC961; --bord:rgba(255,201,97,.38); --ombre:rgba(242,117,26,.7)">
<img class="logo" src="logos/scenika.svg" alt="Logo Scenika" width="46" height="46" />
<h3>Scenika</h3>
<span class="etat">PUBLIÉ</span>
<p>Le parc son et lumière d'une société de location ou d'un technicien : ce qu'on possède, ce qui est parti, ce que ça consomme.</p>
<ul>
<li>Parc matériel et locations</li>
<li>Calcul de puissance par circuit</li>
<li>Adressage DMX relié au parc réel</li>
</ul>
<div class="actions">
<a class="btn" style="--g:linear-gradient(120deg,#FFC961,#F2751A)" href="https://resonlab.github.io/scenika/">Découvrir</a>
<a class="btn btn-ghost" href="https://github.com/ResonLab/scenika">Code</a>
</div>
</article>
<article class="app reveal" style="--d:.18s; --g:linear-gradient(120deg,#B58CFF,#6D4AE0); --accent:#B58CFF; --bord:rgba(181,140,255,.38); --ombre:rgba(109,74,224,.75)">
<img class="logo" src="logos/acustika.svg" alt="Logo Acustika" width="46" height="46" />
<h3>Acustika</h3>
<span class="etat">PUBLIÉ</span>
<p>La couverture sonore d'une salle, calculée et affichée. Et surtout : <em>où</em> poser les enceintes, pas seulement une carte à savoir lire.</p>
<ul>
<li>Zones dessinées librement, gradins et pentes</li>
<li>Bibliothèque d'enceintes, directivité par bande</li>
<li>Formats ouverts — jamais de format fermé</li>
</ul>
<div class="actions">
<a class="btn" style="--g:linear-gradient(120deg,#B58CFF,#6D4AE0)" href="https://resonlab.github.io/acustika/">Découvrir</a>
<a class="btn btn-ghost" href="https://github.com/ResonLab/acustika">Code</a>
</div>
</article>
<article class="app reveal" style="--d:.24s; --g:linear-gradient(120deg,#FF7EB6,#A8154F); --accent:#FF7EB6; --bord:rgba(255,126,182,.38); --ombre:rgba(168,21,79,.75)">
<img class="logo" src="logos/lumika.svg" alt="Logo Lumika" width="46" height="46" />
<h3>Lumika</h3>
<span class="etat">PUBLIÉ</span>
<p>Le plan de feu d'un théâtre. Un bloc de gradateurs occupe lui-même des canaux DMX — c'est le piège que cette application existe pour éviter.</p>
<ul>
<li>Perches, vue de face du gril, plan de scène</li>
<li>Circuit de gradateur ou adresse DMX, jamais les deux</li>
<li>Feuille de patch imprimable, à emporter au montage</li>
</ul>
<div class="actions">
<a class="btn" style="--g:linear-gradient(120deg,#FF7EB6,#A8154F)" href="https://resonlab.github.io/lumika/">Découvrir</a>
<a class="btn btn-ghost" href="https://github.com/ResonLab/lumika">Code</a>
</div>
</article>
<article class="app reveal" style="--d:.27s; --g:linear-gradient(120deg,#7FB2FF,#2B3A8F); --accent:#7FB2FF; --bord:rgba(127,178,255,.38); --ombre:rgba(43,58,143,.8)">
<img class="logo" src="logos/nexika.svg" alt="Logo Nexika" width="46" height="46" />
<h3>Nexika</h3>
<span class="etat">LE SOCLE — ÉCRIT</span>
<p>Plusieurs personnes, les mêmes données. Le serveur multi-postes s'installe <strong>chez vous</strong>, sur une machine ordinaire — pas dans le cloud.</p>
<ul>
<li>Comptes et droits : lecture, écriture, administration</li>
<li>Un seul serveur pour Ohmnia et Scenika</li>
<li>Refuse le réseau sans chiffrement, et sans administrateur</li>
<li>Un fichier à copier, aucune installation</li>
</ul>
<div class="actions">
<a class="btn" style="--g:linear-gradient(120deg,#7FB2FF,#2B3A8F)" href="#multipostes">Comment ça marche</a>
<a class="btn btn-ghost" href="https://github.com/ResonLab/nexika">Code</a>
</div>
</article>
</div>
</section>
<section id="multipostes" class="bande">
<div class="wrap">
<h2 class="titre reveal">À plusieurs, sans cloud</h2>
<p class="intro reveal" style="--d:.06s">
Une entreprise à deux ou trois postes veut travailler sur les mêmes données. C'est le seul
cas où nos logiciels acceptent un réseau — et le serveur reste chez vous.
</p>
<div class="cards">
<div class="card reveal">
<span class="num">CHEZ VOUS</span>
<h3>Une machine ordinaire suffit</h3>
<p>Nexika est un fichier à copier sur un PC ou un NAS, lancé par une commande. Pas
d'installation, pas d'abonnement, aucune donnée qui sort de vos murs.</p>
</div>
<div class="card reveal" style="--d:.06s">
<span class="num">UN CHOIX</span>
<h3>Le mode local reste le défaut</h3>
<p>Sans démarche explicite de votre part, les logiciels fonctionnent hors ligne comme
avant. Le multi-postes se choisit ; il n'arrive jamais tout seul.</p>
</div>
<div class="card reveal" style="--d:.12s">
<span class="num">QUI FAIT QUOI</span>
<h3>Trois rôles, pas trente</h3>
<p>Lecture pour consulter, écriture pour le travail courant, administration pour ce qui
engage l'entreprise. Chaque opération a son droit, écrit à la main.</p>
</div>
<div class="card reveal" style="--d:.18s">
<span class="num">CE QU'IL REFUSE</span>
<h3>Des refus assumés</h3>
<p>Il n'écoute pas sur le réseau sans chiffrement, ni tant qu'aucun administrateur
n'existe, ni une opération dont le droit n'est pas déclaré. Il fabrique lui-même son
certificat.</p>
</div>
</div>
</div>
</section>
<section id="principes">
<div class="wrap">
<h2 class="titre reveal">Ce à quoi nous tenons</h2>
<p class="intro reveal" style="--d:.06s">
Ces règles valent pour les quatre logiciels, sans exception. Ce ne sont pas des arguments
de vente : chacune a une vérification automatique qui échoue si le code s'en écarte.
</p>
<div class="cards">
<div class="card reveal"><span class="num">01</span><h3>Aucune connexion</h3><p>Pas de compte, pas de serveur, pas de statistiques d'usage. Vos factures et vos projets ne quittent pas votre machine.</p></div>
<div class="card reveal" style="--d:.06s"><span class="num">02</span><h3>Une seule exception, choisie</h3><p>Le mode multi-postes, pour une entreprise à plusieurs. Il reste un choix explicite, jamais un défaut — et le serveur s'installe chez vous.</p></div>
<div class="card reveal" style="--d:.12s"><span class="num">03</span><h3>Des messages qui expliquent</h3><p>En français, précis, jamais un message technique brut. Quand un logiciel refuse quelque chose, il dit pourquoi.</p></div>
<div class="card reveal" style="--d:.18s"><span class="num">04</span><h3>Rien qu'on ne puisse rouvrir</h3><p>Formats lisibles, code simple, aucun format fermé. Dans dix ans, vos données s'ouvriront encore.</p></div>
<div class="card reveal" style="--d:.24s"><span class="num">05</span><h3>Ce qui n'est pas garanti est dit</h3><p>Un logiciel ne rend pas conforme et ne remplace ni un fiduciaire ni un acousticien. Ce qui est indicatif est annoncé comme tel.</p></div>
<div class="card reveal" style="--d:.30s"><span class="num">06</span><h3>Vérifié, pas affirmé</h3><p>Une vérification automatique qui échoue vaut mieux qu'une documentation qui ment. C'est la règle qui tient toutes les autres.</p></div>
</div>
</div>
</section>
</main>
<footer>
<div class="wrap">
<div class="famille">
<img src="logos/ohmnia.svg" alt="Ohmnia" width="28" height="28" />
<img src="logos/scenika.svg" alt="Scenika" width="28" height="28" />
<img src="logos/acustika.svg" alt="Acustika" width="28" height="28" />
<img src="logos/lumika.svg" alt="Lumika" width="28" height="28" />
<img src="logos/nexika.svg" alt="Nexika" width="28" height="28" />
</div>
<p><strong>ResonLab</strong> — Valais, Suisse.</p>
<p><a href="mailto:resonlab@proton.me">resonlab@proton.me</a> · <a href="https://github.com/ResonLab">github.com/ResonLab</a></p>
<p>
<a href="conditions.html">Conditions d'utilisation</a> ·
<a href="suite.html">La suite</a>
</p>
<p>Logiciels libres, sous licence MIT.</p>
</div>
</footer>
<script>
(function () {
var racine = document.documentElement;
// Les états « invisible avant animation » ne s'appliquent que si JS tourne :
// sans JS, la page reste entièrement lisible.
racine.className += ' js';
// Entrée du hero. Filet de sécurité : requestAnimationFrame est suspendu
// dans un onglet en arrière-plan, le hero resterait invisible sans le délai.
function afficherHero() { document.body.classList.add('charge'); }
requestAnimationFrame(afficherHero);
setTimeout(afficherHero, 300);
// Révélation progressive au défilement.
var cibles = document.querySelectorAll('.reveal');
if ('IntersectionObserver' in window) {
var obs = new IntersectionObserver(function (entrees) {
entrees.forEach(function (e) {
if (e.isIntersecting) { e.target.classList.add('vu'); obs.unobserve(e.target); }
});
}, { rootMargin: '0px 0px -12% 0px', threshold: .12 });
cibles.forEach(function (c) { obs.observe(c); });
} else {
// Navigateur ancien : on montre tout sans animation.
cibles.forEach(function (c) { c.classList.add('vu'); });
}
// Bascule clair / sombre, mémorisée d'une visite à l'autre.
var boutonTheme = document.getElementById('theme');
if (boutonTheme) {
boutonTheme.addEventListener('click', function () {
var sombre = racine.getAttribute('data-theme') !== 'sombre';
racine.setAttribute('data-theme', sombre ? 'sombre' : 'clair');
try { localStorage.setItem('resonlab-theme', sombre ? 'sombre' : 'clair'); } catch (e) {}
});
}
var entete = document.getElementById('entete');
var progres = document.getElementById('progres');
var tic = false;
function surDefilement() {
entete.classList.toggle('pose', scrollY > 8);
// La barre part de la hauteur réellement défilable, sinon elle n'atteint
// jamais 100 % sur les pages courtes.
var defilable = document.documentElement.scrollHeight - innerHeight;
var part = defilable > 0 ? scrollY / defilable : 0;
progres.style.transform = 'scaleX(' + Math.min(1, Math.max(0, part)) + ')';
tic = false;
}
addEventListener('scroll', function () {
if (tic) return;
tic = true;
requestAnimationFrame(surDefilement);
}, { passive: true });
surDefilement();
})();
</script>
</body>
</html>