asjs-express 1.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/LICENSE +21 -0
- package/README.md +883 -0
- package/index.js +1 -0
- package/lib/asjs.js +1579 -0
- package/lib/client/asjs-core.css +92 -0
- package/lib/client/asjs-router.js +989 -0
- package/lib/client/asjs-theme.css +1073 -0
- package/package.json +63 -0
|
@@ -0,0 +1,1073 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--bg: #f4efe8;
|
|
3
|
+
--surface: rgba(255, 255, 255, 0.78);
|
|
4
|
+
--surface-strong: rgba(255, 255, 255, 0.96);
|
|
5
|
+
--surface-soft: #f8f4ee;
|
|
6
|
+
--surface-muted: #efe7dc;
|
|
7
|
+
--text: #1d2b36;
|
|
8
|
+
--muted: #5f6c77;
|
|
9
|
+
--accent: #0f5b66;
|
|
10
|
+
--accent-strong: #0a4750;
|
|
11
|
+
--accent-soft: #e6f2f3;
|
|
12
|
+
--accent-warm: #a97845;
|
|
13
|
+
--line: rgba(111, 92, 67, 0.16);
|
|
14
|
+
--line-strong: rgba(86, 69, 50, 0.26);
|
|
15
|
+
--shadow: 0 24px 60px rgba(69, 51, 31, 0.12);
|
|
16
|
+
--shadow-soft: 0 10px 24px rgba(69, 51, 31, 0.08);
|
|
17
|
+
--shadow-panel: 0 36px 90px rgba(46, 34, 18, 0.14);
|
|
18
|
+
--radius-xl: 32px;
|
|
19
|
+
--radius-lg: 24px;
|
|
20
|
+
--radius-md: 18px;
|
|
21
|
+
--radius-sm: 14px;
|
|
22
|
+
--asjs-progress-gradient: linear-gradient(90deg, #0f5b66, #32808c, #b78657);
|
|
23
|
+
--asjs-progress-shadow: 0 0 28px rgba(15, 91, 102, 0.24);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
* {
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
html {
|
|
31
|
+
scroll-behavior: smooth;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
body.example-body {
|
|
35
|
+
margin: 0;
|
|
36
|
+
min-height: 100vh;
|
|
37
|
+
color: var(--text);
|
|
38
|
+
font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
|
|
39
|
+
background:
|
|
40
|
+
radial-gradient(circle at top left, rgba(15, 91, 102, 0.08), transparent 26%),
|
|
41
|
+
radial-gradient(circle at bottom right, rgba(169, 120, 69, 0.1), transparent 30%),
|
|
42
|
+
linear-gradient(180deg, #fbf8f3, #f4efe8 42%, #ece4d7);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
body.example-body::before {
|
|
46
|
+
content: "";
|
|
47
|
+
position: fixed;
|
|
48
|
+
inset: 0;
|
|
49
|
+
pointer-events: none;
|
|
50
|
+
background-image:
|
|
51
|
+
linear-gradient(rgba(105, 88, 65, 0.035) 1px, transparent 1px),
|
|
52
|
+
linear-gradient(90deg, rgba(105, 88, 65, 0.035) 1px, transparent 1px);
|
|
53
|
+
background-size: 42px 42px;
|
|
54
|
+
mask-image: radial-gradient(circle at center, black 54%, transparent 90%);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
body.example-body::after {
|
|
58
|
+
content: "";
|
|
59
|
+
position: fixed;
|
|
60
|
+
inset: 0;
|
|
61
|
+
background: rgba(247, 242, 235, 0.5);
|
|
62
|
+
backdrop-filter: blur(8px);
|
|
63
|
+
opacity: 0;
|
|
64
|
+
pointer-events: none;
|
|
65
|
+
transition: opacity 220ms ease;
|
|
66
|
+
z-index: 18;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
html.asjs-loading body.example-body::after {
|
|
70
|
+
opacity: 1;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
h1,
|
|
74
|
+
h2,
|
|
75
|
+
h3,
|
|
76
|
+
.brand-copy strong {
|
|
77
|
+
font-family: "Baskerville Old Face", "Palatino Linotype", "Book Antiqua", serif;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
a {
|
|
81
|
+
color: inherit;
|
|
82
|
+
text-decoration: none;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.page-shell {
|
|
86
|
+
width: min(1220px, calc(100% - 36px));
|
|
87
|
+
margin: 24px auto 44px;
|
|
88
|
+
position: relative;
|
|
89
|
+
z-index: 1;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.example-header,
|
|
93
|
+
.view-frame,
|
|
94
|
+
.section-card,
|
|
95
|
+
.hero-copy,
|
|
96
|
+
.hero-aside,
|
|
97
|
+
.info-card,
|
|
98
|
+
.stat-card {
|
|
99
|
+
border: 1px solid var(--line);
|
|
100
|
+
border-radius: var(--radius-xl);
|
|
101
|
+
background: var(--surface-strong);
|
|
102
|
+
box-shadow: var(--shadow-soft);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.example-header {
|
|
106
|
+
padding: 24px 26px;
|
|
107
|
+
background:
|
|
108
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(250, 246, 239, 0.96)),
|
|
109
|
+
var(--surface);
|
|
110
|
+
box-shadow: var(--shadow-panel);
|
|
111
|
+
position: relative;
|
|
112
|
+
overflow: hidden;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.example-header::before {
|
|
116
|
+
content: "";
|
|
117
|
+
position: absolute;
|
|
118
|
+
inset: 0;
|
|
119
|
+
background:
|
|
120
|
+
linear-gradient(115deg, rgba(15, 91, 102, 0.08), transparent 42%),
|
|
121
|
+
radial-gradient(circle at top right, rgba(169, 120, 69, 0.11), transparent 26%);
|
|
122
|
+
pointer-events: none;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.header-note {
|
|
126
|
+
display: flex;
|
|
127
|
+
align-items: center;
|
|
128
|
+
justify-content: space-between;
|
|
129
|
+
gap: 18px;
|
|
130
|
+
padding: 0 0 18px;
|
|
131
|
+
margin-bottom: 22px;
|
|
132
|
+
border-bottom: 1px solid rgba(111, 92, 67, 0.12);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.header-note p {
|
|
136
|
+
margin: 0;
|
|
137
|
+
max-width: 760px;
|
|
138
|
+
color: var(--muted);
|
|
139
|
+
line-height: 1.7;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.example-pill,
|
|
143
|
+
.section-label,
|
|
144
|
+
.hero-badge {
|
|
145
|
+
display: inline-flex;
|
|
146
|
+
align-items: center;
|
|
147
|
+
gap: 8px;
|
|
148
|
+
padding: 8px 13px;
|
|
149
|
+
border-radius: 999px;
|
|
150
|
+
background: linear-gradient(180deg, #f4fbfb, #e7f3f3);
|
|
151
|
+
color: var(--accent-strong);
|
|
152
|
+
font-size: 0.74rem;
|
|
153
|
+
font-weight: 700;
|
|
154
|
+
letter-spacing: 0.1em;
|
|
155
|
+
text-transform: uppercase;
|
|
156
|
+
box-shadow: inset 0 0 0 1px rgba(15, 91, 102, 0.08);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.header-main {
|
|
160
|
+
display: grid;
|
|
161
|
+
grid-template-columns: auto 1fr auto;
|
|
162
|
+
align-items: center;
|
|
163
|
+
gap: 24px;
|
|
164
|
+
position: relative;
|
|
165
|
+
z-index: 1;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.brand-link {
|
|
169
|
+
display: flex;
|
|
170
|
+
align-items: center;
|
|
171
|
+
gap: 15px;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.brand-mark {
|
|
175
|
+
width: 56px;
|
|
176
|
+
height: 56px;
|
|
177
|
+
display: grid;
|
|
178
|
+
place-items: center;
|
|
179
|
+
border-radius: 18px;
|
|
180
|
+
background: linear-gradient(140deg, var(--accent), #2e7782);
|
|
181
|
+
color: #ffffff;
|
|
182
|
+
font-weight: 700;
|
|
183
|
+
letter-spacing: 0.14em;
|
|
184
|
+
box-shadow: 0 16px 34px rgba(15, 91, 102, 0.22);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.brand-copy {
|
|
188
|
+
display: grid;
|
|
189
|
+
gap: 4px;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.brand-copy strong {
|
|
193
|
+
font-size: 1.55rem;
|
|
194
|
+
line-height: 1;
|
|
195
|
+
letter-spacing: -0.045em;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.brand-copy span,
|
|
199
|
+
.brand-copy small {
|
|
200
|
+
color: var(--muted);
|
|
201
|
+
line-height: 1.5;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.site-nav {
|
|
205
|
+
display: flex;
|
|
206
|
+
justify-content: center;
|
|
207
|
+
flex-wrap: wrap;
|
|
208
|
+
gap: 12px;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.site-link {
|
|
212
|
+
display: grid;
|
|
213
|
+
gap: 4px;
|
|
214
|
+
min-width: 156px;
|
|
215
|
+
padding: 12px 14px;
|
|
216
|
+
border-radius: 20px;
|
|
217
|
+
border: 1px solid rgba(111, 92, 67, 0.08);
|
|
218
|
+
background: rgba(255, 255, 255, 0.72);
|
|
219
|
+
transition:
|
|
220
|
+
transform 180ms ease,
|
|
221
|
+
border-color 180ms ease,
|
|
222
|
+
box-shadow 180ms ease,
|
|
223
|
+
background 180ms ease;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.site-link span {
|
|
227
|
+
font-weight: 700;
|
|
228
|
+
letter-spacing: -0.01em;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.site-link small {
|
|
232
|
+
color: var(--muted);
|
|
233
|
+
font-size: 0.78rem;
|
|
234
|
+
line-height: 1.42;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.site-link:hover,
|
|
238
|
+
.site-link.is-active {
|
|
239
|
+
transform: translateY(-2px);
|
|
240
|
+
border-color: rgba(15, 91, 102, 0.18);
|
|
241
|
+
background: rgba(255, 255, 255, 0.96);
|
|
242
|
+
box-shadow: var(--shadow-soft);
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.site-link[data-asjs-prefetched="true"] {
|
|
246
|
+
box-shadow: inset 0 0 0 1px rgba(15, 91, 102, 0.12), var(--shadow-soft);
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.button {
|
|
250
|
+
display: inline-flex;
|
|
251
|
+
align-items: center;
|
|
252
|
+
justify-content: center;
|
|
253
|
+
min-height: 50px;
|
|
254
|
+
padding: 12px 20px;
|
|
255
|
+
border-radius: 999px;
|
|
256
|
+
border: 1px solid var(--line-strong);
|
|
257
|
+
font-weight: 700;
|
|
258
|
+
letter-spacing: -0.01em;
|
|
259
|
+
transition:
|
|
260
|
+
transform 180ms ease,
|
|
261
|
+
box-shadow 180ms ease,
|
|
262
|
+
background 180ms ease,
|
|
263
|
+
border-color 180ms ease;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.button:hover {
|
|
267
|
+
transform: translateY(-1px);
|
|
268
|
+
box-shadow: var(--shadow-soft);
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.button:focus-visible,
|
|
272
|
+
.site-link:focus-visible,
|
|
273
|
+
.brand-link:focus-visible,
|
|
274
|
+
.inline-link:focus-visible {
|
|
275
|
+
outline: 3px solid rgba(15, 91, 102, 0.16);
|
|
276
|
+
outline-offset: 3px;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.button-primary {
|
|
280
|
+
border-color: var(--accent);
|
|
281
|
+
background: linear-gradient(180deg, #126671, #0f5b66);
|
|
282
|
+
color: #ffffff;
|
|
283
|
+
box-shadow: 0 18px 34px rgba(15, 91, 102, 0.18);
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.button-secondary {
|
|
287
|
+
background: linear-gradient(180deg, #ffffff, #f7f2eb);
|
|
288
|
+
color: var(--text);
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.header-cta {
|
|
292
|
+
white-space: nowrap;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.view-frame {
|
|
296
|
+
margin-top: 24px;
|
|
297
|
+
padding: 32px;
|
|
298
|
+
background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(250, 245, 238, 0.96));
|
|
299
|
+
box-shadow: var(--shadow-panel);
|
|
300
|
+
position: relative;
|
|
301
|
+
z-index: 1;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
[data-asjs-view] {
|
|
305
|
+
animation: reveal 280ms ease;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.route-loader {
|
|
309
|
+
position: fixed;
|
|
310
|
+
inset: auto 30px 30px auto;
|
|
311
|
+
width: min(440px, calc(100% - 40px));
|
|
312
|
+
opacity: 0;
|
|
313
|
+
transform: translateY(18px);
|
|
314
|
+
pointer-events: none;
|
|
315
|
+
transition: opacity 220ms ease, transform 220ms ease;
|
|
316
|
+
z-index: 28;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
html.asjs-loading .route-loader {
|
|
320
|
+
opacity: 1;
|
|
321
|
+
transform: translateY(0);
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.route-loader-card {
|
|
325
|
+
padding: 20px;
|
|
326
|
+
border-radius: 26px;
|
|
327
|
+
border: 1px solid rgba(15, 91, 102, 0.14);
|
|
328
|
+
background: rgba(255, 255, 255, 0.94);
|
|
329
|
+
box-shadow: var(--shadow-panel);
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.route-loader-label {
|
|
333
|
+
display: inline-flex;
|
|
334
|
+
padding: 7px 11px;
|
|
335
|
+
border-radius: 999px;
|
|
336
|
+
background: var(--accent-soft);
|
|
337
|
+
color: var(--accent-strong);
|
|
338
|
+
font-size: 0.72rem;
|
|
339
|
+
font-weight: 700;
|
|
340
|
+
letter-spacing: 0.1em;
|
|
341
|
+
text-transform: uppercase;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.route-loader-card strong {
|
|
345
|
+
display: block;
|
|
346
|
+
margin-top: 14px;
|
|
347
|
+
font-size: 1.16rem;
|
|
348
|
+
letter-spacing: -0.03em;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.route-loader-card p,
|
|
352
|
+
.render-note,
|
|
353
|
+
.render-stamp {
|
|
354
|
+
color: var(--muted);
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.route-loader-card p {
|
|
358
|
+
margin: 10px 0 0;
|
|
359
|
+
line-height: 1.7;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.route-loader-skeleton {
|
|
363
|
+
display: grid;
|
|
364
|
+
gap: 10px;
|
|
365
|
+
margin-top: 16px;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.route-loader-skeleton span {
|
|
369
|
+
display: block;
|
|
370
|
+
height: 10px;
|
|
371
|
+
border-radius: 999px;
|
|
372
|
+
background: linear-gradient(90deg, rgba(15, 91, 102, 0.08), rgba(15, 91, 102, 0.18), rgba(15, 91, 102, 0.08));
|
|
373
|
+
background-size: 220% 100%;
|
|
374
|
+
animation: shimmer 1.2s linear infinite;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.route-loader-skeleton span:nth-child(2) {
|
|
378
|
+
width: 84%;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.route-loader-skeleton span:nth-child(3) {
|
|
382
|
+
width: 70%;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.hero,
|
|
386
|
+
.split-layout,
|
|
387
|
+
.card-grid,
|
|
388
|
+
.stats-grid,
|
|
389
|
+
.render-summary-grid,
|
|
390
|
+
.dashboard-grid,
|
|
391
|
+
.metric-grid,
|
|
392
|
+
.catalog-grid,
|
|
393
|
+
.api-grid,
|
|
394
|
+
.field-grid,
|
|
395
|
+
.signal-list {
|
|
396
|
+
display: grid;
|
|
397
|
+
gap: 20px;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.hero {
|
|
401
|
+
grid-template-columns: 1.18fr 0.82fr;
|
|
402
|
+
align-items: stretch;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.hero-copy,
|
|
406
|
+
.hero-aside,
|
|
407
|
+
.section-card,
|
|
408
|
+
.info-card,
|
|
409
|
+
.stat-card {
|
|
410
|
+
padding: 28px;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.hero-copy,
|
|
414
|
+
.section-card,
|
|
415
|
+
.info-card,
|
|
416
|
+
.stat-card,
|
|
417
|
+
.product-card,
|
|
418
|
+
.metric-panel,
|
|
419
|
+
.activity-item,
|
|
420
|
+
.signal-item,
|
|
421
|
+
.status-panel {
|
|
422
|
+
position: relative;
|
|
423
|
+
overflow: hidden;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.hero-copy::before,
|
|
427
|
+
.section-card::before,
|
|
428
|
+
.info-card::before,
|
|
429
|
+
.stat-card::before,
|
|
430
|
+
.product-card::before,
|
|
431
|
+
.metric-panel::before,
|
|
432
|
+
.status-panel::before {
|
|
433
|
+
content: "";
|
|
434
|
+
position: absolute;
|
|
435
|
+
inset: 0 auto auto 0;
|
|
436
|
+
width: 100%;
|
|
437
|
+
height: 4px;
|
|
438
|
+
background: linear-gradient(90deg, rgba(15, 91, 102, 0.8), rgba(183, 134, 87, 0.5));
|
|
439
|
+
opacity: 0.3;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.hero-copy h1,
|
|
443
|
+
.page-intro h1,
|
|
444
|
+
.section-card h2,
|
|
445
|
+
.section-header h2,
|
|
446
|
+
.not-found-panel h1 {
|
|
447
|
+
margin: 18px 0 14px;
|
|
448
|
+
line-height: 0.98;
|
|
449
|
+
letter-spacing: -0.05em;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.hero-copy h1,
|
|
453
|
+
.page-intro h1,
|
|
454
|
+
.not-found-panel h1 {
|
|
455
|
+
font-size: clamp(2.8rem, 6vw, 5rem);
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
.section-card h2,
|
|
459
|
+
.section-header h2 {
|
|
460
|
+
font-size: clamp(1.7rem, 2.7vw, 2.4rem);
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.hero-copy p,
|
|
464
|
+
.page-intro p,
|
|
465
|
+
.section-card p,
|
|
466
|
+
.info-card p,
|
|
467
|
+
.footer,
|
|
468
|
+
.flow-list li,
|
|
469
|
+
.check-list li {
|
|
470
|
+
color: var(--muted);
|
|
471
|
+
line-height: 1.78;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.hero-actions {
|
|
475
|
+
display: flex;
|
|
476
|
+
flex-wrap: wrap;
|
|
477
|
+
gap: 12px;
|
|
478
|
+
margin-top: 30px;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.hero-aside {
|
|
482
|
+
display: flex;
|
|
483
|
+
align-items: stretch;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
.render-panel {
|
|
487
|
+
width: 100%;
|
|
488
|
+
background: linear-gradient(180deg, #ffffff, #f7f0e6);
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
.dashboard-grid {
|
|
492
|
+
grid-template-columns: 1.12fr 0.88fr;
|
|
493
|
+
margin-top: 24px;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.metric-grid {
|
|
497
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
.metric-panel {
|
|
501
|
+
padding: 20px;
|
|
502
|
+
border-radius: 22px;
|
|
503
|
+
border: 1px solid rgba(111, 92, 67, 0.12);
|
|
504
|
+
background: linear-gradient(180deg, #ffffff, #f8f2e9);
|
|
505
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.metric-panel span,
|
|
509
|
+
.activity-time,
|
|
510
|
+
.product-chip,
|
|
511
|
+
.status-pill,
|
|
512
|
+
.status-summary span,
|
|
513
|
+
.submitted-brief span,
|
|
514
|
+
.field-group span,
|
|
515
|
+
.inline-response-meta strong {
|
|
516
|
+
display: inline-flex;
|
|
517
|
+
color: var(--accent-strong);
|
|
518
|
+
font-size: 0.74rem;
|
|
519
|
+
font-weight: 700;
|
|
520
|
+
letter-spacing: 0.09em;
|
|
521
|
+
text-transform: uppercase;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.metric-panel strong {
|
|
525
|
+
display: block;
|
|
526
|
+
margin-top: 12px;
|
|
527
|
+
font-size: 2rem;
|
|
528
|
+
letter-spacing: -0.06em;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
.metric-panel p,
|
|
532
|
+
.activity-item p,
|
|
533
|
+
.signal-item p,
|
|
534
|
+
.product-note,
|
|
535
|
+
.status-panel p,
|
|
536
|
+
.submitted-brief p,
|
|
537
|
+
.quick-check-panel p {
|
|
538
|
+
margin: 10px 0 0;
|
|
539
|
+
color: var(--muted);
|
|
540
|
+
line-height: 1.7;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
.activity-list {
|
|
544
|
+
display: grid;
|
|
545
|
+
gap: 16px;
|
|
546
|
+
margin-top: 20px;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.activity-item {
|
|
550
|
+
display: grid;
|
|
551
|
+
grid-template-columns: 92px 1fr;
|
|
552
|
+
gap: 18px;
|
|
553
|
+
padding: 18px;
|
|
554
|
+
border-radius: 20px;
|
|
555
|
+
border: 1px solid rgba(111, 92, 67, 0.12);
|
|
556
|
+
background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 233, 0.92));
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
.activity-time {
|
|
560
|
+
align-self: start;
|
|
561
|
+
padding: 7px 10px;
|
|
562
|
+
border-radius: 999px;
|
|
563
|
+
background: var(--accent-soft);
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.activity-item h3,
|
|
567
|
+
.signal-item h3,
|
|
568
|
+
.product-card h2,
|
|
569
|
+
.status-panel h3,
|
|
570
|
+
.quick-check-panel h3 {
|
|
571
|
+
margin: 0;
|
|
572
|
+
font-size: 1.12rem;
|
|
573
|
+
letter-spacing: -0.03em;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
.signal-list {
|
|
577
|
+
margin-top: 20px;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.signal-item {
|
|
581
|
+
padding: 20px;
|
|
582
|
+
border-radius: 20px;
|
|
583
|
+
border: 1px solid rgba(111, 92, 67, 0.12);
|
|
584
|
+
background: rgba(255, 255, 255, 0.9);
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.catalog-grid {
|
|
588
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
589
|
+
margin-top: 24px;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
.product-card {
|
|
593
|
+
background: linear-gradient(180deg, #ffffff, #fbf6ef);
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
.product-card-head {
|
|
597
|
+
display: flex;
|
|
598
|
+
align-items: center;
|
|
599
|
+
justify-content: space-between;
|
|
600
|
+
gap: 12px;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.product-chip,
|
|
604
|
+
.status-pill {
|
|
605
|
+
padding: 6px 11px;
|
|
606
|
+
border-radius: 999px;
|
|
607
|
+
background: var(--accent-soft);
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.product-card > p {
|
|
611
|
+
margin-top: 14px;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.product-facts {
|
|
615
|
+
display: grid;
|
|
616
|
+
gap: 12px;
|
|
617
|
+
margin: 20px 0 0;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
.product-facts div,
|
|
621
|
+
.status-summary div,
|
|
622
|
+
.inline-response-meta span {
|
|
623
|
+
padding: 14px 16px;
|
|
624
|
+
border-radius: 16px;
|
|
625
|
+
border: 1px solid rgba(111, 92, 67, 0.12);
|
|
626
|
+
background: var(--surface-soft);
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.product-facts dt {
|
|
630
|
+
color: var(--muted);
|
|
631
|
+
font-size: 0.76rem;
|
|
632
|
+
font-weight: 700;
|
|
633
|
+
letter-spacing: 0.08em;
|
|
634
|
+
text-transform: uppercase;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
.product-facts dd,
|
|
638
|
+
.status-summary strong,
|
|
639
|
+
.inline-response-meta span {
|
|
640
|
+
margin: 8px 0 0;
|
|
641
|
+
font-weight: 700;
|
|
642
|
+
line-height: 1.5;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
.product-note {
|
|
646
|
+
padding-top: 16px;
|
|
647
|
+
border-top: 1px solid rgba(111, 92, 67, 0.12);
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
.api-grid {
|
|
651
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
652
|
+
margin-top: 18px;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
.form-panel {
|
|
656
|
+
background: linear-gradient(180deg, #ffffff, #fbf5ed);
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.webas-form,
|
|
660
|
+
.quick-check-form {
|
|
661
|
+
display: grid;
|
|
662
|
+
gap: 18px;
|
|
663
|
+
margin-top: 20px;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
.field-grid {
|
|
667
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
.field-group {
|
|
671
|
+
display: grid;
|
|
672
|
+
gap: 8px;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
.field-group input,
|
|
676
|
+
.field-group textarea {
|
|
677
|
+
width: 100%;
|
|
678
|
+
padding: 15px 17px;
|
|
679
|
+
border-radius: 18px;
|
|
680
|
+
border: 1px solid rgba(86, 69, 50, 0.2);
|
|
681
|
+
background: rgba(255, 255, 255, 0.98);
|
|
682
|
+
color: var(--text);
|
|
683
|
+
font: inherit;
|
|
684
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
|
|
685
|
+
transition:
|
|
686
|
+
border-color 180ms ease,
|
|
687
|
+
box-shadow 180ms ease,
|
|
688
|
+
background 180ms ease,
|
|
689
|
+
transform 180ms ease;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
.field-group input:hover,
|
|
693
|
+
.field-group textarea:hover {
|
|
694
|
+
border-color: rgba(15, 91, 102, 0.24);
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.field-group input:focus,
|
|
698
|
+
.field-group textarea:focus,
|
|
699
|
+
.field-group input:focus-visible,
|
|
700
|
+
.field-group textarea:focus-visible {
|
|
701
|
+
outline: none;
|
|
702
|
+
border-color: rgba(15, 91, 102, 0.44);
|
|
703
|
+
box-shadow: 0 0 0 4px rgba(15, 91, 102, 0.08), 0 14px 26px rgba(15, 91, 102, 0.08);
|
|
704
|
+
background: #ffffff;
|
|
705
|
+
transform: translateY(-1px);
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
.field-group textarea {
|
|
709
|
+
resize: vertical;
|
|
710
|
+
min-height: 170px;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.field-error {
|
|
714
|
+
color: #9a4738;
|
|
715
|
+
font-size: 0.86rem;
|
|
716
|
+
line-height: 1.5;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
.form-actions {
|
|
720
|
+
display: flex;
|
|
721
|
+
align-items: center;
|
|
722
|
+
justify-content: space-between;
|
|
723
|
+
gap: 16px;
|
|
724
|
+
flex-wrap: wrap;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
.form-actions span {
|
|
728
|
+
color: var(--muted);
|
|
729
|
+
line-height: 1.65;
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
.status-panel {
|
|
733
|
+
padding: 20px;
|
|
734
|
+
border-radius: 24px;
|
|
735
|
+
border: 1px solid rgba(111, 92, 67, 0.14);
|
|
736
|
+
background: #ffffff;
|
|
737
|
+
box-shadow: var(--shadow-soft);
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
.status-panel--success {
|
|
741
|
+
background: linear-gradient(180deg, #ffffff, #eef8f6);
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
.status-panel--error {
|
|
745
|
+
background: linear-gradient(180deg, #ffffff, #fbf1eb);
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
.status-summary {
|
|
749
|
+
display: grid;
|
|
750
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
751
|
+
gap: 12px;
|
|
752
|
+
margin-top: 20px;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.submitted-brief {
|
|
756
|
+
margin-top: 20px;
|
|
757
|
+
padding: 18px;
|
|
758
|
+
border-radius: 20px;
|
|
759
|
+
border: 1px solid rgba(111, 92, 67, 0.12);
|
|
760
|
+
background: rgba(255, 255, 255, 0.8);
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
.render-summary-grid {
|
|
764
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
765
|
+
margin-top: 20px;
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
.render-summary-grid--wide {
|
|
769
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
.render-item {
|
|
773
|
+
padding: 17px;
|
|
774
|
+
border-radius: 20px;
|
|
775
|
+
border: 1px solid rgba(111, 92, 67, 0.12);
|
|
776
|
+
background: linear-gradient(180deg, #ffffff, #f8f3eb);
|
|
777
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
.render-item span {
|
|
781
|
+
display: block;
|
|
782
|
+
color: var(--muted);
|
|
783
|
+
font-size: 0.74rem;
|
|
784
|
+
font-weight: 700;
|
|
785
|
+
letter-spacing: 0.08em;
|
|
786
|
+
text-transform: uppercase;
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
.render-item strong {
|
|
790
|
+
display: block;
|
|
791
|
+
margin-top: 8px;
|
|
792
|
+
font-size: 1rem;
|
|
793
|
+
line-height: 1.35;
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
.render-note {
|
|
797
|
+
margin: 16px 0 0;
|
|
798
|
+
line-height: 1.72;
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
.render-stamp {
|
|
802
|
+
display: inline-block;
|
|
803
|
+
margin-top: 10px;
|
|
804
|
+
font-size: 0.86rem;
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
.stats-grid,
|
|
808
|
+
.card-grid {
|
|
809
|
+
width: 100%;
|
|
810
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
.stat-card {
|
|
814
|
+
background: linear-gradient(180deg, #ffffff, #f8f3eb);
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
.stat-card strong,
|
|
818
|
+
.contact-value {
|
|
819
|
+
display: block;
|
|
820
|
+
color: var(--accent-strong);
|
|
821
|
+
font-size: 1.7rem;
|
|
822
|
+
font-weight: 700;
|
|
823
|
+
letter-spacing: -0.05em;
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
.contact-card {
|
|
827
|
+
background: linear-gradient(180deg, #ffffff, #f9f5ee);
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.section,
|
|
831
|
+
.split-layout,
|
|
832
|
+
.page-intro,
|
|
833
|
+
.section-card {
|
|
834
|
+
margin-top: 24px;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.compact-section {
|
|
838
|
+
margin-top: 18px;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
.page-intro {
|
|
842
|
+
padding: 12px 2px 4px;
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
.section-header {
|
|
846
|
+
margin-bottom: 18px;
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
.info-card h3 {
|
|
850
|
+
margin: 0 0 12px;
|
|
851
|
+
font-size: 1.16rem;
|
|
852
|
+
letter-spacing: -0.02em;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.split-layout {
|
|
856
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
.check-list,
|
|
860
|
+
.flow-list {
|
|
861
|
+
margin: 18px 0 0;
|
|
862
|
+
padding-left: 20px;
|
|
863
|
+
display: grid;
|
|
864
|
+
gap: 12px;
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
.check-list li::marker,
|
|
868
|
+
.flow-list li::marker {
|
|
869
|
+
color: var(--accent-strong);
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
.code-panel {
|
|
873
|
+
background: linear-gradient(180deg, #ffffff, #faf7f1);
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
.render-band {
|
|
877
|
+
background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 242, 233, 0.92));
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
.code-block,
|
|
881
|
+
.mono-list {
|
|
882
|
+
font-family: "Cascadia Code", "Consolas", monospace;
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
.code-block {
|
|
886
|
+
margin: 18px 0 0;
|
|
887
|
+
padding: 18px;
|
|
888
|
+
border-radius: 18px;
|
|
889
|
+
background: #f4efe6;
|
|
890
|
+
border: 1px solid rgba(111, 92, 67, 0.12);
|
|
891
|
+
white-space: pre-wrap;
|
|
892
|
+
word-break: break-word;
|
|
893
|
+
line-height: 1.64;
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
.quick-check-panel {
|
|
897
|
+
margin-top: 24px;
|
|
898
|
+
padding-top: 22px;
|
|
899
|
+
border-top: 1px solid rgba(111, 92, 67, 0.12);
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
.quick-check-actions {
|
|
903
|
+
margin-top: 4px;
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
.inline-response-shell {
|
|
907
|
+
margin-top: 16px;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
.asjs-inline-response {
|
|
911
|
+
padding: 18px;
|
|
912
|
+
border-radius: 20px;
|
|
913
|
+
border: 1px solid rgba(111, 92, 67, 0.12);
|
|
914
|
+
background: linear-gradient(180deg, #ffffff, #f8f3eb);
|
|
915
|
+
box-shadow: var(--shadow-soft);
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
.asjs-inline-response strong {
|
|
919
|
+
display: block;
|
|
920
|
+
font-size: 1rem;
|
|
921
|
+
letter-spacing: -0.02em;
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
.asjs-inline-response p {
|
|
925
|
+
margin: 10px 0 0;
|
|
926
|
+
color: var(--muted);
|
|
927
|
+
line-height: 1.7;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
.asjs-inline-response.is-success {
|
|
931
|
+
background: linear-gradient(180deg, #ffffff, #eef8f6);
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
.asjs-inline-response.is-error {
|
|
935
|
+
background: linear-gradient(180deg, #ffffff, #fbf1eb);
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
.asjs-inline-response.is-neutral {
|
|
939
|
+
background: linear-gradient(180deg, #ffffff, #f7f2ea);
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
.inline-response-meta {
|
|
943
|
+
display: grid;
|
|
944
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
945
|
+
gap: 10px;
|
|
946
|
+
margin-top: 16px;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
.inline-response-meta span {
|
|
950
|
+
display: grid;
|
|
951
|
+
gap: 6px;
|
|
952
|
+
margin: 0;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
.inline-support {
|
|
956
|
+
margin: 16px 0 0;
|
|
957
|
+
color: var(--muted);
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
.inline-link {
|
|
961
|
+
color: var(--accent-strong);
|
|
962
|
+
text-decoration: underline;
|
|
963
|
+
text-underline-offset: 3px;
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
.not-found-panel {
|
|
967
|
+
padding: 32px;
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
.footer {
|
|
971
|
+
display: flex;
|
|
972
|
+
justify-content: space-between;
|
|
973
|
+
gap: 14px;
|
|
974
|
+
flex-wrap: wrap;
|
|
975
|
+
margin-top: 18px;
|
|
976
|
+
padding: 0 4px;
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
.footer strong {
|
|
980
|
+
color: var(--text);
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
.asjs-form-submitting {
|
|
984
|
+
opacity: 0.74;
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
.asjs-form-submitting .button {
|
|
988
|
+
pointer-events: none;
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
@keyframes reveal {
|
|
992
|
+
from {
|
|
993
|
+
opacity: 0;
|
|
994
|
+
transform: translateY(8px);
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
to {
|
|
998
|
+
opacity: 1;
|
|
999
|
+
transform: translateY(0);
|
|
1000
|
+
}
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
@keyframes shimmer {
|
|
1004
|
+
from {
|
|
1005
|
+
background-position: 100% 0;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
to {
|
|
1009
|
+
background-position: -100% 0;
|
|
1010
|
+
}
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
@media (max-width: 1080px) {
|
|
1014
|
+
.header-main,
|
|
1015
|
+
.hero,
|
|
1016
|
+
.split-layout,
|
|
1017
|
+
.card-grid,
|
|
1018
|
+
.stats-grid,
|
|
1019
|
+
.render-summary-grid,
|
|
1020
|
+
.render-summary-grid--wide,
|
|
1021
|
+
.dashboard-grid,
|
|
1022
|
+
.metric-grid,
|
|
1023
|
+
.catalog-grid,
|
|
1024
|
+
.api-grid,
|
|
1025
|
+
.field-grid,
|
|
1026
|
+
.status-summary,
|
|
1027
|
+
.inline-response-meta {
|
|
1028
|
+
grid-template-columns: 1fr;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
.site-nav {
|
|
1032
|
+
justify-content: flex-start;
|
|
1033
|
+
}
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
@media (max-width: 760px) {
|
|
1037
|
+
.page-shell {
|
|
1038
|
+
width: min(100%, calc(100% - 20px));
|
|
1039
|
+
margin: 14px auto 24px;
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
.example-header,
|
|
1043
|
+
.view-frame,
|
|
1044
|
+
.hero-copy,
|
|
1045
|
+
.hero-aside,
|
|
1046
|
+
.section-card,
|
|
1047
|
+
.info-card,
|
|
1048
|
+
.stat-card,
|
|
1049
|
+
.not-found-panel {
|
|
1050
|
+
padding: 20px;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
.header-note,
|
|
1054
|
+
.footer,
|
|
1055
|
+
.hero-actions {
|
|
1056
|
+
flex-direction: column;
|
|
1057
|
+
align-items: flex-start;
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
.site-link {
|
|
1061
|
+
min-width: 0;
|
|
1062
|
+
width: 100%;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
.route-loader {
|
|
1066
|
+
inset: auto 10px 10px 10px;
|
|
1067
|
+
width: auto;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
.activity-item {
|
|
1071
|
+
grid-template-columns: 1fr;
|
|
1072
|
+
}
|
|
1073
|
+
}
|