9remote 2.0.70 → 2.0.73

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.
@@ -1,4 +1,4 @@
1
- @import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");/**
1
+ @import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&display=swap");@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap");@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");/**
2
2
  * Copyright (c) 2014 The xterm.js authors. All rights reserved.
3
3
  * Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
4
4
  * https://github.com/chjj/term.js
@@ -435,7 +435,7 @@ html,
435
435
  -moz-tab-size: 4; /* 3 */
436
436
  -o-tab-size: 4;
437
437
  tab-size: 4; /* 3 */
438
- font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
438
+ font-family: Sora, system-ui, sans-serif; /* 4 */
439
439
  font-feature-settings: normal; /* 5 */
440
440
  font-variation-settings: normal; /* 6 */
441
441
  -webkit-tap-highlight-color: transparent; /* 7 */
@@ -501,7 +501,7 @@ code,
501
501
  kbd,
502
502
  samp,
503
503
  pre {
504
- font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
504
+ font-family: JetBrains Mono, ui-monospace, monospace; /* 1 */
505
505
  font-feature-settings: normal; /* 2 */
506
506
  font-variation-settings: normal; /* 3 */
507
507
  font-size: 1em; /* 4 */
@@ -742,7 +742,7 @@ html,
742
742
  overflow: hidden;
743
743
  }
744
744
  body {
745
- font-family: "Inter", sans-serif;
745
+ font-family: "Sora", system-ui, sans-serif;
746
746
  background-color: var(--bg-main);
747
747
  color: var(--text-main);
748
748
  -webkit-font-smoothing: antialiased;
@@ -805,11 +805,13 @@ button {
805
805
  max-width: 1536px;
806
806
  }
807
807
  }
808
- /* Clean background */
808
+ /* Clean background — soft radial base (pro5 parity) */
809
809
  .dot-grid-bg {
810
- background: var(--bg-main);
811
- transition: background-color 0.3s ease;
810
+ background: linear-gradient(160deg, var(--bg-alt), var(--bg-main) 55%, var(--bg-body));
811
+ transition: background 0.3s ease;
812
812
  }
813
+ /* Conic rainbow shimmer — pro5 parity, no animation */
814
+ /* Warm color wash — pro5 pcb layer minus the photo (warm undertone + brand glow) */
813
815
  /* Faint grid overlay — synced with web landing grid (absolute inside relative parent) */
