-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
1426 lines (1317 loc) · 46.1 KB
/
styles.css
File metadata and controls
1426 lines (1317 loc) · 46.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* biome-ignore-all lint/suspicious/noDuplicateCustomProperties: auto-generated from W3C DTCG tokens — primitive + semantic blocks intentionally redeclare aliases. Fix in tokens/*.json source if real, then re-run pnpm --filter @nebutra/design-tokens build. */
/**
* @nebutra/design-tokens — styles.generated.css
* AUTO-GENERATED from packages/design/design-tokens/tokens/*.json — DO NOT EDIT.
* Run `pnpm --filter @nebutra/design-tokens build` after editing tokens.
*
* SSOT Architecture:
* tokens/core.json primitive scales (colors, sizes, durations, fonts)
* tokens/semantic.json semantic aliases (brand.primary, status.danger, gradients)
* tokens/themes/light.json 12-step scales + shadcn HSL + Geist DS + elevation
* tokens/themes/dark.json same shape, dark-mode values
*
* Modeling extensions:
* - Display-P3 wide-gamut overrides (`@supports (color: color(display-p3 ...))`)
* - oklch fallbacks for ds-gray-* (`@supports (color: oklch(0 0 0))`)
* - Composite shorthand tokens (`--transition`, `--focus-ring`)
* - Tailwind v4 `@theme inline` block
* - Dark-mode brand alias overrides (`--brand-primary` → `--blue-9` in .dark)
*/
/**
* @nebutra/design-tokens — generated from W3C DTCG tokens.
* DO NOT EDIT — edit tokens/*.json and re-run `pnpm build`.
*/
:root {
--nebutra-blue-50: #f0f4ff;
--nebutra-blue-100: #dbe4ff;
--nebutra-blue-200: #bac8ff;
--nebutra-blue-300: #91a7ff;
--nebutra-blue-400: #5c7cfa;
--nebutra-blue-500: #0033fe; /** Base brand color — 云毓蓝 */
--nebutra-blue-600: #002ad4;
--nebutra-blue-700: #0021ab;
--nebutra-blue-800: #001882;
--nebutra-blue-900: #000f59;
--nebutra-blue-950: #000830;
--nebutra-cyan-50: #e6fff8;
--nebutra-cyan-100: #b3ffec;
--nebutra-cyan-200: #80ffe0;
--nebutra-cyan-300: #4dfcd4;
--nebutra-cyan-400: #1af7c8;
--nebutra-cyan-500: #0bf1c3; /** Base brand accent — 云毓青 */
--nebutra-cyan-600: #09c9a3;
--nebutra-cyan-700: #07a183;
--nebutra-cyan-800: #057963;
--nebutra-cyan-900: #035143;
--nebutra-cyan-950: #012923;
--nebutra-neutral-50: #f8fafc;
--nebutra-neutral-100: #f1f5f9;
--nebutra-neutral-200: #e2e8f0;
--nebutra-neutral-300: #cbd5e1;
--nebutra-neutral-400: #94a3b8;
--nebutra-neutral-500: #64748b;
--nebutra-neutral-600: #475569;
--nebutra-neutral-700: #334155;
--nebutra-neutral-800: #1e293b;
--nebutra-neutral-900: #0f172a;
--nebutra-neutral-950: #020617;
--nebutra-gray-50: #fafafa;
--nebutra-gray-100: #f5f5f5;
--nebutra-gray-200: #e5e5e5;
--nebutra-gray-300: #d4d4d4;
--nebutra-gray-400: #a3a3a3;
--nebutra-gray-500: #737373;
--nebutra-gray-600: #525252;
--nebutra-gray-700: #404040;
--nebutra-gray-800: #262626;
--nebutra-gray-900: #171717;
--nebutra-gray-950: #0a0a0a;
--breakpoint-xs: 26.25rem; /** 420px — narrow-phone grid flip */
--breakpoint-tight: 67.5rem; /** 1080px — dense dashboard header horizontal */
--breakpoint-shell: 73.75rem; /** 1180px — three-pane shell threshold */
--breakpoint-3xl: 112.5rem; /** 1800px — 4K / Studio Display friendliness */
--radius-none: 0;
--radius-sm: 0.25rem;
--radius-md: 0.375rem;
--radius-lg: 0.5rem;
--radius-xl: 0.75rem;
--radius-2xl: 1rem;
--radius-3xl: 1.5rem;
--radius-full: 9999px;
--radius-button: 0.5rem; /** 2026 button radius — Vercel/Linear/Cursor consensus */
--radius-card: 0.75rem; /** 2026 card radius */
--radius-panel: 1rem; /** 2026 bento/hero panel radius */
--duration-micro: 100ms; /** Micro-feedback: hover, focus, toggle, button press */
--duration-flow: 200ms; /** State flow: modal open, dropdown reveal, tab switch, default page transition */
--duration-reveal: 300ms; /** Content unveil: slide-in, expand, accordion, drawer */
--duration-cinematic: 500ms; /** Hero-grade entrance: landing reveal, large delight moments */
--ease-in: cubic-bezier(0.4, 0, 1, 1);
--ease-out: cubic-bezier(0, 0, 0.2, 1);
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
--ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
--tracking-display: -0.04em; /** Hero H1 */
--tracking-heading: -0.03em; /** Section H2/H3 */
--tracking-tight: -0.015em; /** Body emphasis */
--leading-display: 1.05;
--leading-heading: 1.15;
--ring-hairline: inset 0 0 0 1px rgb(255 255 255 / 0.04); /** Etched-glass hairline (light mode value, dark mode override in themes/dark.json) */
--overlay-faint: rgb(0 0 0 / 0.06); /** Light-mode faint overlay (6% black) */
--font-sans: var(--font-geist-sans), "Geist", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
--font-cn: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "vivo Sans", sans-serif;
--font-display: var(--font-geist-sans), "Geist", "Noto Sans SC", sans-serif;
--font-heading: var(--font-geist-sans), "Geist", "Noto Sans SC", sans-serif;
--font-mono: var(--font-geist-mono), "Geist Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
--transition-duration: 200ms; /** Default transition duration — 200ms flow rail. */
--transition-easing: ease-out; /** ease-out keyword form (CSS-friendly). Equivalent to cubic-bezier(0,0,0.2,1). */
--brand-primary: #0033fe; /** Brand primary — 云毓蓝 */
--brand-accent: #0bf1c3; /** Brand accent — 云毓青 */
--brand-tertiary: #8b5cf6;
--brand-gradient-start: #2f5bff; /** Product action gradient start. Brighter than the locked VI blue while keeping white text contrast above WCAG AA. */
--brand-gradient-end: #047c9a; /** Product action gradient end. Cyan-blue instead of green so compact CTAs stay crisp and luminous. */
--brand-gradient: linear-gradient(135deg, #2f5bff 0%, #047c9a 100%); /** UI brand gradient for product actions — cleaner blue-to-cyan, calibrated for white-text contrast on compact controls. */
--brand-gradient-reverse: linear-gradient(135deg, #047c9a 0%, #2f5bff 100%);
--brand-gradient-vertical: linear-gradient(180deg, #2f5bff 0%, #047c9a 100%);
--brand-gradient-radial: radial-gradient(circle, #047c9a 0%, #2f5bff 100%);
--brand-gradient-logo: linear-gradient(135deg, #0033fe 0%, #0bf1c3 100%); /** Logo/VI standard gradient. Use for brand assets only; product UI should use --brand-gradient. */
--brand-gradient-logo-reverse: linear-gradient(135deg, #0bf1c3 0%, #0033fe 100%);
--status-danger: #ef4444;
--status-warning: #f59e0b;
--status-success: #22c55e;
--status-info: #0033fe; /** VI: Info = Brand Blue */
--container-text: 896px;
--container-content: 1152px;
--container-wide: 1400px;
--radius: 0.375rem; /** Geist-matching 6px */
--motion-duration-micro: 100ms;
--motion-duration-flow: 200ms;
--motion-duration-reveal: 300ms;
--motion-duration-cinematic: 500ms;
--focus-ring: 0 0 0 2px hsl(var(--ring) / 0.4); /** Single-layer translucent focus ring (2026 pattern). Legacy box-shadow consumers stay compatible; modern surfaces should prefer the global :focus-visible outline rule in static/base.css. */
--neutral-1: #ffffff; /** app background */
--neutral-2: #f8fafc; /** subtle background */
--neutral-3: #f1f5f9; /** component bg default */
--neutral-4: #e2e8f0; /** component bg hover */
--neutral-5: #cbd5e1; /** component bg active */
--neutral-6: #e2e8f0; /** subtle border */
--neutral-7: #cbd5e1; /** default border */
--neutral-8: #94a3b8; /** hovered border */
--neutral-9: #64748b; /** solid fill */
--neutral-10: #475569; /** solid fill hover */
--neutral-11: #334155; /** secondary text */
--neutral-12: #0f172a; /** primary text */
--blue-1: #f0f4ff;
--blue-2: #dbe4ff;
--blue-3: #bac8ff;
--blue-4: #91a7ff;
--blue-5: #5c7cfa;
--blue-6: #bac8ff;
--blue-7: #91a7ff;
--blue-8: #5c7cfa;
--blue-9: #0033fe; /** solid fill — main brand */
--blue-10: #002ad4;
--blue-11: #0021ab;
--blue-12: #000f59;
--cyan-1: #e6fff8;
--cyan-2: #b3ffec;
--cyan-3: #80ffe0;
--cyan-4: #4dfcd4;
--cyan-5: #1af7c8;
--cyan-6: #80ffe0;
--cyan-7: #4dfcd4;
--cyan-8: #1af7c8;
--cyan-9: #0bf1c3;
--cyan-10: #09c9a3;
--cyan-11: #07a183;
--cyan-12: #035143;
--background: 0 0% 100%; /** HSL channel triple — consume via hsl(var(--background)) */
--foreground: 222 47% 11%;
--card: 0 0% 100%;
--card-foreground: 222 47% 11%;
--popover: 0 0% 100%;
--popover-foreground: 222 47% 11%;
--primary: 228 85% 56%; /** Softer brand blue #254bfa */
--primary-foreground: 0 0% 100%;
--secondary: 210 40% 96%;
--secondary-foreground: 222 47% 11%;
--muted: 210 40% 96%;
--muted-foreground: 215 25% 45%;
--accent: 228 100% 97%;
--accent-foreground: 228 85% 56%; /** Softer brand blue — desaturated to match --primary, avoids 100% saturation glare on focus/accent */
--destructive: 0 84% 45%;
--destructive-foreground: 0 0% 100%;
--success: 142 71% 29%;
--success-foreground: 0 0% 100%;
--warning: 38 92% 50%;
--warning-foreground: 222 47% 11%;
--info: 228 85% 56%;
--info-foreground: 0 0% 100%;
--border: 240 5.9% 90%;
--input: 240 5.9% 90%;
--ring: 222 47% 11%; /** Focus ring — neutral foreground (Vercel/Linear/Cursor 2026 pattern). Brand blue is reserved for selected/active states; focus indication is chrome and stays neutral. Consumed by global :focus-visible outline as hsl(var(--ring) / 0.5). */
--sidebar: 210 40% 98%;
--sidebar-foreground: 215 25% 27%;
--sidebar-primary: 228 85% 56%;
--sidebar-primary-foreground: 0 0% 100%;
--sidebar-accent: 228 100% 97%;
--sidebar-accent-foreground: 228 85% 56%;
--sidebar-border: 214 32% 91%;
--sidebar-ring: 228 85% 56%;
--chart-1: 228 100% 50%;
--chart-2: 168 91% 49%;
--chart-3: 263 70% 66%;
--chart-4: 168 91% 70%;
--chart-5: 228 100% 35%;
--ds-blue-200: oklch(96.29% 0.0195 250.59);
--ds-blue-700: oklch(57.61% 0.2508 258.23);
--ds-blue-900: oklch(53.18% 0.2399 256.9900584162342);
--ds-red-200: oklch(95.41% 0.0299 14.252646656611997);
--ds-red-700: oklch(62.56% 0.2524 23.03);
--ds-red-900: oklch(54.99% 0.232 25.29);
--ds-amber-200: oklch(96.81% 0.0495 90.24227879900472);
--ds-amber-700: oklch(81.87% 0.1969 76.46);
--ds-amber-900: oklch(52.79% 0.1496 54.65);
--ds-green-200: oklch(96.92% 0.037 147.15);
--ds-green-700: oklch(64.58% 0.1746 147.27);
--ds-green-900: oklch(51.75% 0.1453 147.65);
--ds-teal-300: oklch(94.92% 0.0478 182.07);
--ds-teal-700: oklch(64.92% 0.1572 181.95);
--ds-teal-900: oklch(52.08% 0.1251 182.93);
--ds-purple-200: oklch(96.73% 0.0228 309.8);
--ds-purple-700: oklch(55.5% 0.3008 306.12);
--ds-purple-900: oklch(47.18% 0.2579 304);
--ds-pink-300: oklch(93.83% 0.0451 356.29);
--ds-pink-700: oklch(63.52% 0.238 1.01);
--ds-pink-900: oklch(53.5% 0.2058 2.84);
--ds-gray-100: hsla(0, 0%, 95%, 1);
--ds-gray-200: hsla(0, 0%, 92%, 1);
--ds-gray-500: hsla(0, 0%, 79%, 1);
--ds-gray-600: hsla(0, 0%, 66%, 1);
--ds-gray-700: hsla(0, 0%, 56%, 1);
--ds-gray-1000: hsla(0, 0%, 9%, 1);
--ds-background-100: hsla(0, 0%, 100%, 1);
--ds-trial-start: rgb(0, 112, 243);
--ds-trial-end: rgb(248, 28, 229);
--ds-turbo-start: #ff1e56;
--ds-turbo-end: #0096ff;
--elevation-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
--elevation-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
--elevation-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
--elevation-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
--elevation-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
--elevation-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
--elevation-brand: 0 0 0 1px rgb(0 51 254 / 0.15), 0 4px 20px -2px rgb(0 51 254 / 0.2);
--elevation-brand-lg: 0 0 0 1px rgb(0 51 254 / 0.2), 0 8px 40px -4px rgb(0 51 254 / 0.3);
}
:root {
/* Wide-gamut bridge: default to sRGB, upgrade to Display-P3 when available. */
--nebutra-brand-blue: var(--nebutra-blue-500);
--nebutra-brand-cyan: var(--nebutra-cyan-500);
}
:root {
/* Gradient aliases — both --brand-gradient-* (canonical, CLAUDE.md) and --gradient-brand-* (legacy) are emitted. */
--gradient-brand: var(--brand-gradient);
--gradient-brand-hover: var(--brand-gradient-reverse);
--gradient-brand-vertical: var(--brand-gradient-vertical);
--gradient-brand-reverse: var(--brand-gradient-reverse);
--gradient-brand-radial: var(--brand-gradient-radial);
--gradient-brand-glow: var(--brand-gradient-radial);
--gradient-brand-logo: var(--brand-gradient-logo);
--gradient-brand-logo-reverse: var(--brand-gradient-logo-reverse);
--gradient-section: var(--brand-gradient-vertical);
--gradient-glow: var(--brand-gradient-radial);
}
:root {
/* Composite tokens — combine duration + easing for shorthand use. */
--transition: 150ms ease-out;
--focus-ring: 0 0 0 2px hsl(var(--ring) / 0.4);
}
@supports (color: color(display-p3 1 1 1)) {
:root {
/* Richer brand values on Display-P3 hardware; sRGB fallback above. */
--nebutra-blue-500: color(display-p3 0.03 0.19 0.99);
--nebutra-cyan-500: color(display-p3 0.07 0.94 0.79);
--nebutra-brand-blue: color(display-p3 0.03 0.19 0.99);
--nebutra-brand-cyan: color(display-p3 0.07 0.94 0.79);
}
}
@supports (color: oklch(0 0 0)) {
:root {
/* oklch values for modern engines (2024+); sRGB hsla() fallback above. */
--ds-gray-100: oklch(0.953 0 0);
--ds-gray-200: oklch(0.929 0 0);
--ds-gray-500: oklch(0.81 0 0);
--ds-gray-600: oklch(0.69 0 0);
--ds-gray-700: oklch(0.598 0 0);
--ds-gray-1000: oklch(0.215 0 0);
--ds-background-100: oklch(1 0 0);
}
}
/**
* @nebutra/design-tokens — generated from W3C DTCG tokens.
* DO NOT EDIT — edit tokens/*.json and re-run `pnpm build`.
*/
.dark {
--nebutra-blue-50: #f0f4ff;
--nebutra-blue-100: #dbe4ff;
--nebutra-blue-200: #bac8ff;
--nebutra-blue-300: #91a7ff;
--nebutra-blue-400: #5c7cfa;
--nebutra-blue-500: #0033fe; /** Base brand color — 云毓蓝 */
--nebutra-blue-600: #002ad4;
--nebutra-blue-700: #0021ab;
--nebutra-blue-800: #001882;
--nebutra-blue-900: #000f59;
--nebutra-blue-950: #000830;
--nebutra-cyan-50: #e6fff8;
--nebutra-cyan-100: #b3ffec;
--nebutra-cyan-200: #80ffe0;
--nebutra-cyan-300: #4dfcd4;
--nebutra-cyan-400: #1af7c8;
--nebutra-cyan-500: #0bf1c3; /** Base brand accent — 云毓青 */
--nebutra-cyan-600: #09c9a3;
--nebutra-cyan-700: #07a183;
--nebutra-cyan-800: #057963;
--nebutra-cyan-900: #035143;
--nebutra-cyan-950: #012923;
--nebutra-neutral-50: #f8fafc;
--nebutra-neutral-100: #f1f5f9;
--nebutra-neutral-200: #e2e8f0;
--nebutra-neutral-300: #cbd5e1;
--nebutra-neutral-400: #94a3b8;
--nebutra-neutral-500: #64748b;
--nebutra-neutral-600: #475569;
--nebutra-neutral-700: #334155;
--nebutra-neutral-800: #1e293b;
--nebutra-neutral-900: #0f172a;
--nebutra-neutral-950: #020617;
--nebutra-gray-50: #fafafa;
--nebutra-gray-100: #f5f5f5;
--nebutra-gray-200: #e5e5e5;
--nebutra-gray-300: #d4d4d4;
--nebutra-gray-400: #a3a3a3;
--nebutra-gray-500: #737373;
--nebutra-gray-600: #525252;
--nebutra-gray-700: #404040;
--nebutra-gray-800: #262626;
--nebutra-gray-900: #171717;
--nebutra-gray-950: #0a0a0a;
--breakpoint-xs: 26.25rem; /** 420px — narrow-phone grid flip */
--breakpoint-tight: 67.5rem; /** 1080px — dense dashboard header horizontal */
--breakpoint-shell: 73.75rem; /** 1180px — three-pane shell threshold */
--breakpoint-3xl: 112.5rem; /** 1800px — 4K / Studio Display friendliness */
--radius-none: 0;
--radius-sm: 0.25rem;
--radius-md: 0.375rem;
--radius-lg: 0.5rem;
--radius-xl: 0.75rem;
--radius-2xl: 1rem;
--radius-3xl: 1.5rem;
--radius-full: 9999px;
--radius-button: 0.5rem; /** 2026 button radius — Vercel/Linear/Cursor consensus */
--radius-card: 0.75rem; /** 2026 card radius */
--radius-panel: 1rem; /** 2026 bento/hero panel radius */
--duration-micro: 100ms; /** Micro-feedback: hover, focus, toggle, button press */
--duration-flow: 200ms; /** State flow: modal open, dropdown reveal, tab switch, default page transition */
--duration-reveal: 300ms; /** Content unveil: slide-in, expand, accordion, drawer */
--duration-cinematic: 500ms; /** Hero-grade entrance: landing reveal, large delight moments */
--ease-in: cubic-bezier(0.4, 0, 1, 1);
--ease-out: cubic-bezier(0, 0, 0.2, 1);
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
--ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
--tracking-display: -0.04em; /** Hero H1 */
--tracking-heading: -0.03em; /** Section H2/H3 */
--tracking-tight: -0.015em; /** Body emphasis */
--leading-display: 1.05;
--leading-heading: 1.15;
--ring-hairline: inset 0 0 0 1px rgb(255 255 255 / 0.06); /** Hairline override — more visible on dark background */
--overlay-faint: rgb(255 255 255 / 0.06); /** Dark-mode faint overlay (6% white) — inverted from light */
--font-sans: var(--font-geist-sans), "Geist", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
--font-cn: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "vivo Sans", sans-serif;
--font-display: var(--font-geist-sans), "Geist", "Noto Sans SC", sans-serif;
--font-heading: var(--font-geist-sans), "Geist", "Noto Sans SC", sans-serif;
--font-mono: var(--font-geist-mono), "Geist Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
--transition-duration: 200ms; /** Default transition duration — 200ms flow rail. */
--transition-easing: ease-out; /** ease-out keyword form (CSS-friendly). Equivalent to cubic-bezier(0,0,0.2,1). */
--brand-primary: #5c7cfa; /** Dark-mode brand primary — visible against dark surfaces (uses --blue-9 = nebutra-blue-400). */
--brand-accent: #1af7c8; /** Dark-mode brand accent — visible against dark surfaces (uses --cyan-9 = nebutra-cyan-400). */
--brand-tertiary: #8b5cf6;
--brand-gradient-start: #2f5bff; /** Product action gradient start. Brighter than the locked VI blue while keeping white text contrast above WCAG AA. */
--brand-gradient-end: #047c9a; /** Product action gradient end. Cyan-blue instead of green so compact CTAs stay crisp and luminous. */
--brand-gradient: linear-gradient(135deg, #2f5bff 0%, #047c9a 100%); /** UI brand gradient for product actions — cleaner blue-to-cyan, calibrated for white-text contrast on compact controls. */
--brand-gradient-reverse: linear-gradient(135deg, #047c9a 0%, #2f5bff 100%);
--brand-gradient-vertical: linear-gradient(180deg, #2f5bff 0%, #047c9a 100%);
--brand-gradient-radial: radial-gradient(circle, #047c9a 0%, #2f5bff 100%);
--brand-gradient-logo: linear-gradient(135deg, #0033fe 0%, #0bf1c3 100%); /** Logo/VI standard gradient. Use for brand assets only; product UI should use --brand-gradient. */
--brand-gradient-logo-reverse: linear-gradient(135deg, #0bf1c3 0%, #0033fe 100%);
--status-danger: #ef4444;
--status-warning: #f59e0b;
--status-success: #22c55e;
--status-info: #5c7cfa; /** Dark-mode info color — equals dark brand-primary. */
--container-text: 896px;
--container-content: 1152px;
--container-wide: 1400px;
--radius: 0.375rem; /** Geist-matching 6px */
--motion-duration-micro: 100ms;
--motion-duration-flow: 200ms;
--motion-duration-reveal: 300ms;
--motion-duration-cinematic: 500ms;
--focus-ring: 0 0 0 2px hsl(var(--ring) / 0.4); /** Single-layer translucent focus ring (2026 pattern). Legacy box-shadow consumers stay compatible; modern surfaces should prefer the global :focus-visible outline rule in static/base.css. */
--neutral-1: #020617;
--neutral-2: #0f172a;
--neutral-3: #1e293b;
--neutral-4: #334155;
--neutral-5: #475569;
--neutral-6: #171717;
--neutral-7: #262626;
--neutral-8: #404040;
--neutral-9: #94a3b8;
--neutral-10: #cbd5e1;
--neutral-11: #e2e8f0;
--neutral-12: #f8fafc;
--blue-1: #000830;
--blue-2: #000f59;
--blue-3: #001882;
--blue-4: #0021ab;
--blue-5: #002ad4;
--blue-6: #001882;
--blue-7: #0021ab;
--blue-8: #002ad4;
--blue-9: #5c7cfa;
--blue-10: #91a7ff;
--blue-11: #bac8ff;
--blue-12: #dbe4ff;
--cyan-1: #012923;
--cyan-2: #035143;
--cyan-3: #057963;
--cyan-4: #07a183;
--cyan-5: #09c9a3;
--cyan-6: #057963;
--cyan-7: #07a183;
--cyan-8: #09c9a3;
--cyan-9: #1af7c8;
--cyan-10: #4dfcd4;
--cyan-11: #80ffe0;
--cyan-12: #b3ffec;
--background: 222 14% 9%;
--foreground: 210 18% 96%;
--card: 222 12% 13%;
--card-foreground: 210 18% 96%;
--popover: 222 12% 13%;
--popover-foreground: 210 18% 96%;
--primary: 228 90% 72%;
--primary-foreground: 222 14% 9%;
--secondary: 222 10% 18%;
--secondary-foreground: 210 18% 96%;
--muted: 222 10% 17%;
--muted-foreground: 220 8% 65%;
--accent: 228 38% 22%;
--accent-foreground: 228 95% 80%;
--destructive: 0 63% 38%;
--destructive-foreground: 210 18% 96%;
--success: 142 60% 42%;
--success-foreground: 222 14% 9%;
--warning: 38 80% 52%;
--warning-foreground: 222 14% 9%;
--info: 228 95% 72%;
--info-foreground: 222 14% 9%;
--border: 220 8% 22%;
--input: 220 8% 22%;
--ring: 0 0% 88%; /** Focus ring (dark mode) — neutral light gray. Mirrors light-mode neutral foreground choice. */
--sidebar: 222 16% 8%;
--sidebar-foreground: 210 18% 94%;
--sidebar-primary: 228 95% 72%;
--sidebar-primary-foreground: 222 14% 9%;
--sidebar-accent: 228 38% 22%;
--sidebar-accent-foreground: 228 95% 80%;
--sidebar-border: 220 8% 18%;
--sidebar-ring: 228 95% 72%;
--chart-1: 228 95% 67%;
--chart-2: 168 96% 54%;
--chart-3: 228 100% 82%;
--chart-4: 168 100% 75%;
--chart-5: 228 100% 50%;
--ds-blue-200: oklch(25.45% 0.0811 255.8);
--ds-blue-700: oklch(57.61% 0.2321 258.23);
--ds-blue-900: oklch(71.7% 0.1648 250.79360374054167);
--ds-red-200: oklch(25.93% 0.0834 19.02);
--ds-red-700: oklch(62.56% 0.2234 23.03);
--ds-red-900: oklch(69.96% 0.2136 22.03);
--ds-amber-200: oklch(24.95% 0.0642 64.78);
--ds-amber-700: oklch(81.87% 0.1969 76.46);
--ds-amber-900: oklch(77.21% 0.1991 64.28);
--ds-green-200: oklch(27.12% 0.0895 150.09);
--ds-green-700: oklch(64.58% 0.199 147.27);
--ds-green-900: oklch(73.1% 0.2158 148.29);
--ds-teal-300: oklch(31.5% 0.0767 180.99);
--ds-teal-700: oklch(64.92% 0.1403 181.95);
--ds-teal-900: oklch(74.56% 0.1765 182.8);
--ds-purple-200: oklch(25.91% 0.0921 314.41);
--ds-purple-700: oklch(55.5% 0.2186 306.12);
--ds-purple-900: oklch(69.87% 0.2037 309.51);
--ds-pink-300: oklch(31.15% 0.1067 355.93);
--ds-pink-700: oklch(63.52% 0.2346 1.01);
--ds-pink-900: oklch(69.36% 0.2223 3.91);
--ds-gray-100: hsla(0, 0%, 10%, 1);
--ds-gray-200: hsla(0, 0%, 12%, 1);
--ds-gray-500: hsla(0, 0%, 27%, 1);
--ds-gray-600: hsla(0, 0%, 53%, 1);
--ds-gray-700: hsla(0, 0%, 56%, 1);
--ds-gray-1000: hsla(0, 0%, 93%, 1);
--ds-background-100: hsla(0, 0%, 4%, 1);
--ds-trial-start: rgb(0, 112, 243);
--ds-trial-end: rgb(248, 28, 229);
--ds-turbo-start: #ff1e56;
--ds-turbo-end: #0096ff;
--elevation-xs: 0 1px 2px 0 rgb(0 0 0 / 0.3);
--elevation-sm: 0 1px 3px 0 rgb(0 0 0 / 0.4), 0 1px 2px -1px rgb(0 0 0 / 0.4);
--elevation-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.4);
--elevation-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.5);
--elevation-xl: 0 20px 25px -5px rgb(0 0 0 / 0.6), 0 8px 10px -6px rgb(0 0 0 / 0.6);
--elevation-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.8);
--elevation-brand: 0 0 0 1px rgb(92 124 250 / 0.25), 0 4px 20px -2px rgb(92 124 250 / 0.3);
--elevation-brand-lg: 0 0 0 1px rgb(92 124 250 / 0.3), 0 8px 40px -4px rgb(92 124 250 / 0.4);
}
.dark {
/* Gradient aliases — both --brand-gradient-* (canonical, CLAUDE.md) and --gradient-brand-* (legacy) are emitted. */
--gradient-brand: var(--brand-gradient);
--gradient-brand-hover: var(--brand-gradient-reverse);
--gradient-brand-vertical: var(--brand-gradient-vertical);
--gradient-brand-reverse: var(--brand-gradient-reverse);
--gradient-brand-radial: var(--brand-gradient-radial);
--gradient-brand-glow: var(--brand-gradient-radial);
--gradient-brand-logo: var(--brand-gradient-logo);
--gradient-brand-logo-reverse: var(--brand-gradient-logo-reverse);
--gradient-section: var(--brand-gradient-vertical);
--gradient-glow: var(--brand-gradient-radial);
}
@supports (color: oklch(0 0 0)) {
.dark {
/* oklch values for modern engines (2024+); sRGB hsla() fallback above. */
--ds-gray-100: oklch(0.232 0 0);
--ds-gray-200: oklch(0.259 0 0);
--ds-gray-500: oklch(0.409 0 0);
--ds-gray-600: oklch(0.59 0 0);
--ds-gray-700: oklch(0.598 0 0);
--ds-gray-1000: oklch(0.94 0 0);
--ds-background-100: oklch(0.143 0 0);
}
}
/* ============================================
Tailwind CSS 4 Theme Configuration (auto-generated)
============================================ */
@theme inline {
/* Nebutra Brand Color Palette */
--color-nebutra-blue-50: var(--nebutra-blue-50);
--color-nebutra-blue-100: var(--nebutra-blue-100);
--color-nebutra-blue-200: var(--nebutra-blue-200);
--color-nebutra-blue-300: var(--nebutra-blue-300);
--color-nebutra-blue-400: var(--nebutra-blue-400);
--color-nebutra-blue-500: var(--nebutra-blue-500);
--color-nebutra-blue-600: var(--nebutra-blue-600);
--color-nebutra-blue-700: var(--nebutra-blue-700);
--color-nebutra-blue-800: var(--nebutra-blue-800);
--color-nebutra-blue-900: var(--nebutra-blue-900);
--color-nebutra-blue-950: var(--nebutra-blue-950);
--color-nebutra-cyan-50: var(--nebutra-cyan-50);
--color-nebutra-cyan-100: var(--nebutra-cyan-100);
--color-nebutra-cyan-200: var(--nebutra-cyan-200);
--color-nebutra-cyan-300: var(--nebutra-cyan-300);
--color-nebutra-cyan-400: var(--nebutra-cyan-400);
--color-nebutra-cyan-500: var(--nebutra-cyan-500);
--color-nebutra-cyan-600: var(--nebutra-cyan-600);
--color-nebutra-cyan-700: var(--nebutra-cyan-700);
--color-nebutra-cyan-800: var(--nebutra-cyan-800);
--color-nebutra-cyan-900: var(--nebutra-cyan-900);
--color-nebutra-cyan-950: var(--nebutra-cyan-950);
--color-nebutra-neutral-50: var(--nebutra-neutral-50);
--color-nebutra-neutral-100: var(--nebutra-neutral-100);
--color-nebutra-neutral-200: var(--nebutra-neutral-200);
--color-nebutra-neutral-300: var(--nebutra-neutral-300);
--color-nebutra-neutral-400: var(--nebutra-neutral-400);
--color-nebutra-neutral-500: var(--nebutra-neutral-500);
--color-nebutra-neutral-600: var(--nebutra-neutral-600);
--color-nebutra-neutral-700: var(--nebutra-neutral-700);
--color-nebutra-neutral-800: var(--nebutra-neutral-800);
--color-nebutra-neutral-900: var(--nebutra-neutral-900);
--color-nebutra-neutral-950: var(--nebutra-neutral-950);
/* Semantic Theme Colors */
--color-background: hsl(var(--background));
--color-foreground: hsl(var(--foreground));
--color-card: hsl(var(--card));
--color-card-foreground: hsl(var(--card-foreground));
--color-popover: hsl(var(--popover));
--color-popover-foreground: hsl(var(--popover-foreground));
--color-primary: hsl(var(--primary));
--color-primary-foreground: hsl(var(--primary-foreground));
--color-secondary: hsl(var(--secondary));
--color-secondary-foreground: hsl(var(--secondary-foreground));
--color-muted: hsl(var(--muted));
--color-muted-foreground: hsl(var(--muted-foreground));
--color-accent: hsl(var(--accent));
--color-accent-foreground: hsl(var(--accent-foreground));
--color-destructive: hsl(var(--destructive));
--color-destructive-foreground: hsl(var(--destructive-foreground));
--color-success: hsl(var(--success));
--color-success-foreground: hsl(var(--success-foreground));
--color-warning: hsl(var(--warning));
--color-warning-foreground: hsl(var(--warning-foreground));
--color-info: hsl(var(--info));
--color-info-foreground: hsl(var(--info-foreground));
--color-border: hsl(var(--border));
--color-input: hsl(var(--input));
--color-ring: hsl(var(--ring));
/* Sidebar */
--color-sidebar: hsl(var(--sidebar));
--color-sidebar-foreground: hsl(var(--sidebar-foreground));
--color-sidebar-primary: hsl(var(--sidebar-primary));
--color-sidebar-primary-foreground: hsl(var(--sidebar-primary-foreground));
--color-sidebar-accent: hsl(var(--sidebar-accent));
--color-sidebar-accent-foreground: hsl(var(--sidebar-accent-foreground));
--color-sidebar-border: hsl(var(--sidebar-border));
--color-sidebar-ring: hsl(var(--sidebar-ring));
/* Brand aliases */
--color-brand-primary: var(--brand-primary);
--color-brand-accent: var(--brand-accent);
--color-brand-tertiary: var(--brand-tertiary);
/* Chart colors */
--color-chart-1: hsl(var(--chart-1));
--color-chart-2: hsl(var(--chart-2));
--color-chart-3: hsl(var(--chart-3));
--color-chart-4: hsl(var(--chart-4));
--color-chart-5: hsl(var(--chart-5));
/* 12-Step Functional Scales */
--color-neutral-1: var(--neutral-1);
--color-neutral-2: var(--neutral-2);
--color-neutral-3: var(--neutral-3);
--color-neutral-4: var(--neutral-4);
--color-neutral-5: var(--neutral-5);
--color-neutral-6: var(--neutral-6);
--color-neutral-7: var(--neutral-7);
--color-neutral-8: var(--neutral-8);
--color-neutral-9: var(--neutral-9);
--color-neutral-10: var(--neutral-10);
--color-neutral-11: var(--neutral-11);
--color-neutral-12: var(--neutral-12);
--color-blue-1: var(--blue-1);
--color-blue-2: var(--blue-2);
--color-blue-3: var(--blue-3);
--color-blue-4: var(--blue-4);
--color-blue-5: var(--blue-5);
--color-blue-6: var(--blue-6);
--color-blue-7: var(--blue-7);
--color-blue-8: var(--blue-8);
--color-blue-9: var(--blue-9);
--color-blue-10: var(--blue-10);
--color-blue-11: var(--blue-11);
--color-blue-12: var(--blue-12);
--color-cyan-1: var(--cyan-1);
--color-cyan-2: var(--cyan-2);
--color-cyan-3: var(--cyan-3);
--color-cyan-4: var(--cyan-4);
--color-cyan-5: var(--cyan-5);
--color-cyan-6: var(--cyan-6);
--color-cyan-7: var(--cyan-7);
--color-cyan-8: var(--cyan-8);
--color-cyan-9: var(--cyan-9);
--color-cyan-10: var(--cyan-10);
--color-cyan-11: var(--cyan-11);
--color-cyan-12: var(--cyan-12);
/* Geist DS color scale */
--color-blue-700: var(--ds-blue-700);
--color-blue-900: var(--ds-blue-900);
--color-red-200: var(--ds-red-200);
--color-red-700: var(--ds-red-700);
--color-red-900: var(--ds-red-900);
--color-amber-200: var(--ds-amber-200);
--color-amber-700: var(--ds-amber-700);
--color-amber-900: var(--ds-amber-900);
--color-green-200: var(--ds-green-200);
--color-green-700: var(--ds-green-700);
--color-green-900: var(--ds-green-900);
--color-teal-300: var(--ds-teal-300);
--color-teal-700: var(--ds-teal-700);
--color-teal-900: var(--ds-teal-900);
--color-purple-200: var(--ds-purple-200);
--color-purple-700: var(--ds-purple-700);
--color-purple-900: var(--ds-purple-900);
--color-pink-300: var(--ds-pink-300);
--color-pink-700: var(--ds-pink-700);
--color-pink-900: var(--ds-pink-900);
--color-gray-100: var(--ds-gray-100);
--color-gray-200: var(--ds-gray-200);
--color-gray-700: var(--ds-gray-700);
--color-gray-1000: var(--ds-gray-1000);
--color-trial-start: var(--ds-trial-start);
--color-trial-end: var(--ds-trial-end);
--color-turbo-start: var(--ds-turbo-start);
--color-turbo-end: var(--ds-turbo-end);
--color-geist-gray-100: var(--ds-gray-100);
--color-geist-gray-200: var(--ds-gray-200);
--color-geist-gray-500: var(--ds-gray-500);
--color-geist-gray-600: var(--ds-gray-600);
--color-geist-gray-700: var(--ds-gray-700);
--color-geist-gray-1000: var(--ds-gray-1000);
--color-geist-background-100: var(--ds-background-100);
/* Border Radius */
--radius-none: 0;
--radius-sm: 0.25rem;
--radius-md: 0.375rem;
--radius-lg: 0.5rem;
--radius-xl: 0.75rem;
--radius-2xl: 1rem;
--radius-3xl: 1.5rem;
--radius-full: 9999px;
/* Shadows */
--shadow-xs: var(--elevation-xs);
--shadow-sm: var(--elevation-sm);
--shadow-md: var(--elevation-md);
--shadow-lg: var(--elevation-lg);
--shadow-xl: var(--elevation-xl);
--shadow-2xl: var(--elevation-2xl);
--shadow-brand: var(--elevation-brand);
--shadow-brand-lg: var(--elevation-brand-lg);
/* Motion — Easing curves */
--ease-in: cubic-bezier(0.4, 0, 1, 1);
--ease-out: cubic-bezier(0, 0, 0.2, 1);
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
--ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
/* Motion — Durations (four-rail; see core.json:duration). Names denote intent, not relative speed. */
--duration-micro: 100ms;
--duration-flow: 200ms;
--duration-reveal: 300ms;
--duration-cinematic: 500ms;
/* Font family — Geist primary stack with CJK fallbacks */
--font-sans: var(--font-geist-sans), "Geist", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
--font-cn: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "vivo Sans", sans-serif;
--font-display: var(--font-geist-sans), "Geist", "Noto Sans SC", sans-serif;
--font-heading: var(--font-geist-sans), "Geist", "Noto Sans SC", sans-serif;
--font-mono: var(--font-geist-mono), "Geist Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
}
/* ============================================
Base Styles — non-token CSS that complements the design-tokens output.
This file is concatenated into styles.generated.css after the @theme block.
============================================ */
/* ─── Edge tokens (2026-05 perf governance) ─────────────────
Pre-computed alpha values for borders / hairlines / outer glows.
Replaces ~70 runtime `color-mix(foreground, transparent N%)` calls per
page that re-evaluated on every paint. Mode-aware via CSS cascade.
Lives in static/ so it survives Style Dictionary rebuilds.
─────────────────────────────────────────────────────────── */
:root {
--edge-faint: rgb(0 0 0 / 0.04);
--edge-soft: rgb(0 0 0 / 0.07);
--edge-medium: rgb(0 0 0 / 0.12);
--halo-faint: rgb(0 0 0 / 0.03);
}
.dark {
--edge-faint: rgb(255 255 255 / 0.04);
--edge-soft: rgb(255 255 255 / 0.06);
--edge-medium: rgb(255 255 255 / 0.1);
--halo-faint: rgb(255 255 255 / 0.03);
}
@layer base {
*,
*::before,
*::after {
/* Token-aware default border — resolves via cascade:
:root → light (hsl 240 5.9% 90% ≈ #e4e4e7)
.dark → dark (hsl 0 0% 14.9% ≈ #262626)
Previously hardcoded to the light value, which leaked a near-white border
into every element in dark mode regardless of component. See ADR 2026-05-11.
Keep this in Tailwind's base layer so component utilities such as
border-r-transparent can override it. */
border-color: hsl(var(--border));
}
}
body {
background-color: hsl(var(--background));
color: hsl(var(--foreground));
font-family: var(--font-sans);
font-feature-settings:
"rlig" 1,
"calt" 1;
}
html {
scroll-behavior: smooth;
}
:focus-visible:not(
:where(input, textarea, select, [cmdk-input], [role="textbox"], [contenteditable="true"])
) {
outline: 2px solid hsl(var(--ring) / 0.5);
outline-offset: 2px;
border-radius: inherit;
}
::selection {
background-color: hsl(var(--primary) / 0.2);
color: hsl(var(--primary));
}
/* ============================================
Animation Utilities
============================================ */
@keyframes spinner {
to {
transform: rotate(360deg);
}
}
@keyframes accordion-down {
from {
height: 0;
}
to {
height: var(--radix-accordion-content-height);
}
}
@keyframes accordion-up {
from {
height: var(--radix-accordion-content-height);
}
to {
height: 0;
}
}
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fade-out {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes slide-in-from-top {
from {
transform: translateY(-100%);
}
to {
transform: translateY(0);
}
}
@keyframes slide-in-from-bottom {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}
@keyframes slide-in-from-left {
from {
transform: translateX(-100%);
}
to {
transform: translateX(0);
}
}
@keyframes slide-in-from-right {
from {
transform: translateX(100%);
}
to {
transform: translateX(0);
}
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes pulse {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
@keyframes bounce {
0%,
100% {
transform: translateY(-25%);
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
}
50% {
transform: translateY(0);
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
}
/* ============================================
Named Typography Utility Classes
Geist-style: size encoded in class name,
state variants as suffixes (-strong/-mono/-tabular)
============================================ */
@utility text-heading-72 {
font-family: var(--font-display);
font-size: 4.5rem;
line-height: 1.1;
letter-spacing: -0.03em;
font-weight: 700;
}
@utility text-heading-64 {
font-family: var(--font-display);
font-size: 4rem;
line-height: 1.1;
letter-spacing: -0.03em;
font-weight: 700;
}
@utility text-heading-56 {
font-family: var(--font-display);
font-size: 3.5rem;
line-height: 1.1;
letter-spacing: -0.025em;
font-weight: 700;
}
@utility text-heading-48 {
font-family: var(--font-display);
font-size: 3rem;
line-height: 1.1;
letter-spacing: -0.02em;
font-weight: 700;
}
@utility text-heading-40 {
font-family: var(--font-display);
font-size: 2.5rem;
line-height: 1.15;
letter-spacing: -0.02em;
font-weight: 700;
}
@utility text-heading-32 {
font-family: var(--font-display);
font-size: 2rem;
line-height: 1.2;
letter-spacing: -0.015em;
font-weight: 600;
}
@utility text-heading-24 {
font-family: var(--font-display);
font-size: 1.5rem;
line-height: 1.3;
letter-spacing: -0.01em;
font-weight: 600;
}
@utility text-heading-20 {