opencode-skills-collection 4.0.34 → 4.0.36

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.
Files changed (59) hide show
  1. package/bundled-skills/.antigravity-install-manifest.json +7 -1
  2. package/bundled-skills/agent-evaluation-reporting/SKILL.md +136 -0
  3. package/bundled-skills/anti-ui-slop/SKILL.md +115 -0
  4. package/bundled-skills/cross-platform-contract-propagation-audit/SKILL.md +159 -0
  5. package/bundled-skills/docs/integrations/jetski-cortex.md +3 -3
  6. package/bundled-skills/docs/integrations/jetski-gemini-loader/README.md +1 -1
  7. package/bundled-skills/docs/maintainers/repo-growth-seo.md +1 -1
  8. package/bundled-skills/docs/maintainers/skills-update-guide.md +1 -1
  9. package/bundled-skills/docs/users/aas-core.md +1 -1
  10. package/bundled-skills/docs/users/bundles.md +1 -1
  11. package/bundled-skills/docs/users/claude-code-skills.md +1 -1
  12. package/bundled-skills/docs/users/gemini-cli-skills.md +1 -1
  13. package/bundled-skills/docs/users/kiro-integration.md +1 -1
  14. package/bundled-skills/docs/users/usage.md +3 -3
  15. package/bundled-skills/docs/users/visual-guide.md +4 -4
  16. package/bundled-skills/dsh-deepread/SKILL.md +200 -0
  17. package/bundled-skills/liuguang-banlan-ui/SKILL.md +135 -0
  18. package/bundled-skills/liuguang-banlan-ui/assets/starter/favicon.svg +4 -0
  19. package/bundled-skills/liuguang-banlan-ui/assets/starter/index.html +32 -0
  20. package/bundled-skills/liuguang-banlan-ui/assets/starter/launcher.css +25 -0
  21. package/bundled-skills/liuguang-banlan-ui/assets/starter/obsidian/index.html +179 -0
  22. package/bundled-skills/liuguang-banlan-ui/assets/starter/obsidian/theme-config.js +105 -0
  23. package/bundled-skills/liuguang-banlan-ui/assets/starter/obsidian/theme.css +107 -0
  24. package/bundled-skills/liuguang-banlan-ui/assets/starter/opal/index.html +179 -0
  25. package/bundled-skills/liuguang-banlan-ui/assets/starter/opal/theme-config.js +105 -0
  26. package/bundled-skills/liuguang-banlan-ui/assets/starter/opal/theme.css +107 -0
  27. package/bundled-skills/liuguang-banlan-ui/assets/starter/shared/base.css +423 -0
  28. package/bundled-skills/liuguang-banlan-ui/assets/starter/shared/spectral-field.js +450 -0
  29. package/bundled-skills/liuguang-banlan-ui/assets/starter/shared/workbench.js +255 -0
  30. package/bundled-skills/liuguang-banlan-ui/references/style-contract.md +53 -0
  31. package/bundled-skills/liuguang-banlan-ui/references/verification.md +70 -0
  32. package/bundled-skills/liuguang-banlan-ui/scripts/measure_preview.py +144 -0
  33. package/bundled-skills/liuguang-banlan-ui/scripts/requirements.txt +2 -0
  34. package/bundled-skills/liuguang-banlan-ui/scripts/scaffold_template.py +43 -0
  35. package/bundled-skills/liuguang-banlan-ui/scripts/validate_manifest.py +173 -0
  36. package/bundled-skills/using-lwc/LICENSE +201 -0
  37. package/bundled-skills/using-lwc/README.md +926 -0
  38. package/bundled-skills/using-lwc/README.zh-CN.md +836 -0
  39. package/bundled-skills/using-lwc/SKILL.md +156 -0
  40. package/bundled-skills/using-lwc/agents/openai.yaml +4 -0
  41. package/bundled-skills/using-lwc/assets/global-purpose.md +17 -0
  42. package/bundled-skills/using-lwc/assets/global-schema.md +28 -0
  43. package/bundled-skills/using-lwc/references/active-memory.md +81 -0
  44. package/bundled-skills/using-lwc/references/agent-onboarding.md +84 -0
  45. package/bundled-skills/using-lwc/references/code-graph.md +60 -0
  46. package/bundled-skills/using-lwc/references/core-memory.md +51 -0
  47. package/bundled-skills/using-lwc/references/document-conversion.md +53 -0
  48. package/bundled-skills/using-lwc/references/document-graph.md +58 -0
  49. package/bundled-skills/using-lwc/references/llm-wiki.md +75 -0
  50. package/bundled-skills/using-lwc/references/memory-policy.md +551 -0
  51. package/bundled-skills/using-lwc/references/operations-manual.md +503 -0
  52. package/bundled-skills/using-lwc/references/recovery-maintenance.md +53 -0
  53. package/bundled-skills/using-lwc/references/strong-context.md +54 -0
  54. package/bundled-skills/using-lwc/references/trigger-playbook.md +53 -0
  55. package/bundled-skills/using-lwc/references/word-graph.md +45 -0
  56. package/bundled-skills/using-lwc/scripts/bootstrap.sh +359 -0
  57. package/bundled-skills/using-lwc/scripts/install-lwc.sh +172 -0
  58. package/package.json +1 -1
  59. package/skills_index.json +189 -0