814
816
  .landing-grid {
815
817
  background-image:
@@ -818,19 +820,41 @@ button {
818
820
  background-size: 40px 40px;
819
821
  opacity: var(--grid-opacity, 0.05);
820
822
  }
823
+ /* Animated aurora blobs — slow drift, brand-tinted, behind content */
824
+ .aurora {
825
+ background:
826
+ radial-gradient(38% 44% at 18% 22%, rgba(var(--brand-rgb), 0.22), transparent 62%),
827
+ radial-gradient(32% 40% at 82% 12%, rgba(var(--brand-rgb), 0.14), transparent 60%),
828
+ radial-gradient(46% 50% at 70% 88%, rgba(var(--brand-rgb), 0.10), transparent 65%);
829
+ filter: blur(40px);
830
+ animation: aurora-drift 26s ease-in-out infinite alternate;
831
+ will-change: transform;
832
+ }
833
+ [data-theme="light"] .aurora { opacity: 0.5; }
834
+ /* Static warm glow — soft even radials that bleed warmth through the glass cards */
835
+ @keyframes aurora-drift {
836
+ from { transform: translate3d(-3%, -2%, 0) scale(1); }
837
+ to { transform: translate3d(4%, 3%, 0) scale(1.08); }
838
+ }
839
+ @media (prefers-reduced-motion: reduce) {
840
+ .aurora { animation: none; }
841
+ }
842
+ /* Vignette + fine grain — darkens edges, focuses center (pro5 parity) */
821
843
  /* Dark card — synced with web login card */
822
844
  .dark-card {
823
- background: var(--surface);
845
+ background: var(--surface-2);
824
846
  border: 1px solid var(--border);
825
847
  border-radius: var(--radius-brand);
826
848
  transition: background-color 0.3s ease, border-color 0.3s ease;
827
849
  }
828
850
  /* Elevated cards — soft shadow, no flat border (web parity) */
829
851
  .card-elev {
830
- background: var(--surface);
852
+ background: var(--glass-bg);
831
853
  box-shadow: var(--shadow-elev);
832
- border: 1px solid var(--border-subtle);
833
- border-radius: var(--radius-brand-lg);
854
+ border: 1px solid var(--glass-border);
855
+ border-radius: 20px;
856
+ backdrop-filter: blur(20px) saturate(140%);
857
+ -webkit-backdrop-filter: blur(20px) saturate(140%);
834
858
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
835
859
  }
836
860
  .card-elev:hover {
@@ -845,29 +869,29 @@ button {
845
869
  transition: all 0.3s ease;
846
870
  }
847
871
  .glass-btn {
848
- background: var(--glass-bg);
849
- border: 1px solid var(--glass-border);
850
- border-radius: 8px;
851
- transition: all 0.2s ease;
872
+ background: var(--surface-2);
873
+ border: 1px solid var(--border);
874
+ border-radius: 10px;
875
+ transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
852
876
  }
853
877
  .glass-btn:hover {
854
878
  background: var(--glass-hover);
855
- border-color: var(--border);
879
+ border-color: var(--ring, var(--border));
856
880
  }
857
881
  .btn-primary {
858
- background: var(--brand-500);
882
+ background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
859
883
  border-radius: var(--radius-brand);
860
884
  color: #fff;
861
885
  font-weight: 600;
862
- transition: all 0.2s ease;
863
- box-shadow: 0 4px 16px rgba(229, 106, 74, 0.2);
886
+ transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
887
+ box-shadow: 0 8px 20px -6px rgba(var(--brand-rgb), 0.5);
864
888
  }
865
889
  .btn-primary:hover {
866
- background: var(--brand-600);
867
- transform: scale(1.02);
890
+ filter: brightness(1.06);
891
+ transform: translateY(-1px);
868
892
  }
869
893
  .btn-primary:disabled {
870
- background: rgba(229, 106, 74, 0.3);
894
+ background: rgba(var(--brand-rgb), 0.3);
871
895
  cursor: not-allowed;
872
896
  transform: none;
873
897
  box-shadow: none;
@@ -886,22 +910,30 @@ button {
886
910
  }
887
911
  /* Sidebar — 9router pattern: vibrancy bg + right border */
888
912
  .sidebar {
889
- background: var(--sidebar);
890
- border-right: 1px solid var(--border-subtle);
913
+ background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
914
+ border-right: 1px solid var(--border);
891
915
  backdrop-filter: blur(20px);
892
916
  }
893
917
  .brand-text {
894
- font-family: "Press Start 2P", monospace;
895
- color: var(--brand-500);
896
- letter-spacing: 0.05em;
918
+ font-family: "Sora", system-ui, sans-serif;
919
+ font-weight: 700;
920
+ font-size: 15px;
921
+ color: var(--text-main);
922
+ letter-spacing: -0.02em;
897
923
  }
898
924
  .material-symbols-outlined {
899
- font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
925
+ font-family: "Material Symbols Rounded";
926
+ font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
900
927
  }
901
928
  /* Filled icon variant for active nav (9router) */
902
929
  .fill-1 {
903
930
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
904
931
  }
932
+ /* Monospace → JetBrains Mono with tabular numerals */
933
+ .font-mono {
934
+ font-family: "JetBrains Mono", ui-monospace, monospace;
935
+ font-variant-numeric: tabular-nums;
936
+ }
905
937
  .pointer-events-none{
906
938
  pointer-events: none;
907
939
  }
@@ -923,9 +955,6 @@ button {
923
955
  .relative{
924
956
  position: relative;
925
957
  }
926
- .sticky{
927
- position: sticky;
928
- }
929
958
  .inset-0{
930
959
  inset: 0px;
931
960
  }
@@ -933,27 +962,42 @@ button {
933
962
  top: 0px;
934
963
  bottom: 0px;
935
964
  }
965
+ .-right-1\.5{
966
+ right: -0.375rem;
967
+ }
968
+ .-top-1\.5{
969
+ top: -0.375rem;
970
+ }
936
971
  .bottom-0{
937
972
  bottom: 0px;
938
973
  }
974
+ .bottom-1\.5{
975
+ bottom: 0.375rem;
976
+ }
939
977
  .bottom-5{
940
978
  bottom: 1.25rem;
941
979
  }
980
+ .bottom-full{
981
+ bottom: 100%;
982
+ }
942
983
  .left-0{
943
984
  left: 0px;
944
985
  }
986
+ .left-1\.5{
987
+ left: 0.375rem;
988
+ }
945
989
  .right-0{
946
990
  right: 0px;
947
991
  }
992
+ .right-1\.5{
993
+ right: 0.375rem;
994
+ }
948
995
  .right-2{
949
996
  right: 0.5rem;
950
997
  }
951
998
  .right-7{
952
999
  right: 1.75rem;
953
1000
  }
954
- .top-0{
955
- top: 0px;
956
- }
957
1001
  .top-0\.5{
958
1002
  top: 0.125rem;
959
1003
  }
@@ -966,9 +1010,6 @@ button {
966
1010
  .isolate{
967
1011
  isolation: isolate;
968
1012
  }
969
- .-z-10{
970
- z-index: -10;
971
- }
972
1013
  .z-0{
973
1014
  z-index: 0;
974
1015
  }
@@ -990,6 +1031,10 @@ button {
990
1031
  .z-\[60\]{
991
1032
  z-index: 60;
992
1033
  }
1034
+ .-mx-3{
1035
+ margin-left: -0.75rem;
1036
+ margin-right: -0.75rem;
1037
+ }
993
1038
  .mx-auto{
994
1039
  margin-left: auto;
995
1040
  margin-right: auto;
@@ -1015,12 +1060,18 @@ button {
1015
1060
  .ml-1{
1016
1061
  margin-left: 0.25rem;
1017
1062
  }
1063
+ .ml-auto{
1064
+ margin-left: auto;
1065
+ }
1018
1066
  .mt-0\.5{
1019
1067
  margin-top: 0.125rem;
1020
1068
  }
1021
1069
  .mt-1{
1022
1070
  margin-top: 0.25rem;
1023
1071
  }
1072
+ .mt-2{
1073
+ margin-top: 0.5rem;
1074
+ }
1024
1075
  .mt-8{
1025
1076
  margin-top: 2rem;
1026
1077
  }
@@ -1063,12 +1114,12 @@ button {
1063
1114
  .h-4{
1064
1115
  height: 1rem;
1065
1116
  }
1066
- .h-44{
1067
- height: 11rem;
1068
- }
1069
1117
  .h-5{
1070
1118
  height: 1.25rem;
1071
1119
  }
1120
+ .h-52{
1121
+ height: 13rem;
1122
+ }
1072
1123
  .h-6{
1073
1124
  height: 1.5rem;
1074
1125
  }
@@ -1078,8 +1129,8 @@ button {
1078
1129
  .h-8{
1079
1130
  height: 2rem;
1080
1131
  }
1081
- .h-9{
1082
- height: 2.25rem;
1132
+ .h-\[26px\]{
1133
+ height: 26px;
1083
1134
  }
1084
1135
  .h-full{
1085
1136
  height: 100%;
@@ -1090,6 +1141,9 @@ button {
1090
1141
  .max-h-\[90vh\]{
1091
1142
  max-height: 90vh;
1092
1143
  }
1144
+ .max-h-\[calc\(100dvh-14rem\)\]{
1145
+ max-height: calc(100dvh - 14rem);
1146
+ }
1093
1147
  .min-h-0{
1094
1148
  min-height: 0px;
1095
1149
  }
@@ -1105,9 +1159,6 @@ button {
1105
1159
  .w-10{
1106
1160
  width: 2.5rem;
1107
1161
  }
1108
- .w-11{
1109
- width: 2.75rem;
1110
- }
1111
1162
  .w-16{
1112
1163
  width: 4rem;
1113
1164
  }
@@ -1117,14 +1168,14 @@ button {
1117
1168
  .w-4{
1118
1169
  width: 1rem;
1119
1170
  }
1120
- .w-44{
1121
- width: 11rem;
1122
- }
1123
1171
  .w-5{
1124
1172
  width: 1.25rem;
1125
1173
  }
1126
- .w-64{
1127
- width: 16rem;
1174
+ .w-52{
1175
+ width: 13rem;
1176
+ }
1177
+ .w-6{
1178
+ width: 1.5rem;
1128
1179
  }
1129
1180
  .w-7{
1130
1181
  width: 1.75rem;
@@ -1138,8 +1189,11 @@ button {
1138
1189
  .w-80{
1139
1190
  width: 20rem;
1140
1191
  }
1141
- .w-9{
1142
- width: 2.25rem;
1192
+ .w-\[264px\]{
1193
+ width: 264px;
1194
+ }
1195
+ .w-\[46px\]{
1196
+ width: 46px;
1143
1197
  }
1144
1198
  .w-full{
1145
1199
  width: 100%;
@@ -1249,6 +1303,12 @@ button {
1249
1303
  .flex-col{
1250
1304
  flex-direction: column;
1251
1305
  }
1306
+ .flex-wrap{
1307
+ flex-wrap: wrap;
1308
+ }
1309
+ .items-end{
1310
+ align-items: flex-end;
1311
+ }
1252
1312
  .items-center{
1253
1313
  align-items: center;
1254
1314
  }
@@ -1282,6 +1342,9 @@ button {
1282
1342
  .gap-3{
1283
1343
  gap: 0.75rem;
1284
1344
  }
1345
+ .gap-3\.5{
1346
+ gap: 0.875rem;
1347
+ }
1285
1348
  .gap-4{
1286
1349
  gap: 1rem;
1287
1350
  }
@@ -1327,12 +1390,18 @@ button {
1327
1390
  .rounded-2xl{
1328
1391
  border-radius: 1rem;
1329
1392
  }
1393
+ .rounded-\[18px\]{
1394
+ border-radius: 18px;
1395
+ }
1330
1396
  .rounded-full{
1331
1397
  border-radius: 9999px;
1332
1398
  }
1333
1399
  .rounded-lg{
1334
1400
  border-radius: 0.5rem;
1335
1401
  }
1402
+ .rounded-md{
1403
+ border-radius: 0.375rem;
1404
+ }
1336
1405
  .rounded-xl{
1337
1406
  border-radius: 0.75rem;
1338
1407
  }
@@ -1366,6 +1435,10 @@ button {
1366
1435
  --tw-bg-opacity: 1;
1367
1436
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
1368
1437
  }
1438
+ .object-cover{
1439
+ -o-object-fit: cover;
1440
+ object-fit: cover;
1441
+ }
1369
1442
  .p-1{
1370
1443
  padding: 0.25rem;
1371
1444
  }
@@ -1378,15 +1451,15 @@ button {
1378
1451
  .p-3{
1379
1452
  padding: 0.75rem;
1380
1453
  }
1454
+ .p-3\.5{
1455
+ padding: 0.875rem;
1456
+ }
1381
1457
  .p-4{
1382
1458
  padding: 1rem;
1383
1459
  }
1384
1460
  .p-5{
1385
1461
  padding: 1.25rem;
1386
1462
  }
1387
- .p-6{
1388
- padding: 1.5rem;
1389
- }
1390
1463
  .px-0\.5{
1391
1464
  padding-left: 0.125rem;
1392
1465
  padding-right: 0.125rem;
@@ -1407,6 +1480,10 @@ button {
1407
1480
  padding-left: 0.75rem;
1408
1481
  padding-right: 0.75rem;
1409
1482
  }
1483
+ .px-3\.5{
1484
+ padding-left: 0.875rem;
1485
+ padding-right: 0.875rem;
1486
+ }
1410
1487
  .px-4{
1411
1488
  padding-left: 1rem;
1412
1489
  padding-right: 1rem;
@@ -1443,6 +1520,10 @@ button {
1443
1520
  padding-top: 0.75rem;
1444
1521
  padding-bottom: 0.75rem;
1445
1522
  }
1523
+ .py-3\.5{
1524
+ padding-top: 0.875rem;
1525
+ padding-bottom: 0.875rem;
1526
+ }
1446
1527
  .py-5{
1447
1528
  padding-top: 1.25rem;
1448
1529
  padding-bottom: 1.25rem;
@@ -1457,15 +1538,18 @@ button {
1457
1538
  .pb-3{
1458
1539
  padding-bottom: 0.75rem;
1459
1540
  }
1460
- .pb-4{
1461
- padding-bottom: 1rem;
1462
- }
1463
- .pl-12{
1464
- padding-left: 3rem;
1541
+ .pb-6{
1542
+ padding-bottom: 1.5rem;
1465
1543
  }
1466
1544
  .pl-6{
1467
1545
  padding-left: 1.5rem;
1468
1546
  }
1547
+ .pl-9{
1548
+ padding-left: 2.25rem;
1549
+ }
1550
+ .pr-1{
1551
+ padding-right: 0.25rem;
1552
+ }
1469
1553
  .pr-8{
1470
1554
  padding-right: 2rem;
1471
1555
  }
@@ -1482,33 +1566,51 @@ button {
1482
1566
  text-align: center;
1483
1567
  }
1484
1568
  .font-mono{
1485
- font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
1569
+ font-family: JetBrains Mono, ui-monospace, monospace;
1486
1570
  }
1487
- .text-6xl{
1488
- font-size: 3.75rem;
1571
+ .text-7xl{
1572
+ font-size: 4.5rem;
1489
1573
  line-height: 1;
1490
1574
  }
1575
+ .text-\[10\.5px\]{
1576
+ font-size: 10.5px;
1577
+ }
1491
1578
  .text-\[10px\]{
1492
1579
  font-size: 10px;
1493
1580
  }
1581
+ .text-\[11\.5px\]{
1582
+ font-size: 11.5px;
1583
+ }
1494
1584
  .text-\[11px\]{
1495
1585
  font-size: 11px;
1496
1586
  }
1587
+ .text-\[12\.5px\]{
1588
+ font-size: 12.5px;
1589
+ }
1497
1590
  .text-\[12px\]{
1498
1591
  font-size: 12px;
1499
1592
  }
1593
+ .text-\[13\.5px\]{
1594
+ font-size: 13.5px;
1595
+ }
1500
1596
  .text-\[13px\]{
1501
1597
  font-size: 13px;
1502
1598
  }
1599
+ .text-\[15px\]{
1600
+ font-size: 15px;
1601
+ }
1503
1602
  .text-\[16px\]{
1504
1603
  font-size: 16px;
1505
1604
  }
1506
- .text-\[19px\]{
1507
- font-size: 19px;
1605
+ .text-\[20px\]{
1606
+ font-size: 20px;
1508
1607
  }
1509
1608
  .text-\[22px\]{
1510
1609
  font-size: 22px;
1511
1610
  }
1611
+ .text-\[8px\]{
1612
+ font-size: 8px;
1613
+ }
1512
1614
  .text-base{
1513
1615
  font-size: 1rem;
1514
1616
  line-height: 1.5rem;
@@ -1642,87 +1744,96 @@ button {
1642
1744
  }
1643
1745
  /* Light theme — GitBook-style softer brand (web light) */
1644
1746
  :root[data-theme="light"] {
1645
- --brand-500: #E68A6E;
1646
- --brand-600: #d77459;
1647
- --brand-400: #ea9577;
1648
- --brand-tint: rgba(230, 138, 110, 0.12);
1649
- --brand-rgb: 230, 138, 110;
1747
+ --brand-500: #E85A2C;
1748
+ --brand-600: #cc4e24;
1749
+ --brand-400: #f2711c;
1750
+ --brand-tint: rgba(232, 90, 44, 0.12);
1751
+ --brand-rgb: 232, 90, 44;
1752
+ --ring: rgba(232, 90, 44, 0.42);
1650
1753
  --bg-body: #FCFBF9;
1651
1754
  --bg-main: #FCFBF9;
1652
- --bg-alt: #F4F4F5;
1755
+ --bg-alt: #F3F1ED;
1653
1756
  --surface: #FFFFFF;
1654
- --surface-2: #F4F4F5;
1655
- --sidebar: var(--surface);
1656
- --border: #E5E7EB;
1657
- --border-subtle: #F1F1F3;
1658
- --text-main: #0A0A0A;
1659
- --text-muted: #6B7280;
1660
- --glass-bg: rgba(255, 255, 255, 0.6);
1661
- --glass-border: rgba(0, 0, 0, 0.08);
1662
- --glass-hover: rgba(255, 255, 255, 0.8);
1757
+ --surface-2: rgba(255, 255, 255, 0.9);
1758
+ --sidebar: #F5F7FC;
1759
+ --border: rgba(20, 30, 60, 0.10);
1760
+ --border-subtle: rgba(20, 30, 60, 0.06);
1761
+ --text-main: #0C1230;
1762
+ --text-muted: #5A648A;
1763
+ --glass-bg: rgba(255, 255, 255, 0.74);
1764
+ --glass-border: rgba(20, 30, 60, 0.10);
1765
+ --glass-hover: rgba(255, 255, 255, 0.9);
1663
1766
  --grid-opacity: 0.08;
1664
1767
  --header-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
1665
1768
  --surface-3: #E7E7E9;
1666
- --text-subtle: #9CA3AF;
1769
+ --text-subtle: #8A93B4;
1667
1770
  --success: #10B981;
1668
1771
  --success-rgb: 16, 185, 129;
1669
- --danger: #CF222E;
1670
- --danger-rgb: 207, 34, 46;
1772
+ --danger: #DC2626;
1773
+ --danger-rgb: 220, 38, 38;
1671
1774
  --warn: #D97706;
1672
1775
  --warn-rgb: 217, 119, 6;
1673
1776
  --info: #7C3AED;
1674
1777
  --shadow-soft: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
1675
1778
  --shadow-elev:
1676
1779
  inset 0 1px 0 0 rgba(255, 255, 255, 0.9),
1677
- 0 1px 2px rgba(15, 23, 42, 0.05),
1678
- 0 16px 44px -12px rgba(15, 23, 42, 0.16);
1780
+ 0 24px 50px -20px rgba(60, 70, 120, 0.35);
1679
1781
  }
1680
1782
  /* Dark theme — Claude-like neutral warm dark (web default) */
1681
1783
  :root[data-theme="dark"] {
1682
- --brand-500: #E56A4A;
1683
- --brand-600: #cc5236;
1684
- --brand-400: #ea7855;
1685
- --brand-tint: rgba(229, 106, 74, 0.12);
1686
- --brand-rgb: 229, 106, 74;
1687
- --bg-body: #1A1A1A;
1688
- --bg-main: #1A1A1A;
1689
- --bg-alt: #303030;
1690
- --surface: #262626;
1691
- --surface-2: #303030;
1692
- --sidebar: var(--surface);
1693
- --border: #333333;
1694
- --border-subtle: #2A2A2A;
1695
- --text-main: #EDEDED;
1696
- --text-muted: #9CA3AF;
1697
- --glass-bg: rgba(38, 38, 38, 0.6);
1784
+ --brand-500: #FF6A3D;
1785
+ --brand-600: #e5572c;
1786
+ --brand-400: #ff8155;
1787
+ --brand-tint: rgba(255, 106, 61, 0.12);
1788
+ --brand-rgb: 255, 106, 61;
1789
+ --ring: rgba(255, 106, 61, 0.55);
1790
+ --bg-body: #1a1a1a;
1791
+ --bg-main: #1a1a1a;
1792
+ --bg-alt: #242424;
1793
+ --surface: #16151C;
1794
+ --surface-2: rgba(44, 42, 54, 0.6);
1795
+ --sidebar: #0C1120;
1796
+ --border: rgba(255, 255, 255, 0.08);
1797
+ --border-subtle: rgba(255, 255, 255, 0.05);
1798
+ --text-main: #EAF0FF;
1799
+ --text-muted: #8B98B8;
1800
+ --glass-bg: rgba(56, 56, 61, 0.6);
1698
1801
  --glass-border: rgba(255, 255, 255, 0.08);
1699
- --glass-hover: rgba(48, 48, 48, 0.8);
1802
+ --glass-hover: rgba(48, 46, 58, 0.72);
1700
1803
  --grid-opacity: 0.04;
1701
1804
  --header-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
1702
- --surface-3: #3A3A3A;
1703
- --text-subtle: #6B7280;
1704
- --success: #22C55E;
1705
- --success-rgb: 34, 197, 94;
1706
- --danger: #EF4444;
1707
- --danger-rgb: 239, 68, 68;
1708
- --warn: #F59E0B;
1709
- --warn-rgb: 245, 158, 11;
1805
+ --surface-3: #2A3556;
1806
+ --text-subtle: #5B6685;
1807
+ --success: #34E5A4;
1808
+ --success-rgb: 52, 229, 164;
1809
+ --danger: #FF5252;
1810
+ --danger-rgb: 255, 82, 82;
1811
+ --warn: #FFC24B;
1812
+ --warn-rgb: 255, 194, 75;
1710
1813
  --info: #A855F7;
1711
1814
  --shadow-soft: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
1712
1815
  --shadow-elev:
1713
1816
  inset 0 1px 0 0 rgba(255, 255, 255, 0.06),
1714
- 0 2px 4px rgba(0, 0, 0, 0.4),
1715
- 0 20px 56px -12px rgba(0, 0, 0, 0.7);
1817
+ 0 24px 60px -18px rgba(3, 6, 16, 0.9);
1716
1818
  }
1717
1819
  /* Brand-tinted text selection (9router) */
1718
1820
  ::-moz-selection {
1719
- background-color: rgba(229, 106, 74, 0.25);
1821
+ background-color: rgba(var(--brand-rgb), 0.25);
1720
1822
  color: var(--brand-500);
1721
1823
  }
1722
1824
  ::selection {
1723
- background-color: rgba(229, 106, 74, 0.25);
1825
+ background-color: rgba(var(--brand-rgb), 0.25);
1724
1826
  color: var(--brand-500);
1725
1827
  }
1828
+ /* Health dot — soft spreading glow pulse (pro5 parity) */
1829
+ @keyframes health-pulse {
1830
+ 50% { box-shadow: 0 0 0 7px rgba(var(--success-rgb), 0.05); }
1831
+ }
1832
+ .health-dot {
1833
+ box-shadow: 0 0 0 4px rgba(var(--success-rgb), 0.18);
1834
+ animation: health-pulse 2.4s ease-in-out infinite;
1835
+ }
1836
+ @media (prefers-reduced-motion: reduce) { .health-dot { animation: none; } }
1726
1837
  @keyframes pulse-ring {
1727
1838
  0% { transform: scale(0.8); opacity: 1; }
1728
1839
  100% { transform: scale(1.6); opacity: 0; }
@@ -1820,6 +1931,12 @@ button {
1820
1931
  .dashed-card:hover { border-color: var(--brand-500); color: var(--brand-500); background: var(--brand-tint); }
1821
1932
  /* Terminal input — brand focus ring (web parity; tailwind brand color unavailable here) */
1822
1933
  .term-input:focus { box-shadow: 0 0 0 2px rgba(var(--brand-rgb), 0.4); }
1934
+ .first\:border-t-0:first-child{
1935
+ border-top-width: 0px;
1936
+ }
1937
+ .first\:pt-0:first-child{
1938
+ padding-top: 0px;
1939
+ }
1823
1940
  .last\:border-0:last-child{
1824
1941
  border-width: 0px;
1825
1942
  }
@@ -1851,20 +1968,14 @@ button {
1851
1968
  }
1852
1969
  }
1853
1970
  @media (min-width: 768px){
1854
- .md\:col-span-1{
1855
- grid-column: span 1 / span 1;
1856
- }
1857
- .md\:col-span-2{
1858
- grid-column: span 2 / span 2;
1859
- }
1860
1971
  .md\:flex{
1861
1972
  display: flex;
1862
1973
  }
1863
1974
  .md\:hidden{
1864
1975
  display: none;
1865
1976
  }
1866
- .md\:grid-cols-3{
1867
- grid-template-columns: repeat(3, minmax(0, 1fr));
1977
+ .md\:grid-cols-\[1fr_1\.7fr\]{
1978
+ grid-template-columns: 1fr 1.7fr;
1868
1979
  }
1869
1980
  }
1870
1981
  @media (min-width: 1024px){
@@ -1874,13 +1985,13 @@ button {
1874
1985
  .lg\:grid-cols-3{
1875
1986
  grid-template-columns: repeat(3, minmax(0, 1fr));
1876
1987
  }
1877
- .lg\:p-10{
1878
- padding: 2.5rem;
1879
- }
1880
1988
  .lg\:px-10{
1881
1989
  padding-left: 2.5rem;
1882
1990
  padding-right: 2.5rem;
1883
1991
  }
1992
+ .lg\:pb-10{
1993
+ padding-bottom: 2.5rem;
1994
+ }
1884
1995
  .lg\:text-2xl{
1885
1996
  font-size: 1.5rem;
1886
1997
  line-height: 2rem;