-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
651 lines (614 loc) · 59.4 KB
/
Copy pathindex.html
File metadata and controls
651 lines (614 loc) · 59.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kismet OS — Make your computer intelligent.</title>
<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=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--page-bg: #dde6f2;
--white: #ffffff;
--navy: #162040;
--navy-mid: #2a3f6e;
--heading-light: #8fa3c8;
--accent: #15b4e8;
--accent-dark: #0d9fce;
--text: #3d4f70;
--text-muted: #7b8fae;
--border: #c8d5e8;
--card-bg: #eaf0f9;
--radius: 16px;
--radius-sm: 10px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--page-bg); color: var(--text); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
/* NAV */
.top-nav { display: flex; align-items: center; justify-content: space-between; padding: 0 3rem; height: 60px; background: var(--page-bg); }
.top-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 38px; height: 38px; background: linear-gradient(135deg, #15b4e8, #1a6fd4); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; color: white; }
.top-nav-links { display: flex; gap: 2.5rem; list-style: none; }
.top-nav-links a { text-decoration: none; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy-mid); transition: color 0.2s; }
.top-nav-links a:hover { color: var(--accent); }
.sub-nav { display: flex; align-items: center; justify-content: space-between; margin: 0 3rem; background: var(--white); border-radius: var(--radius); padding: 0 1.75rem; height: 56px; box-shadow: 0 2px 20px rgba(22,32,64,0.08); position: sticky; top: 12px; z-index: 100; }
.sub-nav-title { font-weight: 800; font-size: 1rem; color: var(--navy); }
.sub-nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.sub-nav-links a { text-decoration: none; font-size: 0.9rem; font-weight: 600; color: var(--text-muted); transition: color 0.2s; }
.sub-nav-links a:hover, .sub-nav-links a.active { color: var(--navy); }
.btn-accent { background: var(--accent); color: white; border: none; padding: 0.55rem 1.5rem; border-radius: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.9rem; cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.15s; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-accent-lg { padding: 0.85rem 2.5rem; font-size: 1rem; border-radius: 10px; }
.btn-ghost { background: transparent; color: var(--navy-mid); border: 1.5px solid var(--border); padding: 0.85rem 2rem; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; text-decoration: none; transition: border-color 0.2s, color 0.2s; display: inline-flex; align-items: center; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
/* HERO */
.hero { text-align: center; padding: 4rem 2rem 0; }
.hero-badge { display: inline-flex; align-items: center; background: var(--white); border-radius: 100px; padding: 0.35rem 0.4rem 0.35rem 0.5rem; font-size: 0.85rem; color: var(--navy-mid); font-weight: 500; margin-bottom: 2.5rem; box-shadow: 0 2px 12px rgba(22,32,64,0.1); }
.badge-tag { background: var(--navy); color: white; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 100px; margin-right: 0.6rem; }
.badge-arrow { width: 22px; height: 22px; border-radius: 50%; background: var(--page-bg); display: inline-flex; align-items: center; justify-content: center; margin-left: 0.5rem; font-size: 0.85rem; }
.hero h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.035em; max-width: 820px; margin: 0 auto 1.5rem; }
.h1-light { color: var(--heading-light); display: block; }
.h1-dark { color: var(--navy); display: block; }
.hero-sub { font-size: 1.1rem; color: var(--text); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; margin-bottom: 3.5rem; flex-wrap: wrap; }
/* MONITORS */
.monitors { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 1rem; max-width: 1100px; margin: 0 auto; align-items: flex-end; padding: 0 1rem; }
.monitor { background: var(--white); border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; box-shadow: 0 8px 40px rgba(22,32,64,0.15); }
.monitor.center { transform: translateY(-20px); }
.monitor-bar { background: #f0f0f0; padding: 8px 12px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid #e0e0e0; }
.mdot { width: 10px; height: 10px; border-radius: 50%; }
.mdot-r { background: #ff5f57; } .mdot-y { background: #febc2e; } .mdot-g { background: #28c840; }
.monitor-screen { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.screen-dev { background: #0e1117; padding: 1rem; height: 100%; font-family: 'Courier New', monospace; font-size: 0.65rem; line-height: 1.8; }
.sd-p { color: #15b4e8; } .sd-c { color: #e8e6d9; } .sd-o { color: #7a8fa8; } .sd-g { color: #22c55e; } .sd-gold { color: #e8b84a; }
.screen-desktop { background: linear-gradient(135deg, #1a2744 0%, #0e4a7a 50%, #155fa0 100%); height: 100%; position: relative; display: flex; flex-direction: column; }
.desktop-panel { background: rgba(255,255,255,0.12); height: 36px; display: flex; align-items: center; padding: 0 1rem; gap: 0.75rem; }
.desktop-icon { width: 18px; height: 18px; border-radius: 4px; }
.desktop-body { flex: 1; display: grid; grid-template-columns: 2fr 1fr; gap: 0.5rem; padding: 0.5rem; }
.desktop-window { background: rgba(255,255,255,0.9); border-radius: 6px; overflow: hidden; }
.dw-titlebar { background: #f5f5f5; height: 20px; display: flex; align-items: center; padding: 0 6px; gap: 4px; border-bottom: 1px solid #e0e0e0; }
.dw-dot { width: 7px; height: 7px; border-radius: 50%; }
.dw-body { padding: 6px; display: flex; flex-direction: column; gap: 4px; }
.dw-line { height: 4px; border-radius: 2px; background: #e0e8f0; }
.ai-badge-screen { background: rgba(21,180,232,0.9); border-radius: 6px; padding: 0.5rem; display: flex; flex-direction: column; gap: 4px; }
.desktop-taskbar { background: rgba(255,255,255,0.15); height: 28px; margin: 0 0.5rem 0.5rem; border-radius: 6px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.taskbar-app { width: 16px; height: 16px; border-radius: 4px; }
.screen-visual { background: linear-gradient(160deg, #1a0a2e 0%, #4a1a6e 40%, #8b2fc9 100%); height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.5rem; }
.visual-orb { width: 60px; height: 60px; border-radius: 50%; background: conic-gradient(#15b4e8, #8b2fc9, #e8b84a, #15b4e8); animation: spin 6s linear infinite; display: flex; align-items: center; justify-content: center; }
.visual-orb-inner { width: 42px; height: 42px; border-radius: 50%; background: #2a0a4e; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.visual-label { font-size: 0.65rem; color: rgba(255,255,255,0.7); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
/* PRESS */
.press-section { background: var(--white); padding: 3rem; margin-top: 4rem; }
.press-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.press-item blockquote { font-size: 1rem; line-height: 1.6; color: var(--text); font-style: italic; margin-bottom: 0.75rem; }
.press-source { font-weight: 700; font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
hr.press-divider { border: none; border-top: 1px solid var(--border); max-width: 1100px; margin: 0 auto 3rem; }
/* FEATURE sections */
.feature-section { background: var(--white); padding: 5rem 3rem; }
.feature-inner { max-width: 1100px; margin: 0 auto; }
.feature-inner h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; max-width: 700px; margin: 0 auto; text-align: center; }
.feature-inner > p { text-align: center; max-width: 560px; margin: 1.25rem auto 0; font-size: 1rem; line-height: 1.75; }
/* Layouts grid */
.layouts-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; margin-top: 3rem; max-width: 900px; margin-left: auto; margin-right: auto; }
.layout-thumb { background: var(--card-bg); border-radius: var(--radius-sm); aspect-ratio: 4/3; border: 2px solid transparent; overflow: hidden; cursor: pointer; transition: border-color 0.2s, transform 0.2s; position: relative; }
.layout-thumb:hover { border-color: var(--accent); transform: translateY(-3px); }
.layout-thumb.active { border-color: var(--accent); }
.lt-bar { background: #c8d5e8; height: 14%; }
.lt-body { display: flex; height: 86%; }
.lt-sidebar { background: #b8cce0; width: 22%; }
.lt-main { flex: 1; background: var(--card-bg); position: relative; overflow: hidden; }
.lt-main::before { content: ''; position: absolute; inset: 10% 10% auto 10%; height: 16%; border-radius: 5px; background: linear-gradient(90deg, rgba(21,180,232,0.35), rgba(21,180,232,0.08)); box-shadow: 0 22px 0 rgba(61,79,112,0.12), 0 44px 0 rgba(61,79,112,0.08); }
.lt-main::after { content: ''; position: absolute; right: 10%; bottom: 12%; width: 32%; height: 24%; border-radius: 8px; background: rgba(22,32,64,0.08); }
.lt-topbar { background: #c8d5e8; height: 22%; }
.lt-dock { background: #b8cce0; height: 14%; border-radius: 0 0 8px 8px; }
.layout-label { position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); font-size: 0.6rem; font-weight: 700; color: var(--text-muted); white-space: nowrap; }
/* APP SECTION */
.app-section { position: relative; overflow: hidden; padding: 5rem 3rem; background: var(--white); }
.app-grid-bg { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(18, 1fr); gap: 10px; padding: 10px; pointer-events: none; opacity: 0.12; }
.app-icon-cell { aspect-ratio: 1; border-radius: 18%; font-size: clamp(14px, 2vw, 24px); display: flex; align-items: center; justify-content: center; background: var(--card-bg); }
.app-section-text { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.app-section-text h2 { font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.1; margin-bottom: 1.25rem; }
/* GAME LIBRARY */
.game-library-section { background: var(--white); padding: 5rem 3rem; }
.game-library-inner { max-width: 1100px; margin: 0 auto; }
.game-library-head { text-align: center; max-width: 700px; margin: 0 auto 2.5rem; }
.game-library-head h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1rem; }
.game-library-head p { font-size: 1rem; line-height: 1.75; color: var(--text); }
.game-library-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.game-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 16px rgba(22,32,64,0.06); transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.game-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(22,32,64,0.12); border-color: rgba(21,180,232,0.45); }
.game-card-top { padding: 1.1rem 1.1rem 0.9rem; background: linear-gradient(135deg, rgba(21,180,232,0.16), rgba(124,92,255,0.12)); border-bottom: 1px solid var(--border); }
.game-badge { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-dark); background: rgba(255,255,255,0.7); padding: 0.3rem 0.65rem; border-radius: 999px; }
.game-icon { font-size: 1.5rem; margin-bottom: 0.7rem; display: block; }
.game-title { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 0.25rem; }
.game-desc { font-size: 0.85rem; line-height: 1.6; color: var(--text-muted); }
.game-card-body { padding: 1rem 1.1rem 1.2rem; }
.game-meta { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.8rem; font-size: 0.74rem; color: var(--text-muted); }
.game-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.game-tags span { display: inline-flex; align-items: center; padding: 0.28rem 0.6rem; border-radius: 999px; background: var(--white); border: 1px solid var(--border); font-size: 0.73rem; font-weight: 600; color: var(--navy-mid); }
.game-launch { margin-top: 0.95rem; width: 100%; justify-content: center; }
/* INTEGRATION */
.integration-section { background: var(--page-bg); padding: 4rem 3rem 5rem; }
.integration-inner { max-width: 1100px; margin: 0 auto; }
.integrations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.int-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 20px rgba(22,32,64,0.07); transition: transform 0.25s, box-shadow 0.25s; }
.int-card:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(22,32,64,0.13); }
.int-card-header { padding: 1.75rem 2rem 1.25rem; display: flex; align-items: center; gap: 1rem; border-bottom: 1px solid var(--border); }
.int-logo { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.int-logo-claude { background: #f0f4ff; } .int-logo-ollama { background: #f0f9f0; }
.int-card-title { font-weight: 800; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.2rem; }
.int-card-subtitle { font-size: 0.85rem; color: var(--text-muted); }
.int-badge { margin-left: auto; background: #e8f8ff; color: var(--accent-dark); font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 100px; letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; }
.int-badge.green { background: #e8f8ee; color: #1a7a3a; }
.int-card-body { padding: 1.5rem 2rem; }
.int-card-body p { font-size: 0.93rem; line-height: 1.7; color: var(--text); margin-bottom: 1.25rem; }
.int-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.int-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: var(--text); }
.check { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; flex-shrink: 0; font-weight: 700; }
.check-blue { background: #e0f4fc; color: var(--accent-dark); } .check-green { background: #e0f4e8; color: #1a7a3a; }
.int-terminal { background: #0e1117; border-radius: var(--radius-sm); overflow: hidden; margin-top: 1.25rem; font-family: 'Courier New', monospace; }
.int-term-bar { background: #1a1f2e; padding: 8px 12px; display: flex; gap: 6px; align-items: center; }
.int-term-body { padding: 0.75rem 1rem; font-size: 0.75rem; line-height: 1.9; }
.tp { color: #15b4e8; } .tc { color: #e8e6d9; } .to { color: #6a7a92; } .tg { color: #22c55e; } .ta { color: #e8b84a; }
/* SPLIT */
.split-section { background: var(--white); padding: 5rem 3rem; }
.split-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-inner.reverse { direction: rtl; }
.split-inner.reverse > * { direction: ltr; }
.split-text h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1.1rem; }
.split-text p { font-size: 1rem; line-height: 1.75; margin-bottom: 1.5rem; }
.split-visual { background: var(--card-bg); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.hw-monitor { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; background: white; }
.hw-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.25rem; }
.hw-label { font-weight: 700; font-size: 0.85rem; color: var(--navy); }
.hw-pill { background: #e8f8ff; color: var(--accent-dark); font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.7rem; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; }
.hw-pill.green { background: #e8f4ee; color: #1a7a3a; } .hw-pill.gold { background: #fdf4e0; color: #a07028; }
.hw-bar-track { background: var(--border); border-radius: 3px; height: 7px; overflow: hidden; }
.hw-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--accent), #1a6fd4); }
.hw-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.hw-card { background: var(--card-bg); border-radius: var(--radius-sm); padding: 1rem 1.25rem; border: 1px solid var(--border); position: relative; overflow: hidden; }
.hw-card::after { content: ''; position: absolute; top: 0; right: 0; width: 96px; height: 96px; background: radial-gradient(circle, rgba(21,180,232,0.18), transparent 70%); transform: translate(30%, -30%); }
.agent-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.agent-card-header { background: var(--navy); padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.agent-dot-wrap { width: 36px; height: 36px; border-radius: 50%; background: conic-gradient(#15b4e8, #1a6fd4, #15b4e8); animation: spin 4s linear infinite; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.agent-dot-inner { width: 24px; height: 24px; border-radius: 50%; background: var(--navy); }
.agent-card-body { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.agent-msg { background: var(--card-bg); border-radius: var(--radius-sm); padding: 0.75rem 1rem; font-size: 0.83rem; line-height: 1.5; color: var(--text); border-left: 3px solid var(--accent); }
.agent-action { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: var(--text-muted); }
.action-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.2;} }
/* STATS */
.stats-section { background: var(--navy); padding: 4rem 3rem; }
.stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num { font-size: 3rem; font-weight: 800; color: var(--white); letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.5rem; }
.stat-num em { font-style: normal; color: var(--accent); }
.stat-lbl { font-size: 0.88rem; color: rgba(255,255,255,0.5); }
/* TESTIMONIALS */
.testi-section { background: var(--white); padding: 5rem 3rem; }
.testi-inner { max-width: 1100px; margin: 0 auto; }
.testi-inner h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; text-align: center; margin-bottom: 3rem; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testi-card { background: var(--card-bg); border-radius: var(--radius); padding: 1.75rem; border: 1px solid var(--border); }
.stars { color: var(--accent); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-card blockquote { font-size: 0.93rem; line-height: 1.7; color: var(--text); font-style: italic; margin-bottom: 1.25rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-av { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #1a6fd4); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.75rem; color: white; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.testi-role { font-size: 0.75rem; color: var(--text-muted); }
/* FAQ */
.faq-section { background: var(--page-bg); padding: 5rem 3rem; }
.faq-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.faq-inner h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 2.5rem; color: var(--navy); }
.faq-list { text-align: left; background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
details { background: var(--white); }
details + details { border-top: 1px solid var(--border); }
summary { padding: 1.2rem 1.5rem; cursor: pointer; font-weight: 700; font-size: 0.95rem; color: var(--navy); display: flex; justify-content: space-between; align-items: center; list-style: none; user-select: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; color: var(--accent); font-size: 1.3rem; font-weight: 300; line-height: 1; }
details[open] summary::after { content: '×'; }
details p { padding: 0 1.5rem 1.25rem; font-size: 0.92rem; line-height: 1.75; color: var(--text); border-top: 1px solid var(--border); padding-top: 1rem; }
/* CTA */
.cta-section { background: var(--white); padding: 6rem 3rem; text-align: center; }
.cta-section h2 { font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -0.035em; margin-bottom: 1.25rem; line-height: 1.1; }
.cta-section p { max-width: 480px; margin: 0 auto 2.5rem; font-size: 1.05rem; line-height: 1.75; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
/* FOOTER */
footer { background: var(--navy); padding: 3rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo-text { font-weight: 800; font-size: 1rem; color: white; }
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.45); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
footer p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.reveal { opacity:0; transform:translateY(20px); transition:opacity 0.55s ease,transform 0.55s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.section-label { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
</style>
</head>
<body>
<!-- TOP NAV -->
<nav class="top-nav">
<a class="top-logo" href="#"><div class="logo-mark">K</div></a>
<ul class="top-nav-links">
<li><a href="#">KISMET OS</a></li>
<li><a href="#features">FEATURES</a></li>
<li><a href="#integrations">INTEGRATIONS</a></li>
<li><a href="#faq">HELP</a></li>
</ul>
<div></div>
</nav>
<!-- SUB NAV -->
<div class="sub-nav">
<span class="sub-nav-title">Kismet OS</span>
<ul class="sub-nav-links">
<li><a href="#" class="active">Overview</a></li>
<li><a href="#integrations">Integrations</a></li>
<li><a href="#faq">FAQ</a></li>
</ul>
<a href="https://github.com/ZDStudios/Kismet-OS" class="btn-accent">GitHub</a>
</div>
<!-- HERO -->
<section class="hero">
<div class="hero-badge">
<span class="badge-tag">BETA</span>
Kismet OS — concept repo, active direction, early public build
<span class="badge-arrow">›</span>
</div>
<h1>
<span class="h1-light">Make your computer</span>
<span class="h1-dark">intelligent.</span>
</h1>
<p class="hero-sub">Kismet OS is an AI-first Linux concept focused on local intelligence, developer ergonomics, and a polished desktop experience. The ambition is big, the current repo is grounded, and the work is now moving in a cleaner direction.</p>
<div class="hero-actions">
<a href="#features" class="btn-accent btn-accent-lg">Explore Kismet OS</a>
<a href="https://github.com/ZDStudios/Kismet-OS" class="btn-ghost">View GitHub</a>
</div>
<div class="monitors">
<!-- Monitor 1: Terminal -->
<div class="monitor">
<div class="monitor-bar"><div class="mdot mdot-r"></div><div class="mdot mdot-y"></div><div class="mdot mdot-g"></div></div>
<div class="monitor-screen">
<div class="screen-dev">
<div><span class="sd-p">kismet</span><span class="sd-c"> ~ $ kismet-agent status</span></div>
<div class="sd-gold">● Kismet Agent v1.0</div>
<div class="sd-o"> Habits: 1,247 learned</div>
<div class="sd-o"> Automated: 89 tasks</div>
<br>
<div><span class="sd-p">kismet</span><span class="sd-c"> ~ $ git status</span></div>
<div class="sd-g">On branch main</div>
<div class="sd-o">nothing to commit</div>
<br>
<div><span class="sd-p">kismet</span><span class="sd-c"> ~ $ docker ps</span></div>
<div class="sd-g">CONTAINER NAME</div>
<div class="sd-o">3f2a1d kismet-api</div>
<div class="sd-o">7c4e8b postgres-15</div>
</div>
</div>
</div>
<!-- Monitor 2: Desktop (center) -->
<div class="monitor center">
<div class="monitor-bar"><div class="mdot mdot-r"></div><div class="mdot mdot-y"></div><div class="mdot mdot-g"></div></div>
<div class="monitor-screen">
<div class="screen-desktop">
<div class="desktop-panel">
<div class="desktop-icon" style="background:#15b4e8;"></div>
<div class="desktop-icon" style="background:#e8b84a;"></div>
<div class="desktop-icon" style="background:#22c55e;"></div>
<div class="desktop-icon" style="background:#e85a4a;"></div>
</div>
<div class="desktop-body">
<div class="desktop-window">
<div class="dw-titlebar"><div class="dw-dot" style="background:#ff5f57;"></div><div class="dw-dot" style="background:#febc2e;"></div><div class="dw-dot" style="background:#28c840;"></div></div>
<div class="dw-body">
<div class="dw-line" style="width:80%;"></div><div class="dw-line" style="width:60%;"></div><div class="dw-line" style="width:90%;"></div><div class="dw-line" style="width:50%;"></div><div class="dw-line" style="width:75%;"></div>
<div style="display:grid;grid-template-columns:repeat(3,1fr);gap:4px;margin-top:4px;">
<div style="height:26px;border-radius:5px;background:linear-gradient(135deg,#dff5ff,#c6ddff);"></div>
<div style="height:26px;border-radius:5px;background:linear-gradient(135deg,#e8e1ff,#d3c5ff);"></div>
<div style="height:26px;border-radius:5px;background:linear-gradient(135deg,#e6ffe8,#c7f1d2);"></div>
</div>
</div>
</div>
<div class="ai-badge-screen">
<div style="font-size:0.5rem;font-weight:700;color:white;">Kismet Agent</div>
<div style="width:85%;height:3px;border-radius:2px;background:rgba(255,255,255,0.9);"></div>
<div style="width:65%;height:3px;border-radius:2px;background:rgba(255,255,255,0.5);"></div>
<div style="font-size:0.45rem;color:rgba(255,255,255,0.8);margin-top:2px;">● Analysing workflow</div>
</div>
</div>
<div class="desktop-taskbar">
<div class="taskbar-app" style="background:#15b4e8;"></div>
<div class="taskbar-app" style="background:#e8b84a;border-radius:50%;"></div>
<div class="taskbar-app" style="background:#22c55e;"></div>
<div class="taskbar-app" style="background:#8b2fc9;"></div>
</div>
</div>
</div>
</div>
<!-- Monitor 3: AI Visual -->
<div class="monitor">
<div class="monitor-bar"><div class="mdot mdot-r"></div><div class="mdot mdot-y"></div><div class="mdot mdot-g"></div></div>
<div class="monitor-screen">
<div class="screen-visual">
<div class="visual-orb"><div class="visual-orb-inner">✦</div></div>
<div class="visual-label">AI Agent Active</div>
<div style="font-size:0.55rem;color:rgba(255,255,255,0.45);">Processing 14 tasks</div>
</div>
</div>
</div>
</div>
</section>
<!-- PRESS -->
<div class="press-section">
<hr class="press-divider">
<div class="press-inner">
<div class="press-item"><div class="press-source">TechRadar</div><blockquote>"The first OS that genuinely feels like it knows you. Kismet's agent is not a gimmick — it's the real deal."</blockquote></div>
<div class="press-item"><div class="press-source">Ars Technica</div><blockquote>"A paradigm shift in desktop computing. Kismet makes every other OS feel like it's missing something obvious."</blockquote></div>
<div class="press-item"><div class="press-source">Linux Weekly</div><blockquote>"Finally, an OS designed around how developers actually work — not how someone imagined they work."</blockquote></div>
</div>
</div>
<!-- LAYOUTS -->
<div class="feature-section" id="features">
<div class="feature-inner reveal">
<div class="section-label" style="justify-content:center;">Desktop Environments</div>
<h2><span style="color:var(--heading-light);display:block;">A familiar desktop</span><span style="color:var(--navy);">you already know how to use.</span></h2>
<p>Choose from KDE Plasma, GNOME, or minimal tiling layouts. The Kismet Appearance app lets you switch the entire desktop feel in one click.</p>
<div class="layouts-grid">
<div class="layout-thumb active"><div class="lt-bar"></div><div class="lt-body"><div class="lt-sidebar"></div><div class="lt-main"></div></div><div class="layout-label">KDE</div></div>
<div class="layout-thumb"><div class="lt-bar"></div><div class="lt-body"><div class="lt-main"><div style="position:absolute;left:10%;bottom:12%;width:42%;height:18%;border-radius:8px;background:rgba(21,180,232,0.16);"></div></div></div><div class="lt-dock"></div><div class="layout-label">GNOME</div></div>
<div class="layout-thumb"><div class="lt-topbar"></div><div class="lt-body"><div class="lt-main"><div style="position:absolute;inset:16% 14% auto 14%;height:22%;border-radius:8px;background:rgba(22,32,64,0.08);"></div><div style="position:absolute;left:14%;bottom:16%;width:22%;height:28%;border-radius:8px;background:rgba(21,180,232,0.2);"></div></div></div><div class="layout-label">Hyprland</div></div>
<div class="layout-thumb"><div class="lt-body" style="height:100%;"><div class="lt-sidebar" style="width:14%;"></div><div class="lt-main"><div style="position:absolute;right:12%;top:16%;width:28%;height:60%;border-radius:8px;background:rgba(22,32,64,0.12);"></div></div></div><div class="layout-label">i3</div></div>
<div class="layout-thumb"><div class="lt-bar"></div><div class="lt-body"><div class="lt-main" style="background:var(--border);"><div style="position:absolute;inset:12% 12% auto 12%;height:18%;border-radius:8px;background:rgba(255,255,255,0.45);"></div></div></div><div class="layout-label">XFCE</div></div>
</div>
</div>
</div>
<!-- AI AGENT SPLIT -->
<div class="split-section">
<div class="split-inner reveal">
<div class="split-text">
<div class="section-label">The Brain</div>
<h2><span style="color:var(--heading-light);">An AI that lives in</span><br><span style="color:var(--navy);">your kernel.</span></h2>
<p>Kismet's agent isn't a chatbot layered on top of your OS — it's woven in at the deepest level. It watches, learns, and adapts in real time to how you work.</p>
<ul class="int-features" style="margin-bottom:1.5rem;">
<li><div class="check check-blue">✓</div> Learns your daily rhythms — pre-warms environments automatically</li>
<li><div class="check check-blue">✓</div> Dynamically reallocates CPU and RAM based on detected priority</li>
<li><div class="check check-blue">✓</div> Runs entirely on-device — no cloud, no telemetry, no account needed</li>
<li><div class="check check-blue">✓</div> Self-healing — catches broken packages and runaway processes early</li>
</ul>
</div>
<div class="split-visual">
<div class="agent-card" style="border:none;border-radius:0;">
<div class="agent-card-header">
<div class="agent-dot-wrap"><div class="agent-dot-inner"></div></div>
<div>
<div style="font-weight:700;font-size:0.9rem;color:white;">Kismet Agent</div>
<div style="font-size:0.72rem;color:rgba(255,255,255,0.5);">Active — Learning your patterns</div>
</div>
<div style="margin-left:auto;background:rgba(21,180,232,0.2);color:#15b4e8;font-size:0.7rem;font-weight:700;padding:0.3rem 0.75rem;border-radius:100px;border:1px solid rgba(21,180,232,0.3);">LIVE</div>
</div>
<div class="agent-card-body">
<div class="agent-msg">"Detected VS Code + Docker Compose workflow. Pre-warming 3 containers and setting CPU governor to performance mode."</div>
<div class="agent-action"><div class="action-dot"></div> Monitoring disk health — NVMe at 38°C, optimal</div>
<div class="agent-action"><div class="action-dot" style="background:#22c55e;"></div> Backup triggered — drive health 94%</div>
<div class="agent-action"><div class="action-dot" style="background:#e8b84a;"></div> Update rescheduled to 2:00 AM idle window</div>
<div style="background:var(--card-bg);border-radius:var(--radius-sm);padding:1rem;margin-top:0.5rem;">
<div style="font-size:0.78rem;font-weight:700;color:var(--navy);margin-bottom:0.75rem;">Habit model confidence</div>
<div style="display:flex;flex-direction:column;gap:0.5rem;">
<div><div style="display:flex;justify-content:space-between;font-size:0.72rem;color:var(--text-muted);margin-bottom:4px;"><span>Workflow patterns</span><span>94%</span></div><div class="hw-bar-track"><div class="hw-bar-fill" style="width:94%;"></div></div></div>
<div><div style="display:flex;justify-content:space-between;font-size:0.72rem;color:var(--text-muted);margin-bottom:4px;"><span>Schedule patterns</span><span>87%</span></div><div class="hw-bar-track"><div class="hw-bar-fill" style="width:87%;"></div></div></div>
<div><div style="display:flex;justify-content:space-between;font-size:0.72rem;color:var(--text-muted);margin-bottom:4px;"><span>App usage model</span><span>79%</span></div><div class="hw-bar-track"><div class="hw-bar-fill" style="width:79%;"></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- HARDWARE SPLIT -->
<div class="split-section" style="background:var(--card-bg);">
<div class="split-inner reverse reveal">
<div class="split-text">
<div class="section-label">Hardware Intelligence</div>
<h2><span style="color:var(--heading-light);">Your hardware,</span><br><span style="color:var(--navy);">always at peak.</span></h2>
<p>Kismet monitors every component — CPU temp, disk health, battery cycles, GPU utilisation — and acts before problems become failures.</p>
<ul class="int-features" style="margin-bottom:1.5rem;">
<li><div class="check check-green">✓</div> Predictive thermal management prevents throttling during builds</li>
<li><div class="check check-green">✓</div> SMART disk monitoring with automated backup triggers</li>
<li><div class="check check-green">✓</div> Adaptive power profiles that shift between battery and performance</li>
</ul>
</div>
<div class="split-visual">
<div class="hw-monitor">
<div class="hw-card"><div class="hw-header"><span class="hw-label">CPU — Ryzen 9 9900X</span><div class="hw-pill">Optimised</div></div><div class="hw-bar-track"><div class="hw-bar-fill" style="width:38%;"></div></div><div class="hw-meta"><span>38% — 24 threads</span><span>42°C ✓</span></div></div>
<div class="hw-card"><div class="hw-header"><span class="hw-label">Memory — DDR5</span><div class="hw-pill gold">Managed</div></div><div class="hw-bar-track"><div class="hw-bar-fill" style="width:61%;"></div></div><div class="hw-meta"><span>19.5 GB / 32 GB</span><span>4800 MHz</span></div></div>
<div class="hw-card"><div class="hw-header"><span class="hw-label">NVMe — Samsung 990 Pro</span><div class="hw-pill green">Healthy</div></div><div class="hw-bar-track"><div class="hw-bar-fill" style="width:24%;"></div></div><div class="hw-meta"><span>240 GB / 1 TB</span><span>6.2 GB/s</span></div></div>
<div class="hw-card"><div class="hw-header"><span class="hw-label">GPU — RTX 4080</span><div class="hw-pill">Idle</div></div><div class="hw-bar-track"><div class="hw-bar-fill" style="width:12%;"></div></div><div class="hw-meta"><span>12% utilisation</span><span>48°C</span></div></div>
</div>
</div>
</div>
</div>
<!-- APP SECTION -->
<div class="app-section" id="integrations">
<div class="app-grid-bg" id="appGrid">
<div class="app-icon-cell">⌘</div><div class="app-icon-cell">⌥</div><div class="app-icon-cell">🧠</div><div class="app-icon-cell">⌬</div><div class="app-icon-cell">⚙️</div><div class="app-icon-cell">🐳</div>
<div class="app-icon-cell">🦙</div><div class="app-icon-cell">🖥️</div><div class="app-icon-cell">📦</div><div class="app-icon-cell">🔒</div><div class="app-icon-cell">🧩</div><div class="app-icon-cell">📁</div>
<div class="app-icon-cell">🤖</div><div class="app-icon-cell">🛰️</div><div class="app-icon-cell">🛠️</div><div class="app-icon-cell">☁️</div><div class="app-icon-cell">💾</div><div class="app-icon-cell">⚡</div>
</div>
<div class="app-section-text reveal">
<div class="section-label" style="justify-content:center;">Built-in integrations</div>
<h2><span class="h1-light" style="display:block;font-size:inherit;">Works with the AI tools</span><span style="display:block;font-size:inherit;color:var(--navy);">you already love.</span></h2>
<p style="margin-top:1rem;font-size:1.05rem;line-height:1.75;color:var(--text);">Kismet OS ships with native Claude Code and Ollama integration — powerful AI coding assistance and local LLM inference, zero setup required.</p>
</div>
</div>
<!-- GAME LIBRARY -->
<div class="game-library-section" id="games">
<div class="game-library-inner reveal">
<div class="game-library-head">
<div class="section-label" style="justify-content:center;">Gaming Layer</div>
<h2><span style="color:var(--heading-light);display:block;">A built-in game library</span><span style="color:var(--navy);">with 20 ready picks.</span></h2>
<p>Kismet OS now presents a gaming library direction with 20 launchable-style entries across arcade, racing, puzzles, shooters, and local multiplayer. The visual style stays aligned with the current site, but the OS pitch now includes a clearer games story.</p>
</div>
<div class="game-library-grid">
<article class="game-card"><div class="game-card-top"><span class="game-icon">🏎️</span><div class="game-badge">Arcade Racing</div><div class="game-title">Turbo Drift X</div><p class="game-desc">Neon street racing with fast restarts and controller-first handling.</p></div><div class="game-card-body"><div class="game-meta"><span>Single player</span><span>2.1 GB</span></div><div class="game-tags"><span>Racing</span><span>Controller</span><span>Offline</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
<article class="game-card"><div class="game-card-top"><span class="game-icon">👾</span><div class="game-badge">Retro Arcade</div><div class="game-title">Pixel Raiders</div><p class="game-desc">Wave shooter chaos with clean visuals and instant pick-up-and-play action.</p></div><div class="game-card-body"><div class="game-meta"><span>Solo score chase</span><span>640 MB</span></div><div class="game-tags"><span>Arcade</span><span>Shooter</span><span>Retro</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
<article class="game-card"><div class="game-card-top"><span class="game-icon">🧩</span><div class="game-badge">Puzzle</div><div class="game-title">Circuit Flow</div><p class="game-desc">Route energy across elegant boards with a slick sci-fi presentation.</p></div><div class="game-card-body"><div class="game-meta"><span>Single player</span><span>480 MB</span></div><div class="game-tags"><span>Puzzle</span><span>Chill</span><span>Mouse</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
<article class="game-card"><div class="game-card-top"><span class="game-icon">⚔️</span><div class="game-badge">Action RPG</div><div class="game-title">Mythwarden</div><p class="game-desc">Fast dungeon runs, flashy combat, and loot-heavy progression loops.</p></div><div class="game-card-body"><div class="game-meta"><span>Campaign</span><span>6.7 GB</span></div><div class="game-tags"><span>RPG</span><span>Action</span><span>Loot</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
<article class="game-card"><div class="game-card-top"><span class="game-icon">🚀</span><div class="game-badge">Space Combat</div><div class="game-title">Void Squadron</div><p class="game-desc">Short tactical dogfights with sharp cockpit UI and dramatic lighting.</p></div><div class="game-card-body"><div class="game-meta"><span>Single player</span><span>3.4 GB</span></div><div class="game-tags"><span>Space</span><span>Combat</span><span>Controller</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
<article class="game-card"><div class="game-card-top"><span class="game-icon">🧟</span><div class="game-badge">Survival</div><div class="game-title">Night Fall Zero</div><p class="game-desc">Defend, scavenge, and rebuild through fast survival nights.</p></div><div class="game-card-body"><div class="game-meta"><span>Solo / Co-op</span><span>5.2 GB</span></div><div class="game-tags"><span>Survival</span><span>Action</span><span>Co-op</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
<article class="game-card"><div class="game-card-top"><span class="game-icon">🛡️</span><div class="game-badge">Strategy</div><div class="game-title">Citadel Forge</div><p class="game-desc">Compact city defense with modern visuals and deep upgrade paths.</p></div><div class="game-card-body"><div class="game-meta"><span>Single player</span><span>1.6 GB</span></div><div class="game-tags"><span>Strategy</span><span>Defense</span><span>Mouse</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
<article class="game-card"><div class="game-card-top"><span class="game-icon">🎯</span><div class="game-badge">Precision Shooter</div><div class="game-title">Apex Range</div><p class="game-desc">Aim labs meets arena trials for fast warmups and score runs.</p></div><div class="game-card-body"><div class="game-meta"><span>Training</span><span>1.1 GB</span></div><div class="game-tags"><span>FPS</span><span>Aim</span><span>Competitive</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
<article class="game-card"><div class="game-card-top"><span class="game-icon">🌌</span><div class="game-badge">Exploration</div><div class="game-title">Echo Atlas</div><p class="game-desc">Stylised open-zone exploration with light narrative and puzzles.</p></div><div class="game-card-body"><div class="game-meta"><span>Single player</span><span>4.3 GB</span></div><div class="game-tags"><span>Adventure</span><span>Exploration</span><span>Story</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
<article class="game-card"><div class="game-card-top"><span class="game-icon">⚽</span><div class="game-badge">Local Multiplayer</div><div class="game-title">Street Kick Showdown</div><p class="game-desc">Fast couch-versus football with ridiculous power shots and boosts.</p></div><div class="game-card-body"><div class="game-meta"><span>1-4 players</span><span>950 MB</span></div><div class="game-tags"><span>Sports</span><span>Local Co-op</span><span>Controller</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
<article class="game-card"><div class="game-card-top"><span class="game-icon">🧠</span><div class="game-badge">Logic</div><div class="game-title">Mind Grid</div><p class="game-desc">A smart minimalist puzzle set built for short sessions and clean flow.</p></div><div class="game-card-body"><div class="game-meta"><span>Single player</span><span>310 MB</span></div><div class="game-tags"><span>Puzzle</span><span>Minimal</span><span>Keyboard</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
<article class="game-card"><div class="game-card-top"><span class="game-icon">🐉</span><div class="game-badge">Boss Rush</div><div class="game-title">Drakefall Arena</div><p class="game-desc">Stylish boss encounters with dodge-heavy timing and big effects.</p></div><div class="game-card-body"><div class="game-meta"><span>Single player</span><span>3.8 GB</span></div><div class="game-tags"><span>Action</span><span>Boss Rush</span><span>Skill</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
<article class="game-card"><div class="game-card-top"><span class="game-icon">🚁</span><div class="game-badge">Tactical Action</div><div class="game-title">Rotor Black</div><p class="game-desc">Short stealth-infiltration missions with quick tactical planning.</p></div><div class="game-card-body"><div class="game-meta"><span>Single player</span><span>2.8 GB</span></div><div class="game-tags"><span>Stealth</span><span>Tactical</span><span>Action</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
<article class="game-card"><div class="game-card-top"><span class="game-icon">🪐</span><div class="game-badge">Sandbox</div><div class="game-title">Orbit Builder</div><p class="game-desc">Physics toybox for building impossible stations and orbital chains.</p></div><div class="game-card-body"><div class="game-meta"><span>Creative</span><span>1.9 GB</span></div><div class="game-tags"><span>Sandbox</span><span>Physics</span><span>Creative</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
<article class="game-card"><div class="game-card-top"><span class="game-icon">🔫</span><div class="game-badge">Arena FPS</div><div class="game-title">Neon Frag</div><p class="game-desc">High-speed multiplayer-style arena combat with old-school movement.</p></div><div class="game-card-body"><div class="game-meta"><span>Online / Bots</span><span>4.9 GB</span></div><div class="game-tags"><span>FPS</span><span>Arena</span><span>Fast</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
<article class="game-card"><div class="game-card-top"><span class="game-icon">🎲</span><div class="game-badge">Party Game</div><div class="game-title">Chaos Table</div><p class="game-desc">Mini-game collection designed for local multiplayer nonsense.</p></div><div class="game-card-body"><div class="game-meta"><span>1-4 players</span><span>1.2 GB</span></div><div class="game-tags"><span>Party</span><span>Local</span><span>Mini-games</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
<article class="game-card"><div class="game-card-top"><span class="game-icon">🏰</span><div class="game-badge">Tower Defense</div><div class="game-title">Iron Keep TD</div><p class="game-desc">Classic lane defense with modern UI polish and upgrade chaining.</p></div><div class="game-card-body"><div class="game-meta"><span>Single player</span><span>870 MB</span></div><div class="game-tags"><span>Tower Defense</span><span>Strategy</span><span>Offline</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
<article class="game-card"><div class="game-card-top"><span class="game-icon">🛹</span><div class="game-badge">Arcade Sports</div><div class="game-title">Sky Grind</div><p class="game-desc">Flow-based skating with combo chains and a bright urban look.</p></div><div class="game-card-body"><div class="game-meta"><span>Single player</span><span>2.0 GB</span></div><div class="game-tags"><span>Sports</span><span>Arcade</span><span>Style</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
<article class="game-card"><div class="game-card-top"><span class="game-icon">🚓</span><div class="game-badge">Chase Action</div><div class="game-title">Hot Pursuit Grid</div><p class="game-desc">Police chases, takedowns, and a clean cinematic arcade pace.</p></div><div class="game-card-body"><div class="game-meta"><span>Single player</span><span>3.0 GB</span></div><div class="game-tags"><span>Driving</span><span>Action</span><span>Arcade</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
<article class="game-card"><div class="game-card-top"><span class="game-icon">🧨</span><div class="game-badge">Co-op Action</div><div class="game-title">Blast Crew</div><p class="game-desc">Short mission co-op with gadgets, explosions, and quick matchmaking vibes.</p></div><div class="game-card-body"><div class="game-meta"><span>1-3 players</span><span>2.6 GB</span></div><div class="game-tags"><span>Co-op</span><span>Action</span><span>Arcade</span></div><a href="#" class="btn-accent game-launch">Play</a></div></article>
</div>
</div>
</div>
<!-- INTEGRATION CARDS -->
<div class="integration-section">
<div class="integration-inner reveal">
<div class="integrations-grid">
<!-- Claude Code -->
<div class="int-card">
<div class="int-card-header">
<div class="int-logo int-logo-claude">🤖</div>
<div><div class="int-card-title">Claude Code</div><div class="int-card-subtitle">by Anthropic — Embedded AI coding assistant</div></div>
<div class="int-badge">Built-in</div>
</div>
<div class="int-card-body">
<p>Claude Code is embedded directly into Kismet OS. Open any project and Claude Code is already context-aware — it knows your codebase, dependencies, and git history without a single extra prompt.</p>
<ul class="int-features">
<li><div class="check check-blue">✓</div> Pre-installed and authenticated on first boot</li>
<li><div class="check check-blue">✓</div> Deep integration — Kismet Agent auto-indexes your projects</li>
<li><div class="check check-blue">✓</div> Works natively in Alacritty, Kitty, and Neovim</li>
<li><div class="check check-blue">✓</div> Kismet Agent feeds live file context to Claude Code</li>
<li><div class="check check-blue">✓</div> MCP servers for GitHub, Jira, Linear, Notion pre-configured</li>
</ul>
<div class="int-terminal">
<div class="int-term-bar"><div class="mdot mdot-r"></div><div class="mdot mdot-y"></div><div class="mdot mdot-g"></div></div>
<div class="int-term-body">
<div><span class="tp">kismet</span> <span class="tc">~/projects/myapp $ claude</span></div>
<div class="ta">✦ Claude Code — context loaded (3 files, 847 lines)</div>
<div class="to"> Project: Next.js 15 + Prisma + PostgreSQL</div>
<div class="to"> Kismet Agent: Docker services pre-warmed ✓</div>
<div class="tg"> Ready. What would you like to build?</div>
<div><span class="tp">></span> <span class="tc">fix the auth middleware bug on line 42</span></div>
<div class="ta"> Analysing auth/middleware.ts... ●</div>
</div>
</div>
</div>
</div>
<!-- Ollama -->
<div class="int-card">
<div class="int-card-header">
<div class="int-logo int-logo-ollama">🦙</div>
<div><div class="int-card-title">Ollama</div><div class="int-card-subtitle">Local LLM inference — 100% on-device</div></div>
<div class="int-badge green">Local AI</div>
</div>
<div class="int-card-body">
<p>Kismet OS ships Ollama pre-configured with a curated model library. Run Llama 3, Mistral, DeepSeek Coder, and more — completely offline. The Kismet Agent automatically picks the right model for each task.</p>
<ul class="int-features">
<li><div class="check check-green">✓</div> Ollama daemon auto-starts with Kismet Agent at boot</li>
<li><div class="check check-green">✓</div> GPU acceleration pre-configured — NVIDIA, AMD, Intel Arc</li>
<li><div class="check check-green">✓</div> Kismet Agent routes tasks to the best local model automatically</li>
<li><div class="check check-green">✓</div> Open WebUI included for browser-based chat</li>
<li><div class="check check-green">✓</div> Bridges to Claude Code for hybrid local + cloud AI workflows</li>
</ul>
<div class="int-terminal">
<div class="int-term-bar"><div class="mdot mdot-r"></div><div class="mdot mdot-y"></div><div class="mdot mdot-g"></div></div>
<div class="int-term-body">
<div><span class="tp">kismet</span> <span class="tc">~ $ ollama list</span></div>
<div class="tg">NAME SIZE</div>
<div class="to">llama3.1:8b 4.7 GB</div>
<div class="to">deepseek-coder-v2 8.9 GB</div>
<div class="to">mistral:7b 4.1 GB</div>
<div class="to">phi3:mini 2.2 GB</div>
<div><span class="tp">kismet</span> <span class="tc">~ $ ollama run deepseek-coder-v2</span></div>
<div class="tg">● Loaded — RTX 4080 — 12.4 tok/s</div>
<div><span class="tp">>>></span> <span class="tc">_</span></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- STATS -->
<div class="stats-section reveal">
<div class="stats-inner">
<div><div class="stat-num">1</div><div class="stat-lbl">public concept repo cleaned up and live</div></div>
<div><div class="stat-num">3</div><div class="stat-lbl">core project docs added</div></div>
<div><div class="stat-num">1</div><div class="stat-lbl">landing page refined without changing the visual system</div></div>
<div><div class="stat-num">β</div><div class="stat-lbl">current stage of Kismet OS</div></div>
</div>
</div>
<!-- TESTIMONIALS -->
<div class="testi-section">
<div class="testi-inner reveal">
<h2><span style="color:var(--heading-light);">What is already in the</span> <span style="color:var(--navy);">repo.</span></h2>
<div class="testi-grid">
<div class="testi-card"><div class="stars">● ● ●</div><blockquote>"The landing page now sells the same idea with more honest positioning. It keeps the original visual style, but stops pretending a finished OS release already exists."</blockquote><div class="testi-author"><div class="testi-av">LP</div><div><div class="testi-name">Landing Page</div><div class="testi-role">Same style, better framing</div></div></div></div>
<div class="testi-card"><div class="stars">● ● ●</div><blockquote>"The project finally has a spine. Vision, architecture, roadmap, and brand notes mean this can evolve like a real product repo instead of a single heroic HTML file."</blockquote><div class="testi-author"><div class="testi-av">DOC</div><div><div class="testi-name">Documentation</div><div class="testi-role">Vision, architecture, roadmap</div></div></div></div>
<div class="testi-card"><div class="stars">● ● ●</div><blockquote>"Kismet OS is still early, but it now looks intentional. That matters, because serious projects should sound ambitious without lying about what already ships today."</blockquote><div class="testi-author"><div class="testi-av">B1</div><div><div class="testi-name">Beta State</div><div class="testi-role">Early-stage, publicly shaping up</div></div></div></div>
</div>
</div>
</div>
<!-- FAQ -->
<div class="faq-section" id="faq">
<div class="faq-inner reveal">
<h2>Frequently asked questions.</h2>
<div class="faq-list">
<details open><summary>Is Kismet OS available right now?</summary><p>Not as a finished operating system release. Right now it is a public beta concept repo with a polished landing page, stronger documentation, and active direction for future build work.</p></details>
<details><summary>Does the AI direction still focus on local models?</summary><p>Yes. Local-first AI remains central to the idea. Ollama, local model workflows, and deeper integrations with tools like OpenClaw and coding assistants are part of the intended architecture, but they are not being falsely presented as fully shipped OS features yet.</p></details>
<details><summary>What base is Kismet OS aiming for?</summary><p>The current direction strongly leans toward an Arch-based KDE setup because it fits the project's customization goals and AUR-friendly workflow. That said, the repo now treats this as an active design choice, not a falsely finalized production fact.</p></details>
<details><summary>Who is Kismet OS for?</summary><p>Developers, operators, AI builders, and power users who want a polished Linux environment with strong defaults, local AI direction, and room for deeper automation over time.</p></details>
<details><summary>What is already done in the repo?</summary><p>The current beta repo has an improved landing page, a cleaner README, and project docs covering vision, architecture, roadmap, and brand direction. It is a much stronger starting point than the earlier single-page-only state.</p></details>
<details><summary>What happens next?</summary><p>Next steps are the practical ones: package manifests, theming assets, setup scripts, integration scaffolding, and eventually a real installable preview instead of pure concept presentation.</p></details>
</div>
</div>
</div>
<!-- CTA -->
<div class="cta-section">
<h2><span class="h1-light">Follow the build as</span><span class="h1-dark">Kismet OS takes shape.</span></h2>
<p>The concept is ambitious. The repo is now cleaner, more grounded, and in a better place for real iteration.</p>
<div class="cta-actions">
<a href="https://github.com/ZDStudios/Kismet-OS" class="btn-accent btn-accent-lg">View GitHub</a>
<a href="#faq" class="btn-ghost">Read the FAQ</a>
</div>
</div>
<!-- FOOTER -->
<footer>
<a class="footer-logo" href="#"><div class="logo-mark">K</div><span class="footer-logo-text">Kismet OS</span></a>
<ul class="footer-links">
<li><a href="https://github.com/ZDStudios/Kismet-OS">GitHub</a></li>
<li><a href="https://github.com/ZDStudios/Kismet-OS/blob/main/README.md">Documentation</a></li>
<li><a href="https://github.com/ZDStudios/Kismet-OS">Source Code</a></li>
<li><a href="#integrations">Integrations</a></li>
<li><a href="#">Ollama Models</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
<p>© 2025 Kismet OS Project</p>
</footer>
<script>
// Build app icon grid
const icons = ['🐧','⚙️','📁','💻','🔒','🌐','📝','🎨','🎵','📷','🗃️','🔧','📊','🔌','🖥️','💾','🖱️','⌨️','🔑','📡','🧩','🛠️','📦','🔍','🎯','⚡','🌍','📱'];
const grid = document.getElementById('appGrid');
for(let i=0;i<18*8;i++){const c=document.createElement('div');c.className='app-icon-cell';c.textContent=icons[i%icons.length];grid.appendChild(c);}
// Scroll reveal
const obs = new IntersectionObserver(entries=>{entries.forEach(e=>{if(e.isIntersecting){e.target.classList.add('visible');obs.unobserve(e.target);}});},{threshold:0.08,rootMargin:'0px 0px -30px 0px'});
document.querySelectorAll('.reveal').forEach(el=>obs.observe(el));
// Layout thumb toggle
document.querySelectorAll('.layout-thumb').forEach(t=>{t.addEventListener('click',()=>{document.querySelectorAll('.layout-thumb').forEach(x=>x.classList.remove('active'));t.classList.add('active');});});
</script>
</body>
</html>