@@ -0,0 +1,423 @@
1
+ @layer reset, tokens, layout, components, utilities;
2
+
3
+ @layer reset {
4
+ *, *::before, *::after { box-sizing: border-box; }
5
+ html { min-width: 320px; color-scheme: light dark; }
6
+ body { margin: 0; min-height: 100vh; font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
7
+ button, input { font: inherit; }
8
+ button { color: inherit; }
9
+ svg { display: block; }
10
+ }
11
+
12
+ @layer tokens {
13
+ :root {
14
+ --space-1: 4px;
15
+ --space-2: 8px;
16
+ --space-3: 12px;
17
+ --space-4: 16px;
18
+ --space-5: 24px;
19
+ --space-6: 32px;
20
+ --radius-sm: 6px;
21
+ --radius-md: 10px;
22
+ --radius-lg: 16px;
23
+ --speed-fast: 150ms;
24
+ --speed-panel: 220ms;
25
+ --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
26
+ --sidebar-width: 220px;
27
+ --header-height: 52px;
28
+ }
29
+ }
30
+
31
+ @layer layout {
32
+ body {
33
+ overflow: hidden;
34
+ background: var(--app-canvas);
35
+ color: var(--ink-primary);
36
+ }
37
+
38
+ #spectral-field {
39
+ position: fixed;
40
+ inset: 0;
41
+ z-index: 0;
42
+ width: 100%;
43
+ height: 100%;
44
+ pointer-events: none;
45
+ }
46
+
47
+ .app-shell {
48
+ position: relative;
49
+ z-index: 1;
50
+ display: grid;
51
+ grid-template-areas:
52
+ "header header"
53
+ "sidebar main";
54
+ grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
55
+ grid-template-rows: var(--header-height) minmax(0, 1fr);
56
+ min-height: 100vh;
57
+ background: var(--app-wash);
58
+ }
59
+
60
+ .topbar {
61
+ grid-area: header;
62
+ display: grid;
63
+ grid-template-columns: var(--sidebar-width) minmax(0, 1fr) auto;
64
+ align-items: center;
65
+ min-width: 0;
66
+ border-bottom: 1px solid var(--line-subtle);
67
+ background: var(--topbar-surface);
68
+ backdrop-filter: blur(18px) saturate(118%);
69
+ }
70
+
71
+ .brand {
72
+ display: flex;
73
+ align-items: center;
74
+ gap: var(--space-3);
75
+ height: 100%;
76
+ padding: 0 var(--space-4);
77
+ border-right: 1px solid var(--line-subtle);
78
+ }
79
+
80
+ .brand-mark {
81
+ display: grid;
82
+ place-items: center;
83
+ width: 26px;
84
+ height: 26px;
85
+ border-radius: 50%;
86
+ background: var(--brand-mark);
87
+ box-shadow: inset 0 0 0 1px var(--line-strong);
88
+ }
89
+
90
+ .brand-mark::after {
91
+ width: 8px;
92
+ height: 8px;
93
+ border: 1px solid var(--brand-mark-detail);
94
+ border-radius: 50%;
95
+ content: "";
96
+ }
97
+
98
+ .brand strong { font-size: 13px; letter-spacing: -0.01em; }
99
+ .brand small { display: block; margin-top: 1px; color: var(--ink-tertiary); font-size: 10px; }
100
+
101
+ .location {
102
+ display: flex;
103
+ min-width: 0;
104
+ align-items: center;
105
+ gap: var(--space-2);
106
+ padding: 0 var(--space-4);
107
+ color: var(--ink-secondary);
108
+ font-size: 12px;
109
+ }
110
+
111
+ .location-separator { color: var(--ink-muted); }
112
+ #page-location { overflow: hidden; color: var(--ink-primary); font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
113
+
114
+ .top-actions {
115
+ display: flex;
116
+ align-items: center;
117
+ gap: var(--space-2);
118
+ padding-right: var(--space-3);
119
+ }
120
+
121
+ .sidebar {
122
+ grid-area: sidebar;
123
+ display: flex;
124
+ min-height: 0;
125
+ flex-direction: column;
126
+ justify-content: space-between;
127
+ border-right: 1px solid var(--line-subtle);
128
+ background: var(--sidebar-surface);
129
+ backdrop-filter: blur(20px) saturate(110%);
130
+ }
131
+
132
+ .sidebar-primary { padding: var(--space-3) var(--space-2); }
133
+ .nav-label { margin: var(--space-3) var(--space-2) var(--space-2); color: var(--ink-muted); font-size: 10px; font-weight: 650; letter-spacing: 0.08em; text-transform: uppercase; }
134
+
135
+ .nav-item {
136
+ display: flex;
137
+ width: 100%;
138
+ align-items: center;
139
+ gap: var(--space-3);
140
+ padding: 8px 10px;
141
+ border: 0;
142
+ border-radius: var(--radius-sm);
143
+ background: transparent;
144
+ color: var(--ink-secondary);
145
+ cursor: pointer;
146
+ text-align: left;
147
+ transition: background var(--speed-fast), color var(--speed-fast);
148
+ }
149
+
150
+ .nav-item + .nav-item { margin-top: 2px; }
151
+ .nav-item:hover { background: var(--state-hover); color: var(--ink-primary); }
152
+ .nav-item[aria-current="page"] { background: var(--state-selected); color: var(--ink-primary); font-weight: 620; }
153
+ .nav-item svg { width: 15px; height: 15px; stroke-width: 1.7; }
154
+
155
+ .sidebar-footer {
156
+ margin: var(--space-2);
157
+ padding: var(--space-3);
158
+ border-top: 1px solid var(--line-subtle);
159
+ }
160
+
161
+ .account { display: flex; align-items: center; gap: var(--space-3); }
162
+ .account-orb { width: 25px; height: 25px; border-radius: 50%; background: var(--account-orb); box-shadow: inset 0 0 0 1px var(--line-strong); }
163
+ .account strong { display: block; font-size: 12px; font-weight: 620; }
164
+ .account span { color: var(--ink-tertiary); font-size: 10px; }
165
+
166
+ .main {
167
+ grid-area: main;
168
+ min-width: 0;
169
+ min-height: 0;
170
+ overflow: auto;
171
+ scrollbar-color: var(--scroll-thumb) transparent;
172
+ }
173
+
174
+ .main-inner {
175
+ display: grid;
176
+ min-height: 100%;
177
+ grid-template-rows: auto auto minmax(420px, 1fr);
178
+ padding: var(--space-5);
179
+ }
180
+
181
+ .page-head {
182
+ display: flex;
183
+ align-items: flex-start;
184
+ justify-content: space-between;
185
+ gap: var(--space-5);
186
+ padding-bottom: var(--space-5);
187
+ }
188
+
189
+ .eyebrow { margin: 0 0 var(--space-2); color: var(--ink-tertiary); font-size: 11px; font-weight: 650; letter-spacing: 0.08em; text-transform: uppercase; }
190
+ h1 { margin: 0; font-size: clamp(22px, 2.2vw, 30px); font-weight: 620; letter-spacing: -0.035em; }
191
+ .page-summary { max-width: 620px; margin: var(--space-2) 0 0; color: var(--ink-secondary); font-size: 13px; line-height: 1.55; }
192
+
193
+ .status-cluster { display: flex; align-items: center; gap: var(--space-3); padding-top: var(--space-1); }
194
+ .status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--status-good); box-shadow: 0 0 0 3px var(--status-good-wash); }
195
+ .status-copy strong { display: block; font-size: 11px; }
196
+ .status-copy span { color: var(--ink-tertiary); font-size: 10px; }
197
+
198
+ .observation-band {
199
+ position: relative;
200
+ display: grid;
201
+ grid-template-columns: minmax(150px, 0.8fr) repeat(4, minmax(110px, 1fr));
202
+ min-width: 0;
203
+ overflow: hidden;
204
+ border: 1px solid var(--line-default);
205
+ border-radius: var(--radius-md) var(--radius-md) 0 0;
206
+ background: var(--band-surface);
207
+ backdrop-filter: blur(16px) saturate(115%);
208
+ }
209
+
210
+ .observation-band::before {
211
+ position: absolute;
212
+ right: 0;
213
+ bottom: 0;
214
+ left: 0;
215
+ height: 2px;
216
+ background: var(--observation-ribbon);
217
+ content: "";
218
+ }
219
+
220
+ .band-title, .metric { min-width: 0; padding: var(--space-3) var(--space-4); }
221
+ .metric { border-left: 1px solid var(--line-subtle); }
222
+ .band-title span, .metric span { display: block; color: var(--ink-tertiary); font-size: 10px; }
223
+ .band-title strong { display: block; margin-top: 3px; font-size: 12px; font-weight: 620; }
224
+ .metric strong { display: block; margin-top: 4px; font-family: "SFMono-Regular", Consolas, monospace; font-size: 14px; font-variant-numeric: tabular-nums; }
225
+
226
+ .workbench {
227
+ display: grid;
228
+ min-width: 0;
229
+ min-height: 0;
230
+ grid-template-columns: minmax(210px, 0.72fr) minmax(420px, 1.65fr) minmax(210px, 0.76fr);
231
+ border: 1px solid var(--line-default);
232
+ border-top: 0;
233
+ border-radius: 0 0 var(--radius-md) var(--radius-md);
234
+ background: var(--workbench-surface);
235
+ box-shadow: var(--workbench-shadow);
236
+ }
237
+
238
+ .pane { min-width: 0; min-height: 0; background: var(--pane-surface); }
239
+ .pane + .pane { border-left: 1px solid var(--line-subtle); }
240
+ .pane-head { display: flex; align-items: center; justify-content: space-between; height: 44px; padding: 0 var(--space-3); border-bottom: 1px solid var(--line-subtle); }
241
+ .pane-head h2 { margin: 0; font-size: 12px; font-weight: 650; }
242
+ .pane-count { color: var(--ink-muted); font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; }
243
+
244
+ .records { padding: var(--space-2); }
245
+ .record-row {
246
+ display: grid;
247
+ width: 100%;
248
+ grid-template-columns: auto minmax(0, 1fr) auto;
249
+ align-items: center;
250
+ gap: var(--space-3);
251
+ padding: 9px 8px;
252
+ border: 0;
253
+ border-radius: var(--radius-sm);
254
+ background: transparent;
255
+ color: inherit;
256
+ cursor: pointer;
257
+ text-align: left;
258
+ }
259
+ .record-row:hover { background: var(--state-hover); }
260
+ .record-row[aria-selected="true"] { background: var(--state-selected); }
261
+ .record-marker { width: 6px; height: 26px; border-radius: 4px; background: var(--marker, var(--ink-muted)); opacity: 0.75; }
262
+ .record-copy { min-width: 0; }
263
+ .record-copy strong { display: block; overflow: hidden; font-size: 11px; font-weight: 620; text-overflow: ellipsis; white-space: nowrap; }
264
+ .record-copy span, .record-time { color: var(--ink-tertiary); font-size: 10px; }
265
+ .record-time { font-family: "SFMono-Regular", Consolas, monospace; font-variant-numeric: tabular-nums; }
266
+
267
+ .detail-pane { display: grid; grid-template-rows: 44px auto minmax(0, 1fr); }
268
+ .tab-list { display: flex; align-items: stretch; gap: var(--space-1); height: 100%; }
269
+ .tab {
270
+ position: relative;
271
+ min-width: 64px;
272
+ border: 0;
273
+ background: transparent;
274
+ color: var(--ink-tertiary);
275
+ cursor: pointer;
276
+ font-size: 11px;
277
+ }
278
+ .tab[aria-selected="true"] { color: var(--ink-primary); font-weight: 620; }
279
+ .tab[aria-selected="true"]::after { position: absolute; right: 8px; bottom: -1px; left: 8px; height: 2px; background: var(--active-rule); content: ""; }
280
+
281
+ .detail-title { padding: var(--space-5); border-bottom: 1px solid var(--line-subtle); }
282
+ .detail-title h2 { margin: 0; font-size: 17px; font-weight: 620; letter-spacing: -0.02em; }
283
+ .detail-meta { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-2); color: var(--ink-tertiary); font-size: 10px; }
284
+ .detail-body { display: grid; min-height: 0; grid-template-columns: minmax(0, 1fr) 170px; }
285
+ .field-notes { padding: var(--space-5); }
286
+ .field-notes p { max-width: 62ch; margin: 0; color: var(--ink-secondary); font-size: 13px; line-height: 1.7; }
287
+ .note-rule { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: var(--space-3); padding: var(--space-3) 0; border-bottom: 1px solid var(--line-subtle); }
288
+ .note-rule:first-of-type { margin-top: var(--space-5); border-top: 1px solid var(--line-subtle); }
289
+ .note-rule dt { color: var(--ink-tertiary); font-size: 10px; }
290
+ .note-rule dd { margin: 0; font-size: 11px; line-height: 1.45; }
291
+ .mini-map { margin: var(--space-4) var(--space-4) var(--space-4) 0; min-height: 190px; overflow: hidden; border: 1px solid var(--line-subtle); border-radius: var(--radius-sm); background: var(--mini-map); }
292
+ .mini-map svg { width: 100%; height: 100%; opacity: 0.68; }
293
+
294
+ .metadata { padding: var(--space-2) var(--space-3); }
295
+ .metadata-group { padding: var(--space-3) 0; border-bottom: 1px solid var(--line-subtle); }
296
+ .metadata-group:last-child { border-bottom: 0; }
297
+ .metadata-group h3 { margin: 0 0 var(--space-3); color: var(--ink-tertiary); font-size: 10px; font-weight: 650; letter-spacing: 0.06em; text-transform: uppercase; }
298
+ .metadata dl { display: grid; gap: var(--space-2); margin: 0; }
299
+ .metadata dl div { display: flex; justify-content: space-between; gap: var(--space-3); }
300
+ .metadata dt { color: var(--ink-tertiary); font-size: 10px; }
301
+ .metadata dd { margin: 0; font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; text-align: right; }
302
+
303
+ .parameter-panel {
304
+ position: fixed;
305
+ z-index: 20;
306
+ top: var(--header-height);
307
+ right: 0;
308
+ bottom: 0;
309
+ display: grid;
310
+ width: min(380px, calc(100vw - 16px));
311
+ grid-template-rows: auto minmax(0, 1fr) auto;
312
+ border-left: 1px solid var(--line-default);
313
+ background: var(--panel-surface);
314
+ box-shadow: var(--panel-shadow);
315
+ backdrop-filter: blur(28px) saturate(118%);
316
+ transform: translateX(101%);
317
+ transition: transform var(--speed-panel) var(--ease-out);
318
+ }
319
+ .parameter-panel[data-open="true"] { transform: translateX(0); }
320
+ .parameter-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-4); padding: var(--space-4); border-bottom: 1px solid var(--line-subtle); }
321
+ .parameter-panel-head h2 { margin: 0; font-size: 14px; }
322
+ .parameter-panel-head p { margin: 4px 0 0; color: var(--ink-tertiary); font-size: 10px; }
323
+ .parameter-scroll { overflow: auto; padding: var(--space-3); }
324
+ .parameter-block { padding: var(--space-3); border-bottom: 1px solid var(--line-subtle); }
325
+ .parameter-master { margin-bottom: var(--space-2); border: 1px solid var(--line-default); border-radius: var(--radius-md); background: var(--state-selected); }
326
+ .parameter-heading { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
327
+ .parameter-heading strong { display: block; font-size: 11px; }
328
+ .parameter-heading output { font-family: "SFMono-Regular", Consolas, monospace; font-size: 11px; font-variant-numeric: tabular-nums; }
329
+ .parameter-kicker { display: block; margin-top: 2px; color: var(--ink-tertiary); font-size: 9px; font-weight: 500; }
330
+ .color-name { display: flex; align-items: center; gap: var(--space-2); }
331
+ .color-chip { width: 16px; height: 16px; border: 1px solid var(--line-default); border-radius: 50%; background: var(--chip); }
332
+ input[type="range"] { width: 100%; margin: var(--space-3) 0 var(--space-1); accent-color: var(--control-accent); }
333
+ .range-labels { display: flex; justify-content: space-between; color: var(--ink-muted); font-size: 9px; }
334
+ .parameter-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-2); margin: var(--space-2) 0 0; }
335
+ .parameter-facts div { min-width: 0; }
336
+ .parameter-facts dt { color: var(--ink-muted); font-size: 8px; }
337
+ .parameter-facts dd { overflow: hidden; margin: 2px 0 0; font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
338
+ .parameter-footer { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); padding: var(--space-3); border-top: 1px solid var(--line-subtle); }
339
+ .parameter-footer .button:first-child { grid-column: 1 / -1; }
340
+ }
341
+
342
+ @layer components {
343
+ .button, .icon-button {
344
+ display: inline-flex;
345
+ align-items: center;
346
+ justify-content: center;
347
+ gap: var(--space-2);
348
+ min-height: 32px;
349
+ border: 1px solid var(--line-default);
350
+ border-radius: var(--radius-sm);
351
+ background: var(--button-surface);
352
+ color: var(--ink-secondary);
353
+ cursor: pointer;
354
+ font-size: 11px;
355
+ font-weight: 600;
356
+ transition: background var(--speed-fast), border-color var(--speed-fast), color var(--speed-fast), transform var(--speed-fast);
357
+ }
358
+ .button { padding: 0 var(--space-3); }
359
+ .icon-button { width: 32px; padding: 0; }
360
+ .button:hover, .icon-button:hover { border-color: var(--line-strong); background: var(--state-hover); color: var(--ink-primary); }
361
+ .button:active, .icon-button:active { transform: translateY(1px); }
362
+ .button-primary { border-color: var(--primary-border); background: var(--primary-surface); color: var(--primary-ink); }
363
+ .button-primary:hover { background: var(--primary-hover); color: var(--primary-ink); }
364
+ .button svg, .icon-button svg { width: 14px; height: 14px; stroke-width: 1.8; }
365
+ .menu-toggle { display: none; }
366
+
367
+ :focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }
368
+ ::selection { background: var(--selection); }
369
+ }
370
+
371
+ @layer utilities {
372
+ .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
373
+ .field-fallback #spectral-field { display: none; }
374
+ }
375
+
376
+ @media (max-width: 1100px) {
377
+ .workbench { grid-template-columns: minmax(200px, 0.7fr) minmax(390px, 1.45fr); }
378
+ .metadata-pane { display: none; }
379
+ .observation-band { grid-template-columns: minmax(160px, 1fr) repeat(3, minmax(110px, 1fr)); }
380
+ .metric:last-child { display: none; }
381
+ }
382
+
383
+ @media (max-width: 760px) {
384
+ body { overflow: auto; }
385
+ .app-shell { grid-template-areas: "header" "main"; grid-template-columns: 1fr; grid-template-rows: var(--header-height) minmax(0, 1fr); }
386
+ .topbar { grid-template-columns: auto minmax(0, 1fr) auto; }
387
+ .brand { display: none; }
388
+ .menu-toggle { display: inline-flex; }
389
+ .sidebar { position: fixed; z-index: 15; top: var(--header-height); bottom: 0; left: 0; width: min(270px, 84vw); box-shadow: var(--panel-shadow); transform: translateX(-102%); transition: transform var(--speed-panel) var(--ease-out); }
390
+ .sidebar[data-open="true"] { transform: translateX(0); }
391
+ .main-inner { display: block; padding: var(--space-3); }
392
+ .page-head { display: block; padding: var(--space-4) 0; }
393
+ .status-cluster { margin-top: var(--space-4); }
394
+ .observation-band { grid-template-columns: 1fr 1fr; border-radius: var(--radius-md) var(--radius-md) 0 0; }
395
+ .band-title { grid-column: 1 / -1; border-bottom: 1px solid var(--line-subtle); }
396
+ .metric { border-left: 0; }
397
+ .metric:nth-of-type(even) { border-left: 1px solid var(--line-subtle); }
398
+ .metric:last-child { display: block; }
399
+ .workbench { display: block; border-radius: 0 0 var(--radius-md) var(--radius-md); }
400
+ .records-pane { max-height: 270px; overflow: auto; border-bottom: 1px solid var(--line-subtle); }
401
+ .pane + .pane { border-left: 0; }
402
+ .detail-body { grid-template-columns: 1fr; }
403
+ .mini-map { min-height: 150px; margin: 0 var(--space-4) var(--space-4); }
404
+ .top-actions .button span { display: none; }
405
+ }
406
+
407
+ @media (max-width: 420px) {
408
+ .location { padding: 0 var(--space-2); }
409
+ .top-actions { gap: var(--space-1); padding-right: var(--space-2); }
410
+ .observation-band { grid-template-columns: 1fr; }
411
+ .metric, .metric:nth-of-type(even) { border-top: 1px solid var(--line-subtle); border-left: 0; }
412
+ .detail-title, .field-notes { padding: var(--space-4); }
413
+ .detail-body { display: block; }
414
+ }
415
+
416
+ @media (prefers-reduced-motion: reduce) {
417
+ *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
418
+ }
419
+
420
+ @media (prefers-contrast: more) {
421
+ :root { --line-subtle: var(--line-strong); --line-default: var(--line-strong); }
422
+ .topbar, .sidebar, .observation-band, .parameter-panel { backdrop-filter: none; }
423
+ }