ltcai 4.6.0 → 4.6.1

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.
@@ -3,46 +3,43 @@
3
3
 
4
4
  :root {
5
5
  color-scheme: dark;
6
- --background: 168 12% 7%;
7
- --foreground: 190 24% 94%;
8
- --card: 180 10% 11%;
9
- --card-foreground: 190 24% 94%;
10
- --muted: 205 11% 18%;
11
- --muted-foreground: 188 10% 67%;
12
- --primary: 166 68% 52%;
13
- --primary-foreground: 168 18% 7%;
14
- --secondary: 238 18% 23%;
15
- --secondary-foreground: 190 24% 94%;
16
- --destructive: 356 73% 59%;
17
- --destructive-foreground: 0 0% 100%;
18
- --border: 190 12% 26%;
19
- --input: 190 12% 30%;
20
- --ring: 166 68% 52%;
21
- --brain: 166 68% 52%;
22
- --ask: 205 80% 67%;
23
- --capture: 136 58% 56%;
24
- --act: 38 91% 60%;
25
- --library: 278 62% 70%;
26
- --system: 5 72% 66%;
6
+ /* Digital Brain — warm, private, alive */
7
+ --bg: 22 18% 5.5%;
8
+ --bg-elevated: 24 16% 8%;
9
+ --fg: 36 18% 94%;
10
+ --fg-muted: 30 12% 68%;
11
+ --brain-core: 38 72% 68%; /* warm ember-gold */
12
+ --brain-halo: 38 65% 78%;
13
+ --memory: 168 52% 62%; /* quiet teal pulse */
14
+ --knowledge: 200 48% 70%;
15
+ --connection: 280 42% 72%; /* soft violet for relationships */
16
+ --map: 32 38% 74%; /* contemplative gold for the Map */
17
+ --surface: 24 14% 9%;
18
+ --surface-glass: 24 14% 9% / 0.82;
19
+ --border: 28 12% 22%;
20
+ --accent: 38 72% 68%;
21
+ --destructive: 12 62% 58%;
22
+ --ring: 38 72% 68%;
27
23
  }
28
24
 
29
25
  :root[data-theme="light"] {
30
26
  color-scheme: light;
31
- --background: 180 16% 96%;
32
- --foreground: 205 18% 12%;
33
- --card: 180 24% 99%;
34
- --card-foreground: 205 18% 12%;
35
- --muted: 190 14% 91%;
36
- --muted-foreground: 200 10% 38%;
37
- --primary: 170 70% 30%;
38
- --primary-foreground: 0 0% 100%;
39
- --secondary: 236 20% 89%;
40
- --secondary-foreground: 205 18% 12%;
41
- --destructive: 356 70% 47%;
42
- --destructive-foreground: 0 0% 100%;
43
- --border: 190 14% 76%;
44
- --input: 190 14% 70%;
45
- --ring: 170 70% 30%;
27
+ --bg: 36 28% 96%;
28
+ --bg-elevated: 36 26% 98%;
29
+ --fg: 24 16% 11%;
30
+ --fg-muted: 28 10% 42%;
31
+ --brain-core: 32 58% 46%;
32
+ --brain-halo: 32 52% 58%;
33
+ --memory: 170 48% 42%;
34
+ --knowledge: 205 42% 48%;
35
+ --connection: 275 38% 52%;
36
+ --map: 30 36% 52%;
37
+ --surface: 36 22% 96%;
38
+ --surface-glass: 36 22% 96% / 0.9;
39
+ --border: 28 14% 78%;
40
+ --accent: 32 58% 46%;
41
+ --destructive: 10 58% 48%;
42
+ --ring: 32 58% 46%;
46
43
  }
47
44
 
