@rndev77/suzu-ai 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/style.css ADDED
@@ -0,0 +1,2704 @@
1
+ /* SUZU widget styles — panel / composer / product */
2
+
3
+ /* SUZU vibe overlay — warm crimson / amber mesh + glass, Saasavo layout kept */
4
+ :root {
5
+ --theme-primary: #FF8A3D;
6
+ --theme-color4: #FF9F31;
7
+ --link-color: #FF8A3D;
8
+ --link-hover-color: #FFB067;
9
+ --suzu-glass: rgba(255, 255, 255, 0.08);
10
+ --suzu-glass-border: rgba(255, 255, 255, 0.38);
11
+ --suzu-lg-fill: linear-gradient(180deg, rgba(255,255,255,.20) 0%, rgba(255,255,255,.06) 22%, rgba(18, 10, 12, .34) 100%);
12
+ --suzu-lg-blur: blur(28px) saturate(180%);
13
+ --suzu-lg-shadow:
14
+ 0 10px 40px rgba(0,0,0,.30),
15
+ inset 0 1px 0 rgba(255,255,255,.58),
16
+ inset 0 -1px 0 rgba(255,255,255,.08),
17
+ inset 1px 0 0 rgba(255,255,255,.10);
18
+ }
19
+
20
+ html.suzu-page-lock {
21
+ scroll-behavior: auto !important;
22
+ scroll-padding-top: 0 !important;
23
+ }
24
+
25
+ /* Apple liquid glass — shared material */
26
+ .saasavo-header-area .auto-container,
27
+ .header-btn a,
28
+ .single-feature-box,
29
+ .single-process-box,
30
+ .pricing-single-item,
31
+ .tab_container,
32
+ .suzu-connect,
33
+ .suzu-ui,
34
+ .suzu-ios-nav,
35
+ .suzu-sheet__card,
36
+ .banner-section-three .banner-content-wrap .banner-content h5 {
37
+ isolation: isolate;
38
+ background: var(--suzu-lg-fill) !important;
39
+ border: 1px solid var(--suzu-glass-border) !important;
40
+ box-shadow: var(--suzu-lg-shadow) !important;
41
+ -webkit-backdrop-filter: var(--suzu-lg-blur);
42
+ backdrop-filter: var(--suzu-lg-blur);
43
+ }
44
+
45
+ @property --suzu-angle {
46
+ syntax: "<angle>";
47
+ inherits: true;
48
+ initial-value: 0deg;
49
+ }
50
+
51
+ .suzu-glow {
52
+ --suzu-angle: 0deg;
53
+ --suzu-ring-neutral: #1a1012;
54
+ --suzu-ring-crimson: rgba(168, 28, 48, 0.72);
55
+ --suzu-ring-amber: rgba(255, 138, 61, 0.88);
56
+ --suzu-ring-gold: rgba(255, 210, 122, 0.72);
57
+ --suzu-ring-violet: rgba(192, 132, 252, 0.58);
58
+ --suzu-ring: conic-gradient(
59
+ from var(--suzu-angle) at 50% 50%,
60
+ var(--suzu-ring-neutral) 0deg,
61
+ var(--suzu-ring-neutral) 70deg,
62
+ var(--suzu-ring-crimson) 105deg,
63
+ var(--suzu-ring-amber) 145deg,
64
+ var(--suzu-ring-neutral) 200deg,
65
+ var(--suzu-ring-gold) 250deg,
66
+ var(--suzu-ring-violet) 295deg,
67
+ rgba(122, 18, 28, 0.88) 330deg,
68
+ var(--suzu-ring-neutral) 1turn
69
+ );
70
+ position: relative;
71
+ display: block;
72
+ box-sizing: border-box;
73
+ width: 100%;
74
+ max-width: 560px;
75
+ padding: 2px;
76
+ margin: 0 0 4px;
77
+ border-radius: 999px;
78
+ background: none;
79
+ animation: suzu-rotate-gradient 10s linear infinite;
80
+ }
81
+
82
+ .suzu-glow::before {
83
+ content: "";
84
+ position: absolute;
85
+ inset: 0;
86
+ z-index: 0;
87
+ border-radius: inherit;
88
+ background: var(--suzu-ring);
89
+ pointer-events: none;
90
+ padding: 2px;
91
+ -webkit-mask:
92
+ linear-gradient(#000 0 0) content-box,
93
+ linear-gradient(#000 0 0);
94
+ -webkit-mask-composite: xor;
95
+ mask:
96
+ linear-gradient(#000 0 0) content-box,
97
+ linear-gradient(#000 0 0);
98
+ mask-composite: exclude;
99
+ filter: drop-shadow(0 0 8px rgba(255, 138, 61, 0.28));
100
+ }
101
+
102
+ .suzu-glow:focus-within {
103
+ --suzu-ring-crimson: rgba(196, 40, 62, 0.92);
104
+ --suzu-ring-amber: rgba(255, 176, 103, 1);
105
+ --suzu-ring-gold: rgba(255, 220, 150, 0.92);
106
+ --suzu-ring-violet: rgba(216, 180, 254, 0.78);
107
+ animation-duration: 8s;
108
+ }
109
+
110
+ .suzu-glow:focus-within::before {
111
+ filter: drop-shadow(0 0 10px rgba(255, 176, 103, 0.4));
112
+ }
113
+
114
+ @keyframes suzu-rotate-gradient {
115
+ to { --suzu-angle: 360deg; }
116
+ }
117
+
118
+ .suzu-glow--composer {
119
+ width: auto;
120
+ max-width: none;
121
+ margin: 0 16px 2px;
122
+ box-sizing: border-box;
123
+ }
124
+
125
+ .suzu-glow--quiet {
126
+ pointer-events: none;
127
+ user-select: none;
128
+ --suzu-ring-crimson: rgba(168, 28, 48, 0.16);
129
+ --suzu-ring-amber: rgba(255, 138, 61, 0.2);
130
+ --suzu-ring-gold: rgba(255, 210, 122, 0.14);
131
+ --suzu-ring-violet: rgba(192, 132, 252, 0.1);
132
+ --suzu-ring: conic-gradient(
133
+ from var(--suzu-angle) at 50% 50%,
134
+ var(--suzu-ring-neutral) 0deg,
135
+ var(--suzu-ring-neutral) 70deg,
136
+ var(--suzu-ring-crimson) 105deg,
137
+ var(--suzu-ring-amber) 145deg,
138
+ var(--suzu-ring-neutral) 200deg,
139
+ var(--suzu-ring-gold) 250deg,
140
+ var(--suzu-ring-violet) 295deg,
141
+ rgba(122, 18, 28, 0.14) 330deg,
142
+ var(--suzu-ring-neutral) 1turn
143
+ );
144
+ }
145
+
146
+ .suzu-glow--quiet::before {
147
+ opacity: .22;
148
+ filter: drop-shadow(0 0 2px rgba(255, 138, 61, 0.06));
149
+ }
150
+
151
+ .suzu-glow--quiet:focus-within,
152
+ .suzu-glow--quiet.is-typing {
153
+ --suzu-ring-crimson: rgba(168, 28, 48, 0.2);
154
+ --suzu-ring-amber: rgba(255, 138, 61, 0.26);
155
+ --suzu-ring-gold: rgba(255, 210, 122, 0.18);
156
+ --suzu-ring-violet: rgba(192, 132, 252, 0.12);
157
+ animation-duration: 10s;
158
+ }
159
+
160
+ .suzu-glow--quiet:focus-within::before,
161
+ .suzu-glow--quiet.is-typing::before {
162
+ opacity: .32;
163
+ filter: drop-shadow(0 0 3px rgba(255, 138, 61, 0.1));
164
+ }
165
+
166
+ .suzu-glow--quiet .suzu-glow__inner input {
167
+ cursor: default;
168
+ caret-color: transparent;
169
+ color: rgba(255,255,255,.72);
170
+ }
171
+
172
+ .suzu-glow--quiet.is-typing .suzu-glow__inner input {
173
+ color: #fff;
174
+ }
175
+
176
+ .suzu-glow--quiet .suzu-glow__inner button {
177
+ cursor: default;
178
+ }
179
+
180
+ .suzu-glow--quiet.is-sending .suzu-glow__inner button {
181
+ transform: scale(.94);
182
+ filter: brightness(1.08);
183
+ }
184
+
185
+ .suzu-glow--field {
186
+ max-width: none;
187
+ border-radius: 18px;
188
+ margin: 0 0 12px;
189
+ padding: 1.5px;
190
+ overflow: hidden;
191
+ }
192
+
193
+ .suzu-glow--field::before,
194
+ .suzu-glow--field:focus-within::before {
195
+ padding: 1.5px;
196
+ filter: none;
197
+ }
198
+
199
+ .suzu-glow--area {
200
+ border-radius: 22px;
201
+ }
202
+
203
+ .suzu-glow__inner {
204
+ position: relative;
205
+ z-index: 1;
206
+ display: flex;
207
+ align-items: center;
208
+ gap: 12px;
209
+ padding: 6px 6px 6px 22px;
210
+ border-radius: inherit;
211
+ overflow: hidden;
212
+ background: rgba(16, 10, 12, 0.62);
213
+ -webkit-backdrop-filter: blur(20px) saturate(150%);
214
+ backdrop-filter: blur(20px) saturate(150%);
215
+ }
216
+
217
+ .suzu-glow__inner input,
218
+ .suzu-glow--field input,
219
+ .suzu-glow--field textarea {
220
+ flex: 1;
221
+ width: 100%;
222
+ background: transparent;
223
+ border: 0;
224
+ outline: none;
225
+ color: #fff;
226
+ font-size: 16px;
227
+ padding: 12px 0;
228
+ margin: 0;
229
+ text-transform: none;
230
+ -webkit-text-security: none;
231
+ }
232
+
233
+ .suzu-glow--field input,
234
+ .suzu-glow--field textarea {
235
+ display: block;
236
+ position: relative;
237
+ z-index: 1;
238
+ background: #141012 !important;
239
+ -webkit-backdrop-filter: none !important;
240
+ backdrop-filter: none !important;
241
+ border-radius: 16.5px;
242
+ padding: 14px 18px;
243
+ }
244
+
245
+ .suzu-glow--area input,
246
+ .suzu-glow--area textarea {
247
+ border-radius: 20.5px;
248
+ }
249
+
250
+ .suzu-glow--field textarea {
251
+ min-height: 120px;
252
+ resize: vertical;
253
+ }
254
+
255
+ .suzu-glow__inner input::placeholder,
256
+ .suzu-glow--field input::placeholder,
257
+ .suzu-glow--field textarea::placeholder {
258
+ color: rgba(255,255,255,.5);
259
+ }
260
+
261
+ .suzu-glow__inner button {
262
+ position: relative;
263
+ isolation: isolate;
264
+ overflow: hidden;
265
+ width: 48px;
266
+ height: 48px;
267
+ border: 1px solid rgba(255, 220, 170, 0.38);
268
+ border-radius: 50%;
269
+ background:
270
+ radial-gradient(circle at 36% 28%, rgba(255, 236, 210, 0.42), transparent 46%),
271
+ linear-gradient(165deg, #FFB067 0%, #E85C1C 52%, #9B1C32 100%);
272
+ color: #fff;
273
+ cursor: pointer;
274
+ box-shadow:
275
+ 0 3px 12px rgba(155, 28, 50, 0.38),
276
+ inset 0 1px 0 rgba(255, 255, 255, 0.42),
277
+ inset 0 -3px 8px rgba(80, 12, 22, 0.28);
278
+ display: grid;
279
+ place-items: center;
280
+ flex: 0 0 48px;
281
+ padding: 0;
282
+ animation: suzu-orb-breathe 3.8s ease-in-out infinite;
283
+ }
284
+
285
+ .suzu-glow__inner button:hover {
286
+ filter: brightness(1.06);
287
+ }
288
+
289
+ .suzu-glow__inner button img {
290
+ position: relative;
291
+ z-index: 1;
292
+ width: 22px;
293
+ height: 24px;
294
+ display: block;
295
+ object-fit: contain;
296
+ transform-origin: 50% 12%;
297
+ filter: drop-shadow(0 1px 1px rgba(80, 10, 18, 0.45));
298
+ animation: suzu-bell-sway 3.6s ease-in-out infinite;
299
+ }
300
+
301
+ @keyframes suzu-orb-breathe {
302
+ 0%, 100% {
303
+ box-shadow:
304
+ 0 3px 12px rgba(155, 28, 50, 0.38),
305
+ inset 0 1px 0 rgba(255, 255, 255, 0.42),
306
+ inset 0 -3px 8px rgba(80, 12, 22, 0.28);
307
+ }
308
+ 50% {
309
+ box-shadow:
310
+ 0 4px 16px rgba(255, 138, 61, 0.42),
311
+ inset 0 1px 0 rgba(255, 255, 255, 0.7),
312
+ inset 0 0 14px rgba(255, 210, 140, 0.32),
313
+ inset 0 -3px 8px rgba(80, 12, 22, 0.28);
314
+ }
315
+ }
316
+
317
+ @keyframes suzu-bell-sway {
318
+ 0%, 100% { transform: translateY(0.5px) rotate(-5deg); }
319
+ 50% { transform: translateY(0.5px) rotate(5deg); }
320
+ }
321
+
322
+ @media (prefers-reduced-motion: reduce) {
323
+ .suzu-glow,
324
+ .suzu-dock .suzu-glow--dock { animation: none; }
325
+ .suzu-glow::before { filter: none; }
326
+ }
327
+
328
+ @keyframes suzu-card-shine {
329
+ 0%, 62% { transform: translateX(-120%); }
330
+ 78% { transform: translateX(120%); }
331
+ 100% { transform: translateX(120%); }
332
+ }
333
+
334
+ @keyframes suzu-dot-bounce {
335
+ 0%, 80%, 100% { transform: translateY(0); opacity: .45; }
336
+ 40% { transform: translateY(-4px); opacity: 1; }
337
+ }
338
+
339
+ .suzu-form .suzu-glow--field:last-of-type { margin-bottom: 16px; }
340
+
341
+ .suzu-form .suzu-glow {
342
+ animation: none;
343
+ padding: 0;
344
+ }
345
+
346
+ .suzu-form .suzu-glow::before {
347
+ content: none !important;
348
+ display: none !important;
349
+ animation: none !important;
350
+ filter: none !important;
351
+ }
352
+
353
+ .suzu-form .suzu-glow--field input,
354
+ .suzu-form .suzu-glow--field textarea {
355
+ border: 1px solid rgba(255,255,255,.16);
356
+ box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
357
+ }
358
+
359
+ .suzu-form .suzu-glow--field:focus-within input,
360
+ .suzu-form .suzu-glow--field:focus-within textarea {
361
+ border-color: rgba(255, 186, 90, 0.4);
362
+ box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 1px rgba(255, 138, 61, 0.16);
363
+ }
364
+
365
+ @keyframes suzu-send-breathe {
366
+ 0%, 100% { box-shadow: 0 8px 22px rgba(255, 138, 61, 0.2); }
367
+ 50% { box-shadow: 0 10px 28px rgba(255, 138, 61, 0.4); }
368
+ }
369
+
370
+ .suzu-ui {
371
+ display: grid;
372
+ grid-template-columns: 300px 1fr;
373
+ gap: 0;
374
+ position: relative;
375
+ max-width: 1080px;
376
+ margin: 0 auto;
377
+ overflow: hidden;
378
+ border-radius: 28px;
379
+ }
380
+
381
+ .suzu-ui__chats,
382
+ .suzu-ui__main {
383
+ border-radius: 0;
384
+ background: none !important;
385
+ border: 0 !important;
386
+ box-shadow: none !important;
387
+ -webkit-backdrop-filter: none !important;
388
+ backdrop-filter: none !important;
389
+ isolation: auto;
390
+ }
391
+
392
+ .suzu-ui__chats {
393
+ padding: 18px 14px 16px;
394
+ display: flex;
395
+ flex-direction: column;
396
+ gap: 6px;
397
+ min-height: 520px;
398
+ border-right: 0 !important;
399
+ box-shadow: 1px 0 0 rgba(255,255,255,.14) !important;
400
+ }
401
+
402
+ .suzu-ui__chats-head {
403
+ display: flex;
404
+ justify-content: space-between;
405
+ align-items: center;
406
+ padding: 4px 8px 14px;
407
+ margin-bottom: 4px;
408
+ border-bottom: 1px solid rgba(255,255,255,.08);
409
+ }
410
+
411
+ .suzu-ui__chats-title {
412
+ font-size: 13px;
413
+ font-weight: 650;
414
+ letter-spacing: .08em;
415
+ text-transform: uppercase;
416
+ color: rgba(255,255,255,.72);
417
+ }
418
+
419
+ .suzu-ui__new {
420
+ width: 32px;
421
+ height: 32px;
422
+ border: 1px solid rgba(255,255,255,.14);
423
+ background: rgba(255,255,255,.08);
424
+ color: #fff;
425
+ border-radius: 50%;
426
+ padding: 0;
427
+ display: grid;
428
+ place-items: center;
429
+ cursor: pointer;
430
+ }
431
+
432
+ .suzu-ui__new svg { width: 14px; height: 14px; display: block; }
433
+
434
+ .suzu-ui__new:hover {
435
+ border-color: rgba(255, 186, 90, .5);
436
+ background: rgba(255, 138, 61, 0.18);
437
+ }
438
+
439
+ .suzu-ui__chat {
440
+ display: grid;
441
+ grid-template-columns: 40px minmax(0, 1fr);
442
+ align-items: center;
443
+ column-gap: 12px;
444
+ text-align: left;
445
+ background: transparent;
446
+ border: 0;
447
+ color: #fff;
448
+ padding: 10px 10px;
449
+ border-radius: 16px;
450
+ cursor: pointer;
451
+ width: 100%;
452
+ }
453
+
454
+ .suzu-ui__chat-meta {
455
+ min-width: 0;
456
+ display: flex;
457
+ flex-direction: column;
458
+ gap: 3px;
459
+ }
460
+
461
+ .suzu-ui__chat strong {
462
+ display: block;
463
+ font-size: 14px;
464
+ font-weight: 600;
465
+ line-height: 1.3;
466
+ color: #fff;
467
+ white-space: nowrap;
468
+ overflow: hidden;
469
+ text-overflow: ellipsis;
470
+ }
471
+
472
+ .suzu-ui__chat small {
473
+ display: block;
474
+ color: rgba(255,255,255,.48);
475
+ font-size: 12px;
476
+ line-height: 1.2;
477
+ }
478
+
479
+ .suzu-ui__chat:hover { background: rgba(255,255,255,.05); }
480
+
481
+ .suzu-ui__chat.is-active {
482
+ background: rgba(255, 138, 61, 0.14);
483
+ box-shadow: inset 0 0 0 1px rgba(255, 186, 90, 0.28);
484
+ }
485
+
486
+ .suzu-ui__chat.is-active small { color: rgba(255, 210, 122, .8); }
487
+
488
+ .suzu-ui__icon {
489
+ width: 40px;
490
+ height: 40px;
491
+ border-radius: 12px;
492
+ display: grid;
493
+ place-items: center;
494
+ background: rgba(255, 138, 61, 0.12);
495
+ border: 1px solid rgba(255, 176, 103, 0.28);
496
+ color: #FFB067;
497
+ }
498
+
499
+ .suzu-ui__icon svg { width: 18px; height: 18px; display: block; }
500
+
501
+ .suzu-ui__chat.is-active .suzu-ui__icon {
502
+ background: rgba(255, 138, 61, 0.28);
503
+ border-color: rgba(255, 186, 90, 0.5);
504
+ color: #FFD27A;
505
+ }
506
+
507
+ .suzu-ui__main {
508
+ display: flex;
509
+ flex-direction: column;
510
+ min-height: 520px;
511
+ padding: 0 0 14px;
512
+ }
513
+
514
+ .suzu-ui__bar {
515
+ display: flex;
516
+ justify-content: space-between;
517
+ align-items: center;
518
+ padding: 14px 16px;
519
+ font-weight: 600;
520
+ border-bottom: 1px solid rgba(255,255,255,.08);
521
+ }
522
+
523
+ .suzu-ui__close {
524
+ width: 28px;
525
+ height: 28px;
526
+ border-radius: 50%;
527
+ display: grid;
528
+ place-items: center;
529
+ color: rgba(255,255,255,.7);
530
+ font-size: 20px;
531
+ line-height: 1;
532
+ }
533
+
534
+ .suzu-ui__body {
535
+ flex: 1;
536
+ min-height: 0;
537
+ display: flex;
538
+ flex-direction: column;
539
+ align-items: center;
540
+ justify-content: center;
541
+ text-align: center;
542
+ padding: 24px 16px;
543
+ }
544
+
545
+ .suzu-ui__body.is-live {
546
+ align-items: stretch;
547
+ justify-content: flex-start;
548
+ text-align: left;
549
+ overflow-y: auto;
550
+ padding: 16px;
551
+ gap: 8px;
552
+ }
553
+
554
+ .suzu-ui__empty {
555
+ width: 100%;
556
+ display: flex;
557
+ flex-direction: column;
558
+ align-items: center;
559
+ }
560
+
561
+ .suzu-ui__empty h3,
562
+ .suzu-ui__body h3 {
563
+ font-size: 42px;
564
+ font-weight: 700;
565
+ margin: 0 0 8px;
566
+ color: #fff;
567
+ }
568
+
569
+ .suzu-ui__empty p,
570
+ .suzu-ui__body p {
571
+ margin: 0 0 28px;
572
+ color: rgba(255,255,255,.62);
573
+ font-size: 18px;
574
+ }
575
+
576
+ .suzu-ui__suggest {
577
+ display: flex;
578
+ flex-direction: column;
579
+ gap: 10px;
580
+ width: min(420px, 100%);
581
+ }
582
+
583
+ .suzu-ui__suggest button {
584
+ background: rgba(18, 10, 12, 0.55);
585
+ border: 1px solid rgba(255, 176, 103, 0.32);
586
+ box-shadow: 0 0 0 1px rgba(255, 138, 61, 0.08), 0 0 18px rgba(255, 138, 61, 0.12);
587
+ color: #fff;
588
+ border-radius: 999px;
589
+ padding: 12px 18px;
590
+ font-size: 14px;
591
+ cursor: default;
592
+ pointer-events: none;
593
+ }
594
+
595
+ .suzu-ui__suggest button.is-on {
596
+ border-color: rgba(255, 210, 122, 0.65);
597
+ box-shadow: 0 0 22px rgba(255, 138, 61, 0.22);
598
+ }
599
+
600
+ .suzu-ui__msg {
601
+ max-width: 88%;
602
+ padding: 10px 14px;
603
+ border-radius: 16px;
604
+ font-size: 14px;
605
+ line-height: 1.4;
606
+ color: #fff;
607
+ }
608
+
609
+ .suzu-ui__msg.me {
610
+ align-self: flex-end;
611
+ background: linear-gradient(180deg, rgba(255,138,61,.35), rgba(255,138,61,.18));
612
+ border: 1px solid rgba(255,186,90,.4);
613
+ }
614
+
615
+ .suzu-ui__msg.ai {
616
+ align-self: flex-start;
617
+ background: rgba(255,255,255,.08);
618
+ border: 1px solid rgba(255,255,255,.14);
619
+ }
620
+
621
+ .suzu-ui__typing {
622
+ display: flex;
623
+ gap: 5px;
624
+ align-items: center;
625
+ min-height: 18px;
626
+ }
627
+
628
+ .suzu-ui__typing i {
629
+ width: 6px;
630
+ height: 6px;
631
+ border-radius: 50%;
632
+ background: #FFD27A;
633
+ animation: suzu-dot-bounce .9s ease-in-out infinite;
634
+ }
635
+
636
+ .suzu-ui__typing i:nth-child(2) { animation-delay: .15s; }
637
+
638
+ .suzu-ui__typing i:nth-child(3) { animation-delay: .3s; }
639
+
640
+ @media (max-width: 1199px) {
641
+ .banner-section-three { min-height: auto; padding: 108px 0 28px !important; }
642
+ .banner-section-three .row > [class*="col-"] {
643
+ flex: 0 0 100%;
644
+ max-width: 100%;
645
+ width: 100%;
646
+ }
647
+ .suzu-ui { grid-template-columns: 1fr; }
648
+ .suzu-ui__chats {
649
+ display: flex;
650
+ flex-direction: row;
651
+ overflow-x: auto;
652
+ min-height: 0;
653
+ padding: 12px 12px 10px;
654
+ box-shadow: 0 1px 0 rgba(255,255,255,.14) !important;
655
+ gap: 8px;
656
+ }
657
+ .suzu-ui__chats-head { display: none; }
658
+ .suzu-ui__chat {
659
+ flex: 0 0 auto;
660
+ width: auto;
661
+ min-width: 196px;
662
+ }
663
+ .suzu-ui__main { min-height: 420px; }
664
+ }
665
+
666
+ @media (max-width: 1199px) {
667
+ html { scroll-padding-top: 88px; }
668
+ .page-wrapper { overflow-x: clip; }
669
+
670
+ body.suzu-sheet-open { overflow: hidden; }
671
+
672
+ .saasavo-header-area,
673
+ .mobile-menu-area,
674
+ .mean-container,
675
+ .mean-bar { display: none !important; }
676
+
677
+ .suzu-ios-nav { display: flex; }
678
+ .suzu-sheet { display: block; }
679
+
680
+ .suzu-ios-nav {
681
+ position: fixed;
682
+ top: 0;
683
+ left: 0;
684
+ right: 0;
685
+ z-index: 90;
686
+ align-items: center;
687
+ justify-content: space-between;
688
+ box-sizing: border-box;
689
+ min-height: calc(52px + max(10px, env(safe-area-inset-top, 0px)) + 10px);
690
+ padding: max(10px, env(safe-area-inset-top, 0px)) 20px 10px 28px;
691
+ border-radius: 0 !important;
692
+ background: none !important;
693
+ border: 0 !important;
694
+ box-shadow: none !important;
695
+ -webkit-backdrop-filter: none !important;
696
+ backdrop-filter: none !important;
697
+ isolation: auto;
698
+ }
699
+ .suzu-ios-nav::before {
700
+ content: "";
701
+ position: absolute;
702
+ top: max(10px, env(safe-area-inset-top, 0px));
703
+ left: 14px;
704
+ right: 14px;
705
+ height: 52px;
706
+ bottom: auto;
707
+ border-radius: 999px;
708
+ background: var(--suzu-lg-fill);
709
+ border: 1px solid var(--suzu-glass-border);
710
+ box-shadow: var(--suzu-lg-shadow);
711
+ -webkit-backdrop-filter: var(--suzu-lg-blur);
712
+ backdrop-filter: var(--suzu-lg-blur);
713
+ pointer-events: none;
714
+ z-index: 0;
715
+ }
716
+ .suzu-ios-nav__brand,
717
+ .suzu-ios-nav__btn {
718
+ position: relative;
719
+ z-index: 1;
720
+ }
721
+ .suzu-ios-nav__brand {
722
+ display: flex;
723
+ align-items: center;
724
+ gap: 8px;
725
+ color: #fff;
726
+ text-decoration: none;
727
+ font-weight: 700;
728
+ letter-spacing: .16em;
729
+ font-size: 14px;
730
+ line-height: 1;
731
+ }
732
+ .suzu-ios-nav__brand img { height: 24px; width: auto; display: block; }
733
+ .suzu-ios-nav__btn {
734
+ appearance: none;
735
+ border: 0;
736
+ width: 40px;
737
+ height: 40px;
738
+ padding: 0;
739
+ border-radius: 50%;
740
+ background: rgba(255,255,255,.16);
741
+ color: #fff;
742
+ display: grid;
743
+ place-items: center;
744
+ cursor: pointer;
745
+ }
746
+ .suzu-ios-nav__btn svg {
747
+ width: 22px;
748
+ height: 22px;
749
+ display: block;
750
+ }
751
+
752
+ .suzu-sheet {
753
+ display: block;
754
+ position: fixed;
755
+ inset: 0;
756
+ z-index: 120;
757
+ pointer-events: none;
758
+ }
759
+ .suzu-sheet.is-open { pointer-events: auto; }
760
+ .suzu-sheet__dim {
761
+ appearance: none;
762
+ border: 0;
763
+ position: absolute;
764
+ inset: 0;
765
+ background: rgba(0, 0, 0, 0.28);
766
+ -webkit-backdrop-filter: blur(10px) saturate(140%);
767
+ backdrop-filter: blur(10px) saturate(140%);
768
+ opacity: 0;
769
+ transition: opacity .32s ease;
770
+ }
771
+ .suzu-sheet.is-open .suzu-sheet__dim { opacity: 1; }
772
+ .suzu-sheet__card {
773
+ position: absolute;
774
+ left: 8px;
775
+ right: 8px;
776
+ bottom: max(8px, env(safe-area-inset-bottom));
777
+ border-radius: 28px;
778
+ padding: 6px 12px calc(16px + env(safe-area-inset-bottom));
779
+ transform: translateY(110%);
780
+ transition: transform .48s cubic-bezier(.32, .72, 0, 1);
781
+ touch-action: none;
782
+ user-select: none;
783
+ -webkit-user-select: none;
784
+ }
785
+ .suzu-sheet.is-open .suzu-sheet__card { transform: translateY(0); }
786
+ .suzu-sheet.is-dragging .suzu-sheet__card,
787
+ .suzu-sheet.is-dragging .suzu-sheet__dim { transition: none; }
788
+ .suzu-sheet__handle {
789
+ width: 36px;
790
+ height: 5px;
791
+ border-radius: 999px;
792
+ background: rgba(255,255,255,.32);
793
+ margin: 8px auto 10px;
794
+ }
795
+ .suzu-sheet__head {
796
+ display: flex;
797
+ align-items: center;
798
+ justify-content: space-between;
799
+ gap: 12px;
800
+ padding: 0 4px 12px;
801
+ }
802
+ .suzu-sheet__card h2 {
803
+ margin: 0;
804
+ font-size: 28px;
805
+ font-weight: 700;
806
+ letter-spacing: -0.03em;
807
+ color: #fff;
808
+ }
809
+ .suzu-sheet__x {
810
+ appearance: none;
811
+ border: 0;
812
+ width: 30px;
813
+ height: 30px;
814
+ border-radius: 50%;
815
+ background: rgba(255,255,255,.16);
816
+ color: rgba(255,255,255,.92);
817
+ display: grid;
818
+ place-items: center;
819
+ cursor: pointer;
820
+ padding: 0;
821
+ flex-shrink: 0;
822
+ }
823
+ .suzu-sheet__x svg { width: 14px; height: 14px; display: block; }
824
+ .suzu-sheet__list {
825
+ display: flex;
826
+ flex-direction: column;
827
+ overflow: hidden;
828
+ border-radius: 16px;
829
+ background: var(--suzu-lg-fill);
830
+ border: 1px solid rgba(255,255,255,.22);
831
+ box-shadow: inset 0 1px 0 rgba(255,255,255,.28);
832
+ -webkit-backdrop-filter: blur(18px) saturate(160%);
833
+ backdrop-filter: blur(18px) saturate(160%);
834
+ margin-bottom: 12px;
835
+ }
836
+ .suzu-sheet__list a {
837
+ display: flex;
838
+ align-items: center;
839
+ justify-content: space-between;
840
+ min-height: 50px;
841
+ padding: 0 16px;
842
+ color: #fff;
843
+ text-decoration: none;
844
+ font-size: 17px;
845
+ font-weight: 400;
846
+ letter-spacing: -0.02em;
847
+ box-shadow: inset 0 -0.5px 0 rgba(255,255,255,.12);
848
+ }
849
+ .suzu-sheet__list a:last-child { box-shadow: none; }
850
+ .suzu-sheet__list a::after {
851
+ content: "";
852
+ width: 7px;
853
+ height: 7px;
854
+ border-right: 1.8px solid rgba(255,255,255,.28);
855
+ border-bottom: 1.8px solid rgba(255,255,255,.28);
856
+ transform: rotate(-45deg);
857
+ margin-left: 10px;
858
+ flex-shrink: 0;
859
+ }
860
+ .suzu-sheet__cta {
861
+ display: flex;
862
+ align-items: center;
863
+ justify-content: center;
864
+ min-height: 50px;
865
+ border-radius: 14px;
866
+ background: #fff;
867
+ color: #1a0a08 !important;
868
+ text-decoration: none;
869
+ font-weight: 600;
870
+ font-size: 17px;
871
+ letter-spacing: -0.02em;
872
+ }
873
+
874
+ .auto-container { padding-left: 16px; padding-right: 16px; }
875
+
876
+ .banner-section-three .banner-content-wrap .banner-content h2 {
877
+ font-size: clamp(32px, 9vw, 42px) !important;
878
+ line-height: 1.12 !important;
879
+ }
880
+ .banner-section-three .banner-content-wrap .banner-content p {
881
+ width: 100% !important;
882
+ font-size: 16px !important;
883
+ line-height: 1.5 !important;
884
+ }
885
+ .suzu-chips { gap: 6px; }
886
+ .banner-section-three .banner-content-wrap .banner-content .suzu-chips a,
887
+ .suzu-chips a {
888
+ font-size: 12px !important;
889
+ padding: 6px 12px !important;
890
+ }
891
+ .suzu-glow { max-width: 100%; }
892
+
893
+ .suzu-orbit__node.n1 { left: 2%; }
894
+ .suzu-orbit__node.n3 { right: 2%; }
895
+ .suzu-orbit__node.n4 { left: 2%; }
896
+ .suzu-orbit__node.n5 { right: 2%; }
897
+
898
+ .sec-title .title,
899
+ .section-title .title {
900
+ font-size: clamp(28px, 8vw, 40px) !important;
901
+ line-height: 1.15 !important;
902
+ }
903
+
904
+ .suzu-feature-grid {
905
+ grid-template-columns: 1fr;
906
+ gap: 14px;
907
+ }
908
+ .feature-section-three .single-feature-box,
909
+ .feature-section-three .single-feature-box.two,
910
+ .feature-section-three .single-feature-box.three,
911
+ .feature-section-three .single-feature-box.four,
912
+ .suzu-connect,
913
+ .process-section-one .single-process-box {
914
+ border-radius: 28px !important;
915
+ min-height: 0 !important;
916
+ padding: 22px 20px !important;
917
+ }
918
+
919
+ .suzu-ios-rail {
920
+ display: flex !important;
921
+ flex-wrap: nowrap !important;
922
+ overflow-x: auto;
923
+ overflow-y: hidden;
924
+ gap: 12px !important;
925
+ margin: 0 -16px;
926
+ padding: 4px 16px 16px;
927
+ scroll-snap-type: x mandatory;
928
+ -webkit-overflow-scrolling: touch;
929
+ scrollbar-width: none;
930
+ }
931
+ .suzu-ios-rail::-webkit-scrollbar { display: none; }
932
+ .suzu-ios-rail > [class*="col-"] {
933
+ flex: 0 0 82%;
934
+ max-width: 82%;
935
+ scroll-snap-align: start;
936
+ }
937
+ .suzu-ios-rail .single-process-box,
938
+ .suzu-ios-rail .suzu-connect {
939
+ height: 100%;
940
+ }
941
+
942
+ .suzu-ui {
943
+ margin: 0;
944
+ }
945
+ .suzu-ui__main {
946
+ min-height: 420px;
947
+ border-radius: 28px;
948
+ }
949
+ .suzu-glow--composer {
950
+ margin: 0 12px 4px;
951
+ }
952
+ .suzu-ui__empty h3,
953
+ .suzu-ui__body h3 { font-size: 32px; }
954
+ .suzu-ui__suggest { width: 100%; }
955
+ .suzu-ui__suggest button { font-size: 13px; padding: 11px 14px; }
956
+
957
+ .suzu-viz--catalog { grid-template-columns: 1fr; }
958
+ .suzu-faq { border-radius: 24px; }
959
+ .suzu-faq summary { font-size: 16px; }
960
+
961
+ .contact-section-suzu { padding: 48px 0 40px; }
962
+ .suzu-form > button { width: 100%; justify-content: center; }
963
+ .main-footer-two { padding-bottom: 40px; }
964
+ .footer-automation-title .typing {
965
+ font-size: clamp(48px, 18vw, 96px);
966
+ }
967
+ .footer-menu ul {
968
+ display: flex;
969
+ flex-wrap: wrap;
970
+ justify-content: center;
971
+ gap: 8px 14px;
972
+ }
973
+ }
974
+
975
+ body.suzu-sheet-open .suzu-dock,
976
+ body.suzu-panel-open .suzu-dock {
977
+ opacity: 0 !important;
978
+ visibility: hidden !important;
979
+ pointer-events: none !important;
980
+ }
981
+
982
+ .suzu-dock .suzu-glow--dock {
983
+ width: 100%;
984
+ max-width: none;
985
+ margin: 0;
986
+ }
987
+
988
+ @media (max-width: 1199px) {
989
+ .suzu-dock {
990
+ left: 12px;
991
+ right: 12px;
992
+ width: auto;
993
+ max-width: calc(100vw - 24px);
994
+ bottom: max(12px, env(safe-area-inset-bottom));
995
+ padding: 0;
996
+ background: none;
997
+ border: 0;
998
+ box-shadow: none;
999
+ border-radius: 0;
1000
+ gap: 6px;
1001
+ }
1002
+ .suzu-dock__chips {
1003
+ flex-direction: column;
1004
+ flex-wrap: nowrap;
1005
+ align-items: flex-start;
1006
+ }
1007
+ .suzu-glow--dock,
1008
+ .suzu-glow--composer,
1009
+ .banner-section-three .suzu-glow {
1010
+ height: 52px;
1011
+ padding: 1.5px;
1012
+ box-sizing: border-box;
1013
+ }
1014
+ .suzu-dock .suzu-glow__inner,
1015
+ .banner-section-three .suzu-glow__inner,
1016
+ .suzu-glow--composer .suzu-glow__inner {
1017
+ min-height: 0;
1018
+ height: 100%;
1019
+ padding: 4px 4px 4px 20px;
1020
+ gap: 8px;
1021
+ box-sizing: border-box;
1022
+ }
1023
+ .suzu-dock .suzu-glow__inner input,
1024
+ .banner-section-three .suzu-glow__inner input,
1025
+ .suzu-glow--composer .suzu-glow__inner input {
1026
+ padding: 0 0 0 2px;
1027
+ font-size: 16px;
1028
+ line-height: 1.2;
1029
+ height: auto;
1030
+ min-width: 0;
1031
+ text-indent: 0;
1032
+ }
1033
+ .suzu-dock .suzu-glow__inner button,
1034
+ .banner-section-three .suzu-glow__inner button,
1035
+ .suzu-glow--composer .suzu-glow__inner button {
1036
+ width: 40px;
1037
+ height: 40px;
1038
+ flex-basis: 40px;
1039
+ flex: 0 0 40px;
1040
+ }
1041
+ .suzu-dock .suzu-glow__inner button img,
1042
+ .banner-section-three .suzu-glow__inner button img,
1043
+ .suzu-glow--composer .suzu-glow__inner button img {
1044
+ width: 18px;
1045
+ height: 20px;
1046
+ }
1047
+ }
1048
+
1049
+ html.suzu-page-lock,
1050
+ html.suzu-page-lock body,
1051
+ body.suzu-page-lock {
1052
+ overflow: hidden !important;
1053
+ overscroll-behavior: none !important;
1054
+ }
1055
+
1056
+ body.suzu-page-lock {
1057
+ position: fixed !important;
1058
+ left: 0;
1059
+ right: 0;
1060
+ width: 100%;
1061
+ }
1062
+
1063
+ .suzu-panel.is-open,
1064
+ .suzu-panel.is-open .suzu-panel__sheet {
1065
+ overscroll-behavior: none;
1066
+ }
1067
+
1068
+ .suzu-panel {
1069
+ --suzu-sheet-w: 340px;
1070
+ --suzu-chats-w: 220px;
1071
+ position: fixed !important;
1072
+ inset: 0 !important;
1073
+ z-index: 10050 !important;
1074
+ pointer-events: none;
1075
+ visibility: hidden;
1076
+ opacity: 0;
1077
+ overflow: hidden;
1078
+ }
1079
+
1080
+ .suzu-panel.is-open {
1081
+ visibility: visible !important;
1082
+ opacity: 1 !important;
1083
+ overflow: hidden;
1084
+ }
1085
+
1086
+ .suzu-panel.is-open .suzu-panel__sheet,
1087
+ .suzu-panel.is-open .suzu-panel__chats,
1088
+ .suzu-panel.is-open .suzu-panel__resize,
1089
+ .suzu-panel.is-open .suzu-panel__dim,
1090
+ .suzu-panel.is-open .suzu-panel__chats-dim {
1091
+ pointer-events: auto;
1092
+ }
1093
+
1094
+ .suzu-panel__dim {
1095
+ appearance: none;
1096
+ border: 0;
1097
+ position: absolute;
1098
+ inset: 0;
1099
+ background: rgba(0, 0, 0, 0.35);
1100
+ opacity: 0;
1101
+ transition: opacity .32s ease;
1102
+ }
1103
+
1104
+ .suzu-panel.is-open .suzu-panel__dim { opacity: 1; }
1105
+
1106
+ .suzu-panel__sheet {
1107
+ position: absolute;
1108
+ left: 0;
1109
+ top: 0;
1110
+ bottom: 0;
1111
+ z-index: 2;
1112
+ width: var(--suzu-sheet-w);
1113
+ max-width: 92vw;
1114
+ display: flex;
1115
+ flex-direction: row;
1116
+ align-items: stretch;
1117
+ overflow: hidden;
1118
+ isolation: isolate;
1119
+ background: rgba(12, 8, 10, 0.9) !important;
1120
+ border: 0 !important;
1121
+ border-right: 1px solid rgba(255,255,255,.2) !important;
1122
+ box-shadow: 16px 0 48px rgba(0,0,0,.4) !important;
1123
+ -webkit-backdrop-filter: blur(28px) saturate(160%);
1124
+ backdrop-filter: blur(28px) saturate(160%);
1125
+ transform: translateX(-105%);
1126
+ transition: transform .48s cubic-bezier(.32, .72, 0, 1), width .34s cubic-bezier(.32, .72, 0, 1);
1127
+ }
1128
+
1129
+ .suzu-panel.is-open .suzu-panel__sheet { transform: translateX(0) !important; }
1130
+
1131
+ @media (min-width: 1200px) {
1132
+ .suzu-panel.is-chats .suzu-panel__sheet {
1133
+ left: var(--suzu-chats-w);
1134
+ }
1135
+ }
1136
+
1137
+ .suzu-panel.is-resizing .suzu-panel__sheet { transition: none; }
1138
+
1139
+ .suzu-panel__grab { display: none; }
1140
+
1141
+ .suzu-panel__chats {
1142
+ display: none;
1143
+ position: absolute;
1144
+ left: 0;
1145
+ top: 0;
1146
+ bottom: 0;
1147
+ z-index: 6;
1148
+ width: var(--suzu-chats-w);
1149
+ flex-direction: column;
1150
+ padding: 10px 10px 12px;
1151
+ overflow-x: hidden;
1152
+ overflow-y: auto;
1153
+ transform: translateZ(0);
1154
+ border-radius: 0;
1155
+ background: rgba(12, 8, 10, 0.92) !important;
1156
+ border: 0 !important;
1157
+ border-right: 1px solid rgba(255,255,255,.16) !important;
1158
+ box-shadow: 12px 0 36px rgba(0,0,0,.38) !important;
1159
+ -webkit-backdrop-filter: blur(28px) saturate(160%) !important;
1160
+ backdrop-filter: blur(28px) saturate(160%) !important;
1161
+ }
1162
+
1163
+ .suzu-panel__chats::before,
1164
+ .suzu-panel__chats::after { display: none; }
1165
+
1166
+ .suzu-panel__chats > * {
1167
+ position: relative;
1168
+ z-index: 1;
1169
+ }
1170
+
1171
+ .suzu-panel.is-chats .suzu-panel__chats {
1172
+ display: flex;
1173
+ }
1174
+
1175
+ .suzu-panel__chats-dim {
1176
+ appearance: none;
1177
+ display: none;
1178
+ position: absolute;
1179
+ inset: 0;
1180
+ z-index: 4;
1181
+ border: 0;
1182
+ padding: 0;
1183
+ background: rgba(8, 4, 6, 0.22);
1184
+ -webkit-backdrop-filter: blur(10px) saturate(140%);
1185
+ backdrop-filter: blur(10px) saturate(140%);
1186
+ cursor: pointer;
1187
+ }
1188
+
1189
+ .suzu-panel__chats .suzu-ui__chat {
1190
+ display: flex;
1191
+ grid-template-columns: none;
1192
+ background: rgba(255,255,255,.08);
1193
+ border: 1px solid rgba(255,255,255,.14);
1194
+ box-shadow: none;
1195
+ margin-bottom: 5px;
1196
+ padding: 8px 10px;
1197
+ border-radius: 12px;
1198
+ font-size: 12.5px;
1199
+ }
1200
+
1201
+ .suzu-panel__chats .suzu-ui__chat .suzu-ui__icon { display: none; }
1202
+
1203
+ .suzu-panel__chats .suzu-ui__chat:hover {
1204
+ background: rgba(255,255,255,.12);
1205
+ border-color: rgba(255,255,255,.22);
1206
+ }
1207
+
1208
+ .suzu-panel__chats .suzu-ui__chat.is-active {
1209
+ background: linear-gradient(180deg, rgba(255,138,61,.32), rgba(255,138,61,.16));
1210
+ border-color: rgba(255,186,90,.42);
1211
+ box-shadow: none;
1212
+ }
1213
+
1214
+ .suzu-panel__chats .suzu-ui__chats-head {
1215
+ padding: 4px 2px 8px;
1216
+ margin-bottom: 4px;
1217
+ justify-content: flex-start;
1218
+ gap: 6px;
1219
+ border-bottom: 1px solid rgba(255,255,255,.1);
1220
+ }
1221
+
1222
+ .suzu-panel__chats .suzu-ui__chats-title {
1223
+ margin-right: auto;
1224
+ font-size: 14px;
1225
+ font-weight: 650;
1226
+ letter-spacing: 0;
1227
+ text-transform: none;
1228
+ color: #fff;
1229
+ }
1230
+
1231
+ .suzu-panel__chats .suzu-ui__new {
1232
+ background: rgba(255,255,255,.1);
1233
+ border: 1px solid rgba(255,255,255,.16);
1234
+ }
1235
+
1236
+ .suzu-panel__chats-x {
1237
+ appearance: none;
1238
+ border: 0;
1239
+ margin-left: 0;
1240
+ width: 32px;
1241
+ height: 32px;
1242
+ border-radius: 50%;
1243
+ background: rgba(255,255,255,.12);
1244
+ color: #fff;
1245
+ cursor: pointer;
1246
+ font-size: 18px;
1247
+ line-height: 1;
1248
+ }
1249
+
1250
+ .suzu-panel__main {
1251
+ flex: 1 1 auto;
1252
+ min-width: 260px;
1253
+ display: flex;
1254
+ flex-direction: column;
1255
+ height: 100%;
1256
+ }
1257
+
1258
+ .suzu-panel__bar {
1259
+ gap: 6px;
1260
+ justify-content: flex-start;
1261
+ padding: 6px 8px;
1262
+ min-height: 0;
1263
+ }
1264
+
1265
+ .suzu-panel__title {
1266
+ flex: 1;
1267
+ min-width: 0;
1268
+ font-size: 15px;
1269
+ font-weight: 600;
1270
+ letter-spacing: -0.01em;
1271
+ }
1272
+
1273
+ .suzu-panel__burger {
1274
+ appearance: none;
1275
+ border: 0;
1276
+ background: none;
1277
+ color: #fff;
1278
+ width: 32px;
1279
+ height: 32px;
1280
+ padding: 0;
1281
+ margin: 0;
1282
+ display: grid;
1283
+ place-items: center;
1284
+ cursor: pointer;
1285
+ opacity: .9;
1286
+ flex-shrink: 0;
1287
+ }
1288
+
1289
+ .suzu-panel__burger svg { width: 20px; height: 20px; display: block; }
1290
+
1291
+ .suzu-panel__burger:hover { opacity: 1; }
1292
+
1293
+ .suzu-panel.is-chats .suzu-panel__burger { display: none; }
1294
+
1295
+ .suzu-panel__sheet .suzu-ui__bar {
1296
+ flex-shrink: 0;
1297
+ padding: 8px 10px;
1298
+ min-height: 42px;
1299
+ border-bottom: 1px solid rgba(255,255,255,.06);
1300
+ }
1301
+
1302
+ .suzu-panel__sheet .suzu-ui__close {
1303
+ appearance: none;
1304
+ border: 0;
1305
+ background: rgba(255,255,255,.12);
1306
+ cursor: pointer;
1307
+ margin-left: auto;
1308
+ width: 28px;
1309
+ height: 28px;
1310
+ font-size: 18px;
1311
+ }
1312
+
1313
+ .suzu-panel__thread {
1314
+ flex: 1;
1315
+ min-height: 0;
1316
+ overflow-x: hidden;
1317
+ overflow-y: scroll;
1318
+ padding: 12px 14px 28px;
1319
+ display: flex;
1320
+ flex-direction: column;
1321
+ justify-content: flex-start;
1322
+ align-items: stretch;
1323
+ gap: 8px;
1324
+ touch-action: pan-y;
1325
+ overscroll-behavior: contain;
1326
+ scroll-behavior: auto;
1327
+ -webkit-overflow-scrolling: touch;
1328
+ scrollbar-gutter: stable;
1329
+ scrollbar-width: thin;
1330
+ scrollbar-color: rgba(255, 255, 255, 0.42) transparent;
1331
+ }
1332
+
1333
+ .suzu-panel__thread::-webkit-scrollbar {
1334
+ width: 6px;
1335
+ }
1336
+
1337
+ .suzu-panel__thread::-webkit-scrollbar-thumb {
1338
+ background: rgba(255, 255, 255, 0.38);
1339
+ border-radius: 99px;
1340
+ }
1341
+
1342
+ .suzu-panel__thread > * {
1343
+ flex-shrink: 0;
1344
+ }
1345
+
1346
+ .suzu-panel__empty {
1347
+ flex: 1 1 auto;
1348
+ }
1349
+
1350
+ .suzu-panel__thread-pad {
1351
+ flex: 0 0 auto;
1352
+ width: 100%;
1353
+ height: 0;
1354
+ pointer-events: none;
1355
+ }
1356
+
1357
+ .suzu-panel__empty {
1358
+ margin: 0;
1359
+ text-align: center;
1360
+ padding: 12px 8px 16px;
1361
+ align-self: stretch;
1362
+ flex: 1 1 auto;
1363
+ min-height: 0;
1364
+ display: flex;
1365
+ flex-direction: column;
1366
+ align-items: center;
1367
+ justify-content: center;
1368
+ gap: 0;
1369
+ }
1370
+
1371
+ .suzu-panel__empty[hidden] {
1372
+ display: none !important;
1373
+ flex: none !important;
1374
+ }
1375
+
1376
+ .suzu-panel__empty h3 {
1377
+ margin: 0 0 8px;
1378
+ font-size: clamp(28px, 5.2vw, 36px);
1379
+ font-weight: 700;
1380
+ color: #fff;
1381
+ letter-spacing: -0.03em;
1382
+ line-height: 1.15;
1383
+ }
1384
+
1385
+ .suzu-panel__empty p {
1386
+ margin: 0 0 18px;
1387
+ color: rgba(255,255,255,.58);
1388
+ font-size: 16px;
1389
+ line-height: 1.4;
1390
+ }
1391
+
1392
+ .suzu-panel__suggest {
1393
+ display: flex;
1394
+ flex-direction: column;
1395
+ flex-wrap: nowrap;
1396
+ align-items: stretch;
1397
+ gap: 8px;
1398
+ width: 100%;
1399
+ max-width: 420px;
1400
+ margin: 0 auto;
1401
+ overflow: visible;
1402
+ padding: 0;
1403
+ touch-action: manipulation;
1404
+ }
1405
+
1406
+ .suzu-panel__suggest::-webkit-scrollbar { display: none; }
1407
+
1408
+ .suzu-panel__suggest button,
1409
+ .suzu-panel__pills button {
1410
+ appearance: none;
1411
+ background: rgba(18, 10, 12, 0.55);
1412
+ border: 1px solid rgba(255, 176, 103, 0.32);
1413
+ color: #fff;
1414
+ border-radius: 16px;
1415
+ padding: 12px 14px;
1416
+ font: inherit;
1417
+ font-size: 14.5px;
1418
+ line-height: 1.35;
1419
+ cursor: pointer;
1420
+ text-align: left;
1421
+ flex: 0 0 auto;
1422
+ white-space: normal;
1423
+ }
1424
+
1425
+ .suzu-panel__suggest button:hover,
1426
+ .suzu-panel__pills button:hover {
1427
+ border-color: rgba(255, 210, 122, 0.65);
1428
+ }
1429
+
1430
+ .suzu-panel__pills {
1431
+ display: flex;
1432
+ flex-direction: row;
1433
+ flex-wrap: nowrap;
1434
+ align-items: center;
1435
+ gap: 8px;
1436
+ padding: 0 12px 8px;
1437
+ flex-shrink: 0;
1438
+ overflow-x: auto;
1439
+ overflow-y: hidden;
1440
+ -webkit-overflow-scrolling: touch;
1441
+ scrollbar-width: none;
1442
+ touch-action: pan-x;
1443
+ }
1444
+
1445
+ .suzu-panel__pills::-webkit-scrollbar { display: none; }
1446
+
1447
+ .suzu-panel__pills button {
1448
+ flex: 0 0 auto;
1449
+ max-width: min(280px, 78vw);
1450
+ white-space: nowrap;
1451
+ text-align: center;
1452
+ padding: 9px 14px;
1453
+ font-size: 13.5px;
1454
+ line-height: 1.25;
1455
+ border-radius: 999px;
1456
+ overflow: hidden;
1457
+ text-overflow: ellipsis;
1458
+ }
1459
+
1460
+ .suzu-panel__pills[hidden] { display: none; }
1461
+
1462
+ .suzu-panel__deck {
1463
+ position: relative;
1464
+ align-self: stretch;
1465
+ width: 100%;
1466
+ min-width: 0;
1467
+ flex: 0 0 auto;
1468
+ }
1469
+
1470
+ .suzu-panel__ribbon {
1471
+ display: flex;
1472
+ flex-direction: row;
1473
+ flex-wrap: nowrap;
1474
+ align-items: flex-start;
1475
+ align-self: stretch;
1476
+ flex: 0 0 auto;
1477
+ gap: 0.75rem;
1478
+ width: 100%;
1479
+ max-width: 100%;
1480
+ box-sizing: border-box;
1481
+ overflow-x: auto;
1482
+ overflow-y: hidden;
1483
+ padding: 0.35rem 0 0.65rem;
1484
+ margin: 0;
1485
+ min-height: 0;
1486
+ /* No scroll-snap — it fights native scrolling and causes half-card glitches. */
1487
+ scroll-snap-type: none;
1488
+ scroll-behavior: auto;
1489
+ scrollbar-width: none;
1490
+ -webkit-overflow-scrolling: touch;
1491
+ touch-action: pan-x pan-y;
1492
+ overscroll-behavior-x: contain;
1493
+ overscroll-behavior-y: none;
1494
+ }
1495
+
1496
+ .suzu-panel__ribbon::-webkit-scrollbar { display: none; }
1497
+
1498
+ .suzu-panel__deck-nav {
1499
+ display: none;
1500
+ position: absolute;
1501
+ z-index: 3;
1502
+ top: 50%;
1503
+ width: 34px;
1504
+ height: 48px;
1505
+ margin: 0;
1506
+ padding: 0;
1507
+ place-items: center;
1508
+ color: #fff;
1509
+ border: 1px solid rgba(255, 255, 255, 0.2);
1510
+ background: rgba(12, 8, 10, 0.88);
1511
+ transform: translateY(-50%);
1512
+ cursor: pointer;
1513
+ }
1514
+
1515
+ .suzu-panel__deck-nav svg { display: block; }
1516
+
1517
+ .suzu-panel__deck-nav--prev { left: 0; border-radius: 0 14px 14px 0; }
1518
+
1519
+ .suzu-panel__deck-nav--next { right: 0; border-radius: 14px 0 0 14px; }
1520
+
1521
+ .suzu-panel__deck-nav:hover {
1522
+ background: rgba(20, 12, 14, 0.88);
1523
+ border-color: rgba(255, 210, 122, 0.55);
1524
+ }
1525
+
1526
+ @media (hover: hover) and (pointer: fine) {
1527
+ .suzu-panel__deck-nav { display: grid; }
1528
+ .suzu-panel__ribbon {
1529
+ scrollbar-width: thin;
1530
+ scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
1531
+ }
1532
+ .suzu-panel__ribbon::-webkit-scrollbar {
1533
+ display: block;
1534
+ height: 6px;
1535
+ }
1536
+ .suzu-panel__ribbon::-webkit-scrollbar-thumb {
1537
+ background: rgba(255, 255, 255, 0.28);
1538
+ border-radius: 99px;
1539
+ }
1540
+ }
1541
+
1542
+ .suzu-panel__ribbon-loader {
1543
+ flex: 0 0 auto;
1544
+ align-self: center;
1545
+ width: 2.75rem;
1546
+ height: 9.75rem;
1547
+ min-height: 9.75rem;
1548
+ display: grid;
1549
+ place-items: center;
1550
+ }
1551
+
1552
+ .suzu-panel__ribbon-spinner {
1553
+ width: 22px;
1554
+ height: 22px;
1555
+ border-radius: 50%;
1556
+ border: 2px solid rgba(255,255,255,.18);
1557
+ border-top-color: #FFB067;
1558
+ border-right-color: #FF8A3D;
1559
+ }
1560
+
1561
+ .suzu-panel__card {
1562
+ /* Avoid min() in flex-basis — Safari iOS often collapses it to 0. */
1563
+ flex: 0 0 auto;
1564
+ width: 94%;
1565
+ max-width: 22rem;
1566
+ min-width: 16.5rem;
1567
+ height: 9.75rem;
1568
+ min-height: 9.75rem;
1569
+ align-self: flex-start;
1570
+ appearance: none;
1571
+ border: 1px solid rgba(255,255,255,.18);
1572
+ background: #1c1014;
1573
+ border-radius: 1rem;
1574
+ overflow: hidden;
1575
+ padding: 0;
1576
+ color: #fff;
1577
+ text-align: left;
1578
+ cursor: pointer;
1579
+ box-shadow: 0 6px 18px rgba(0,0,0,.28);
1580
+ touch-action: pan-x pan-y;
1581
+ }
1582
+
1583
+ @media (hover: hover) and (pointer: fine) {
1584
+ .suzu-panel__card {
1585
+ transition: border-color .15s ease;
1586
+ }
1587
+ .suzu-panel__card:hover {
1588
+ border-color: rgba(255,210,122,.55);
1589
+ }
1590
+ .suzu-panel__card:hover .suzu-panel__card-cta {
1591
+ filter: brightness(1.06);
1592
+ }
1593
+ }
1594
+
1595
+ .suzu-panel__card:focus-visible {
1596
+ outline: 2px solid rgba(255, 210, 122, .75);
1597
+ outline-offset: 2px;
1598
+ }
1599
+
1600
+ .suzu-panel__card-inner {
1601
+ display: flex;
1602
+ align-items: stretch;
1603
+ min-height: 9.75rem;
1604
+ height: 9.75rem;
1605
+ }
1606
+
1607
+ .suzu-panel__card-img {
1608
+ position: relative;
1609
+ flex: 0 0 6.5rem;
1610
+ width: 6.5rem;
1611
+ min-height: 9.75rem;
1612
+ background: #12090b;
1613
+ overflow: hidden;
1614
+ }
1615
+
1616
+ .suzu-panel__card-img .suzu-panel__card-blur {
1617
+ display: none !important;
1618
+ }
1619
+
1620
+ .suzu-panel__card-img .suzu-panel__card-photo {
1621
+ position: absolute;
1622
+ inset: 0;
1623
+ width: 100%;
1624
+ height: 100%;
1625
+ object-fit: cover;
1626
+ object-position: center center;
1627
+ display: block;
1628
+ z-index: 0;
1629
+ }
1630
+
1631
+ .suzu-panel__card-copy {
1632
+ position: relative;
1633
+ z-index: 2;
1634
+ flex: 1 1 auto;
1635
+ min-width: 0;
1636
+ min-height: 0;
1637
+ padding: 0.7rem 0.7rem 0.7rem 0.85rem;
1638
+ display: block;
1639
+ border-left: 1px solid rgba(255,255,255,.1);
1640
+ background: #160c10;
1641
+ box-sizing: border-box;
1642
+ overflow: hidden;
1643
+ }
1644
+
1645
+ .suzu-panel__card-copy::after {
1646
+ content: "";
1647
+ display: table;
1648
+ clear: both;
1649
+ }
1650
+
1651
+ .suzu-panel__card-title {
1652
+ display: -webkit-box;
1653
+ -webkit-line-clamp: 2;
1654
+ -webkit-box-orient: vertical;
1655
+ overflow: hidden;
1656
+ margin: 0 0 0.35rem;
1657
+ font-size: 1.0625rem;
1658
+ font-weight: 700;
1659
+ letter-spacing: -0.015em;
1660
+ line-height: 1.25;
1661
+ color: #ffffff !important;
1662
+ }
1663
+
1664
+ .suzu-panel__card-desc {
1665
+ display: block;
1666
+ margin: 0;
1667
+ font-size: 0.8125rem;
1668
+ line-height: 1.35;
1669
+ color: rgba(255,255,255,.68);
1670
+ overflow: hidden;
1671
+ max-height: calc(1.35em * 4);
1672
+ /* text wraps around floated CTA — fills space left of button */
1673
+ }
1674
+
1675
+ .suzu-panel__card-desc[hidden] {
1676
+ display: none;
1677
+ }
1678
+
1679
+ .suzu-panel__card-meta {
1680
+ float: right;
1681
+ display: block;
1682
+ width: 2.125rem;
1683
+ margin: 0 0 0.2rem 0.55rem;
1684
+ padding: 0;
1685
+ pointer-events: none;
1686
+ shape-outside: margin-box;
1687
+ }
1688
+
1689
+ .suzu-panel__card-price {
1690
+ font-size: 0.8125rem;
1691
+ font-weight: 700;
1692
+ color: #FFD27A;
1693
+ letter-spacing: 0.01em;
1694
+ min-width: 0;
1695
+ overflow: hidden;
1696
+ text-overflow: ellipsis;
1697
+ white-space: nowrap;
1698
+ }
1699
+
1700
+ .suzu-panel__card-price[hidden] {
1701
+ display: none;
1702
+ }
1703
+
1704
+ .suzu-panel__card-price:not([hidden]) {
1705
+ position: absolute;
1706
+ left: 0.85rem;
1707
+ bottom: 0.85rem;
1708
+ max-width: calc(100% - 3.25rem);
1709
+ float: none;
1710
+ }
1711
+
1712
+ .suzu-panel__card-cta {
1713
+ margin: 0;
1714
+ width: 2.125rem;
1715
+ height: 2.125rem;
1716
+ display: inline-grid;
1717
+ place-items: center;
1718
+ color: #1a0a08;
1719
+ background: linear-gradient(180deg, #FFB067, #E85C1C);
1720
+ border-radius: 50%;
1721
+ padding: 0;
1722
+ box-shadow: 0 4px 12px rgba(232, 92, 28, .3);
1723
+ }
1724
+
1725
+ .suzu-panel__card-cta svg {
1726
+ display: block;
1727
+ }
1728
+
1729
+ .suzu-panel__card.is-loading { pointer-events: none; opacity: .8; }
1730
+
1731
+ .suzu-panel__card.is-loading .suzu-panel__card-img {
1732
+ background: #2a181c;
1733
+ }
1734
+
1735
+ @media (hover: hover) and (pointer: fine) {
1736
+ .suzu-panel__card.is-loading .suzu-panel__card-img {
1737
+ background: linear-gradient(110deg, #2a181c 25%, #3a2428 40%, #2a181c 55%);
1738
+ background-size: 200% 100%;
1739
+ animation: suzu-card-shine 1.2s linear infinite;
1740
+ }
1741
+ }
1742
+
1743
+ .suzu-panel__card.is-loading .suzu-panel__card-desc {
1744
+ border-radius: 8px;
1745
+ color: transparent;
1746
+ background: rgba(255,255,255,.06);
1747
+ }
1748
+
1749
+ @media (max-width: 420px) {
1750
+ .suzu-panel__card {
1751
+ width: calc(100% - 2.25rem);
1752
+ max-width: none;
1753
+ min-width: 0;
1754
+ }
1755
+ }
1756
+
1757
+ .suzu-panel__more,
1758
+ .suzu-panel__action {
1759
+ align-self: flex-start;
1760
+ appearance: none;
1761
+ border: 1px solid rgba(255,186,90,.4);
1762
+ background: rgba(255,138,61,.16);
1763
+ color: #fff;
1764
+ border-radius: 12px;
1765
+ padding: 8px 12px;
1766
+ font: inherit;
1767
+ font-size: 13.5px;
1768
+ cursor: pointer;
1769
+ }
1770
+
1771
+ .suzu-panel__action {
1772
+ display: flex;
1773
+ flex-direction: column;
1774
+ gap: 6px;
1775
+ cursor: default;
1776
+ }
1777
+
1778
+ .suzu-panel__action a { color: #FFD27A; }
1779
+
1780
+ .suzu-panel__msg.ai.suzu-ui__typing {
1781
+ opacity: 1;
1782
+ animation: none;
1783
+ display: flex;
1784
+ align-items: center;
1785
+ gap: 8px;
1786
+ }
1787
+
1788
+ .suzu-panel__msg.ai.suzu-ui__typing span {
1789
+ font-size: 12px;
1790
+ color: rgba(255,255,255,.6);
1791
+ }
1792
+
1793
+ .suzu-panel__search {
1794
+ align-self: flex-start;
1795
+ position: relative;
1796
+ z-index: 2;
1797
+ display: inline-flex;
1798
+ align-items: center;
1799
+ gap: 8px;
1800
+ max-width: min(100%, 280px);
1801
+ min-height: 36px;
1802
+ margin: 10px 2px 18px;
1803
+ padding: 8px 12px 8px 10px;
1804
+ border-radius: 14px;
1805
+ border: 1px solid rgba(255,255,255,.1);
1806
+ background: rgba(255,255,255,.045);
1807
+ box-shadow: none;
1808
+ overflow: visible;
1809
+ box-sizing: border-box;
1810
+ flex: 0 0 auto;
1811
+ }
1812
+
1813
+ .suzu-panel__search-ai {
1814
+ position: relative;
1815
+ width: 22px;
1816
+ height: 22px;
1817
+ flex: 0 0 22px;
1818
+ border-radius: 50%;
1819
+ display: grid;
1820
+ place-items: center;
1821
+ }
1822
+
1823
+ .suzu-panel__search-ring {
1824
+ position: absolute;
1825
+ inset: 0;
1826
+ border-radius: 50%;
1827
+ background: conic-gradient(
1828
+ from 0deg at 50% 50%,
1829
+ rgba(26, 16, 18, 0.15) 0deg,
1830
+ rgba(168, 28, 48, 0.55) 90deg,
1831
+ rgba(255, 138, 61, 0.95) 150deg,
1832
+ rgba(255, 210, 122, 0.7) 210deg,
1833
+ rgba(192, 132, 252, 0.45) 280deg,
1834
+ rgba(26, 16, 18, 0.15) 1turn
1835
+ );
1836
+ -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1.5px));
1837
+ mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1.5px));
1838
+ animation: suzu-search-spin 2.8s linear infinite;
1839
+ filter: drop-shadow(0 0 6px rgba(255, 138, 61, .35));
1840
+ }
1841
+
1842
+ .suzu-panel__search-core {
1843
+ width: 8px;
1844
+ height: 8px;
1845
+ border-radius: 50%;
1846
+ background: radial-gradient(circle at 35% 30%, #FFE2A8, #FF8A3D 55%, #C41C34 100%);
1847
+ box-shadow: 0 0 12px rgba(255, 138, 61, .55);
1848
+ animation: suzu-search-breathe 1.8s ease-in-out infinite;
1849
+ }
1850
+
1851
+ .suzu-panel__search-copy {
1852
+ min-width: 0;
1853
+ display: flex;
1854
+ flex-direction: column;
1855
+ gap: 2px;
1856
+ }
1857
+
1858
+ .suzu-panel__search-title {
1859
+ display: inline-flex;
1860
+ align-items: center;
1861
+ gap: 6px;
1862
+ font-size: 13px;
1863
+ line-height: 1.2;
1864
+ font-weight: 650;
1865
+ letter-spacing: -0.01em;
1866
+ color: rgba(255,255,255,.92);
1867
+ }
1868
+
1869
+ .suzu-panel__search-dots {
1870
+ display: inline-flex;
1871
+ gap: 3px;
1872
+ align-items: center;
1873
+ }
1874
+
1875
+ .suzu-panel__search-dots i {
1876
+ width: 3px;
1877
+ height: 3px;
1878
+ border-radius: 50%;
1879
+ background: rgba(255, 210, 122, .9);
1880
+ animation: suzu-dot-bounce .9s ease-in-out infinite;
1881
+ }
1882
+
1883
+ .suzu-panel__search-dots i:nth-child(2) { animation-delay: .15s; }
1884
+
1885
+ .suzu-panel__search-dots i:nth-child(3) { animation-delay: .3s; }
1886
+
1887
+ .suzu-panel__search-label {
1888
+ font-size: 11.5px;
1889
+ line-height: 1.3;
1890
+ color: rgba(255, 226, 176, .72);
1891
+ white-space: nowrap;
1892
+ overflow: hidden;
1893
+ text-overflow: ellipsis;
1894
+ max-width: 220px;
1895
+ }
1896
+
1897
+ .suzu-panel__search-label:empty {
1898
+ display: none;
1899
+ }
1900
+
1901
+ @keyframes suzu-search-spin {
1902
+ to { transform: rotate(360deg); }
1903
+ }
1904
+
1905
+ @keyframes suzu-search-breathe {
1906
+ 0%, 100% { transform: scale(.92); opacity: .85; }
1907
+ 50% { transform: scale(1.08); opacity: 1; }
1908
+ }
1909
+
1910
+ @media (prefers-reduced-motion: reduce) {
1911
+ .suzu-panel__search-ring,
1912
+ .suzu-panel__search-core,
1913
+ .suzu-panel__search-dots i {
1914
+ animation: none !important;
1915
+ }
1916
+ }
1917
+
1918
+ .suzu-product {
1919
+ position: absolute;
1920
+ inset: 0;
1921
+ z-index: 12;
1922
+ display: flex;
1923
+ align-items: flex-end;
1924
+ justify-content: center;
1925
+ pointer-events: auto;
1926
+ }
1927
+
1928
+ .suzu-product[hidden] { display: none; }
1929
+
1930
+ .suzu-product__dim {
1931
+ appearance: none;
1932
+ border: 0;
1933
+ position: absolute;
1934
+ inset: 0;
1935
+ background: rgba(0,0,0,.45);
1936
+ }
1937
+
1938
+ .suzu-product__card {
1939
+ position: relative;
1940
+ z-index: 1;
1941
+ width: min(420px, 100%);
1942
+ max-height: 86%;
1943
+ overflow: auto;
1944
+ margin: 12px;
1945
+ border-radius: 24px;
1946
+ background: linear-gradient(180deg, rgba(42,24,28,.96), rgba(16,8,10,.98));
1947
+ border: 1px solid rgba(255,255,255,.18);
1948
+ box-shadow: 0 24px 60px rgba(0,0,0,.4);
1949
+ }
1950
+
1951
+ .suzu-product__x {
1952
+ position: absolute;
1953
+ top: 10px;
1954
+ right: 10px;
1955
+ z-index: 2;
1956
+ width: 32px;
1957
+ height: 32px;
1958
+ border: 0;
1959
+ border-radius: 50%;
1960
+ background: rgba(0,0,0,.45);
1961
+ color: #fff;
1962
+ font-size: 20px;
1963
+ cursor: pointer;
1964
+ }
1965
+
1966
+ .suzu-product__media {
1967
+ position: relative;
1968
+ aspect-ratio: 16 / 10;
1969
+ background: #12090b;
1970
+ overflow: hidden;
1971
+ }
1972
+
1973
+ .suzu-product__media img {
1974
+ position: relative;
1975
+ z-index: 1;
1976
+ width: 100%;
1977
+ height: 100%;
1978
+ object-fit: contain;
1979
+ object-position: center center;
1980
+ display: block;
1981
+ }
1982
+
1983
+ .suzu-product__body {
1984
+ padding: 16px 18px 20px;
1985
+ color: #ffffff !important;
1986
+ background: linear-gradient(180deg, #241014 0%, #12080a 100%);
1987
+ }
1988
+
1989
+ .suzu-product__body h3,
1990
+ .suzu-product__title {
1991
+ margin: 0 0 8px;
1992
+ font-size: 20px;
1993
+ font-weight: 750;
1994
+ line-height: 1.25;
1995
+ letter-spacing: -0.02em;
1996
+ color: #ffffff !important;
1997
+ font-family: inherit;
1998
+ }
1999
+
2000
+ .suzu-product__price {
2001
+ margin: 0 0 10px;
2002
+ color: #FFD27A !important;
2003
+ font-weight: 700;
2004
+ font-size: 16px;
2005
+ }
2006
+
2007
+ .suzu-product__body p,
2008
+ .suzu-product__desc {
2009
+ margin: 0 0 14px;
2010
+ color: rgba(255,255,255,.78) !important;
2011
+ font-size: 14px;
2012
+ line-height: 1.5;
2013
+ }
2014
+
2015
+ .suzu-product__body a,
2016
+ .suzu-product__cta {
2017
+ display: inline-flex;
2018
+ align-items: center;
2019
+ color: #1a0a08 !important;
2020
+ background: linear-gradient(180deg, #FFB067, #E85C1C);
2021
+ border-radius: 999px;
2022
+ padding: 10px 16px;
2023
+ font-weight: 700;
2024
+ text-decoration: none;
2025
+ }
2026
+
2027
+ #suzu-panel-chat-list {
2028
+ display: flex;
2029
+ flex-direction: column;
2030
+ gap: 6px;
2031
+ overflow: auto;
2032
+ min-height: 0;
2033
+ flex: 1;
2034
+ }
2035
+
2036
+ .suzu-panel__chats .suzu-ui__new { margin-left: auto; }
2037
+
2038
+ .suzu-panel__msg {
2039
+ flex: 0 0 auto;
2040
+ font-size: 15.5px;
2041
+ line-height: 1.5;
2042
+ color: #fff;
2043
+ word-wrap: break-word;
2044
+ overflow-wrap: anywhere;
2045
+ }
2046
+
2047
+ .suzu-panel__msg.me {
2048
+ align-self: flex-end;
2049
+ max-width: min(88%, 340px);
2050
+ padding: 10px 14px;
2051
+ border-radius: 18px 18px 6px 18px;
2052
+ background: linear-gradient(180deg, rgba(255,138,61,.38), rgba(255,138,61,.2));
2053
+ border: 1px solid rgba(255,186,90,.42);
2054
+ }
2055
+
2056
+ /* Gemini-style: assistant = continuous prose, no bubble */
2057
+ .suzu-panel__msg.ai {
2058
+ align-self: stretch;
2059
+ max-width: none;
2060
+ width: 100%;
2061
+ box-sizing: border-box;
2062
+ padding: 2px 2px 10px;
2063
+ margin: 0;
2064
+ border: 0;
2065
+ border-radius: 0;
2066
+ background: transparent;
2067
+ color: rgba(255, 255, 255, 0.92);
2068
+ }
2069
+
2070
+ .suzu-panel__msg.ai + .suzu-panel__msg.ai {
2071
+ padding-top: 0;
2072
+ }
2073
+
2074
+ .suzu-panel__msg.ai p {
2075
+ margin: 0 0 10px;
2076
+ padding: 0;
2077
+ }
2078
+
2079
+ .suzu-panel__msg.ai p:last-child {
2080
+ margin-bottom: 0;
2081
+ }
2082
+
2083
+ .suzu-panel__msg.ai.suzu-ui__typing {
2084
+ display: inline-flex;
2085
+ align-items: center;
2086
+ gap: 6px;
2087
+ width: auto;
2088
+ padding: 6px 2px 12px;
2089
+ background: transparent;
2090
+ border: 0;
2091
+ }
2092
+
2093
+ .suzu-panel__sheet .suzu-glow--composer {
2094
+ margin: 0 12px 12px;
2095
+ flex-shrink: 0;
2096
+ height: 52px;
2097
+ padding: 1.5px;
2098
+ box-sizing: border-box;
2099
+ }
2100
+
2101
+ .suzu-panel__sheet .suzu-glow__inner {
2102
+ min-height: 0;
2103
+ height: 100%;
2104
+ padding: 4px 4px 4px 16px;
2105
+ gap: 8px;
2106
+ box-sizing: border-box;
2107
+ }
2108
+
2109
+ .suzu-panel__sheet .suzu-glow__inner input {
2110
+ padding: 0;
2111
+ font-size: 16px;
2112
+ line-height: 1.3;
2113
+ }
2114
+
2115
+ .suzu-panel__sheet .suzu-glow__inner button {
2116
+ width: 40px;
2117
+ height: 40px;
2118
+ flex: 0 0 40px;
2119
+ }
2120
+
2121
+ .suzu-panel__sheet .suzu-glow__inner button img {
2122
+ width: 18px;
2123
+ height: 20px;
2124
+ }
2125
+
2126
+ .suzu-panel__resize {
2127
+ display: none;
2128
+ position: absolute;
2129
+ top: 0;
2130
+ /* Sit mostly outside the sheet so the thread scrollbar stays usable. */
2131
+ right: -6px;
2132
+ width: 12px;
2133
+ height: 100%;
2134
+ z-index: 3;
2135
+ cursor: col-resize;
2136
+ touch-action: none;
2137
+ align-items: center;
2138
+ justify-content: center;
2139
+ }
2140
+
2141
+ .suzu-panel__grip {
2142
+ width: 5px;
2143
+ height: 40px;
2144
+ border-radius: 999px;
2145
+ pointer-events: none;
2146
+ background: linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,186,90,.22), rgba(255,255,255,.28));
2147
+ border: 1px solid rgba(255,255,255,.42);
2148
+ box-shadow: 0 0 0 1px rgba(0,0,0,.18), 0 6px 16px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.45);
2149
+ opacity: .78;
2150
+ }
2151
+
2152
+ .suzu-panel__resize:hover .suzu-panel__grip,
2153
+ .suzu-panel.is-resizing .suzu-panel__grip {
2154
+ opacity: 1;
2155
+ height: 52px;
2156
+ border-color: rgba(255, 210, 140, .7);
2157
+ }
2158
+
2159
+ @media (min-width: 1200px) {
2160
+ .suzu-panel__dim { display: none; }
2161
+ .suzu-panel__resize { display: flex; }
2162
+ .suzu-panel__chats-dim { display: none !important; }
2163
+ body.suzu-panel-open .page-wrapper .auto-container {
2164
+ max-width: none;
2165
+ padding-left: 24px;
2166
+ padding-right: 24px;
2167
+ }
2168
+ body.suzu-panel-open .saasavo-header-area {
2169
+ margin-top: 8px;
2170
+ padding: 0 10px !important;
2171
+ }
2172
+ body.suzu-panel-open .saasavo-header-area .auto-container {
2173
+ padding: 3px 8px 3px 12px !important;
2174
+ border-radius: 999px !important;
2175
+ min-height: 36px;
2176
+ }
2177
+ body.suzu-panel-open .saasavo-header-area .auto-container .row {
2178
+ gap: 4px;
2179
+ min-height: 36px;
2180
+ margin-left: 0;
2181
+ margin-right: 0;
2182
+ }
2183
+ body.suzu-panel-open .saasavo-header-area .auto-container .row > [class*="col-"] {
2184
+ display: flex;
2185
+ align-items: center;
2186
+ padding-left: 4px;
2187
+ padding-right: 4px;
2188
+ min-height: 0;
2189
+ }
2190
+ body.suzu-panel-open .suzu-word { display: none; }
2191
+ body.suzu-panel-open .header-logo { line-height: 0; }
2192
+ body.suzu-panel-open .header-logo a { gap: 0; }
2193
+ body.suzu-panel-open .header-logo img {
2194
+ height: 22px !important;
2195
+ width: auto !important;
2196
+ max-height: 22px;
2197
+ display: block;
2198
+ }
2199
+ body.suzu-panel-open .saasavo-header-area .header-menu ul {
2200
+ gap: 0;
2201
+ }
2202
+ body.suzu-panel-open .saasavo-header-area .header-menu ul li a {
2203
+ padding: 4px 7px !important;
2204
+ font-size: 12px !important;
2205
+ line-height: 1.15 !important;
2206
+ font-weight: 600;
2207
+ }
2208
+ body.suzu-panel-open .saasavo-header-area .header-right-wrapper .header-sidebar .header-btn a {
2209
+ padding: 5px 12px !important;
2210
+ font-size: 12px !important;
2211
+ line-height: 1.2 !important;
2212
+ min-height: 0;
2213
+ }
2214
+ body.suzu-panel-open .saasavo-header-area.sticky {
2215
+ left: auto;
2216
+ right: auto;
2217
+ width: auto;
2218
+ }
2219
+ }
2220
+
2221
+ @media (max-width: 1199px) {
2222
+ .suzu-panel__dim {
2223
+ background: rgba(0, 0, 0, 0.28);
2224
+ -webkit-backdrop-filter: blur(14px) saturate(140%);
2225
+ backdrop-filter: blur(14px) saturate(140%);
2226
+ }
2227
+ .suzu-panel__sheet {
2228
+ left: 8px;
2229
+ right: 8px;
2230
+ top: auto;
2231
+ bottom: max(8px, env(safe-area-inset-bottom, 0px));
2232
+ width: auto;
2233
+ max-width: none;
2234
+ flex-direction: column;
2235
+ align-items: stretch;
2236
+ height: min(92svh, calc(100svh - max(14px, env(safe-area-inset-top, 0px)) - 16px));
2237
+ max-height: calc(100svh - 16px);
2238
+ border-radius: 26px;
2239
+ border: 1px solid var(--suzu-glass-border) !important;
2240
+ border-right: 1px solid var(--suzu-glass-border) !important;
2241
+ background: var(--suzu-lg-fill) !important;
2242
+ box-shadow: var(--suzu-lg-shadow), 0 28px 80px rgba(0, 0, 0, 0.42) !important;
2243
+ -webkit-backdrop-filter: var(--suzu-lg-blur) !important;
2244
+ backdrop-filter: var(--suzu-lg-blur) !important;
2245
+ padding-bottom: 0;
2246
+ overflow: hidden;
2247
+ transform: translateY(110%) !important;
2248
+ }
2249
+ .suzu-panel.is-open .suzu-panel__sheet {
2250
+ transform: translateY(var(--suzu-sheet-drag, 0px)) !important;
2251
+ }
2252
+ .suzu-panel__main {
2253
+ min-height: 0;
2254
+ min-width: 0;
2255
+ height: auto;
2256
+ width: 100%;
2257
+ flex: 1 1 auto;
2258
+ overflow: hidden;
2259
+ }
2260
+ .suzu-panel__thread {
2261
+ min-height: 100px;
2262
+ }
2263
+ .suzu-panel__empty h3 {
2264
+ font-size: clamp(26px, 7vw, 32px);
2265
+ }
2266
+ .suzu-panel__empty p {
2267
+ font-size: 15px;
2268
+ margin-bottom: 16px;
2269
+ }
2270
+ .suzu-panel__suggest {
2271
+ max-width: 100%;
2272
+ gap: 8px;
2273
+ }
2274
+ .suzu-panel__suggest button {
2275
+ font-size: 14px;
2276
+ padding: 11px 13px;
2277
+ }
2278
+ .suzu-panel.is-sheet-dragging .suzu-panel__sheet,
2279
+ .suzu-panel.is-sheet-dragging .suzu-panel__dim {
2280
+ transition: none;
2281
+ }
2282
+ .suzu-panel__grab {
2283
+ display: block;
2284
+ position: absolute;
2285
+ top: 5px;
2286
+ left: 50%;
2287
+ z-index: 8;
2288
+ width: 36px;
2289
+ height: 4px;
2290
+ margin: 0;
2291
+ border-radius: 999px;
2292
+ background: rgba(255, 255, 255, 0.38);
2293
+ box-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
2294
+ transform: translateX(-50%);
2295
+ pointer-events: auto;
2296
+ }
2297
+ .suzu-panel__grab::before {
2298
+ content: "";
2299
+ position: absolute;
2300
+ inset: -10px -40px;
2301
+ }
2302
+ .suzu-panel__bar {
2303
+ padding: 14px 10px 6px;
2304
+ min-height: 40px;
2305
+ }
2306
+ .suzu-panel__burger {
2307
+ width: 30px;
2308
+ height: 30px;
2309
+ }
2310
+ .suzu-panel__burger svg { width: 18px; height: 18px; }
2311
+ .suzu-panel__sheet .suzu-ui__close {
2312
+ width: 28px;
2313
+ height: 28px;
2314
+ font-size: 17px;
2315
+ }
2316
+ .suzu-panel__title {
2317
+ font-size: 16px;
2318
+ }
2319
+ .suzu-panel__thread {
2320
+ padding: 12px 14px 36px;
2321
+ gap: 10px;
2322
+ }
2323
+ .suzu-panel__pills {
2324
+ padding: 0 12px 10px;
2325
+ gap: 8px;
2326
+ }
2327
+ .suzu-panel__pills button {
2328
+ font-size: 14px;
2329
+ padding: 10px 14px;
2330
+ }
2331
+ .suzu-panel__sheet .suzu-glow--composer {
2332
+ margin: 0 12px max(10px, env(safe-area-inset-bottom, 0px));
2333
+ height: 52px;
2334
+ }
2335
+ .suzu-panel__sheet .suzu-glow__inner input {
2336
+ font-size: 16px;
2337
+ }
2338
+ .suzu-panel__msg {
2339
+ font-size: 16px;
2340
+ line-height: 1.5;
2341
+ }
2342
+ .suzu-panel__msg.me {
2343
+ font-size: 15.5px;
2344
+ max-width: 86%;
2345
+ padding: 11px 14px;
2346
+ }
2347
+ .suzu-panel__msg.ai {
2348
+ font-size: 16px;
2349
+ line-height: 1.55;
2350
+ padding: 2px 0 12px;
2351
+ }
2352
+ .suzu-panel__msg.ai p {
2353
+ margin-bottom: 12px;
2354
+ }
2355
+ /* Mobile: one card + peek, native scroll only */
2356
+ .suzu-panel__ribbon {
2357
+ gap: 0.65rem;
2358
+ padding: 0.5rem 0 0.875rem;
2359
+ min-height: 0;
2360
+ align-items: flex-start;
2361
+ scroll-padding-inline: 0;
2362
+ scroll-snap-type: none;
2363
+ scroll-behavior: auto;
2364
+ }
2365
+ .suzu-panel__ribbon-loader {
2366
+ width: 2.5rem;
2367
+ height: 22.5rem;
2368
+ min-height: 22.5rem;
2369
+ }
2370
+ .suzu-panel__ribbon-spinner {
2371
+ border-top-color: rgba(255, 176, 103, .85);
2372
+ }
2373
+ .suzu-panel__card {
2374
+ flex: 0 0 auto;
2375
+ width: calc(100% - 2.75rem);
2376
+ max-width: 13.5rem;
2377
+ min-width: 11rem;
2378
+ height: 22.5rem;
2379
+ min-height: 22.5rem;
2380
+ max-height: 22.5rem;
2381
+ border-radius: 1rem;
2382
+ overflow: hidden;
2383
+ align-self: flex-start;
2384
+ box-shadow: 0 4px 14px rgba(0,0,0,.25);
2385
+ transition: none;
2386
+ }
2387
+ .suzu-panel__card-inner {
2388
+ flex-direction: column;
2389
+ height: 100%;
2390
+ min-height: 0;
2391
+ max-height: none;
2392
+ overflow: hidden;
2393
+ }
2394
+ .suzu-panel__card-img {
2395
+ flex: 1 1 auto;
2396
+ width: 100%;
2397
+ aspect-ratio: auto;
2398
+ height: auto;
2399
+ min-height: 0;
2400
+ max-height: none;
2401
+ background: #1a1012;
2402
+ }
2403
+ /* Blur fill is too expensive while scrolling on mobile Safari. */
2404
+ .suzu-panel__card-img .suzu-panel__card-blur {
2405
+ display: none !important;
2406
+ }
2407
+ .suzu-panel__card-img .suzu-panel__card-photo {
2408
+ object-fit: cover;
2409
+ object-position: center center;
2410
+ }
2411
+ .suzu-panel__card-copy {
2412
+ position: relative;
2413
+ flex: 0 0 6.25rem;
2414
+ display: block;
2415
+ padding: 0.5rem 0.6rem 1.65rem;
2416
+ border-left: 0;
2417
+ border-top: 1px solid rgba(255,255,255,.1);
2418
+ height: 6.25rem;
2419
+ min-height: 6.25rem;
2420
+ max-height: 6.25rem;
2421
+ overflow: hidden;
2422
+ box-sizing: border-box;
2423
+ }
2424
+ .suzu-panel__card-title {
2425
+ display: -webkit-box;
2426
+ font-size: 0.9375rem;
2427
+ line-height: 1.25;
2428
+ -webkit-line-clamp: 2;
2429
+ -webkit-box-orient: vertical;
2430
+ max-height: 2.5em;
2431
+ margin: 0 0 0.25rem;
2432
+ padding-right: 0;
2433
+ }
2434
+ .suzu-panel__card-desc {
2435
+ display: -webkit-box;
2436
+ -webkit-box-orient: vertical;
2437
+ -webkit-line-clamp: 2;
2438
+ font-size: 0.75rem;
2439
+ line-height: 1.35;
2440
+ max-height: calc(1.35em * 2);
2441
+ margin: 0;
2442
+ overflow: hidden;
2443
+ padding-right: 0;
2444
+ box-sizing: border-box;
2445
+ }
2446
+ .suzu-panel__card-meta {
2447
+ float: right;
2448
+ position: static;
2449
+ left: auto;
2450
+ right: auto;
2451
+ bottom: auto;
2452
+ margin: 0 0 0.15rem 0.45rem;
2453
+ padding: 0;
2454
+ height: auto;
2455
+ min-height: 0;
2456
+ width: 1.875rem;
2457
+ shape-outside: margin-box;
2458
+ z-index: 3;
2459
+ pointer-events: none;
2460
+ }
2461
+ .suzu-panel__card-price:not([hidden]) {
2462
+ position: absolute;
2463
+ left: 0.6rem;
2464
+ bottom: 0.7rem;
2465
+ margin: 0;
2466
+ font-size: 0.75rem;
2467
+ max-width: calc(100% - 2.75rem);
2468
+ }
2469
+ .suzu-panel__card-cta {
2470
+ width: 1.875rem;
2471
+ height: 1.875rem;
2472
+ margin: 0;
2473
+ box-shadow: 0 6px 16px rgba(232, 92, 28, .42);
2474
+ }
2475
+ .suzu-panel__card-cta svg {
2476
+ width: 14px;
2477
+ height: 14px;
2478
+ }
2479
+ .suzu-panel__suggest button {
2480
+ font-size: 15px;
2481
+ padding: 13px 14px;
2482
+ border-radius: 14px;
2483
+ }
2484
+ .suzu-panel__empty h3 {
2485
+ font-size: clamp(28px, 8vw, 34px);
2486
+ }
2487
+ .suzu-panel__empty p {
2488
+ font-size: 16px;
2489
+ }
2490
+ .suzu-panel__resize { display: none !important; }
2491
+ /* Drawer sits on the sheet box — not a freestanding full-height slab. */
2492
+ .suzu-panel__chats {
2493
+ display: none;
2494
+ left: 8px;
2495
+ right: auto;
2496
+ top: auto;
2497
+ bottom: max(8px, env(safe-area-inset-bottom, 0px));
2498
+ z-index: 7;
2499
+ width: min(240px, calc(100vw - 96px));
2500
+ max-width: calc(100vw - 72px);
2501
+ min-width: 0;
2502
+ height: min(92svh, calc(100svh - max(14px, env(safe-area-inset-top, 0px)) - 16px));
2503
+ max-height: calc(100svh - 16px);
2504
+ transform: none;
2505
+ transition: none;
2506
+ border-radius: 34px 0 0 34px;
2507
+ padding-top: 14px;
2508
+ background: rgba(12, 8, 10, 0.96) !important;
2509
+ border: 1px solid rgba(255,255,255,.16) !important;
2510
+ border-right: 1px solid rgba(255,255,255,.12) !important;
2511
+ box-shadow: 8px 0 28px rgba(0,0,0,.35) !important;
2512
+ pointer-events: auto;
2513
+ }
2514
+ .suzu-panel.is-chats .suzu-panel__chats {
2515
+ display: flex;
2516
+ }
2517
+ .suzu-panel__chats-dim {
2518
+ left: 8px;
2519
+ right: 8px;
2520
+ top: auto;
2521
+ bottom: max(8px, env(safe-area-inset-bottom, 0px));
2522
+ width: auto;
2523
+ height: min(92svh, calc(100svh - max(14px, env(safe-area-inset-top, 0px)) - 16px));
2524
+ max-height: calc(100svh - 16px);
2525
+ inset: auto;
2526
+ z-index: 5;
2527
+ border-radius: 26px;
2528
+ background: rgba(8, 4, 6, 0.42);
2529
+ -webkit-backdrop-filter: blur(8px) saturate(140%);
2530
+ backdrop-filter: blur(8px) saturate(140%);
2531
+ }
2532
+ .suzu-panel.is-chats .suzu-panel__chats-dim { display: block; }
2533
+ .suzu-panel.is-chats .suzu-panel__sheet {
2534
+ z-index: 2;
2535
+ }
2536
+ .suzu-panel__chats-x {
2537
+ background: rgba(255,255,255,.12);
2538
+ border: 0;
2539
+ box-shadow: none;
2540
+ }
2541
+ }
2542
+
2543
+ .suzu-dock:not(.is-on) .suzu-glow,
2544
+ .suzu-panel:not(.is-open) .suzu-glow,
2545
+ .suzu-dock:not(.is-on) .suzu-glow__inner button,
2546
+ .suzu-dock:not(.is-on) .suzu-glow__inner button::after,
2547
+ .suzu-dock:not(.is-on) .suzu-glow__inner button img,
2548
+ .suzu-panel:not(.is-open) .suzu-glow__inner button,
2549
+ .suzu-panel:not(.is-open) .suzu-glow__inner button::after,
2550
+ .suzu-panel:not(.is-open) .suzu-glow__inner button img {
2551
+ animation: none;
2552
+ }
2553
+
2554
+ .suzu-orbit:not(.is-inview) .suzu-orbit__node,
2555
+ .suzu-orbit:not(.is-inview) .suzu-orbit__dot,
2556
+ .suzu-orbit:not(.is-inview) .suzu-orbit__port,
2557
+ .suzu-orbit:not(.is-inview) .suzu-orbit__pulse,
2558
+ .suzu-viz:not(.is-inview) .suzu-viz__msg,
2559
+ .suzu-viz:not(.is-inview) .suzu-viz__typing,
2560
+ .suzu-viz:not(.is-inview) .suzu-viz__pills span,
2561
+ .suzu-viz:not(.is-inview) .suzu-mini,
2562
+ html.suzu-paused .suzu-orbit__node,
2563
+ html.suzu-paused .suzu-orbit__dot,
2564
+ html.suzu-paused .suzu-orbit__port,
2565
+ html.suzu-paused .suzu-orbit__pulse,
2566
+ html.suzu-paused .suzu-viz__msg,
2567
+ html.suzu-paused .suzu-viz__typing,
2568
+ html.suzu-paused .suzu-viz__pills span,
2569
+ html.suzu-paused .suzu-mini,
2570
+ html.is-scrolling .suzu-orbit__node,
2571
+ html.is-scrolling .suzu-orbit__dot,
2572
+ html.is-scrolling .suzu-orbit__port,
2573
+ html.is-scrolling .suzu-orbit__pulse,
2574
+ html.is-scrolling .suzu-viz__msg,
2575
+ html.is-scrolling .suzu-viz__typing,
2576
+ html.is-scrolling .suzu-viz__pills span,
2577
+ html.is-scrolling .suzu-mini,
2578
+ body.suzu-panel-open .suzu-orbit__node,
2579
+ body.suzu-panel-open .suzu-orbit__dot,
2580
+ body.suzu-panel-open .suzu-orbit__port,
2581
+ body.suzu-panel-open .suzu-orbit__pulse,
2582
+ body.suzu-panel-open .suzu-viz__msg,
2583
+ body.suzu-panel-open .suzu-viz__typing,
2584
+ body.suzu-panel-open .suzu-viz__pills span,
2585
+ body.suzu-panel-open .suzu-mini {
2586
+ animation: none !important;
2587
+ opacity: 1 !important;
2588
+ }
2589
+
2590
+ .suzu-orbit:not(.is-inview) .suzu-orbit__wire,
2591
+ html.suzu-paused .suzu-orbit__wire,
2592
+ html.is-scrolling .suzu-orbit__wire,
2593
+ body.suzu-panel-open .suzu-orbit__wire {
2594
+ animation: none !important;
2595
+ stroke-dashoffset: 0 !important;
2596
+ }
2597
+
2598
+ .process-section-one:not(.is-inview) .process-icon,
2599
+ .process-section-one:not(.is-inview) .process-number span,
2600
+ .suzu-ios-rail:not(.is-inview) .suzu-connect__icon,
2601
+ .contact-section-suzu:not(.is-inview) .suzu-form button,
2602
+ .contact-section-suzu:not(.is-inview) .suzu-form button::after,
2603
+ html.suzu-paused .suzu-glow,
2604
+ html.suzu-paused .suzu-glow::before,
2605
+ html.suzu-paused .suzu-orbit__glow,
2606
+ html.suzu-paused .suzu-orbit__ai,
2607
+ html.suzu-paused .suzu-orbit__ai::before,
2608
+ html.suzu-paused .suzu-orbit__node span,
2609
+ html.suzu-paused .suzu-connect__icon,
2610
+ html.suzu-paused .process-section-one .process-icon,
2611
+ html.suzu-paused .process-section-one .process-number span,
2612
+ html.suzu-paused .suzu-form button,
2613
+ html.suzu-paused .suzu-form button::after,
2614
+ html.suzu-paused .suzu-glow__inner button,
2615
+ html.suzu-paused .suzu-glow__inner button::after,
2616
+ html.suzu-paused .suzu-glow__inner button img,
2617
+ html.suzu-paused .suzu-ui__typing i,
2618
+ html.suzu-paused .suzu-panel__search-ring,
2619
+ html.suzu-paused .suzu-panel__search-core,
2620
+ html.suzu-paused .suzu-panel__search-dots i,
2621
+ html.is-scrolling .suzu-glow,
2622
+ html.is-scrolling .suzu-glow::before,
2623
+ html.is-scrolling .suzu-orbit__glow,
2624
+ html.is-scrolling .suzu-orbit__ai,
2625
+ html.is-scrolling .suzu-orbit__ai::before,
2626
+ html.is-scrolling .suzu-orbit__node span,
2627
+ html.is-scrolling .suzu-connect__icon,
2628
+ html.is-scrolling .process-section-one .process-icon,
2629
+ html.is-scrolling .process-section-one .process-number span,
2630
+ html.is-scrolling .suzu-form button,
2631
+ html.is-scrolling .suzu-form button::after,
2632
+ html.is-scrolling .suzu-glow__inner button,
2633
+ html.is-scrolling .suzu-glow__inner button::after,
2634
+ html.is-scrolling .suzu-glow__inner button img,
2635
+ body.suzu-panel-open .suzu-orbit__glow,
2636
+ body.suzu-panel-open .suzu-orbit__ai,
2637
+ body.suzu-panel-open .suzu-orbit__ai::before,
2638
+ body.suzu-panel-open .suzu-orbit__node span,
2639
+ body.suzu-panel-open .process-section-one .process-icon,
2640
+ body.suzu-panel-open .process-section-one .process-number span,
2641
+ body.suzu-panel-open .suzu-connect__icon,
2642
+ body.suzu-panel-open .banner-section-three .suzu-glow {
2643
+ animation-play-state: paused !important;
2644
+ }
2645
+
2646
+ /* Cheaper glass while the page is moving — same color, less blur work. */
2647
+ html.is-scrolling {
2648
+ --suzu-lg-blur: blur(10px) saturate(150%);
2649
+ }
2650
+
2651
+ @media (prefers-reduced-motion: reduce) {
2652
+ .suzu-glow,
2653
+ .suzu-glow::before,
2654
+ .suzu-orbit,
2655
+ .suzu-orbit *,
2656
+ .suzu-viz,
2657
+ .suzu-viz *,
2658
+ .suzu-form button,
2659
+ .suzu-form button::after,
2660
+ .suzu-glow__inner button,
2661
+ .suzu-glow__inner button::after,
2662
+ .suzu-glow__inner button img,
2663
+ .suzu-ui__typing i {
2664
+ animation: none !important;
2665
+ }
2666
+ }
2667
+
2668
+ @media (prefers-reduced-transparency: reduce) {
2669
+ .saasavo-header-area .auto-container,
2670
+ .header-btn a,
2671
+ .single-feature-box,
2672
+ .single-process-box,
2673
+ .suzu-connect,
2674
+ .suzu-ui,
2675
+ .suzu-ios-nav,
2676
+ .suzu-sheet__card,
2677
+ .suzu-panel__sheet,
2678
+ .suzu-panel__chats,
2679
+ .tab_container {
2680
+ -webkit-backdrop-filter: none !important;
2681
+ backdrop-filter: none !important;
2682
+ background: linear-gradient(180deg, rgba(52, 30, 34, 0.94), rgba(18, 10, 12, 0.96)) !important;
2683
+ }
2684
+ }
2685
+
2686
+ .suzu-launcher {
2687
+ position: fixed;
2688
+ z-index: 10040;
2689
+ right: 18px;
2690
+ bottom: max(18px, env(safe-area-inset-bottom));
2691
+ width: 56px;
2692
+ height: 56px;
2693
+ border: 1px solid rgba(255, 220, 170, 0.38);
2694
+ border-radius: 50%;
2695
+ background: linear-gradient(165deg, #FFB067 0%, #E85C1C 52%, #9B1C32 100%);
2696
+ color: #fff;
2697
+ cursor: pointer;
2698
+ box-shadow: 0 8px 24px rgba(155, 28, 50, 0.4);
2699
+ display: grid;
2700
+ place-items: center;
2701
+ padding: 0;
2702
+ }
2703
+ .suzu-launcher svg { width: 26px; height: 28px; display: block; }
2704
+ body.suzu-panel-open .suzu-launcher { display: none; }