-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
538 lines (506 loc) · 22.5 KB
/
Copy pathstyles.css
File metadata and controls
538 lines (506 loc) · 22.5 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
/* ===================== Tokens ===================== */
:root {
--bg: #05070d;
--bg-2: #090c15;
--panel: #0d1220;
--panel-2: #11172a;
--line: #1c2438;
--line-soft: #161d2e;
--text: #e7ecf5;
--muted: #8b96ad;
--muted-2: #5f6b83;
--cyan: #2ec5ff;
--cyan-deep: #0a9fe0;
--orange: #ff8c1a;
--orange-deep: #f2740a;
--green: #37d67a;
--radius: 14px;
--mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
--sans: 'Space Grotesk', system-ui, -apple-system, Segoe UI, sans-serif;
--maxw: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
background: var(--bg);
color: var(--text);
font-family: var(--sans);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
code, pre { font-family: var(--mono); }
h1, h2, h3, h4, h5 { line-height: 1.1; margin: 0; letter-spacing: -0.02em; }
img { max-width: 100%; display: block; }
/* ===================== Background ===================== */
.bg-grid {
position: fixed; inset: 0; z-index: -2;
background-image:
linear-gradient(var(--line-soft) 1px, transparent 1px),
linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
background-size: 48px 48px;
mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 80%);
opacity: 0.55;
}
.bg-glow {
position: fixed; inset: 0; z-index: -1; pointer-events: none;
background:
radial-gradient(600px 400px at 78% 8%, rgba(46,197,255,0.16), transparent 70%),
radial-gradient(500px 360px at 12% 22%, rgba(255,140,26,0.10), transparent 70%);
}
/* ===================== Nav ===================== */
.nav {
position: sticky; top: 0; z-index: 50;
backdrop-filter: blur(12px);
background: rgba(5,7,13,0.6);
border-bottom: 1px solid transparent;
transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(5,7,13,0.85); }
.nav-inner {
max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
display: flex; align-items: center; gap: 24px;
}
.nav-logo {
display: none;
align-items: center;
flex-shrink: 0;
}
.nav.show-brand .nav-logo {
display: flex;
}
.nav.show-brand .nav-links {
margin-left: 0;
}
.nav-logo-img { height: 32px; width: auto; }
.nav:not(.show-brand) .nav-links { margin-left: 0; }
.brand-name {
font-family: var(--mono); font-weight: 800; font-size: 20px;
letter-spacing: -0.03em;
}
.nav-links { display: flex; gap: 26px; margin-left: 12px; }
.nav-links a { color: var(--muted); font-size: 14.5px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.ghost-btn, .solid-btn {
display: inline-flex; align-items: center; gap: 8px;
font-family: var(--mono); font-size: 13.5px; font-weight: 600;
padding: 9px 15px; border-radius: 10px; cursor: pointer;
transition: transform .15s, box-shadow .2s, background .2s, border-color .2s;
}
.ghost-btn { border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,0.02); }
.ghost-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.solid-btn {
border: 1px solid transparent; color: #04121c; font-weight: 700;
background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
box-shadow: 0 6px 22px rgba(46,197,255,0.28);
}
.solid-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(46,197,255,0.4); }
.big { font-size: 15px; padding: 13px 22px; }
.nav-burger { display: none; background: none; border: 0; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }
/* ===================== Hero ===================== */
.hero {
max-width: var(--maxw); margin: 0 auto;
padding: 64px 24px 40px;
display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px;
align-items: start;
}
.hero-copy { align-self: start; }
.hero-brand {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 12px;
margin-bottom: 52px;
}
.hero-logo { display: block; }
.hero-logo img {
height: 80px;
width: auto;
display: block;
}
.hero-tagline {
margin: 0;
font-family: var(--mono);
font-size: 13.5px;
color: var(--muted);
letter-spacing: 0.01em;
}
.badge {
display: inline-flex; align-items: center; gap: 9px;
font-family: var(--mono); font-size: 12.5px; color: var(--muted);
padding: 6px 13px; border: 1px solid var(--line); border-radius: 999px;
background: rgba(46,197,255,0.04);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.hero-title {
font-size: clamp(34px, 4.6vw, 58px); font-weight: 700; margin: 0;
}
.hero-title .accent { color: var(--cyan); }
.hero-title .grad {
background: linear-gradient(100deg, var(--orange), #ffb15a);
-webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { color: var(--muted); font-size: 18px; max-width: 540px; margin: 22px 0 0; }
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-install {
margin-top: 26px; display: inline-flex; align-items: center; gap: 10px;
background: var(--panel); border: 1px solid var(--line); border-radius: 11px;
padding: 11px 12px 11px 16px;
}
.hero-install code { font-size: 15px; color: var(--text); }
.prompt { color: var(--orange); margin-right: 8px; }
.copy-btn {
background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: var(--muted);
border-radius: 8px; padding: 6px; cursor: pointer; display: inline-flex; transition: .18s;
}
.copy-btn:hover { color: var(--cyan); border-color: var(--cyan); }
.copy-btn.copied { color: var(--green); border-color: var(--green); }
.hero-actions { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { margin-top: 42px; display: flex; gap: 40px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--mono); font-size: 30px; font-weight: 800; color: var(--text); }
.stat-label { font-size: 13px; color: var(--muted-2); font-family: var(--mono); }
/* Hero viz */
.hero-viz {
align-self: end;
position: relative;
aspect-ratio: 4 / 5;
min-height: 460px;
border: 1px solid var(--line);
border-radius: 18px;
background:
radial-gradient(120% 120% at 100% 0%, rgba(46,197,255,0.06), transparent 60%),
radial-gradient(80% 60% at 0% 100%, rgba(255,140,26,0.04), transparent 55%),
var(--bg-2);
overflow: hidden;
box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.hero-viz::after {
content: '';
position: absolute;
inset: 0;
pointer-events: none;
background: repeating-linear-gradient(
0deg,
transparent,
transparent 2px,
rgba(255,255,255,0.012) 2px,
rgba(255,255,255,0.012) 3px
);
opacity: 0.35;
}
#scaleCanvas {
width: 100%;
height: 100%;
display: block;
}
.viz-hud {
position: absolute; top: 14px; left: 14px; z-index: 2;
background: rgba(5,7,13,0.72); border: 1px solid var(--line); border-radius: 10px;
padding: 10px 12px; font-family: var(--mono); font-size: 12px; min-width: 172px;
backdrop-filter: blur(4px);
}
.hud-row { display: flex; justify-content: space-between; gap: 16px; padding: 2px 0; }
.hud-key { color: var(--muted-2); }
.hud-val { color: var(--text); font-weight: 600; }
.hud-val.orange { color: var(--orange); }
.hud-val.cyan { color: var(--cyan); }
.viz-progress {
position: absolute;
left: 16px;
right: 16px;
bottom: 6px;
z-index: 2;
padding: 10px 12px 11px;
border-radius: 10px;
border: 1px solid var(--line);
background: rgba(5,7,13,0.78);
backdrop-filter: blur(6px);
font-family: var(--mono);
font-size: 11px;
}
.viz-progress-head {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
color: var(--muted-2);
}
.viz-progress-label { color: var(--cyan); font-weight: 600; }
.viz-progress-pct { color: var(--text); font-weight: 700; }
.viz-progress-track {
position: relative;
height: 7px;
border-radius: 999px;
background: rgba(255,255,255,0.06);
overflow: hidden;
box-shadow: inset 0 1px 2px rgba(0,0,0,0.35);
}
.viz-progress-fill {
height: 100%;
width: 0%;
border-radius: inherit;
background: linear-gradient(90deg, var(--cyan-deep), var(--cyan), #7ee4ff);
box-shadow: 0 0 14px rgba(46,197,255,0.55);
transition: width 0.18s ease-out;
position: relative;
}
.viz-progress-fill::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(
90deg,
transparent 0%,
rgba(255,255,255,0.45) 50%,
transparent 100%
);
animation: progress-shimmer 2.2s ease-in-out infinite;
}
@keyframes progress-shimmer {
0% { transform: translateX(-120%); }
100% { transform: translateX(220%); }
}
.viz-progress-meta {
display: flex;
justify-content: space-between;
margin-top: 7px;
color: var(--muted-2);
}
.viz-progress-meta span:last-child { color: var(--orange); }
/* ===================== Trust bar ===================== */
.trustbar {
max-width: var(--maxw); margin: 12px auto 28px; padding: 28px 24px;
display: flex; flex-direction: row; align-items: center; gap: 40px;
border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
flex-wrap: wrap;
}
.trust-label { font-size: 13px; white-space: nowrap; }
.trust-logos {
flex: 1; display: grid; grid-template-columns: repeat(4, auto);
align-items: center; justify-items: center;
column-gap: clamp(26px, 4vw, 56px); row-gap: 30px;
}
.trust-logos img {
height: 76px; width: auto; opacity: 1; filter: none;
transition: transform .25s cubic-bezier(.2,.7,.2,1), filter .25s ease;
}
.trust-logos img[alt="Kubernetes"],
.trust-logos img[alt="OpenShift"] { height: 60px; }
.trust-logos img:hover {
transform: translateY(-5px) scale(1.16);
filter: drop-shadow(0 10px 24px rgba(46,197,255,0.4));
}
/* ===================== Sections ===================== */
.section { max-width: var(--maxw); margin: 0 auto; padding: 48px 24px 52px; }
.trustbar + .section { padding-top: 68px; }
.section-head { max-width: 760px; margin-bottom: 36px; }
.kicker { font-family: var(--mono); font-size: 13px; color: var(--cyan); letter-spacing: 0.02em; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); margin-top: 12px; font-weight: 700; }
.section-lead { color: var(--muted); font-size: 17px; margin-top: 16px; }
/* Flow */
.flow {
display: flex; align-items: stretch; gap: 6px; flex-wrap: wrap;
margin-bottom: 28px;
}
.flow-node {
flex: 1; min-width: 200px;
background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
padding: 22px; transition: transform .3s, border-color .3s, box-shadow .3s;
}
.flow-node.highlight { border-color: rgba(255,140,26,0.5); box-shadow: 0 0 0 1px rgba(255,140,26,0.15), 0 12px 40px rgba(255,140,26,0.08); }
.flow-node.highlight-green { border-color: rgba(55,214,122,0.5); box-shadow: 0 0 0 1px rgba(55,214,122,0.15), 0 12px 40px rgba(55,214,122,0.08); }
.flow-node:hover { transform: translateY(-4px); border-color: var(--cyan); }
.flow-icon { width: 42px; height: 42px; color: var(--cyan); margin-bottom: 14px; }
.flow-node.highlight .flow-icon { color: var(--orange); }
.flow-node.highlight-green .flow-icon { color: var(--green); }
.flow-icon svg { width: 100%; height: 100%; }
.flow-node h3 { font-family: var(--mono); font-size: 15px; color: var(--muted); font-weight: 600; }
.flow-node p { margin: 8px 0 0; color: var(--text); font-size: 15px; }
.flow-arrow { align-self: center; width: 26px; height: 2px; background: linear-gradient(90deg, var(--line), var(--cyan)); position: relative; flex: 0 0 auto; }
.flow-arrow::after { content: ''; position: absolute; right: -1px; top: -3px; border-left: 7px solid var(--cyan); border-top: 4px solid transparent; border-bottom: 4px solid transparent; }
.arch-card {
border: 1px solid var(--line); border-radius: 18px; padding: 18px 22px;
background:
radial-gradient(700px 260px at 20% 0%, rgba(46,197,255,0.06), transparent 70%),
radial-gradient(600px 260px at 85% 100%, rgba(255,140,26,0.06), transparent 70%),
var(--bg-2);
}
.arch-svg { display: block; width: 100%; height: auto; font-family: var(--mono); }
/* cards / boxes */
.arch-svg .card { fill: var(--panel); stroke: var(--line); stroke-width: 1.4; }
.arch-svg .card.accent { stroke: rgba(255,140,26,0.55); fill: #12101a; }
.arch-svg .card.monitor { stroke: rgba(55,214,122,0.55); fill: #0d1218; }
.arch-svg .mini { fill: #04060b; stroke: var(--line); stroke-width: 1; }
.arch-svg .subbox { fill: rgba(46,197,255,0.05); stroke: var(--line); stroke-width: 1; }
.arch-svg .doc rect { fill: rgba(255,140,26,0.06); stroke: rgba(255,140,26,0.28); stroke-width: 1; }
/* text */
.arch-svg text { fill: var(--text); }
.arch-svg .chip-t { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; }
.arch-svg .sub-t { font-size: 14px; font-weight: 600; }
.arch-svg .sub-d { font-size: 11px; fill: var(--muted); }
.arch-svg .code { font-size: 12px; fill: var(--text); }
.arch-svg .code .kk, .arch-svg .kk { fill: #ff8ab3; }
.arch-svg .nn { fill: var(--text); }
.arch-svg .fnn { fill: var(--cyan); }
.arch-svg .foot { font-size: 11px; fill: var(--muted-2); }
.arch-svg .doc text { font-size: 12px; fill: var(--text); }
.arch-svg .lbl { font-size: 11.5px; font-weight: 600; letter-spacing: 0.03em; }
.arch-svg .cyt { fill: var(--cyan); }
.arch-svg .ort { fill: var(--orange); }
.arch-svg .grt, .arch-svg .grtx { fill: var(--green); }
.arch-svg .prov { font-size: 12px; fill: var(--muted); }
.arch-svg .prov-lbl { font-size: 12px; }
.arch-svg .divider { stroke: var(--line-soft); stroke-width: 1; }
/* flow lines */
.arch-svg .fl { fill: none; stroke-width: 2; stroke-dasharray: 6 6; stroke-linecap: round; }
.arch-svg .fl.cy { stroke: var(--cyan); animation: archDash 0.9s linear infinite; }
.arch-svg .fl.or { stroke: var(--orange); animation: archDash 1.1s linear infinite; }
.arch-svg .fl.gr { stroke: var(--green); animation: archDashRev 1.3s linear infinite; }
.arch-svg .fl.gr.gr-fwd { animation: archDash 1.3s linear infinite; }
.arch-svg .fl.dim { opacity: 0.5; }
@keyframes archDash { to { stroke-dashoffset: -24; } }
@keyframes archDashRev { to { stroke-dashoffset: 24; } }
/* worker cells */
.arch-svg .aw { fill: rgba(120,140,170,0.16); }
.arch-svg .aw.lit { fill: var(--orange); animation: archPulse 1.8s ease-in-out infinite; }
@keyframes archPulse { 0%,100% { fill: rgba(255,140,26,0.35); } 50% { fill: rgba(255,140,26,1); } }
@media (prefers-reduced-motion: reduce) {
.arch-svg .fl, .arch-svg .aw.lit { animation: none !important; }
.arch-svg .aw.lit { fill: rgba(255,140,26,0.8); }
}
/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
padding: 26px; transition: transform .25s, border-color .25s, background .25s;
position: relative; overflow: hidden;
}
.feature::before {
content: ''; position: absolute; inset: 0;
background: radial-gradient(300px 120px at 0% 0%, rgba(46,197,255,0.08), transparent 60%);
opacity: 0; transition: opacity .3s;
}
.feature:hover { transform: translateY(-4px); border-color: var(--cyan); }
.feature:hover::before { opacity: 1; }
.f-ico { font-size: 26px; margin-bottom: 14px; }
.feature h3 { font-size: 19px; margin-bottom: 8px; font-weight: 600; }
.feature p { color: var(--muted); font-size: 15px; margin: 0; }
.feature code { color: var(--orange); font-size: 13px; background: rgba(255,140,26,0.08); padding: 1px 5px; border-radius: 5px; }
/* Code section */
.code-wrap { display: grid; grid-template-columns: 1fr; gap: 18px; }
.code-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.code-tab {
font-family: var(--mono); font-size: 13.5px; color: var(--muted);
background: var(--panel); border: 1px solid var(--line); border-radius: 9px;
padding: 9px 15px; cursor: pointer; transition: .2s;
}
.code-tab:hover { color: var(--text); }
.code-tab.active { color: var(--cyan); border-color: var(--cyan); background: rgba(46,197,255,0.06); }
.code-wrap .editor, .code-wrap .code-side { min-width: 0; }
.code-wrap { grid-template-columns: 1.6fr 1fr; align-items: start; }
.code-tabs { grid-column: 1 / -1; }
.editor { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.editor-bar { display: flex; align-items: center; gap: 7px; padding: 12px 15px; border-bottom: 1px solid var(--line); background: var(--panel-2); }
.tl { width: 11px; height: 11px; border-radius: 50%; }
.tl-r { background: #ff5f57; } .tl-y { background: #febc2e; } .tl-g { background: #28c840; }
.editor-file { margin-left: 10px; font-family: var(--mono); font-size: 12.5px; color: var(--muted-2); }
.code-pane { display: none; margin: 0; padding: 22px 24px; font-size: 14px; line-height: 1.7; overflow-x: auto; }
.code-pane.active { display: block; }
.code-pane .c { color: var(--muted-2); font-style: italic; }
.code-pane .k { color: #ff8ab3; }
.code-pane .fn { color: var(--cyan); }
.code-pane .s { color: #9ae86b; }
.code-pane .n { color: var(--orange); }
.code-side { display: flex; flex-direction: column; gap: 16px; }
.run-panel { background: #04060b; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.run-head { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: var(--panel-2); }
.run-title { margin-left: 8px; font-family: var(--mono); font-size: 12px; color: var(--muted-2); }
.run-body { padding: 16px; font-family: var(--mono); font-size: 13px; min-height: 210px; }
.run-line { color: var(--text); white-space: pre-wrap; margin-bottom: 4px; }
.run-line.dim { color: var(--muted); }
.run-line.ok { color: var(--green); }
.run-line.acc { color: var(--cyan); }
.run-cursor { display: inline-block; width: 8px; height: 15px; background: var(--cyan); vertical-align: -2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.code-note { color: var(--muted); font-size: 14px; margin: 0; }
.code-note code { color: var(--cyan); font-size: 12.5px; }
/* Backends */
.backend-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.backend-col { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: border-color .25s; }
.backend-col:hover { border-color: var(--cyan); }
.backend-col h4 { font-size: 13px; font-family: var(--mono); color: var(--orange); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; }
.backend-col ul { list-style: none; margin: 0; padding: 0; }
.backend-col li { color: var(--muted); font-size: 14.5px; padding: 5px 0; border-bottom: 1px solid var(--line-soft); }
.backend-col li:last-child { border-bottom: 0; }
/* Use cases */
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.uc { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .25s, border-color .25s; }
.uc:hover { transform: translateY(-4px); border-color: var(--orange); }
.uc-tag { font-size: 26px; }
.uc h3 { font-size: 18px; margin: 12px 0 8px; font-weight: 600; }
.uc p { color: var(--muted); font-size: 14.5px; margin: 0; }
/* CTA */
.cta { max-width: var(--maxw); margin: 0 auto; padding: 20px 24px 100px; }
.cta-card {
text-align: center; border-radius: 22px; padding: 64px 32px;
border: 1px solid var(--line);
background:
radial-gradient(600px 300px at 50% 0%, rgba(46,197,255,0.12), transparent 70%),
radial-gradient(500px 260px at 50% 120%, rgba(255,140,26,0.10), transparent 70%),
var(--bg-2);
}
.cta-card h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 700; }
.cta-card p { color: var(--muted); font-size: 18px; margin: 16px auto 0; max-width: 520px; }
.cta-cmd {
margin: 30px auto 0; display: inline-flex; align-items: center; gap: 10px;
background: #04060b; border: 1px solid var(--line); border-radius: 11px; padding: 12px 12px 12px 18px;
}
.cta-cmd code { font-size: 15px; }
.cta-actions { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
/* Footer */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 56px 24px 32px; display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; }
.footer-brand .brand-mark { height: 34px; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; margin: 0; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h5 { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--muted); font-size: 14.5px; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; padding: 22px 24px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--mono); font-size: 12.5px; color: var(--muted-2); }
/* Reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
/* ===================== Responsive ===================== */
@media (max-width: 940px) {
.hero { grid-template-columns: 1fr; padding-top: 40px; }
.hero-logo img { height: 64px; }
.hero-viz { order: -1; align-self: stretch; min-height: 380px; aspect-ratio: 1 / 1.05; }
.feature-grid, .uc-grid { grid-template-columns: repeat(2, 1fr); }
.backend-grid { grid-template-columns: repeat(2, 1fr); }
.code-wrap { grid-template-columns: 1fr; }
.footer-inner { grid-template-columns: 1fr; }
.trust-logos { grid-template-columns: repeat(3, auto); }
.nav-links { display: none; }
.nav-burger { display: flex; }
.nav-links.open { display: flex; position: absolute; top: 60px; left: 0; right: 0; flex-direction: column; background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 18px 24px; gap: 18px; }
}
@media (max-width: 560px) {
.feature-grid, .uc-grid, .backend-grid { grid-template-columns: 1fr; }
.trust-logos { grid-template-columns: repeat(2, auto); }
.flow-arrow { display: none; }
.hero-stats { gap: 24px; }
.nav-cta .ghost-btn { display: none; }
.footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
* { animation: none !important; scroll-behavior: auto; }
.reveal { opacity: 1; transform: none; }
.viz-progress-fill { transition: none; }
.viz-progress-fill::after { display: none; }
}