-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrand-kit.html
More file actions
573 lines (544 loc) · 25.4 KB
/
Copy pathbrand-kit.html
File metadata and controls
573 lines (544 loc) · 25.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PrepStudio — Brand Identity System</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900;1,14..32,400&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #06060E;
--surface: #0C0C18;
--surface2: #11111F;
--surface3: #171728;
--border: rgba(255,255,255,0.055);
--indigo: #6366F1;
--cyan: #22D3EE;
--amber: #F59E0B;
--white: #F1F5F9;
--muted: #475569;
--gutter: 10px;
--r: 14px;
}
body {
background: var(--bg);
color: var(--white);
font-family: 'Inter', system-ui, sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 48px 24px 56px;
}
.header {
text-align: center;
margin-bottom: 36px;
}
.header-eyebrow {
font-size: 10px;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--muted);
font-weight: 500;
margin-bottom: 6px;
}
.header-sub {
font-size: 11px;
color: rgba(255,255,255,0.14);
letter-spacing: 0.06em;
}
.grid {
display: grid;
grid-template-columns: repeat(3, 320px);
grid-template-rows: repeat(3, 230px);
gap: var(--gutter);
}
.panel {
background: var(--surface);
border-radius: var(--r);
border: 1px solid var(--border);
overflow: hidden;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.lbl {
position: absolute;
bottom: 14px;
left: 16px;
font-size: 8.5px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--muted);
font-weight: 500;
}
.num {
position: absolute;
top: 14px;
right: 16px;
font-size: 9px;
letter-spacing: 0.06em;
color: rgba(255,255,255,0.1);
font-family: 'JetBrains Mono', monospace;
}
/* ── 01 LOGO COVER ── */
.p1 {
background: var(--bg);
flex-direction: column;
gap: 18px;
}
.p1::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 60% 60% at 50% 42%, rgba(99,102,241,0.14) 0%, transparent 100%);
}
.logo-wrap { position: relative; z-index: 1; }
.wordmark {
position: relative;
z-index: 1;
display: flex;
align-items: baseline;
gap: 1px;
}
.wm-prep { font-size: 17px; font-weight: 700; letter-spacing: -0.025em; color: var(--white); }
.wm-studio { font-size: 17px; font-weight: 300; letter-spacing: -0.025em; color: rgba(255,255,255,0.38); }
/* ── 02 CONSTRUCTION ── */
.p2 {
background: var(--surface2);
flex-direction: column;
align-items: flex-start;
padding: 24px;
}
.section-label {
font-size: 8.5px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 16px;
font-weight: 500;
}
/* ── 03 APP MOCKUP ── */
.p3 {
background: var(--surface2);
flex-direction: column;
align-items: stretch;
justify-content: flex-start;
padding: 0;
}
.browser-bar {
background: var(--surface3);
border-bottom: 1px solid var(--border);
padding: 9px 14px;
display: flex;
align-items: center;
gap: 6px;
flex-shrink: 0;
}
.dot { width: 7px; height: 7px; border-radius: 50%; }
.url-bar {
flex: 1;
margin-left: 8px;
background: rgba(255,255,255,0.04);
border-radius: 5px;
padding: 3px 10px;
font-size: 9.5px;
font-family: 'JetBrains Mono', monospace;
color: var(--muted);
}
.app-body { flex: 1; padding: 16px 18px; display: flex; flex-direction: column; gap: 9px; }
.app-nav { display: flex; align-items: center; justify-content: space-between; }
.app-logo-row { display: flex; align-items: center; gap: 5px; }
.app-links { display: flex; gap: 14px; }
.app-link { font-size: 9.5px; color: var(--muted); }
.app-link.on { color: var(--white); }
.badge {
display: inline-flex; align-items: center; gap: 5px;
background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.24);
border-radius: 100px; padding: 3px 9px;
font-size: 8.5px; color: #A5B4FC; margin-bottom: 8px;
}
.app-title { font-size: 14px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.22; }
.app-sub { font-size: 9px; color: var(--muted); margin-top: 5px; line-height: 1.5; }
.mini-bars { margin-top: 8px; display: flex; flex-direction: column; gap: 5px; }
.mini-bar-row { display: flex; align-items: center; gap: 7px; }
.mini-bar-lbl { font-size: 8px; color: var(--muted); width: 68px; }
.mini-bar-track { flex: 1; height: 2px; background: rgba(255,255,255,0.05); border-radius: 4px; }
.mini-bar-fill { height: 100%; border-radius: 4px; }
.mini-bar-pct { font-size: 8px; font-family: 'JetBrains Mono', monospace; color: rgba(255,255,255,0.18); width: 26px; text-align: right; }
/* ── 04 TAGLINE ── */
.p4 {
background: linear-gradient(140deg, #3730A3 0%, #4F46E5 55%, #6366F1 100%);
flex-direction: column;
align-items: flex-start;
padding: 32px 30px;
}
.tagline { font-size: 24px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.08; color: #fff; }
.tagline-url { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 14px; font-weight: 400; }
/* ── 05 COLORS ── */
.p5 {
background: var(--surface2);
flex-direction: column;
align-items: flex-start;
padding: 22px;
}
.swatches { display: flex; gap: 7px; width: 100%; flex: 1; margin-top: 10px; }
.swatch { flex: 1; border-radius: 8px; display: flex; flex-direction: column; justify-content: flex-end; padding: 7px 6px; min-height: 118px; }
.sw-name { font-size: 7.5px; font-weight: 600; letter-spacing: 0.04em; color: rgba(255,255,255,0.65); }
.sw-hex { font-size: 7px; font-family: 'JetBrains Mono', monospace; color: rgba(255,255,255,0.32); margin-top: 2px; }
/* ── 06 TYPOGRAPHY ── */
.p6 {
background: var(--surface2);
flex-direction: column;
align-items: flex-start;
padding: 22px;
}
.type-big { font-size: 64px; font-weight: 900; letter-spacing: -0.07em; line-height: 0.88; color: var(--white); margin-top: 10px; }
.type-alph { font-size: 8.5px; color: rgba(255,255,255,0.22); letter-spacing: 0.1em; margin-top: 13px; }
.type-face { font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(99,102,241,0.75); font-weight: 600; margin-top: 10px; }
.type-mono { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--muted); margin-top: 5px; }
/* ── 07 VOICE ── */
.p7 { background: var(--bg); overflow: hidden; }
.p7::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse 55% 55% at 50% 60%, rgba(34,211,238,0.09) 0%, transparent 100%);
}
.voice-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.voice-eyebrow { font-size: 8.5px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cyan); font-weight: 500; }
.voice-tag { font-size: 8px; font-family: 'JetBrains Mono', monospace; color: rgba(255,255,255,0.14); letter-spacing: 0.12em; }
/* ── 08 ATMOSPHERE ── */
.p8 { padding: 0; overflow: hidden; }
.atmo-inner {
width: 100%; height: 100%;
background: linear-gradient(155deg, #090914 0%, #0B0B1C 50%, #060610 100%);
position: relative;
display: flex; flex-direction: column; justify-content: flex-end;
padding: 22px;
}
.atmo-grid {
position: absolute; inset: 0;
background-image:
linear-gradient(rgba(99,102,241,0.035) 1px, transparent 1px),
linear-gradient(90deg, rgba(99,102,241,0.035) 1px, transparent 1px);
background-size: 28px 28px;
}
.atmo-glow {
position: absolute; top: -50px; right: -50px;
width: 220px; height: 220px;
background: radial-gradient(circle, rgba(99,102,241,0.13) 0%, transparent 70%);
}
.atmo-glow2 {
position: absolute; bottom: -40px; left: -20px;
width: 160px; height: 160px;
background: radial-gradient(circle, rgba(34,211,238,0.06) 0%, transparent 70%);
}
.atmo-quote { position: relative; z-index: 1; }
.atmo-quote p { font-size: 15px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.35; color: var(--white); }
.atmo-quote span { color: var(--indigo); }
/* ── 09 SYSTEM DETAIL ── */
.p9 {
background: var(--surface2);
flex-direction: column;
align-items: flex-start;
padding: 22px;
gap: 11px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 5px; }
.chip { border-radius: 100px; padding: 3.5px 11px; font-size: 8.5px; font-weight: 500; letter-spacing: 0.03em; }
.ci { background: rgba(99,102,241,0.14); border: 1px solid rgba(99,102,241,0.28); color: #A5B4FC; }
.cc { background: rgba(34,211,238,0.10); border: 1px solid rgba(34,211,238,0.22); color: #67E8F9; }
.ca { background: rgba(245,158,11,0.10); border: 1px solid rgba(245,158,11,0.22); color: #FCD34D; }
.cn { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); color: var(--muted); }
.cmd-block {
background: rgba(0,0,0,0.45); border: 1px solid var(--border);
border-radius: 8px; padding: 9px 13px; width: 100%;
}
.cmd { font-family: 'JetBrains Mono', monospace; font-size: 9.5px; }
.cmd-p { color: var(--cyan); }
.cmd-t { color: rgba(255,255,255,0.5); }
.prog-row { width: 100%; display: flex; flex-direction: column; gap: 6px; }
.prog-item { display: flex; align-items: center; gap: 7px; }
.prog-lbl { font-size: 8px; color: var(--muted); width: 70px; }
.prog-track { flex: 1; height: 2.5px; background: rgba(255,255,255,0.05); border-radius: 10px; }
.prog-fill { height: 100%; border-radius: 10px; }
.prog-pct { font-size: 8px; font-family: 'JetBrains Mono', monospace; color: rgba(255,255,255,0.2); width: 26px; text-align: right; }
.footer {
margin-top: 28px;
font-size: 9px;
color: rgba(255,255,255,0.1);
letter-spacing: 0.14em;
text-align: center;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }
</style>
</head>
<body>
<div class="header">
<div class="header-eyebrow">Brand Identity System · 2025</div>
<div class="header-sub">prepstudio.ai · v1.0 · Confidential</div>
</div>
<div class="grid">
<!-- 01 LOGO COVER -->
<div class="panel p1">
<div class="logo-wrap">
<svg width="76" height="76" viewBox="0 0 72 72" fill="none" xmlns="http://www.w3.org/2000/svg">
<!-- P stem (left vertical bar) -->
<rect x="9" y="9" width="9" height="54" rx="4.5" fill="#F1F5F9"/>
<!-- Top crossbar -->
<rect x="9" y="9" width="46" height="9" rx="4.5" fill="#F1F5F9"/>
<!-- Mid connector (base of P bowl) -->
<rect x="9" y="36" width="25" height="9" rx="4.5" fill="#F1F5F9"/>
<!-- Waveform bar 1 — tallest -->
<rect x="22" y="18" width="9" height="27" rx="4.5" fill="#6366F1"/>
<!-- Waveform bar 2 — medium -->
<rect x="35" y="22" width="9" height="19" rx="4.5" fill="#6366F1" opacity="0.58"/>
<!-- Waveform bar 3 — shortest -->
<rect x="48" y="27" width="9" height="9" rx="4.5" fill="#6366F1" opacity="0.28"/>
</svg>
</div>
<div class="wordmark">
<span class="wm-prep">prep</span><span class="wm-studio">studio</span>
</div>
<span class="lbl">Logomark + Wordmark</span>
<span class="num">01</span>
</div>
<!-- 02 LOGO CONSTRUCTION -->
<div class="panel p2">
<div class="section-label">Mark Construction</div>
<svg width="100%" height="176" viewBox="0 0 276 176" fill="none" xmlns="http://www.w3.org/2000/svg">
<!-- Grid -->
<line x1="0" y1="0" x2="0" y2="176" stroke="rgba(255,255,255,0.035)" stroke-width="1"/>
<line x1="46" y1="0" x2="46" y2="176" stroke="rgba(255,255,255,0.035)" stroke-width="1"/>
<line x1="92" y1="0" x2="92" y2="176" stroke="rgba(255,255,255,0.035)" stroke-width="1"/>
<line x1="138" y1="0" x2="138" y2="176" stroke="rgba(255,255,255,0.035)" stroke-width="1"/>
<line x1="0" y1="46" x2="138" y2="46" stroke="rgba(255,255,255,0.035)" stroke-width="1"/>
<line x1="0" y1="92" x2="138" y2="92" stroke="rgba(255,255,255,0.035)" stroke-width="1"/>
<line x1="0" y1="138" x2="138" y2="138" stroke="rgba(255,255,255,0.035)" stroke-width="1"/>
<!-- Corner marks -->
<line x1="9" y1="5" x2="9" y2="15" stroke="rgba(99,102,241,0.45)" stroke-width="0.9"/>
<line x1="4" y1="9" x2="14" y2="9" stroke="rgba(99,102,241,0.45)" stroke-width="0.9"/>
<!-- Construction guides -->
<line x1="9" y1="9" x2="9" y2="165" stroke="rgba(99,102,241,0.13)" stroke-width="0.6" stroke-dasharray="4 3"/>
<line x1="9" y1="9" x2="128" y2="9" stroke="rgba(99,102,241,0.13)" stroke-width="0.6" stroke-dasharray="4 3"/>
<line x1="9" y1="88" x2="80" y2="88" stroke="rgba(99,102,241,0.13)" stroke-width="0.6" stroke-dasharray="4 3"/>
<!-- Logo enlarged ~2.2x -->
<rect x="9" y="9" width="19" height="117" rx="9.5" fill="#F1F5F9" opacity="0.92"/>
<rect x="9" y="9" width="101" height="19" rx="9.5" fill="#F1F5F9" opacity="0.92"/>
<rect x="9" y="79" width="55" height="19" rx="9.5" fill="#F1F5F9" opacity="0.92"/>
<rect x="32" y="28" width="19" height="51" rx="9.5" fill="#6366F1"/>
<rect x="55" y="38" width="19" height="34" rx="9.5" fill="#6366F1" opacity="0.58"/>
<rect x="78" y="50" width="19" height="18" rx="9" fill="#6366F1" opacity="0.28"/>
<!-- Labels -->
<text x="152" y="22" fill="rgba(255,255,255,0.28)" font-size="8" font-family="Inter,sans-serif" letter-spacing="0.1em">STEM · CROSSBAR</text>
<text x="152" y="55" fill="rgba(99,102,241,0.72)" font-size="8" font-family="Inter,sans-serif" letter-spacing="0.1em">WAVEFORM BARS</text>
<text x="152" y="88" fill="rgba(255,255,255,0.18)" font-size="8" font-family="Inter,sans-serif" letter-spacing="0.1em">MID CONNECTOR</text>
<text x="152" y="118" fill="rgba(34,211,238,0.48)" font-size="8" font-family="Inter,sans-serif" letter-spacing="0.1em">3-TIER DECAY</text>
<!-- Pointer lines -->
<line x1="148" y1="18" x2="28" y2="18" stroke="rgba(255,255,255,0.07)" stroke-width="0.6"/>
<line x1="148" y1="52" x2="32" y2="52" stroke="rgba(99,102,241,0.28)" stroke-width="0.6"/>
<line x1="148" y1="85" x2="28" y2="85" stroke="rgba(255,255,255,0.07)" stroke-width="0.6"/>
<line x1="148" y1="114" x2="55" y2="55" stroke="rgba(34,211,238,0.18)" stroke-width="0.6" stroke-dasharray="3 3"/>
</svg>
<span class="lbl">Construction Logic</span>
<span class="num">02</span>
</div>
<!-- 03 APP MOCKUP -->
<div class="panel p3">
<div class="browser-bar">
<div class="dot" style="background:#FF5F57;"></div>
<div class="dot" style="background:#FEBC2E;"></div>
<div class="dot" style="background:#28C840;"></div>
<div class="url-bar">prepstudio.ai/dashboard</div>
</div>
<div class="app-body">
<div class="app-nav">
<div class="app-logo-row">
<svg width="15" height="15" viewBox="0 0 72 72" fill="none">
<rect x="9" y="9" width="9" height="54" rx="4.5" fill="#F1F5F9"/>
<rect x="9" y="9" width="46" height="9" rx="4.5" fill="#F1F5F9"/>
<rect x="9" y="36" width="25" height="9" rx="4.5" fill="#F1F5F9"/>
<rect x="22" y="18" width="9" height="27" rx="4.5" fill="#6366F1"/>
<rect x="35" y="22" width="9" height="19" rx="4.5" fill="#6366F1" opacity="0.58"/>
<rect x="48" y="27" width="9" height="9" rx="4.5" fill="#6366F1" opacity="0.28"/>
</svg>
<span style="font-size:10.5px;font-weight:700;letter-spacing:-0.025em;">prepstudio</span>
</div>
<div class="app-links">
<span class="app-link on">Dashboard</span>
<span class="app-link">Plans</span>
<span class="app-link">Interview</span>
</div>
</div>
<div>
<div class="badge">
<svg width="5" height="5" viewBox="0 0 5 5"><circle cx="2.5" cy="2.5" r="2.5" fill="#6366F1"/></svg>
AI-Powered · Voice-First
</div>
<div class="app-title">Your study plan,<br>ready to speak.</div>
<div class="app-sub">Gemini generates your roadmap.<br>Nova explains it. Alex interviews you.</div>
</div>
<div class="mini-bars">
<div class="mini-bar-row">
<span class="mini-bar-lbl">System Design</span>
<div class="mini-bar-track"><div class="mini-bar-fill" style="width:72%;background:#6366F1;"></div></div>
<span class="mini-bar-pct">72%</span>
</div>
<div class="mini-bar-row">
<span class="mini-bar-lbl">Algorithms</span>
<div class="mini-bar-track"><div class="mini-bar-fill" style="width:45%;background:#22D3EE;"></div></div>
<span class="mini-bar-pct">45%</span>
</div>
<div class="mini-bar-row">
<span class="mini-bar-lbl">Behavioural</span>
<div class="mini-bar-track"><div class="mini-bar-fill" style="width:88%;background:#F59E0B;"></div></div>
<span class="mini-bar-pct">88%</span>
</div>
</div>
</div>
<span class="lbl">Digital Application</span>
<span class="num">03</span>
</div>
<!-- 04 TAGLINE -->
<div class="panel p4">
<div class="tagline">Study<br>smarter.<br>Sound<br>confident.</div>
<div class="tagline-url">prepstudio.ai</div>
<span class="lbl" style="color:rgba(255,255,255,0.32);">Brand Essence</span>
<span class="num" style="color:rgba(255,255,255,0.16);">04</span>
</div>
<!-- 05 COLOR SYSTEM -->
<div class="panel p5">
<div class="section-label">Color System</div>
<div class="swatches">
<div class="swatch" style="background:#06060E;border:1px solid rgba(255,255,255,0.08);">
<div class="sw-name">Void</div>
<div class="sw-hex">#06060E</div>
</div>
<div class="swatch" style="background:#6366F1;">
<div class="sw-name">Indigo</div>
<div class="sw-hex">#6366F1</div>
</div>
<div class="swatch" style="background:#22D3EE;">
<div class="sw-name">Cyan</div>
<div class="sw-hex">#22D3EE</div>
</div>
<div class="swatch" style="background:#F59E0B;">
<div class="sw-name">Amber</div>
<div class="sw-hex">#F59E0B</div>
</div>
<div class="swatch" style="background:#F1F5F9;">
<div class="sw-name" style="color:rgba(0,0,0,0.55);">Ice</div>
<div class="sw-hex" style="color:rgba(0,0,0,0.3);">#F1F5F9</div>
</div>
</div>
<span class="lbl">Color Palette</span>
<span class="num">05</span>
</div>
<!-- 06 TYPOGRAPHY -->
<div class="panel p6">
<div class="section-label">Typography</div>
<div class="type-big">Aa</div>
<div class="type-alph">ABCDEFGHIJKLMNOPQRSTUVWXYZ · 0123456789</div>
<div class="type-face">Inter — Display & Body</div>
<div class="type-mono">$ uvicorn app.main:app --reload // Mono</div>
<span class="lbl">Type System</span>
<span class="num">06</span>
</div>
<!-- 07 VOICE / WAVEFORM -->
<div class="panel p7">
<div class="voice-inner">
<div class="voice-eyebrow">Voice · AI · Studio</div>
<svg width="258" height="58" viewBox="0 0 258 58" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="2" y="27" width="5" height="4" rx="2.5" fill="#22D3EE" opacity="0.22"/>
<rect x="11" y="23" width="5" height="12" rx="2.5" fill="#22D3EE" opacity="0.33"/>
<rect x="20" y="18" width="5" height="22" rx="2.5" fill="#22D3EE" opacity="0.44"/>
<rect x="29" y="13" width="5" height="32" rx="2.5" fill="#6366F1" opacity="0.55"/>
<rect x="38" y="8" width="5" height="42" rx="2.5" fill="#6366F1" opacity="0.68"/>
<rect x="47" y="5" width="5" height="48" rx="2.5" fill="#6366F1" opacity="0.78"/>
<rect x="56" y="9" width="5" height="40" rx="2.5" fill="#6366F1" opacity="0.65"/>
<rect x="65" y="14" width="5" height="30" rx="2.5" fill="#6366F1" opacity="0.52"/>
<rect x="74" y="18" width="5" height="22" rx="2.5" fill="#22D3EE" opacity="0.45"/>
<rect x="83" y="12" width="5" height="34" rx="2.5" fill="#6366F1" opacity="0.60"/>
<rect x="92" y="6" width="5" height="46" rx="2.5" fill="#6366F1" opacity="0.75"/>
<rect x="101" y="2" width="5" height="54" rx="2.5" fill="#22D3EE" opacity="0.95"/>
<rect x="110" y="4" width="5" height="50" rx="2.5" fill="#6366F1" opacity="0.88"/>
<rect x="120" y="1" width="6" height="56" rx="3" fill="#22D3EE"/>
<rect x="130" y="4" width="5" height="50" rx="2.5" fill="#6366F1" opacity="0.88"/>
<rect x="139" y="2" width="5" height="54" rx="2.5" fill="#22D3EE" opacity="0.95"/>
<rect x="148" y="6" width="5" height="46" rx="2.5" fill="#6366F1" opacity="0.75"/>
<rect x="157" y="12" width="5" height="34" rx="2.5" fill="#6366F1" opacity="0.60"/>
<rect x="166" y="18" width="5" height="22" rx="2.5" fill="#22D3EE" opacity="0.45"/>
<rect x="175" y="14" width="5" height="30" rx="2.5" fill="#6366F1" opacity="0.52"/>
<rect x="184" y="9" width="5" height="40" rx="2.5" fill="#6366F1" opacity="0.65"/>
<rect x="193" y="5" width="5" height="48" rx="2.5" fill="#6366F1" opacity="0.78"/>
<rect x="202" y="8" width="5" height="42" rx="2.5" fill="#6366F1" opacity="0.68"/>
<rect x="211" y="13" width="5" height="32" rx="2.5" fill="#6366F1" opacity="0.55"/>
<rect x="220" y="18" width="5" height="22" rx="2.5" fill="#22D3EE" opacity="0.44"/>
<rect x="229" y="23" width="5" height="12" rx="2.5" fill="#22D3EE" opacity="0.33"/>
<rect x="238" y="27" width="5" height="4" rx="2.5" fill="#22D3EE" opacity="0.22"/>
</svg>
<div class="voice-tag">ELEVENLABS CONVERSATIONAL AI · NOVA & ALEX</div>
</div>
<span class="lbl">Voice Identity</span>
<span class="num">07</span>
</div>
<!-- 08 ATMOSPHERE -->
<div class="panel p8">
<div class="atmo-inner">
<div class="atmo-grid"></div>
<div class="atmo-glow"></div>
<div class="atmo-glow2"></div>
<div class="atmo-quote">
<p>AI that <span>listens</span>,<br>plans that <span>adapt</span>,<br>interviews that<br><span>matter.</span></p>
</div>
</div>
<span class="lbl" style="z-index:2;">Image Direction</span>
<span class="num" style="z-index:2;">08</span>
</div>
<!-- 09 SYSTEM DETAIL -->
<div class="panel p9">
<div class="section-label">System Components</div>
<div class="chip-row">
<div class="chip ci">AI Plan Generator</div>
<div class="chip cc">Voice Tutor</div>
<div class="chip ca">Interview Mode</div>
<div class="chip cn">Gemini 2.5 Flash</div>
<div class="chip cn">ElevenLabs</div>
<div class="chip cn">Firebase Auth</div>
</div>
<div class="cmd-block">
<div class="cmd"><span class="cmd-p">→</span> <span class="cmd-t">Starting voice session…</span></div>
<div class="cmd" style="margin-top:4px;"><span class="cmd-p" style="color:rgba(34,211,238,0.45);">→</span> <span class="cmd-t">"Tell me about system design."</span></div>
</div>
<div class="prog-row">
<div class="prog-item">
<span class="prog-lbl">Topics done</span>
<div class="prog-track"><div class="prog-fill" style="width:60%;background:#6366F1;"></div></div>
<span class="prog-pct">6/10</span>
</div>
<div class="prog-item">
<span class="prog-lbl">Score</span>
<div class="prog-track"><div class="prog-fill" style="width:84%;background:#22D3EE;"></div></div>
<span class="prog-pct">84%</span>
</div>
<div class="prog-item">
<span class="prog-lbl">Confidence</span>
<div class="prog-track"><div class="prog-fill" style="width:91%;background:#F59E0B;"></div></div>
<span class="prog-pct">91%</span>
</div>
</div>
<span class="lbl">System Detail</span>
<span class="num">09</span>
</div>
</div>
<div class="footer">
PREPSTUDIO · BRAND IDENTITY SYSTEM · 2025 · CONFIDENTIAL
</div>
</body>
</html>