48
45
  @theme inline {
@@ -941,6 +938,1295 @@ button {
941
938
  margin-bottom: 0.8rem;
942
939
  }
943
940
 
941
+ /* ═══════════════════════════════════════════════════════════════
942
+ DIGITAL BRAIN EXPERIENCE — Complete Immersive Redesign
943
+ The Brain is the product. Everything else is discovered depth.
944
+ Warm, private, alive, human.
945
+ ═══════════════════════════════════════════════════════════════ */
946
+
947
+ html, body, #root {
948
+ height: 100%;
949
+ }
950
+
951
+ body {
952
+ font-family: ui-sans-serif, system-ui, -apple-system, "SF Pro Text", Inter, sans-serif;
953
+ -webkit-font-smoothing: antialiased;
954
+ text-rendering: optimizeLegibility;
955
+ }
956
+
957
+ /* The entire post-onboarding experience is a living room with the Brain */
958
+ .brain-space {
959
+ min-height: 100vh;
960
+ display: flex;
961
+ flex-direction: column;
962
+ background: radial-gradient(120% 80% at 50% 20%, hsl(var(--bg-elevated)) 0%, hsl(var(--bg)) 55%);
963
+ position: relative;
964
+ overflow: hidden;
965
+ }
966
+
967
+ /* Subtle living field behind everything */
968
+ .brain-field {
969
+ position: fixed;
970
+ inset: 0;
971
+ z-index: 0;
972
+ pointer-events: none;
973
+ background:
974
+ radial-gradient(circle at 30% 25%, hsl(var(--brain-core) / 0.035) 0%, transparent 55%),
975
+ radial-gradient(circle at 72% 68%, hsl(var(--memory) / 0.03) 0%, transparent 60%);
976
+ transition: opacity 1200ms ease;
977
+ }
978
+
979
+ /* The living presence — large, primary, always visible, reactive */
980
+ .brain-presence {
981
+ position: relative;
982
+ z-index: 2;
983
+ display: flex;
984
+ flex-direction: column;
985
+ align-items: center;
986
+ justify-content: center;
987
+ padding: 2.25rem 1.5rem 1.5rem;
988
+ flex: 0 0 auto;
989
+ }
990
+
991
+ .brain-presence.large {
992
+ padding-top: 2.75rem;
993
+ padding-bottom: 1.25rem;
994
+ }
995
+
996
+ /* The actual living visual object */
997
+ .brain-organism {
998
+ position: relative;
999
+ width: clamp(220px, 28vw, 320px);
1000
+ height: clamp(220px, 28vw, 320px);
1001
+ display: grid;
1002
+ place-items: center;
1003
+ padding: 0;
1004
+ border: 0;
1005
+ background: transparent;
1006
+ color: inherit;
1007
+ cursor: pointer;
1008
+ transition: transform 600ms cubic-bezier(0.23, 1, 0.32, 1), filter 400ms ease;
1009
+ will-change: transform, filter;
1010
+ }
1011
+
1012
+ .brain-organism:focus-visible {
1013
+ outline: 2px solid hsl(var(--brain-core) / 0.78);
1014
+ outline-offset: 0.5rem;
1015
+ border-radius: 34% 44% 44% 34%;
1016
+ }
1017
+
1018
+ .brain-organism[data-state="listening"] { transform: scale(1.015); filter: brightness(1.06) saturate(1.08); }
1019
+ .brain-organism[data-state="thinking"] { transform: scale(0.985); filter: brightness(0.96) saturate(0.92); }
1020
+ .brain-organism[data-state="recalling"] { filter: brightness(1.12) saturate(1.15); }
1021
+ .brain-organism[data-state="synthesizing"] { transform: scale(1.01); }
1022
+ .brain-organism[data-state="planning"] { filter: saturate(1.12) hue-rotate(8deg); }
1023
+ .brain-organism[data-state="acting"] { filter: brightness(1.08) saturate(1.22); }
1024
+
1025
+ .brain-core {
1026
+ position: absolute;
1027
+ inset: 7% 2% 2%;
1028
+ display: grid;
1029
+ place-items: center;
1030
+ border-radius: 42% 47% 38% 42%;
1031
+ background:
1032
+ radial-gradient(55% 50% at 38% 34%, hsl(var(--brain-halo) / 0.38), transparent 70%),
1033
+ radial-gradient(58% 54% at 68% 44%, hsl(var(--connection) / 0.16), transparent 74%);
1034
+ box-shadow:
1035
+ 0 0 72px hsl(var(--brain-core) / 0.28),
1036
+ 0 16px 44px hsl(22 20% 3% / 0.5);
1037
+ transition: all 520ms cubic-bezier(0.23, 1, 0.32, 1);
1038
+ }
1039
+
1040
+ .brain-anatomy {
1041
+ position: relative;
1042
+ z-index: 2;
1043
+ width: 100%;
1044
+ height: 100%;
1045
+ overflow: visible;
1046
+ filter: drop-shadow(0 18px 30px hsl(200 80% 4% / 0.46));
1047
+ }
1048
+
1049
+ .brain-lobe,
1050
+ .brain-bridge,
1051
+ .brain-stem {
1052
+ transform-origin: center;
1053
+ fill: hsl(var(--brain-core) / 0.24);
1054
+ stroke: hsl(var(--brain-core) / 0.82);
1055
+ stroke-linejoin: round;
1056
+ stroke-width: 3;
1057
+ animation: brain-living-breathe 5.8s ease-in-out infinite;
1058
+ }
1059
+
1060
+ .brain-lobe-right {
1061
+ fill: hsl(var(--connection) / 0.16);
1062
+ stroke: hsl(var(--connection) / 0.7);
1063
+ animation-delay: -1.4s;
1064
+ }
1065
+
1066
+ .brain-bridge {
1067
+ fill: hsl(var(--memory) / 0.14);
1068
+ stroke: hsl(var(--memory) / 0.52);
1069
+ stroke-width: 2;
1070
+ }
1071
+
1072
+ .brain-stem {
1073
+ fill: hsl(var(--knowledge) / 0.14);
1074
+ stroke: hsl(var(--knowledge) / 0.54);
1075
+ stroke-width: 2.5;
1076
+ }
1077
+
1078
+ .brain-fold {
1079
+ fill: none;
1080
+ stroke: hsl(var(--fg) / 0.52);
1081
+ stroke-linecap: round;
1082
+ stroke-width: 4.2;
1083
+ stroke-dasharray: 16 22;
1084
+ opacity: 0.68;
1085
+ animation: brain-fold-flow 4.8s linear infinite;
1086
+ }
1087
+
1088
+ .fold-b,
1089
+ .fold-e {
1090
+ stroke: hsl(var(--memory) / 0.76);
1091
+ animation-delay: -1.6s;
1092
+ }
1093
+
1094
+ .fold-c,
1095
+ .fold-f {
1096
+ stroke: hsl(var(--knowledge) / 0.72);
1097
+ animation-delay: -2.9s;
1098
+ }
1099
+
1100
+ .fold-mid {
1101
+ stroke: hsl(var(--brain-core) / 0.54);
1102
+ stroke-width: 2.4;
1103
+ stroke-dasharray: 7 12;
1104
+ opacity: 0.75;
1105
+ }
1106
+
1107
+ .brain-aura {
1108
+ position: absolute;
1109
+ inset: 8%;
1110
+ border-radius: 44% 51% 42% 46%;
1111
+ border: 1px solid hsl(var(--brain-core) / 0.28);
1112
+ box-shadow:
1113
+ 0 0 86px hsl(var(--brain-core) / 0.2),
1114
+ 0 0 70px hsl(var(--memory) / 0.08);
1115
+ animation: brain-halo-breathe 6.4s ease-in-out infinite;
1116
+ }
1117
+
1118
+ .brain-organism[data-state="thinking"] .brain-aura { animation-duration: 1.8s; }
1119
+ .brain-organism[data-state="recalling"] .brain-aura { animation-duration: 2.8s; }
1120
+ .brain-organism[data-state="acting"] .brain-aura { animation-duration: 2s; }
1121
+
1122
+ @keyframes brain-halo-breathe {
1123
+ 0%, 100% { transform: scale(1); opacity: 0.65; }
1124
+ 50% { transform: scale(1.035); opacity: 0.95; }
1125
+ }
1126
+
1127
+ @keyframes brain-living-breathe {
1128
+ 0%,
1129
+ 100% {
1130
+ transform: scale(0.992);
1131
+ }
1132
+ 50% {
1133
+ transform: scale(1.018);
1134
+ }
1135
+ }
1136
+
1137
+ @keyframes brain-fold-flow {
1138
+ from {
1139
+ stroke-dashoffset: 80;
1140
+ }
1141
+ to {
1142
+ stroke-dashoffset: 0;
1143
+ }
1144
+ }
1145
+
1146
+ /* Thought activity layer (subtle drifting lines / embers) */
1147
+ .thought-activity {
1148
+ position: absolute;
1149
+ inset: 12%;
1150
+ border-radius: 999px;
1151
+ overflow: hidden;
1152
+ pointer-events: none;
1153
+ }
1154
+
1155
+ .thought-particle {
1156
+ position: absolute;
1157
+ width: 3px;
1158
+ height: 3px;
1159
+ background: hsl(var(--brain-halo) / 0.9);
1160
+ border-radius: 999px;
1161
+ box-shadow: 0 0 6px hsl(var(--brain-halo));
1162
+ animation: thought-drift 4.2s linear infinite;
1163
+ opacity: 0.0;
1164
+ }
1165
+
1166
+ .brain-organism[data-state="thinking"] .thought-particle { opacity: 0.55; animation-duration: 2.1s; }
1167
+ .brain-organism[data-state="synthesizing"] .thought-particle { opacity: 0.7; }
1168
+ .brain-organism[data-state="planning"] .thought-particle,
1169
+ .brain-organism[data-state="acting"] .thought-particle {
1170
+ opacity: 0.78;
1171
+ animation-duration: 1.85s;
1172
+ }
1173
+
1174
+ @keyframes thought-drift {
1175
+ 0% { transform: translateY(12%) scale(0.6); }
1176
+ 40% { transform: translateY(-18%) scale(1); }
1177
+ 100% { transform: translateY(-42%) scale(0.3); opacity: 0; }
1178
+ }
1179
+
1180
+ /* Memory pulses — fire on recall / important moments */
1181
+ .memory-ripple {
1182
+ position: absolute;
1183
+ inset: 22%;
1184
+ border-radius: 999px;
1185
+ border: 1.5px solid hsl(var(--memory) / 0.65);
1186
+ opacity: 0;
1187
+ pointer-events: none;
1188
+ }
1189
+
1190
+ .brain-organism.pulse .memory-ripple {
1191
+ animation: memory-ripple 1250ms ease-out forwards;
1192
+ }
1193
+
1194
+ @keyframes memory-ripple {
1195
+ 0% { transform: scale(0.7); opacity: 0.7; }
1196
+ 70% { opacity: 0.18; }
1197
+ 100% { transform: scale(1.65); opacity: 0; }
1198
+ }
1199
+
1200
+ /* Gentle label / state under the organism */
1201
+ .brain-presence-label {
1202
+ margin-top: 1.1rem;
1203
+ font-size: 0.78rem;
1204
+ letter-spacing: 0.5px;
1205
+ text-transform: uppercase;
1206
+ font-weight: 600;
1207
+ color: hsl(var(--fg-muted));
1208
+ display: inline-flex;
1209
+ align-items: center;
1210
+ gap: 0.5rem;
1211
+ }
1212
+
1213
+ .brain-presence-label .dot {
1214
+ width: 5px;
1215
+ height: 5px;
1216
+ border-radius: 999px;
1217
+ background: hsl(var(--brain-core));
1218
+ box-shadow: 0 0 0 3px hsl(var(--brain-core) / 0.18);
1219
+ animation: presence-dot 2.8s ease-in-out infinite;
1220
+ }
1221
+
1222
+ .brain-presence-label[data-state="thinking"] .dot { background: hsl(var(--memory)); animation-duration: 1.1s; }
1223
+
1224
+ /* The intimate conversation — primary interaction, spacious, human */
1225
+ .brain-conversation {
1226
+ position: relative;
1227
+ z-index: 3;
1228
+ flex: 1 1 auto;
1229
+ display: flex;
1230
+ flex-direction: column;
1231
+ max-width: 780px;
1232
+ margin: 0 auto;
1233
+ width: 100%;
1234
+ padding: 0 1.25rem 1.75rem;
1235
+ }
1236
+
1237
+ .brain-conversation-header {
1238
+ display: flex;
1239
+ align-items: center;
1240
+ justify-content: space-between;
1241
+ padding-bottom: 0.65rem;
1242
+ color: hsl(var(--fg-muted));
1243
+ font-size: 0.75rem;
1244
+ letter-spacing: 0.4px;
1245
+ text-transform: uppercase;
1246
+ }
1247
+
1248
+ .brain-stream {
1249
+ flex: 1 1 auto;
1250
+ overflow-y: auto;
1251
+ padding: 1rem 0.25rem 1.5rem;
1252
+ scroll-behavior: smooth;
1253
+ mask-image: linear-gradient(transparent, black 6%, black 92%, transparent);
1254
+ }
1255
+
1256
+ .brain-message {
1257
+ max-width: 78%;
1258
+ margin-bottom: 1.1rem;
1259
+ animation: message-enter 260ms cubic-bezier(0.23, 1, 0.32, 1);
1260
+ }
1261
+
1262
+ .brain-message.user { margin-left: auto; text-align: right; }
1263
+
1264
+ .brain-message-bubble {
1265
+ padding: 0.85rem 1.1rem;
1266
+ border-radius: 18px;
1267
+ font-size: 1.01rem;
1268
+ line-height: 1.45;
1269
+ white-space: pre-wrap;
1270
+ box-shadow: 0 1px 2px hsl(0 0% 0% / 0.12);
1271
+ }
1272
+
1273
+ .brain-message.user .brain-message-bubble {
1274
+ background: hsl(var(--brain-core) / 0.12);
1275
+ color: hsl(var(--fg));
1276
+ border-bottom-right-radius: 6px;
1277
+ }
1278
+
1279
+ .brain-message.assistant .brain-message-bubble {
1280
+ background: hsl(var(--surface) / 0.96);
1281
+ border: 1px solid hsl(var(--border) / 0.7);
1282
+ color: hsl(var(--fg));
1283
+ border-bottom-left-radius: 6px;
1284
+ }
1285
+
1286
+ @keyframes message-enter {
1287
+ from { opacity: 0; transform: translateY(6px); }
1288
+ to { opacity: 1; transform: none; }
1289
+ }
1290
+
1291
+ .brain-composer {
1292
+ position: relative;
1293
+ z-index: 10;
1294
+ margin-top: auto;
1295
+ padding: 0.85rem 0.6rem 0.35rem;
1296
+ background: linear-gradient(180deg, transparent, hsl(var(--bg)) 36%);
1297
+ }
1298
+
1299
+ .brain-composer textarea {
1300
+ width: 100%;
1301
+ min-height: 3.4rem;
1302
+ max-height: 9.5rem;
1303
+ resize: none;
1304
+ background: hsl(var(--surface) / 0.92);
1305
+ border: 1px solid hsl(var(--border) / 0.8);
1306
+ border-radius: 16px;
1307
+ padding: 0.95rem 1.15rem;
1308
+ font-size: 1.02rem;
1309
+ line-height: 1.4;
1310
+ color: hsl(var(--fg));
1311
+ outline: none;
1312
+ transition: border-color 160ms ease, box-shadow 160ms ease;
1313
+ }
1314
+
1315
+ .brain-composer textarea:focus {
1316
+ border-color: hsl(var(--brain-core) / 0.6);
1317
+ box-shadow: 0 0 0 3px hsl(var(--brain-core) / 0.08);
1318
+ }
1319
+
1320
+ .brain-composer-actions {
1321
+ display: flex;
1322
+ align-items: center;
1323
+ gap: 0.6rem;
1324
+ margin-top: 0.55rem;
1325
+ padding: 0 0.35rem;
1326
+ }
1327
+
1328
+ /* Progressive depths navigation — subtle, never a "sidebar" */
1329
+ .depths {
1330
+ position: fixed;
1331
+ bottom: 1.35rem;
1332
+ left: 50%;
1333
+ transform: translateX(-50%);
1334
+ z-index: 40;
1335
+ display: flex;
1336
+ gap: 0.35rem;
1337
+ padding: 0.25rem;
1338
+ background: hsl(var(--surface-glass));
1339
+ border: 1px solid hsl(var(--border) / 0.6);
1340
+ border-radius: 999px;
1341
+ backdrop-filter: blur(18px);
1342
+ }
1343
+
1344
+ .depth {
1345
+ display: inline-flex;
1346
+ align-items: center;
1347
+ gap: 0.4rem;
1348
+ padding: 0.38rem 0.95rem;
1349
+ font-size: 0.78rem;
1350
+ letter-spacing: 0.2px;
1351
+ color: hsl(var(--fg-muted));
1352
+ border-radius: 999px;
1353
+ transition: all 160ms ease;
1354
+ cursor: pointer;
1355
+ user-select: none;
1356
+ }
1357
+
1358
+ .depth:hover {
1359
+ color: hsl(var(--fg));
1360
+ background: hsl(var(--bg) / 0.6);
1361
+ }
1362
+
1363
+ .depth.active {
1364
+ color: hsl(var(--fg));
1365
+ background: hsl(var(--brain-core) / 0.11);
1366
+ }
1367
+
1368
+ /* Full-bleed contemplative chambers for Memory / Knowledge / Relationships / Map */
1369
+ .mind-chamber {
1370
+ position: fixed;
1371
+ inset: 0;
1372
+ z-index: 50;
1373
+ background: hsl(var(--bg));
1374
+ display: flex;
1375
+ flex-direction: column;
1376
+ overflow: hidden;
1377
+ animation: chamber-enter 420ms cubic-bezier(0.23, 1.0, 0.32, 1);
1378
+ }
1379
+
1380
+ @keyframes chamber-enter {
1381
+ from { opacity: 0; transform: translateY(12px); }
1382
+ to { opacity: 1; transform: none; }
1383
+ }
1384
+
1385
+ .chamber-head {
1386
+ display: flex;
1387
+ align-items: center;
1388
+ justify-content: space-between;
1389
+ padding: 1.35rem 2rem 0.9rem;
1390
+ border-bottom: 1px solid hsl(var(--border) / 0.5);
1391
+ flex-shrink: 0;
1392
+ }
1393
+
1394
+ .chamber-head .brain-trace {
1395
+ width: 38px;
1396
+ height: 38px;
1397
+ opacity: 0.6;
1398
+ }
1399
+
1400
+ .chamber-title {
1401
+ font-size: 1.05rem;
1402
+ font-weight: 620;
1403
+ letter-spacing: -0.1px;
1404
+ }
1405
+
1406
+ .chamber-body {
1407
+ flex: 1 1 auto;
1408
+ overflow-y: auto;
1409
+ padding: 1.75rem 2rem 3.5rem;
1410
+ max-width: 1080px;
1411
+ margin: 0 auto;
1412
+ width: 100%;
1413
+ }
1414
+
1415
+ /* The Map — artistic, slow, contemplative. Not a tool. */
1416
+ .mind-map-frame {
1417
+ height: calc(100vh - 9.5rem);
1418
+ border-radius: 18px;
1419
+ border: 1px solid hsl(var(--border) / 0.55);
1420
+ background: hsl(var(--bg-elevated));
1421
+ overflow: hidden;
1422
+ box-shadow: inset 0 0 120px hsl(0 0% 0% / 0.35);
1423
+ position: relative;
1424
+ }
1425
+
1426
+ /* Brain as living entry point — progressive revelation / travel into the mind */
1427
+ .brain-exploration {
1428
+ position: relative;
1429
+ flex: 1;
1430
+ display: flex;
1431
+ align-items: center;
1432
+ justify-content: center;
1433
+ min-height: 320px;
1434
+ transition: all 600ms cubic-bezier(0.23, 1, 0.32, 1);
1435
+ }
1436
+
1437
+ .brain-field-layer {
1438
+ position: absolute;
1439
+ inset: 0;
1440
+ pointer-events: none;
1441
+ z-index: 1;
1442
+ }
1443
+
1444
+ .brain-exploration[data-depth="1"] .brain-field-layer {
1445
+ pointer-events: auto;
1446
+ }
1447
+
1448
+ .memory-orb, .knowledge-node {
1449
+ position: absolute;
1450
+ background: hsl(var(--memory) / 0.85);
1451
+ color: hsl(var(--bg));
1452
+ border-radius: 999px;
1453
+ font-size: 0.7rem;
1454
+ padding: 0.25rem 0.6rem;
1455
+ box-shadow: 0 2px 8px hsl(0 0% 0% / 0.3);
1456
+ white-space: nowrap;
1457
+ max-width: 160px;
1458
+ overflow: hidden;
1459
+ text-overflow: ellipsis;
1460
+ cursor: pointer;
1461
+ transition: transform 200ms ease, opacity 400ms ease, background 200ms ease;
1462
+ pointer-events: auto;
1463
+ transform-origin: center;
1464
+ }
1465
+
1466
+ .memory-orb {
1467
+ background: hsl(var(--memory));
1468
+ font-size: 0.65rem;
1469
+ padding: 0.2rem 0.5rem;
1470
+ }
1471
+
1472
+ .knowledge-node {
1473
+ background: hsl(var(--knowledge) / 0.9);
1474
+ border-radius: 8px;
1475
+ font-size: 0.72rem;
1476
+ }
1477
+
1478
+ .brain-exploration[data-depth="2"] .memory-orb,
1479
+ .brain-exploration[data-depth="3"] .memory-orb {
1480
+ animation: emerge-from-brain 800ms ease forwards;
1481
+ }
1482
+
1483
+ .brain-exploration[data-depth="3"] .knowledge-node,
1484
+ .brain-exploration[data-depth="4"] .knowledge-node {
1485
+ animation: emerge-from-brain 900ms ease forwards;
1486
+ }
1487
+
1488
+ @keyframes emerge-from-brain {
1489
+ from { transform: scale(0.2) translateY(40px); opacity: 0; }
1490
+ to { transform: scale(1) translateY(0); opacity: 1; }
1491
+ }
1492
+
1493
+ .relationship-edge {
1494
+ position: absolute;
1495
+ height: 1px;
1496
+ background: linear-gradient(90deg, transparent, hsl(var(--connection) / 0.6), transparent);
1497
+ pointer-events: none;
1498
+ z-index: 0;
1499
+ transition: opacity 400ms ease;
1500
+ }
1501
+
1502
+ .brain-exploration[data-depth="0"] .brain-field-layer > * { opacity: 0; pointer-events: none; }
1503
+ .brain-exploration[data-depth="1"] .memory-orb { opacity: 0.9; }
1504
+ .brain-exploration[data-depth="2"] .memory-orb { opacity: 1; }
1505
+ .brain-exploration[data-depth="3"] .knowledge-node { opacity: 0.95; }
1506
+ .brain-exploration[data-depth="4"] .relationship-edge { opacity: 0.7; }
1507
+ .brain-exploration[data-depth="5"] .mind-core-graph { opacity: 1; pointer-events: auto; }
1508
+
1509
+ .mind-core-graph {
1510
+ position: absolute;
1511
+ inset: 8%;
1512
+ border-radius: 50%;
1513
+ background: hsl(var(--bg) / 0.6);
1514
+ border: 1px solid hsl(var(--brain-core) / 0.3);
1515
+ overflow: hidden;
1516
+ opacity: 0;
1517
+ transition: opacity 500ms ease;
1518
+ z-index: 2;
1519
+ }
1520
+
1521
+ .brain-surface-control {
1522
+ position: absolute;
1523
+ top: 1rem;
1524
+ right: 1rem;
1525
+ z-index: 10;
1526
+ font-size: 0.7rem;
1527
+ padding: 0.25rem 0.6rem;
1528
+ background: hsl(var(--surface-glass));
1529
+ border: 1px solid hsl(var(--border) / 0.6);
1530
+ border-radius: 999px;
1531
+ cursor: pointer;
1532
+ opacity: 0.7;
1533
+ transition: opacity 150ms;
1534
+ }
1535
+
1536
+ .brain-surface-control:hover { opacity: 1; }
1537
+
1538
+ .brain-depth-indicator {
1539
+ position: absolute;
1540
+ bottom: -1.6rem;
1541
+ left: 50%;
1542
+ transform: translateX(-50%);
1543
+ font-size: 0.65rem;
1544
+ letter-spacing: 1px;
1545
+ text-transform: uppercase;
1546
+ color: hsl(var(--fg-muted));
1547
+ white-space: nowrap;
1548
+ }
1549
+
1550
+ .brain-organism.depth-1 .thought-particle { opacity: 0.7; }
1551
+ .brain-organism.depth-3 .thought-particle.resolving,
1552
+ .brain-organism.depth-4 .thought-particle.resolving,
1553
+ .brain-organism.depth-5 .thought-particle.resolving {
1554
+ background: hsl(var(--knowledge));
1555
+ box-shadow: 0 0 4px hsl(var(--knowledge));
1556
+ animation-duration: 1.8s;
1557
+ }
1558
+
1559
+ .brain-inner-structure {
1560
+ position: absolute;
1561
+ inset: 22%;
1562
+ opacity: 0.45;
1563
+ transition: opacity 400ms ease;
1564
+ }
1565
+
1566
+ .brain-exploration.is-exploring .brain-inner-structure {
1567
+ opacity: 0.75;
1568
+ }
1569
+
1570
+ .brain-surface-control {
1571
+ position: absolute;
1572
+ top: 0.6rem;
1573
+ right: 0.6rem;
1574
+ z-index: 10;
1575
+ font-size: 0.68rem;
1576
+ padding: 0.2rem 0.55rem;
1577
+ background: hsl(var(--surface-glass));
1578
+ border: 1px solid hsl(var(--border) / 0.55);
1579
+ border-radius: 999px;
1580
+ cursor: pointer;
1581
+ color: hsl(var(--fg-muted));
1582
+ transition: all 150ms;
1583
+ }
1584
+
1585
+ .brain-surface-control:hover {
1586
+ color: hsl(var(--fg));
1587
+ border-color: hsl(var(--brain-core) / 0.4);
1588
+ }
1589
+
1590
+ .mind-map-frame::before {
1591
+ content: "The architecture of your mind";
1592
+ position: absolute;
1593
+ top: 1.1rem;
1594
+ left: 1.35rem;
1595
+ font-size: 0.72rem;
1596
+ letter-spacing: 1.5px;
1597
+ text-transform: uppercase;
1598
+ color: hsl(var(--fg-muted) / 0.7);
1599
+ z-index: 2;
1600
+ pointer-events: none;
1601
+ }
1602
+
1603
+ .mind-map-frame .brain-trace {
1604
+ position: absolute;
1605
+ top: 1rem;
1606
+ right: 1.25rem;
1607
+ z-index: 2;
1608
+ opacity: 0.5;
1609
+ }
1610
+
1611
+ /* Small persistent trace of the Brain when in depths */
1612
+ .brain-trace {
1613
+ width: 42px;
1614
+ height: 42px;
1615
+ border-radius: 999px;
1616
+ background: radial-gradient(circle at 40% 32%, hsl(var(--brain-halo)), hsl(var(--brain-core)));
1617
+ box-shadow: 0 0 0 1px hsl(var(--brain-core) / 0.3), 0 0 18px hsl(var(--brain-core) / 0.25);
1618
+ display: grid;
1619
+ place-items: center;
1620
+ font-size: 10px;
1621
+ color: hsl(var(--bg));
1622
+ font-weight: 700;
1623
+ letter-spacing: 0.5px;
1624
+ }
1625
+
1626
+ .brain-home {
1627
+ position: relative;
1628
+ z-index: 1;
1629
+ display: flex;
1630
+ min-height: 100vh;
1631
+ flex-direction: column;
1632
+ }
1633
+
1634
+ .brain-organism {
1635
+ z-index: 3;
1636
+ }
1637
+
1638
+ .brain-exploration {
1639
+ width: min(100%, 58rem);
1640
+ margin-inline: auto;
1641
+ }
1642
+
1643
+ .brain-exploration[data-depth="1"] .brain-field-layer {
1644
+ pointer-events: none;
1645
+ }
1646
+
1647
+ .brain-exploration[data-depth="2"] .brain-field-layer,
1648
+ .brain-exploration[data-depth="3"] .brain-field-layer,
1649
+ .brain-exploration[data-depth="4"] .brain-field-layer,
1650
+ .brain-exploration[data-depth="5"] .brain-field-layer {
1651
+ z-index: 4;
1652
+ pointer-events: none;
1653
+ }
1654
+
1655
+ .brain-exploration[data-depth="5"] {
1656
+ width: min(calc(100vw - 2rem), 980px);
1657
+ min-height: min(62vh, 570px);
1658
+ }
1659
+
1660
+ .brain-exploration[data-depth="5"] .brain-field-layer {
1661
+ z-index: 7;
1662
+ }
1663
+
1664
+ .brain-exploration[data-depth="5"] .brain-organism {
1665
+ opacity: 0.2;
1666
+ pointer-events: none;
1667
+ }
1668
+
1669
+ .brain-depth-badge {
1670
+ position: absolute;
1671
+ left: 50%;
1672
+ bottom: 0.2rem;
1673
+ z-index: 5;
1674
+ display: grid;
1675
+ min-width: 11rem;
1676
+ transform: translateX(-50%);
1677
+ justify-items: center;
1678
+ gap: 0.18rem;
1679
+ border: 1px solid hsl(var(--border) / 0.58);
1680
+ border-radius: 999px;
1681
+ background: hsl(var(--surface-glass));
1682
+ padding: 0.48rem 0.95rem;
1683
+ backdrop-filter: blur(18px);
1684
+ box-shadow: 0 12px 32px hsl(200 30% 3% / 0.22);
1685
+ }
1686
+
1687
+ .brain-depth-badge span {
1688
+ color: hsl(var(--fg-muted));
1689
+ font-size: 0.62rem;
1690
+ font-weight: 800;
1691
+ text-transform: uppercase;
1692
+ }
1693
+
1694
+ .brain-depth-badge strong {
1695
+ font-size: 0.88rem;
1696
+ line-height: 1.05;
1697
+ }
1698
+
1699
+ .memory-fragment,
1700
+ .concept-signal,
1701
+ .graph-node {
1702
+ position: absolute;
1703
+ left: var(--x, 50%);
1704
+ top: var(--y, 50%);
1705
+ z-index: 4;
1706
+ transform: translate(-50%, -50%);
1707
+ border: 1px solid hsl(var(--border) / 0.72);
1708
+ background: hsl(var(--surface-glass));
1709
+ color: hsl(var(--fg));
1710
+ text-align: left;
1711
+ backdrop-filter: blur(16px);
1712
+ animation: emerge-from-brain 680ms cubic-bezier(0.23, 1, 0.32, 1) both;
1713
+ animation-delay: var(--delay, 0ms);
1714
+ }
1715
+
1716
+ .memory-fragment {
1717
+ display: grid;
1718
+ min-width: 8.2rem;
1719
+ max-width: 12.5rem;
1720
+ gap: 0.12rem;
1721
+ border-color: hsl(var(--memory) / 0.38);
1722
+ border-radius: 8px;
1723
+ padding: 0.58rem 0.7rem;
1724
+ box-shadow:
1725
+ 0 0 0 1px hsl(var(--memory) / 0.08) inset,
1726
+ 0 14px 32px hsl(190 35% 3% / 0.24);
1727
+ }
1728
+
1729
+ .memory-fragment span,
1730
+ .concept-signal span,
1731
+ .graph-node span,
1732
+ .brain-graph-head span,
1733
+ .brain-graph-focus span {
1734
+ color: hsl(var(--fg-muted));
1735
+ font-size: 0.62rem;
1736
+ font-weight: 800;
1737
+ text-transform: uppercase;
1738
+ }
1739
+
1740
+ .memory-fragment strong {
1741
+ overflow: hidden;
1742
+ color: hsl(var(--fg));
1743
+ font-size: 0.82rem;
1744
+ line-height: 1.18;
1745
+ text-overflow: ellipsis;
1746
+ white-space: nowrap;
1747
+ }
1748
+
1749
+ .memory-fragment:hover,
1750
+ .memory-fragment:focus-visible,
1751
+ .concept-signal:hover,
1752
+ .concept-signal:focus-visible,
1753
+ .graph-node:hover,
1754
+ .graph-node:focus-visible {
1755
+ border-color: hsl(var(--brain-core) / 0.66);
1756
+ outline: none;
1757
+ box-shadow: 0 0 0 3px hsl(var(--brain-core) / 0.08), 0 16px 38px hsl(200 35% 3% / 0.28);
1758
+ }
1759
+
1760
+ .memory-fragment.is-empty,
1761
+ .concept-signal.is-empty {
1762
+ left: 50%;
1763
+ top: 78%;
1764
+ pointer-events: none;
1765
+ color: hsl(var(--fg-muted));
1766
+ }
1767
+
1768
+ .concept-signal {
1769
+ display: inline-flex;
1770
+ max-width: 11rem;
1771
+ align-items: center;
1772
+ gap: 0.45rem;
1773
+ border-color: hsl(var(--knowledge) / 0.42);
1774
+ border-radius: 999px;
1775
+ padding: 0.42rem 0.72rem;
1776
+ color: hsl(var(--fg));
1777
+ font-size: 0.78rem;
1778
+ white-space: nowrap;
1779
+ }
1780
+
1781
+ .relationship-weave,
1782
+ .brain-graph-edges {
1783
+ position: absolute;
1784
+ inset: 0;
1785
+ z-index: 2;
1786
+ width: 100%;
1787
+ height: 100%;
1788
+ overflow: visible;
1789
+ pointer-events: none;
1790
+ }
1791
+
1792
+ .relationship-weave line {
1793
+ stroke: hsl(var(--connection) / 0.55);
1794
+ stroke-linecap: round;
1795
+ stroke-width: 0.42;
1796
+ stroke-dasharray: 3 5;
1797
+ animation: relationship-flow 2.8s linear infinite;
1798
+ }
1799
+
1800
+ .mind-core-graph {
1801
+ inset: 0;
1802
+ z-index: 8;
1803
+ display: grid;
1804
+ grid-template-rows: auto minmax(18rem, 1fr) auto;
1805
+ gap: 0.75rem;
1806
+ border-radius: 8px;
1807
+ border: 1px solid hsl(var(--brain-core) / 0.38);
1808
+ background:
1809
+ radial-gradient(42% 46% at 50% 42%, hsl(var(--brain-core) / 0.12), transparent 72%),
1810
+ linear-gradient(145deg, hsl(var(--surface) / 0.92), hsl(var(--bg) / 0.84));
1811
+ padding: 0.8rem;
1812
+ box-shadow: 0 28px 90px hsl(205 40% 3% / 0.46);
1813
+ backdrop-filter: blur(22px);
1814
+ pointer-events: auto;
1815
+ }
1816
+
1817
+ .brain-graph-head,
1818
+ .brain-graph-search,
1819
+ .brain-graph-focus {
1820
+ display: flex;
1821
+ align-items: center;
1822
+ }
1823
+
1824
+ .brain-graph-head {
1825
+ justify-content: space-between;
1826
+ gap: 0.85rem;
1827
+ }
1828
+
1829
+ .brain-graph-head strong {
1830
+ display: block;
1831
+ margin-top: 0.1rem;
1832
+ font-size: 1.05rem;
1833
+ }
1834
+
1835
+ .brain-graph-search {
1836
+ width: min(100%, 15rem);
1837
+ min-height: 2.25rem;
1838
+ gap: 0.45rem;
1839
+ border: 1px solid hsl(var(--border) / 0.72);
1840
+ border-radius: 999px;
1841
+ background: hsl(var(--bg) / 0.48);
1842
+ padding: 0 0.68rem;
1843
+ color: hsl(var(--fg-muted));
1844
+ }
1845
+
1846
+ .brain-graph-search input {
1847
+ min-width: 0;
1848
+ width: 100%;
1849
+ border: 0;
1850
+ background: transparent;
1851
+ color: hsl(var(--fg));
1852
+ outline: none;
1853
+ font-size: 0.86rem;
1854
+ }
1855
+
1856
+ .brain-graph-canvas {
1857
+ position: relative;
1858
+ min-height: 19rem;
1859
+ overflow: hidden;
1860
+ border: 1px solid hsl(var(--border) / 0.45);
1861
+ border-radius: 8px;
1862
+ background:
1863
+ radial-gradient(ellipse at center, hsl(var(--brain-core) / 0.09), transparent 54%),
1864
+ linear-gradient(hsl(var(--border) / 0.12) 1px, transparent 1px),
1865
+ linear-gradient(90deg, hsl(var(--border) / 0.12) 1px, transparent 1px);
1866
+ background-size: auto, 28px 28px, 28px 28px;
1867
+ }
1868
+
1869
+ .brain-graph-edges line {
1870
+ stroke: hsl(var(--connection) / 0.52);
1871
+ stroke-linecap: round;
1872
+ stroke-width: calc(var(--weight, 1) * 0.28);
1873
+ }
1874
+
1875
+ .graph-node {
1876
+ display: grid;
1877
+ max-width: 8.6rem;
1878
+ min-width: 5.3rem;
1879
+ gap: 0.08rem;
1880
+ border-color: hsl(var(--knowledge) / 0.4);
1881
+ border-radius: 8px;
1882
+ padding: 0.42rem 0.55rem;
1883
+ font-size: 0.76rem;
1884
+ line-height: 1.14;
1885
+ }
1886
+
1887
+ .graph-node.is-selected {
1888
+ border-color: hsl(var(--brain-core) / 0.86);
1889
+ background: hsl(var(--brain-core) / 0.14);
1890
+ }
1891
+
1892
+ .brain-graph-focus {
1893
+ min-height: 4rem;
1894
+ align-items: flex-start;
1895
+ gap: 0.72rem;
1896
+ border: 1px solid hsl(var(--border) / 0.55);
1897
+ border-radius: 8px;
1898
+ background: hsl(var(--bg) / 0.48);
1899
+ padding: 0.72rem;
1900
+ }
1901
+
1902
+ .brain-graph-focus strong,
1903
+ .brain-graph-focus p {
1904
+ display: block;
1905
+ }
1906
+
1907
+ .brain-graph-focus strong {
1908
+ font-size: 0.95rem;
1909
+ }
1910
+
1911
+ .brain-graph-focus p {
1912
+ margin: 0.18rem 0 0;
1913
+ color: hsl(var(--fg-muted));
1914
+ font-size: 0.84rem;
1915
+ line-height: 1.45;
1916
+ }
1917
+
1918
+ .brain-graph-empty {
1919
+ display: grid;
1920
+ min-height: 19rem;
1921
+ place-items: center;
1922
+ color: hsl(var(--fg-muted));
1923
+ }
1924
+
1925
+ .brain-conversation-header h1 {
1926
+ margin: 0;
1927
+ color: hsl(var(--fg));
1928
+ font-size: 1rem;
1929
+ line-height: 1.05;
1930
+ }
1931
+
1932
+ .brain-conversation-header span {
1933
+ display: block;
1934
+ margin-top: 0.2rem;
1935
+ }
1936
+
1937
+ .brain-image-input {
1938
+ display: inline-flex;
1939
+ cursor: pointer;
1940
+ align-items: center;
1941
+ gap: 0.4rem;
1942
+ border: 1px solid hsl(var(--border) / 0.68);
1943
+ border-radius: 999px;
1944
+ padding: 0.42rem 0.78rem;
1945
+ color: hsl(var(--fg-muted));
1946
+ font-size: 0.78rem;
1947
+ }
1948
+
1949
+ .mind-empty-kicker {
1950
+ margin-bottom: 0.4rem;
1951
+ font-size: 0.72rem;
1952
+ font-weight: 800;
1953
+ letter-spacing: 1.5px;
1954
+ text-transform: uppercase;
1955
+ opacity: 0.52;
1956
+ }
1957
+
1958
+ @keyframes relationship-flow {
1959
+ from {
1960
+ stroke-dashoffset: 24;
1961
+ }
1962
+ to {
1963
+ stroke-dashoffset: 0;
1964
+ }
1965
+ }
1966
+
1967
+ /* Product flow — now a quiet ritual, not a wizard */
1968
+ .product-flow-shell {
1969
+ min-height: 100vh;
1970
+ display: grid;
1971
+ place-items: center;
1972
+ padding: 2.5rem 1.25rem;
1973
+ background: radial-gradient(100% 70% at 50% 15%, hsl(var(--bg-elevated)), hsl(var(--bg)));
1974
+ }
1975
+
1976
+ .product-flow-shell .living-brain { transform: scale(0.82); }
1977
+
1978
+ .flow-ritual {
1979
+ width: min(100%, 620px);
1980
+ text-align: center;
1981
+ }
1982
+
1983
+ .flow-ritual h1 {
1984
+ font-size: clamp(2.1rem, 5.2vw, 3.1rem);
1985
+ font-weight: 700;
1986
+ line-height: 1.0;
1987
+ margin: 1.1rem 0 0.6rem;
1988
+ }
1989
+
1990
+ .flow-ritual p {
1991
+ color: hsl(var(--fg-muted));
1992
+ font-size: 1.01rem;
1993
+ max-width: 42ch;
1994
+ margin: 0 auto;
1995
+ }
1996
+
1997
+ .ritual-brain {
1998
+ margin: 1.4rem auto 1.6rem;
1999
+ }
2000
+
2001
+ /* Make old chrome and dock very quiet or hidden in main brain experience */
2002
+ .app-chrome, .primary-dock, .ambient-brain {
2003
+ display: none !important;
2004
+ }
2005
+
2006
+ .page-shell {
2007
+ padding: 0;
2008
+ max-width: none;
2009
+ width: 100%;
2010
+ }
2011
+
2012
+ /* Gentle empty / loading for the mind */
2013
+ .mind-empty {
2014
+ text-align: center;
2015
+ padding: 3rem 1rem;
2016
+ color: hsl(var(--fg-muted));
2017
+ }
2018
+
2019
+ .mind-empty .icon {
2020
+ opacity: 0.5;
2021
+ margin-bottom: 0.8rem;
2022
+ }
2023
+
2024
+ /* Loading as thinking */
2025
+ .thinking {
2026
+ animation: thinking-subtle 1.6s ease-in-out infinite;
2027
+ }
2028
+
2029
+ @keyframes thinking-subtle {
2030
+ 0%,100% { opacity: 0.6; }
2031
+ 50% { opacity: 1; }
2032
+ }
2033
+
2034
+ /* Success is quiet */
2035
+ .brain-quiet-success {
2036
+ font-size: 0.78rem;
2037
+ color: hsl(var(--memory));
2038
+ display: inline-flex;
2039
+ align-items: center;
2040
+ gap: 0.35rem;
2041
+ }
2042
+
2043
+ /* Responsive care */
2044
+ @media (max-width: 720px) {
2045
+ .brain-presence { padding-top: 1.4rem; }
2046
+ .brain-organism { width: 200px; height: 200px; }
2047
+ .brain-conversation { padding-bottom: 5.5rem; }
2048
+ .depths { bottom: 0.9rem; }
2049
+ }
2050
+
2051
+ /* Ritual / Onboarding flow — uses the same living language as the Brain experience */
2052
+ .ritual-shell {
2053
+ min-height: 100vh;
2054
+ display: flex;
2055
+ align-items: center;
2056
+ justify-content: center;
2057
+ padding: 2rem 1rem;
2058
+ background: radial-gradient(120% 80% at 50% 15%, hsl(var(--bg-elevated)), hsl(var(--bg)));
2059
+ }
2060
+
2061
+ .ritual-container {
2062
+ width: min(100%, 720px);
2063
+ text-align: center;
2064
+ }
2065
+
2066
+ .ritual-brain {
2067
+ margin: 0 auto 1.75rem;
2068
+ }
2069
+
2070
+ .ritual-title {
2071
+ font-size: clamp(1.85rem, 5vw, 2.85rem);
2072
+ font-weight: 680;
2073
+ letter-spacing: -0.3px;
2074
+ line-height: 1.05;
2075
+ margin-bottom: 0.5rem;
2076
+ }
2077
+
2078
+ .ritual-subtitle {
2079
+ color: hsl(var(--fg-muted));
2080
+ font-size: 1.02rem;
2081
+ max-width: 44ch;
2082
+ margin: 0 auto 1.5rem;
2083
+ }
2084
+
2085
+ .ritual-card {
2086
+ background: hsl(var(--surface-glass));
2087
+ border: 1px solid hsl(var(--border) / 0.65);
2088
+ border-radius: 20px;
2089
+ padding: 1.25rem 1.5rem;
2090
+ text-align: left;
2091
+ margin-bottom: 1rem;
2092
+ transition: border-color 180ms ease, transform 180ms ease;
2093
+ }
2094
+
2095
+ .ritual-card:hover {
2096
+ border-color: hsl(var(--brain-core) / 0.55);
2097
+ transform: translateY(-1px);
2098
+ }
2099
+
2100
+ .ritual-card.selected {
2101
+ border-color: hsl(var(--brain-core));
2102
+ box-shadow: 0 0 0 1px hsl(var(--brain-core) / 0.25);
2103
+ }
2104
+
2105
+ .ritual-fact-grid {
2106
+ display: grid;
2107
+ grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
2108
+ gap: 0.75rem;
2109
+ margin: 1.25rem 0;
2110
+ }
2111
+
2112
+ .ritual-fact {
2113
+ background: hsl(var(--bg) / 0.6);
2114
+ border: 1px solid hsl(var(--border) / 0.5);
2115
+ border-radius: 14px;
2116
+ padding: 0.85rem 1rem;
2117
+ text-align: left;
2118
+ }
2119
+
2120
+ .ritual-fact-label {
2121
+ font-size: 0.72rem;
2122
+ text-transform: uppercase;
2123
+ letter-spacing: 0.8px;
2124
+ color: hsl(var(--fg-muted));
2125
+ margin-bottom: 0.25rem;
2126
+ }
2127
+
2128
+ .ritual-fact-value {
2129
+ font-size: 1.05rem;
2130
+ font-weight: 620;
2131
+ color: hsl(var(--fg));
2132
+ }
2133
+
2134
+ .ritual-model-card {
2135
+ text-align: left;
2136
+ padding: 1.15rem 1.35rem;
2137
+ margin-bottom: 0.7rem;
2138
+ cursor: pointer;
2139
+ border: 1px solid hsl(var(--border) / 0.6);
2140
+ border-radius: 18px;
2141
+ background: hsl(var(--surface));
2142
+ transition: all 160ms ease;
2143
+ }
2144
+
2145
+ .ritual-model-card:hover {
2146
+ border-color: hsl(var(--brain-core) / 0.5);
2147
+ background: hsl(var(--surface) / 0.95);
2148
+ }
2149
+
2150
+ .ritual-model-card .role {
2151
+ font-size: 0.7rem;
2152
+ letter-spacing: 1px;
2153
+ text-transform: uppercase;
2154
+ color: hsl(var(--brain-core));
2155
+ margin-bottom: 0.3rem;
2156
+ }
2157
+
2158
+ .ritual-model-card .name {
2159
+ font-size: 1.25rem;
2160
+ font-weight: 650;
2161
+ }
2162
+
2163
+ .ritual-model-card .reason {
2164
+ font-size: 0.92rem;
2165
+ color: hsl(var(--fg-muted));
2166
+ margin-top: 0.25rem;
2167
+ }
2168
+
2169
+ .ritual-progress {
2170
+ margin: 1.5rem 0;
2171
+ }
2172
+
2173
+ .ritual-stage-list {
2174
+ display: flex;
2175
+ flex-direction: column;
2176
+ gap: 0.4rem;
2177
+ margin: 1rem 0;
2178
+ text-align: left;
2179
+ font-size: 0.95rem;
2180
+ }
2181
+
2182
+ .ritual-stage {
2183
+ display: flex;
2184
+ align-items: center;
2185
+ gap: 0.6rem;
2186
+ padding: 0.35rem 0.7rem;
2187
+ border-radius: 10px;
2188
+ color: hsl(var(--fg-muted));
2189
+ }
2190
+
2191
+ .ritual-stage.is-active {
2192
+ color: hsl(var(--fg));
2193
+ background: hsl(var(--brain-core) / 0.08);
2194
+ }
2195
+
2196
+ .ritual-stage.is-done {
2197
+ color: hsl(var(--fg));
2198
+ }
2199
+
2200
+ .ritual-bar {
2201
+ height: 6px;
2202
+ background: hsl(var(--border) / 0.6);
2203
+ border-radius: 999px;
2204
+ overflow: hidden;
2205
+ margin-top: 0.6rem;
2206
+ }
2207
+
2208
+ .ritual-bar > span {
2209
+ display: block;
2210
+ height: 100%;
2211
+ background: linear-gradient(90deg, hsl(var(--brain-core)), hsl(var(--memory)));
2212
+ transition: width 280ms ease;
2213
+ }
2214
+
2215
+ .ritual-status {
2216
+ font-size: 0.95rem;
2217
+ color: hsl(var(--fg-muted));
2218
+ margin: 0.8rem 0;
2219
+ }
2220
+
2221
+ .ritual-success {
2222
+ text-align: center;
2223
+ padding: 1.5rem;
2224
+ }
2225
+
2226
+ .ritual-success .brain {
2227
+ margin-bottom: 1rem;
2228
+ }
2229
+
944
2230
  .drawer-panel .primary-dock {
945
2231
  display: grid;
946
2232
  align-items: stretch;
@@ -1725,8 +3011,13 @@ button {
1725
3011
 
1726
3012
  @media (prefers-reduced-motion: reduce) {
1727
3013
  .brain-mass,
3014
+ .brain-lobe,
3015
+ .brain-bridge,
3016
+ .brain-stem,
3017
+ .brain-fold,
1728
3018
  .thought-path,
1729
3019
  .memory-pulse,
3020
+ .brain-aura,
1730
3021
  .brain-halo,
1731
3022
  .brain-wave {
1732
3023
  animation: none;