ltcai 4.0.0 → 4.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +42 -33
- package/desktop/electron/main.cjs +44 -0
- package/docs/CHANGELOG.md +106 -0
- package/docs/REALTIME_COLLABORATION.md +3 -3
- package/docs/V3_FRONTEND.md +9 -8
- package/docs/V4_1_FRONTEND_ARCHITECTURE_REVIEW.md +65 -0
- package/docs/V4_1_FRONTEND_MIGRATION_REPORT.md +70 -0
- package/docs/V4_1_VALIDATION_REPORT.md +47 -0
- package/docs/V4_DIGITAL_BRAIN_RECOVERY.md +95 -45
- package/docs/kg-schema.md +6 -2
- package/docs/spec-vs-impl.md +10 -10
- package/frontend/index.html +24 -0
- package/frontend/openapi.json +14190 -0
- package/frontend/src/App.tsx +184 -0
- package/frontend/src/api/client.ts +317 -0
- package/frontend/src/api/openapi.ts +16637 -0
- package/frontend/src/components/primitives.tsx +204 -0
- package/frontend/src/components/ui/badge.tsx +27 -0
- package/frontend/src/components/ui/button.tsx +37 -0
- package/frontend/src/components/ui/card.tsx +22 -0
- package/frontend/src/components/ui/input.tsx +16 -0
- package/frontend/src/components/ui/textarea.tsx +16 -0
- package/frontend/src/lib/utils.ts +33 -0
- package/frontend/src/main.tsx +23 -0
- package/frontend/src/pages/Act.tsx +245 -0
- package/frontend/src/pages/Ask.tsx +200 -0
- package/frontend/src/pages/Brain.tsx +267 -0
- package/frontend/src/pages/Capture.tsx +158 -0
- package/frontend/src/pages/Library.tsx +187 -0
- package/frontend/src/pages/System.tsx +344 -0
- package/frontend/src/routes.ts +85 -0
- package/frontend/src/store/appStore.ts +54 -0
- package/frontend/src/styles.css +107 -0
- package/kg_schema.py +2 -603
- package/knowledge_graph.py +37 -4958
- package/latticeai/__init__.py +1 -1
- package/latticeai/api/admin.py +15 -16
- package/latticeai/api/agents.py +13 -6
- package/latticeai/api/auth.py +19 -11
- package/latticeai/api/invitations.py +100 -0
- package/latticeai/api/knowledge_graph.py +4 -11
- package/latticeai/api/plugins.py +3 -6
- package/latticeai/api/realtime.py +4 -7
- package/latticeai/api/setup.py +5 -4
- package/latticeai/api/static_routes.py +13 -16
- package/latticeai/api/ui_redirects.py +26 -0
- package/latticeai/api/workflow_designer.py +39 -6
- package/latticeai/api/workspace.py +24 -10
- package/latticeai/app_factory.py +88 -17
- package/latticeai/brain/_kg_common.py +1123 -0
- package/latticeai/brain/discovery.py +1455 -0
- package/latticeai/brain/documents.py +218 -0
- package/latticeai/brain/ingest.py +644 -0
- package/latticeai/brain/projection.py +561 -0
- package/latticeai/brain/provenance.py +401 -0
- package/latticeai/brain/retrieval.py +1316 -0
- package/latticeai/brain/schema.py +640 -0
- package/latticeai/brain/store.py +216 -0
- package/latticeai/brain/write_master.py +225 -0
- package/latticeai/core/invitations.py +131 -0
- package/latticeai/core/marketplace.py +1 -1
- package/latticeai/core/multi_agent.py +1 -1
- package/latticeai/core/policy.py +54 -0
- package/latticeai/core/realtime.py +65 -44
- package/latticeai/core/sessions.py +31 -5
- package/latticeai/core/users.py +147 -0
- package/latticeai/core/workspace_os.py +420 -20
- package/latticeai/services/agent_runtime.py +242 -4
- package/latticeai/services/run_executor.py +328 -0
- package/latticeai/services/workspace_service.py +27 -19
- package/package.json +54 -27
- package/scripts/build_frontend_assets.mjs +38 -0
- package/scripts/bump_version.py +1 -1
- package/scripts/export_openapi.py +31 -0
- package/scripts/lint_frontend.mjs +86 -0
- package/scripts/run_python.mjs +47 -0
- package/src-tauri/Cargo.lock +4833 -0
- package/src-tauri/Cargo.toml +19 -0
- package/src-tauri/build.rs +3 -0
- package/src-tauri/capabilities/default.json +7 -0
- package/src-tauri/src/main.rs +78 -0
- package/src-tauri/tauri.conf.json +36 -0
- package/static/app/asset-manifest.json +32 -0
- package/static/app/assets/core-CwxXejkd.js +2 -0
- package/static/app/assets/core-CwxXejkd.js.map +1 -0
- package/static/app/assets/index-CJRAzNnf.js +333 -0
- package/static/app/assets/index-CJRAzNnf.js.map +1 -0
- package/static/app/assets/index-CSwBBgf4.css +2 -0
- package/static/app/index.html +25 -0
- package/static/manifest.json +2 -2
- package/static/sw.js +4 -4
- package/scripts/build_v3_assets.mjs +0 -170
- package/scripts/lint_v3.mjs +0 -97
- package/static/account.html +0 -113
- package/static/activity.html +0 -73
- package/static/admin.html +0 -486
- package/static/agents.html +0 -139
- package/static/chat.html +0 -841
- package/static/css/reference/account.css +0 -439
- package/static/css/reference/admin.css +0 -610
- package/static/css/reference/base.css +0 -1661
- package/static/css/reference/chat.css +0 -4623
- package/static/css/reference/graph.css +0 -1016
- package/static/css/responsive.css +0 -861
- package/static/graph.html +0 -122
- package/static/platform.css +0 -104
- package/static/plugins.html +0 -136
- package/static/scripts/account.js +0 -238
- package/static/scripts/admin.js +0 -1614
- package/static/scripts/chat.js +0 -5081
- package/static/scripts/graph.js +0 -1804
- package/static/scripts/platform.js +0 -64
- package/static/scripts/ux.js +0 -167
- package/static/scripts/workspace.js +0 -948
- package/static/v3/asset-manifest.json +0 -56
- package/static/v3/css/lattice.base.49deefb5.css +0 -128
- package/static/v3/css/lattice.base.css +0 -128
- package/static/v3/css/lattice.components.cde18231.css +0 -472
- package/static/v3/css/lattice.components.css +0 -472
- package/static/v3/css/lattice.shell.29d36d85.css +0 -452
- package/static/v3/css/lattice.shell.css +0 -452
- package/static/v3/css/lattice.tokens.304cbc40.css +0 -135
- package/static/v3/css/lattice.tokens.css +0 -135
- package/static/v3/css/lattice.views.0a18b6c5.css +0 -360
- package/static/v3/css/lattice.views.css +0 -360
- package/static/v3/index.html +0 -68
- package/static/v3/js/app.356e6452.js +0 -26
- package/static/v3/js/app.js +0 -26
- package/static/v3/js/core/api.7a308b89.js +0 -568
- package/static/v3/js/core/api.js +0 -568
- package/static/v3/js/core/components.f25b3b93.js +0 -230
- package/static/v3/js/core/components.js +0 -230
- package/static/v3/js/core/dom.a2773eb0.js +0 -148
- package/static/v3/js/core/dom.js +0 -148
- package/static/v3/js/core/router.584570f2.js +0 -37
- package/static/v3/js/core/router.js +0 -37
- package/static/v3/js/core/routes.7222343d.js +0 -93
- package/static/v3/js/core/routes.js +0 -93
- package/static/v3/js/core/shell.a1657f20.js +0 -391
- package/static/v3/js/core/shell.js +0 -391
- package/static/v3/js/core/store.204a08b2.js +0 -113
- package/static/v3/js/core/store.js +0 -113
- package/static/v3/js/views/admin-audit.660a1fb1.js +0 -185
- package/static/v3/js/views/admin-audit.js +0 -185
- package/static/v3/js/views/admin-permissions.a7ae5f09.js +0 -177
- package/static/v3/js/views/admin-permissions.js +0 -177
- package/static/v3/js/views/admin-policies.3658fd86.js +0 -102
- package/static/v3/js/views/admin-policies.js +0 -102
- package/static/v3/js/views/admin-private-vpc.7d342d36.js +0 -135
- package/static/v3/js/views/admin-private-vpc.js +0 -135
- package/static/v3/js/views/admin-security.07c66b72.js +0 -180
- package/static/v3/js/views/admin-security.js +0 -180
- package/static/v3/js/views/admin-users.03bac88c.js +0 -168
- package/static/v3/js/views/admin-users.js +0 -168
- package/static/v3/js/views/agents.014d0b74.js +0 -541
- package/static/v3/js/views/agents.js +0 -541
- package/static/v3/js/views/chat.e6dd7dd0.js +0 -601
- package/static/v3/js/views/chat.js +0 -601
- package/static/v3/js/views/files.adad14c1.js +0 -365
- package/static/v3/js/views/files.js +0 -365
- package/static/v3/js/views/graph-canvas.17c15d65.js +0 -509
- package/static/v3/js/views/graph-canvas.js +0 -509
- package/static/v3/js/views/home.24f8b8ae.js +0 -200
- package/static/v3/js/views/home.js +0 -200
- package/static/v3/js/views/hooks.37895880.js +0 -220
- package/static/v3/js/views/hooks.js +0 -220
- package/static/v3/js/views/hybrid-search.2fb63ed9.js +0 -194
- package/static/v3/js/views/hybrid-search.js +0 -194
- package/static/v3/js/views/knowledge-graph.5e40cbeb.js +0 -509
- package/static/v3/js/views/knowledge-graph.js +0 -509
- package/static/v3/js/views/marketplace.ab0583d4.js +0 -141
- package/static/v3/js/views/marketplace.js +0 -141
- package/static/v3/js/views/mcp.99b5c6a7.js +0 -114
- package/static/v3/js/views/mcp.js +0 -114
- package/static/v3/js/views/memory.4ebdf474.js +0 -147
- package/static/v3/js/views/memory.js +0 -147
- package/static/v3/js/views/models.a1ffa147.js +0 -256
- package/static/v3/js/views/models.js +0 -256
- package/static/v3/js/views/my-computer.d9d9ae1c.js +0 -463
- package/static/v3/js/views/my-computer.js +0 -463
- package/static/v3/js/views/pipeline.c522f1ce.js +0 -157
- package/static/v3/js/views/pipeline.js +0 -157
- package/static/v3/js/views/planning.9ac3e313.js +0 -153
- package/static/v3/js/views/planning.js +0 -153
- package/static/v3/js/views/settings.8631fa5e.js +0 -318
- package/static/v3/js/views/settings.js +0 -318
- package/static/v3/js/views/skills.c6c2f965.js +0 -109
- package/static/v3/js/views/skills.js +0 -109
- package/static/v3/js/views/tools.e4f11276.js +0 -108
- package/static/v3/js/views/tools.js +0 -108
- package/static/v3/js/views/workflows.26c57290.js +0 -128
- package/static/v3/js/views/workflows.js +0 -128
- package/static/workflows.html +0 -146
- package/static/workspace.css +0 -1121
- package/static/workspace.html +0 -357
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": "4.0.0",
|
|
3
|
-
"generated_at": "deterministic",
|
|
4
|
-
"entrypoints": {
|
|
5
|
-
"app": "/static/v3/js/app.356e6452.js",
|
|
6
|
-
"styles": [
|
|
7
|
-
"/static/css/tokens.3ba22e37.css",
|
|
8
|
-
"/static/v3/css/lattice.tokens.304cbc40.css",
|
|
9
|
-
"/static/v3/css/lattice.base.49deefb5.css",
|
|
10
|
-
"/static/v3/css/lattice.components.cde18231.css",
|
|
11
|
-
"/static/v3/css/lattice.shell.29d36d85.css",
|
|
12
|
-
"/static/v3/css/lattice.views.0a18b6c5.css"
|
|
13
|
-
]
|
|
14
|
-
},
|
|
15
|
-
"assets": {
|
|
16
|
-
"static/css/tokens.css": "/static/css/tokens.3ba22e37.css",
|
|
17
|
-
"static/v3/css/lattice.tokens.css": "/static/v3/css/lattice.tokens.304cbc40.css",
|
|
18
|
-
"static/v3/css/lattice.base.css": "/static/v3/css/lattice.base.49deefb5.css",
|
|
19
|
-
"static/v3/css/lattice.components.css": "/static/v3/css/lattice.components.cde18231.css",
|
|
20
|
-
"static/v3/css/lattice.shell.css": "/static/v3/css/lattice.shell.29d36d85.css",
|
|
21
|
-
"static/v3/css/lattice.views.css": "/static/v3/css/lattice.views.0a18b6c5.css",
|
|
22
|
-
"static/v3/js/app.js": "/static/v3/js/app.356e6452.js",
|
|
23
|
-
"static/v3/js/core/api.js": "/static/v3/js/core/api.7a308b89.js",
|
|
24
|
-
"static/v3/js/core/components.js": "/static/v3/js/core/components.f25b3b93.js",
|
|
25
|
-
"static/v3/js/core/dom.js": "/static/v3/js/core/dom.a2773eb0.js",
|
|
26
|
-
"static/v3/js/core/router.js": "/static/v3/js/core/router.584570f2.js",
|
|
27
|
-
"static/v3/js/core/routes.js": "/static/v3/js/core/routes.7222343d.js",
|
|
28
|
-
"static/v3/js/core/shell.js": "/static/v3/js/core/shell.a1657f20.js",
|
|
29
|
-
"static/v3/js/core/store.js": "/static/v3/js/core/store.204a08b2.js",
|
|
30
|
-
"static/v3/js/views/admin-audit.js": "/static/v3/js/views/admin-audit.660a1fb1.js",
|
|
31
|
-
"static/v3/js/views/admin-permissions.js": "/static/v3/js/views/admin-permissions.a7ae5f09.js",
|
|
32
|
-
"static/v3/js/views/admin-policies.js": "/static/v3/js/views/admin-policies.3658fd86.js",
|
|
33
|
-
"static/v3/js/views/admin-private-vpc.js": "/static/v3/js/views/admin-private-vpc.7d342d36.js",
|
|
34
|
-
"static/v3/js/views/admin-security.js": "/static/v3/js/views/admin-security.07c66b72.js",
|
|
35
|
-
"static/v3/js/views/admin-users.js": "/static/v3/js/views/admin-users.03bac88c.js",
|
|
36
|
-
"static/v3/js/views/agents.js": "/static/v3/js/views/agents.014d0b74.js",
|
|
37
|
-
"static/v3/js/views/chat.js": "/static/v3/js/views/chat.e6dd7dd0.js",
|
|
38
|
-
"static/v3/js/views/files.js": "/static/v3/js/views/files.adad14c1.js",
|
|
39
|
-
"static/v3/js/views/graph-canvas.js": "/static/v3/js/views/graph-canvas.17c15d65.js",
|
|
40
|
-
"static/v3/js/views/home.js": "/static/v3/js/views/home.24f8b8ae.js",
|
|
41
|
-
"static/v3/js/views/hooks.js": "/static/v3/js/views/hooks.37895880.js",
|
|
42
|
-
"static/v3/js/views/hybrid-search.js": "/static/v3/js/views/hybrid-search.2fb63ed9.js",
|
|
43
|
-
"static/v3/js/views/knowledge-graph.js": "/static/v3/js/views/knowledge-graph.5e40cbeb.js",
|
|
44
|
-
"static/v3/js/views/marketplace.js": "/static/v3/js/views/marketplace.ab0583d4.js",
|
|
45
|
-
"static/v3/js/views/mcp.js": "/static/v3/js/views/mcp.99b5c6a7.js",
|
|
46
|
-
"static/v3/js/views/memory.js": "/static/v3/js/views/memory.4ebdf474.js",
|
|
47
|
-
"static/v3/js/views/models.js": "/static/v3/js/views/models.a1ffa147.js",
|
|
48
|
-
"static/v3/js/views/my-computer.js": "/static/v3/js/views/my-computer.d9d9ae1c.js",
|
|
49
|
-
"static/v3/js/views/pipeline.js": "/static/v3/js/views/pipeline.c522f1ce.js",
|
|
50
|
-
"static/v3/js/views/planning.js": "/static/v3/js/views/planning.9ac3e313.js",
|
|
51
|
-
"static/v3/js/views/settings.js": "/static/v3/js/views/settings.8631fa5e.js",
|
|
52
|
-
"static/v3/js/views/skills.js": "/static/v3/js/views/skills.c6c2f965.js",
|
|
53
|
-
"static/v3/js/views/tools.js": "/static/v3/js/views/tools.e4f11276.js",
|
|
54
|
-
"static/v3/js/views/workflows.js": "/static/v3/js/views/workflows.26c57290.js"
|
|
55
|
-
}
|
|
56
|
-
}
|
|
@@ -1,128 +0,0 @@
|
|
|
1
|
-
/* ============================================================================
|
|
2
|
-
* Lattice AI v3 — Base layer (reset + element defaults + lattice backdrop)
|
|
3
|
-
* Token-native: no themed hex values, everything via var(--*).
|
|
4
|
-
* ========================================================================== */
|
|
5
|
-
|
|
6
|
-
*, *::before, *::after { box-sizing: border-box; }
|
|
7
|
-
|
|
8
|
-
html, body { height: 100%; }
|
|
9
|
-
|
|
10
|
-
body {
|
|
11
|
-
margin: 0;
|
|
12
|
-
font-family: var(--lt3-font-sans);
|
|
13
|
-
font-size: var(--lt3-text-md);
|
|
14
|
-
line-height: var(--lt3-leading-normal);
|
|
15
|
-
color: var(--text);
|
|
16
|
-
background: var(--bg);
|
|
17
|
-
-webkit-font-smoothing: antialiased;
|
|
18
|
-
text-rendering: optimizeLegibility;
|
|
19
|
-
overflow: hidden; /* shell owns scroll regions */
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/* The signature lattice backdrop — a faint structural mesh of nodes+edges.
|
|
23
|
-
Sits behind the whole app; reinforces the "lattice" identity without noise. */
|
|
24
|
-
.lt3-app::before {
|
|
25
|
-
content: "";
|
|
26
|
-
position: fixed;
|
|
27
|
-
inset: 0;
|
|
28
|
-
z-index: 0;
|
|
29
|
-
pointer-events: none;
|
|
30
|
-
background:
|
|
31
|
-
radial-gradient(circle at center, var(--lt3-mesh-node) 0.9px, transparent 1.1px),
|
|
32
|
-
linear-gradient(var(--lt3-mesh-line) 1px, transparent 1px),
|
|
33
|
-
linear-gradient(90deg, var(--lt3-mesh-line) 1px, transparent 1px),
|
|
34
|
-
var(--app-bg);
|
|
35
|
-
background-size:
|
|
36
|
-
var(--lt3-mesh-size) var(--lt3-mesh-size),
|
|
37
|
-
var(--lt3-mesh-size) var(--lt3-mesh-size),
|
|
38
|
-
var(--lt3-mesh-size) var(--lt3-mesh-size),
|
|
39
|
-
cover;
|
|
40
|
-
background-position: center;
|
|
41
|
-
mask-image: radial-gradient(ellipse 120% 90% at 50% -10%, #000 55%, transparent 100%);
|
|
42
|
-
opacity: 0.9;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
h1, h2, h3, h4, p, figure { margin: 0; }
|
|
46
|
-
|
|
47
|
-
a { color: inherit; text-decoration: none; }
|
|
48
|
-
|
|
49
|
-
button {
|
|
50
|
-
font: inherit;
|
|
51
|
-
color: inherit;
|
|
52
|
-
cursor: pointer;
|
|
53
|
-
border: none;
|
|
54
|
-
background: none;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
input, select, textarea { font: inherit; color: inherit; }
|
|
58
|
-
|
|
59
|
-
textarea { resize: vertical; }
|
|
60
|
-
|
|
61
|
-
img, svg { display: block; max-width: 100%; }
|
|
62
|
-
|
|
63
|
-
code, pre, kbd, samp { font-family: var(--lt3-font-mono); }
|
|
64
|
-
|
|
65
|
-
:root[data-lt-icons="fallback"] .ti {
|
|
66
|
-
display: inline-grid;
|
|
67
|
-
place-items: center;
|
|
68
|
-
min-width: 1em;
|
|
69
|
-
min-height: 1em;
|
|
70
|
-
font-family: var(--lt3-font-mono);
|
|
71
|
-
font-size: 0.72em;
|
|
72
|
-
font-style: normal;
|
|
73
|
-
font-weight: 800;
|
|
74
|
-
line-height: 1;
|
|
75
|
-
text-transform: uppercase;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
:root[data-lt-icons="fallback"] .ti::before {
|
|
79
|
-
content: attr(data-fallback);
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
:focus-visible {
|
|
83
|
-
outline: 2px solid var(--focus-ring);
|
|
84
|
-
outline-offset: 2px;
|
|
85
|
-
border-radius: var(--lt3-radius-xs);
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
::-webkit-scrollbar { width: 8px; height: 8px; }
|
|
89
|
-
::-webkit-scrollbar-track { background: transparent; }
|
|
90
|
-
::-webkit-scrollbar-thumb {
|
|
91
|
-
background: color-mix(in srgb, var(--border-strong) 60%, transparent);
|
|
92
|
-
border-radius: 99px;
|
|
93
|
-
border: 2px solid transparent;
|
|
94
|
-
background-clip: padding-box;
|
|
95
|
-
}
|
|
96
|
-
::-webkit-scrollbar-thumb:hover { background: var(--border-strong); background-clip: padding-box; }
|
|
97
|
-
|
|
98
|
-
/* Accessible visually-hidden utility */
|
|
99
|
-
.lt3-sr {
|
|
100
|
-
position: absolute !important;
|
|
101
|
-
width: 1px; height: 1px;
|
|
102
|
-
padding: 0; margin: -1px;
|
|
103
|
-
overflow: hidden; clip: rect(0,0,0,0);
|
|
104
|
-
white-space: nowrap; border: 0;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.lt3-skip {
|
|
108
|
-
position: fixed;
|
|
109
|
-
top: var(--lt3-space-3);
|
|
110
|
-
left: var(--lt3-space-3);
|
|
111
|
-
z-index: var(--lt3-z-toast);
|
|
112
|
-
padding: var(--lt3-space-2) var(--lt3-space-4);
|
|
113
|
-
background: var(--accent);
|
|
114
|
-
color: var(--lt3-on-accent);
|
|
115
|
-
border-radius: var(--lt3-radius-sm);
|
|
116
|
-
transform: translateY(-200%);
|
|
117
|
-
transition: transform var(--lt3-dur-2) var(--lt3-ease);
|
|
118
|
-
}
|
|
119
|
-
.lt3-skip:focus { transform: translateY(0); }
|
|
120
|
-
|
|
121
|
-
@media (prefers-reduced-motion: reduce) {
|
|
122
|
-
*, *::before, *::after {
|
|
123
|
-
animation-duration: 0.001ms !important;
|
|
124
|
-
animation-iteration-count: 1 !important;
|
|
125
|
-
transition-duration: 0.001ms !important;
|
|
126
|
-
scroll-behavior: auto !important;
|
|
127
|
-
}
|
|
128
|
-
}
|
|
@@ -1,128 +0,0 @@
|
|
|
1
|
-
/* ============================================================================
|
|
2
|
-
* Lattice AI v3 — Base layer (reset + element defaults + lattice backdrop)
|
|
3
|
-
* Token-native: no themed hex values, everything via var(--*).
|
|
4
|
-
* ========================================================================== */
|
|
5
|
-
|
|
6
|
-
*, *::before, *::after { box-sizing: border-box; }
|
|
7
|
-
|
|
8
|
-
html, body { height: 100%; }
|
|
9
|
-
|
|
10
|
-
body {
|
|
11
|
-
margin: 0;
|
|
12
|
-
font-family: var(--lt3-font-sans);
|
|
13
|
-
font-size: var(--lt3-text-md);
|
|
14
|
-
line-height: var(--lt3-leading-normal);
|
|
15
|
-
color: var(--text);
|
|
16
|
-
background: var(--bg);
|
|
17
|
-
-webkit-font-smoothing: antialiased;
|
|
18
|
-
text-rendering: optimizeLegibility;
|
|
19
|
-
overflow: hidden; /* shell owns scroll regions */
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/* The signature lattice backdrop — a faint structural mesh of nodes+edges.
|
|
23
|
-
Sits behind the whole app; reinforces the "lattice" identity without noise. */
|
|
24
|
-
.lt3-app::before {
|
|
25
|
-
content: "";
|
|
26
|
-
position: fixed;
|
|
27
|
-
inset: 0;
|
|
28
|
-
z-index: 0;
|
|
29
|
-
pointer-events: none;
|
|
30
|
-
background:
|
|
31
|
-
radial-gradient(circle at center, var(--lt3-mesh-node) 0.9px, transparent 1.1px),
|
|
32
|
-
linear-gradient(var(--lt3-mesh-line) 1px, transparent 1px),
|
|
33
|
-
linear-gradient(90deg, var(--lt3-mesh-line) 1px, transparent 1px),
|
|
34
|
-
var(--app-bg);
|
|
35
|
-
background-size:
|
|
36
|
-
var(--lt3-mesh-size) var(--lt3-mesh-size),
|
|
37
|
-
var(--lt3-mesh-size) var(--lt3-mesh-size),
|
|
38
|
-
var(--lt3-mesh-size) var(--lt3-mesh-size),
|
|
39
|
-
cover;
|
|
40
|
-
background-position: center;
|
|
41
|
-
mask-image: radial-gradient(ellipse 120% 90% at 50% -10%, #000 55%, transparent 100%);
|
|
42
|
-
opacity: 0.9;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
h1, h2, h3, h4, p, figure { margin: 0; }
|
|
46
|
-
|
|
47
|
-
a { color: inherit; text-decoration: none; }
|
|
48
|
-
|
|
49
|
-
button {
|
|
50
|
-
font: inherit;
|
|
51
|
-
color: inherit;
|
|
52
|
-
cursor: pointer;
|
|
53
|
-
border: none;
|
|
54
|
-
background: none;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
input, select, textarea { font: inherit; color: inherit; }
|
|
58
|
-
|
|
59
|
-
textarea { resize: vertical; }
|
|
60
|
-
|
|
61
|
-
img, svg { display: block; max-width: 100%; }
|
|
62
|
-
|
|
63
|
-
code, pre, kbd, samp { font-family: var(--lt3-font-mono); }
|
|
64
|
-
|
|
65
|
-
:root[data-lt-icons="fallback"] .ti {
|
|
66
|
-
display: inline-grid;
|
|
67
|
-
place-items: center;
|
|
68
|
-
min-width: 1em;
|
|
69
|
-
min-height: 1em;
|
|
70
|
-
font-family: var(--lt3-font-mono);
|
|
71
|
-
font-size: 0.72em;
|
|
72
|
-
font-style: normal;
|
|
73
|
-
font-weight: 800;
|
|
74
|
-
line-height: 1;
|
|
75
|
-
text-transform: uppercase;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
:root[data-lt-icons="fallback"] .ti::before {
|
|
79
|
-
content: attr(data-fallback);
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
:focus-visible {
|
|
83
|
-
outline: 2px solid var(--focus-ring);
|
|
84
|
-
outline-offset: 2px;
|
|
85
|
-
border-radius: var(--lt3-radius-xs);
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
::-webkit-scrollbar { width: 8px; height: 8px; }
|
|
89
|
-
::-webkit-scrollbar-track { background: transparent; }
|
|
90
|
-
::-webkit-scrollbar-thumb {
|
|
91
|
-
background: color-mix(in srgb, var(--border-strong) 60%, transparent);
|
|
92
|
-
border-radius: 99px;
|
|
93
|
-
border: 2px solid transparent;
|
|
94
|
-
background-clip: padding-box;
|
|
95
|
-
}
|
|
96
|
-
::-webkit-scrollbar-thumb:hover { background: var(--border-strong); background-clip: padding-box; }
|
|
97
|
-
|
|
98
|
-
/* Accessible visually-hidden utility */
|
|
99
|
-
.lt3-sr {
|
|
100
|
-
position: absolute !important;
|
|
101
|
-
width: 1px; height: 1px;
|
|
102
|
-
padding: 0; margin: -1px;
|
|
103
|
-
overflow: hidden; clip: rect(0,0,0,0);
|
|
104
|
-
white-space: nowrap; border: 0;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.lt3-skip {
|
|
108
|
-
position: fixed;
|
|
109
|
-
top: var(--lt3-space-3);
|
|
110
|
-
left: var(--lt3-space-3);
|
|
111
|
-
z-index: var(--lt3-z-toast);
|
|
112
|
-
padding: var(--lt3-space-2) var(--lt3-space-4);
|
|
113
|
-
background: var(--accent);
|
|
114
|
-
color: var(--lt3-on-accent);
|
|
115
|
-
border-radius: var(--lt3-radius-sm);
|
|
116
|
-
transform: translateY(-200%);
|
|
117
|
-
transition: transform var(--lt3-dur-2) var(--lt3-ease);
|
|
118
|
-
}
|
|
119
|
-
.lt3-skip:focus { transform: translateY(0); }
|
|
120
|
-
|
|
121
|
-
@media (prefers-reduced-motion: reduce) {
|
|
122
|
-
*, *::before, *::after {
|
|
123
|
-
animation-duration: 0.001ms !important;
|
|
124
|
-
animation-iteration-count: 1 !important;
|
|
125
|
-
transition-duration: 0.001ms !important;
|
|
126
|
-
scroll-behavior: auto !important;
|
|
127
|
-
}
|
|
128
|
-
}
|