privateboard 0.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 +120 -0
- package/dist/cli.js +10502 -0
- package/dist/cli.js.map +1 -0
- package/package.json +63 -0
- package/public/adjourn-overlay.css +253 -0
- package/public/agent-overlay.css +444 -0
- package/public/agent-overlay.js +604 -0
- package/public/agent-profile.css +3230 -0
- package/public/agent-profile.js +3329 -0
- package/public/app.js +6629 -0
- package/public/auto-hide-scroll.js +90 -0
- package/public/avatar-skill.js +793 -0
- package/public/avatars/chair.svg +98 -0
- package/public/avatars/first-principles.svg +122 -0
- package/public/avatars/long-horizon.svg +147 -0
- package/public/avatars/open_ai.png +0 -0
- package/public/avatars/phenomenologist.svg +130 -0
- package/public/avatars/socrates.svg +187 -0
- package/public/avatars/user-empathy.svg +117 -0
- package/public/avatars/value-investor.svg +117 -0
- package/public/favicon.svg +10 -0
- package/public/fonts/agent-Italic.woff2 +0 -0
- package/public/fonts/human-sans.woff2 +0 -0
- package/public/icons.css +103 -0
- package/public/models-cache.js +57 -0
- package/public/new-agent.css +1359 -0
- package/public/new-agent.js +675 -0
- package/public/onboarding.css +628 -0
- package/public/onboarding.js +782 -0
- package/public/prototype-dashboard.html +7596 -0
- package/public/report/spines/a16z-thesis.css +1055 -0
- package/public/report/spines/anthropic-essay.css +556 -0
- package/public/report/spines/boardroom-dark.css +1082 -0
- package/public/report/spines/gartner-note.css +538 -0
- package/public/report/spines/mckinsey-deck.css +523 -0
- package/public/report/spines/openai-paper.css +516 -0
- package/public/report.html +1417 -0
- package/public/room-settings.css +895 -0
- package/public/room-settings.js +1039 -0
- package/public/themes.css +338 -0
- package/public/user-settings.css +1236 -0
- package/public/user-settings.js +1291 -0
|
@@ -0,0 +1,556 @@
|
|
|
1
|
+
/* Anthropic Essay · open-ended exploration spine. Warm cream paper,
|
|
2
|
+
serif body, hand-set typography, clay accents, low-contrast hierarchy.
|
|
3
|
+
Best for "what does X mean" / philosophical rooms. */
|
|
4
|
+
:root {
|
|
5
|
+
--paper: #F4F0E8;
|
|
6
|
+
--paper-soft: #EDE6D6;
|
|
7
|
+
--paper-deep: #E2D9C4;
|
|
8
|
+
--surface: #FAF7F0;
|
|
9
|
+
--surface-hover: #F0EBDD;
|
|
10
|
+
--ink: #1A1814;
|
|
11
|
+
--ink-soft: #4A4338;
|
|
12
|
+
--ink-mid: #6B6359;
|
|
13
|
+
--ink-faint: #978C7E;
|
|
14
|
+
--ink-muted: #B5AB9B;
|
|
15
|
+
--rule: #DDD5C8;
|
|
16
|
+
--rule-soft: #E8E1D2;
|
|
17
|
+
--clay: #CC785C;
|
|
18
|
+
--clay-deep: #A85A41;
|
|
19
|
+
--clay-pale: #F2E0D5;
|
|
20
|
+
--sage: #8B9D7F;
|
|
21
|
+
--sage-deep: #6B7D5F;
|
|
22
|
+
--serif: "Tiempos Headline", "Tiempos", "Source Serif Pro", "Charter",
|
|
23
|
+
"Iowan Old Style", "Palatino", Georgia,
|
|
24
|
+
"Songti SC", "STSong", "Source Han Serif CN", "Noto Serif CJK SC", serif;
|
|
25
|
+
--sans: "Söhne", "Styrene B", "Inter", "Helvetica Neue", -apple-system,
|
|
26
|
+
BlinkMacSystemFont, system-ui,
|
|
27
|
+
"PingFang SC", "Hiragino Sans GB", "Source Han Sans CN", "Noto Sans CJK SC", sans-serif;
|
|
28
|
+
--mono: "Söhne Mono", "JetBrains Mono", "SF Mono",
|
|
29
|
+
"PingFang SC", "Source Han Sans CN", monospace;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
33
|
+
html, body {
|
|
34
|
+
background: var(--paper);
|
|
35
|
+
color: var(--ink-soft);
|
|
36
|
+
font-family: var(--serif);
|
|
37
|
+
font-size: 18px;
|
|
38
|
+
line-height: 1.62;
|
|
39
|
+
-webkit-font-smoothing: antialiased;
|
|
40
|
+
text-rendering: optimizeLegibility;
|
|
41
|
+
min-height: 100vh;
|
|
42
|
+
}
|
|
43
|
+
::-webkit-scrollbar { width: 6px; }
|
|
44
|
+
::-webkit-scrollbar-track { background: var(--paper); }
|
|
45
|
+
::-webkit-scrollbar-thumb { background: var(--rule); }
|
|
46
|
+
|
|
47
|
+
.doc { max-width: 760px; margin: 0 auto; padding: 0 0 96px; }
|
|
48
|
+
|
|
49
|
+
.top-rule {
|
|
50
|
+
background: var(--paper);
|
|
51
|
+
border-bottom: 1px solid var(--rule);
|
|
52
|
+
padding: 14px 32px;
|
|
53
|
+
display: flex;
|
|
54
|
+
justify-content: space-between;
|
|
55
|
+
align-items: center;
|
|
56
|
+
font-family: var(--sans);
|
|
57
|
+
font-size: 11.5px;
|
|
58
|
+
letter-spacing: 0.04em;
|
|
59
|
+
color: var(--ink-faint);
|
|
60
|
+
}
|
|
61
|
+
.top-rule .crumb { color: var(--ink); font-weight: 500; font-style: italic; font-family: var(--serif); letter-spacing: 0; font-size: 14px; text-transform: none; }
|
|
62
|
+
.top-rule .crumb .accent { color: var(--clay); }
|
|
63
|
+
.top-rule .back {
|
|
64
|
+
color: var(--ink-mid);
|
|
65
|
+
text-decoration: none;
|
|
66
|
+
border: none;
|
|
67
|
+
border-bottom: 1px solid var(--rule);
|
|
68
|
+
padding: 4px 0;
|
|
69
|
+
font-style: italic;
|
|
70
|
+
font-family: var(--serif);
|
|
71
|
+
letter-spacing: 0;
|
|
72
|
+
text-transform: none;
|
|
73
|
+
font-size: 14px;
|
|
74
|
+
}
|
|
75
|
+
.top-rule .back:hover { color: var(--clay); border-color: var(--clay); }
|
|
76
|
+
|
|
77
|
+
.cover {
|
|
78
|
+
padding: 80px 32px 48px;
|
|
79
|
+
border-bottom: 1px solid var(--rule);
|
|
80
|
+
background: transparent;
|
|
81
|
+
}
|
|
82
|
+
.cover-tag {
|
|
83
|
+
font-family: var(--sans);
|
|
84
|
+
font-size: 11px;
|
|
85
|
+
letter-spacing: 0.16em;
|
|
86
|
+
text-transform: uppercase;
|
|
87
|
+
color: var(--clay);
|
|
88
|
+
font-weight: 500;
|
|
89
|
+
margin-bottom: 32px;
|
|
90
|
+
display: flex; align-items: center; gap: 14px;
|
|
91
|
+
}
|
|
92
|
+
.cover-tag .pipe { width: 1px; height: 12px; background: var(--rule); }
|
|
93
|
+
.cover-tag .secondary { color: var(--ink-faint); font-weight: 400; }
|
|
94
|
+
.cover-title {
|
|
95
|
+
font-family: var(--serif);
|
|
96
|
+
font-size: 46px;
|
|
97
|
+
font-weight: 500;
|
|
98
|
+
line-height: 1.18;
|
|
99
|
+
letter-spacing: -0.012em;
|
|
100
|
+
color: var(--ink);
|
|
101
|
+
margin-bottom: 22px;
|
|
102
|
+
max-width: 700px;
|
|
103
|
+
font-style: italic;
|
|
104
|
+
}
|
|
105
|
+
.cover-deck {
|
|
106
|
+
font-size: 19px;
|
|
107
|
+
font-weight: 400;
|
|
108
|
+
line-height: 1.52;
|
|
109
|
+
color: var(--ink-soft);
|
|
110
|
+
max-width: 660px;
|
|
111
|
+
margin-bottom: 48px;
|
|
112
|
+
}
|
|
113
|
+
.cover-deck strong { color: var(--ink); font-weight: 500; }
|
|
114
|
+
.cover-byline {
|
|
115
|
+
display: grid;
|
|
116
|
+
grid-template-columns: repeat(4, 1fr);
|
|
117
|
+
gap: 28px;
|
|
118
|
+
padding-top: 24px;
|
|
119
|
+
border-top: 1px solid var(--rule);
|
|
120
|
+
}
|
|
121
|
+
@media (max-width: 720px) { .cover-byline { grid-template-columns: repeat(2, 1fr); } }
|
|
122
|
+
.byline-block .label {
|
|
123
|
+
font-family: var(--sans);
|
|
124
|
+
font-size: 10.5px;
|
|
125
|
+
letter-spacing: 0.14em;
|
|
126
|
+
text-transform: uppercase;
|
|
127
|
+
color: var(--ink-faint);
|
|
128
|
+
font-weight: 500;
|
|
129
|
+
margin-bottom: 8px;
|
|
130
|
+
}
|
|
131
|
+
.byline-block .value { font-size: 14.5px; color: var(--ink); font-family: var(--serif); }
|
|
132
|
+
.byline-block .signed-avatars { display: flex; margin-top: 4px; }
|
|
133
|
+
.byline-block .signed-avatars img {
|
|
134
|
+
width: 24px; height: 24px;
|
|
135
|
+
border: 1px solid var(--rule-strong, var(--rule));
|
|
136
|
+
background: var(--paper-soft);
|
|
137
|
+
margin-left: -6px;
|
|
138
|
+
border-radius: 50%;
|
|
139
|
+
}
|
|
140
|
+
.byline-block .signed-avatars img:first-child { margin-left: 0; }
|
|
141
|
+
.cover-versions {
|
|
142
|
+
margin-top: 22px;
|
|
143
|
+
padding-top: 22px;
|
|
144
|
+
border-top: 1px solid var(--rule);
|
|
145
|
+
display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
|
|
146
|
+
}
|
|
147
|
+
.cover-versions-label {
|
|
148
|
+
font-family: var(--sans);
|
|
149
|
+
font-size: 10.5px;
|
|
150
|
+
letter-spacing: 0.14em;
|
|
151
|
+
text-transform: uppercase;
|
|
152
|
+
color: var(--ink-faint);
|
|
153
|
+
}
|
|
154
|
+
.cover-version {
|
|
155
|
+
font-family: var(--sans);
|
|
156
|
+
font-size: 11px;
|
|
157
|
+
letter-spacing: 0.05em;
|
|
158
|
+
border: 1px solid var(--rule);
|
|
159
|
+
padding: 5px 10px;
|
|
160
|
+
text-decoration: none;
|
|
161
|
+
color: var(--ink-mid);
|
|
162
|
+
border-radius: 3px;
|
|
163
|
+
}
|
|
164
|
+
.cover-version:hover { border-color: var(--ink-mid); color: var(--ink); }
|
|
165
|
+
.cover-version.active { border-color: var(--clay); color: var(--clay); pointer-events: none; }
|
|
166
|
+
.cover-version .num { font-weight: 600; }
|
|
167
|
+
.cover-version .sep { color: var(--ink-muted); margin: 0 2px; }
|
|
168
|
+
|
|
169
|
+
.body { padding: 0 32px; color: var(--ink-soft); }
|
|
170
|
+
.body h1, .body h2, .body h3, .body h4 { font-family: var(--serif); color: var(--ink); font-weight: 500; line-height: 1.25; letter-spacing: -0.005em; }
|
|
171
|
+
.body h1 { display: none; }
|
|
172
|
+
.body .chapter-num {
|
|
173
|
+
display: block;
|
|
174
|
+
font-family: var(--sans);
|
|
175
|
+
font-size: 11px;
|
|
176
|
+
color: var(--clay);
|
|
177
|
+
font-weight: 500;
|
|
178
|
+
letter-spacing: 0.14em;
|
|
179
|
+
text-transform: uppercase;
|
|
180
|
+
margin: 56px 0 12px;
|
|
181
|
+
}
|
|
182
|
+
.body h2 { font-size: 30px; line-height: 1.22; margin: 0 0 18px; max-width: 700px; font-style: italic; }
|
|
183
|
+
.body h3 { font-size: 21px; margin: 28px 0 10px; font-style: italic; }
|
|
184
|
+
.body h4 { font-size: 14px; margin: 18px 0 6px; text-transform: none; letter-spacing: 0; font-style: italic; color: var(--ink-mid); }
|
|
185
|
+
.body p { margin: 14px 0; line-height: 1.72; color: var(--ink-soft); font-size: 18px; }
|
|
186
|
+
.body ul, .body ol { margin: 14px 0 16px 26px; }
|
|
187
|
+
.body li { margin: 8px 0; line-height: 1.65; color: var(--ink-soft); }
|
|
188
|
+
.body strong { color: var(--ink); font-weight: 600; }
|
|
189
|
+
.body em { color: var(--ink); font-style: italic; }
|
|
190
|
+
.body code {
|
|
191
|
+
background: var(--paper-soft);
|
|
192
|
+
border: 1px solid var(--rule);
|
|
193
|
+
padding: 1px 7px;
|
|
194
|
+
font-family: var(--mono);
|
|
195
|
+
font-size: 14px;
|
|
196
|
+
color: var(--clay-deep);
|
|
197
|
+
border-radius: 2px;
|
|
198
|
+
}
|
|
199
|
+
.body code.badge-confidence-high { color: var(--sage-deep); border-color: var(--sage); background: var(--sage-pale, var(--paper-soft)); }
|
|
200
|
+
.body code.badge-confidence-medium { color: #B8721A; border-color: rgba(184, 114, 26, 0.3); }
|
|
201
|
+
.body code.badge-confidence-low { color: var(--clay-deep); border-color: var(--clay); }
|
|
202
|
+
.body code.badge-priority-p0 { background: var(--clay); color: var(--paper); border-color: var(--clay); font-weight: 600; }
|
|
203
|
+
.body code.badge-priority-p1 { background: var(--ink); color: var(--paper); border-color: var(--ink); font-weight: 600; }
|
|
204
|
+
.body code.badge-priority-p2 { color: var(--ink-faint); }
|
|
205
|
+
.body blockquote {
|
|
206
|
+
padding: 18px 28px 16px;
|
|
207
|
+
margin: 26px 0;
|
|
208
|
+
border-top: 0.5px solid var(--rule);
|
|
209
|
+
border-bottom: 0.5px solid var(--rule);
|
|
210
|
+
color: var(--ink-mid);
|
|
211
|
+
font-size: 18px;
|
|
212
|
+
font-style: italic;
|
|
213
|
+
line-height: 1.55;
|
|
214
|
+
}
|
|
215
|
+
.body blockquote::before { display: none; }
|
|
216
|
+
.body blockquote em { font-style: italic; color: var(--ink); }
|
|
217
|
+
.body blockquote strong { color: var(--ink); font-style: normal; }
|
|
218
|
+
|
|
219
|
+
/* Bottom Line · soft surface card. */
|
|
220
|
+
.body section.section-bottom-line {
|
|
221
|
+
background: var(--surface);
|
|
222
|
+
margin: 0 -32px 56px;
|
|
223
|
+
padding: 40px 32px 36px;
|
|
224
|
+
border-top: 1px solid var(--rule);
|
|
225
|
+
border-bottom: 1px solid var(--rule);
|
|
226
|
+
}
|
|
227
|
+
.body h2.section-bottom-line {
|
|
228
|
+
font-family: var(--sans);
|
|
229
|
+
font-size: 11px;
|
|
230
|
+
color: var(--clay);
|
|
231
|
+
text-transform: uppercase;
|
|
232
|
+
letter-spacing: 0.16em;
|
|
233
|
+
margin: 0 0 16px;
|
|
234
|
+
font-weight: 500;
|
|
235
|
+
font-style: normal;
|
|
236
|
+
}
|
|
237
|
+
.body section.section-bottom-line p { font-size: 22px; line-height: 1.45; color: var(--ink); font-style: italic; max-width: 660px; }
|
|
238
|
+
.body section.section-bottom-line p:not(:first-child) { font-size: 15px; line-height: 1.6; color: var(--ink-mid); margin-top: 18px; font-style: normal; }
|
|
239
|
+
|
|
240
|
+
/* Working Hypothesis · the signature anchor for this spine. */
|
|
241
|
+
.body section.section-working-hypothesis {
|
|
242
|
+
margin-bottom: 48px;
|
|
243
|
+
padding: 8px 0 24px;
|
|
244
|
+
}
|
|
245
|
+
.body section.section-working-hypothesis p:first-child {
|
|
246
|
+
font-size: 22px;
|
|
247
|
+
line-height: 1.55;
|
|
248
|
+
color: var(--ink);
|
|
249
|
+
font-style: italic;
|
|
250
|
+
}
|
|
251
|
+
.body section.section-working-hypothesis p:first-child::first-letter {
|
|
252
|
+
font-family: var(--serif);
|
|
253
|
+
font-size: 64px;
|
|
254
|
+
font-weight: 500;
|
|
255
|
+
float: left;
|
|
256
|
+
line-height: 0.95;
|
|
257
|
+
padding: 4px 12px 0 0;
|
|
258
|
+
color: var(--clay);
|
|
259
|
+
font-style: normal;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
/* Thesis · less heavy than a16z. */
|
|
263
|
+
.body section.section-thesis {
|
|
264
|
+
margin: 0 0 48px;
|
|
265
|
+
padding-bottom: 28px;
|
|
266
|
+
border-bottom: 1px solid var(--rule);
|
|
267
|
+
}
|
|
268
|
+
.body h2.section-thesis { font-family: var(--sans); font-size: 11px; color: var(--clay); text-transform: uppercase; letter-spacing: 0.16em; margin: 0 0 18px; font-weight: 500; font-style: normal; }
|
|
269
|
+
.body section.section-thesis p:first-child { font-size: 28px; line-height: 1.32; color: var(--ink); font-style: italic; font-weight: 500; }
|
|
270
|
+
|
|
271
|
+
.body section.section-frame-shift p:first-child { font-size: 19px; color: var(--ink); font-style: italic; }
|
|
272
|
+
|
|
273
|
+
/* Numbered observations / headline findings · essay numerals (not pillar grid). */
|
|
274
|
+
.body section.section-headline-findings .pillars-grid,
|
|
275
|
+
.body section.section-big-ideas .pillars-grid {
|
|
276
|
+
display: block;
|
|
277
|
+
margin: 28px 0;
|
|
278
|
+
}
|
|
279
|
+
.body section.section-headline-findings .pillar,
|
|
280
|
+
.body section.section-big-ideas ol > li {
|
|
281
|
+
border-top: 1px solid var(--rule);
|
|
282
|
+
padding: 28px 0 28px 56px;
|
|
283
|
+
position: relative;
|
|
284
|
+
margin: 0;
|
|
285
|
+
}
|
|
286
|
+
.body section.section-headline-findings .pillar:last-child { border-bottom: 1px solid var(--rule); }
|
|
287
|
+
.body section.section-headline-findings .pillar .pillar-num,
|
|
288
|
+
.body section.section-big-ideas ol > li::before {
|
|
289
|
+
position: absolute;
|
|
290
|
+
top: 28px; left: 0;
|
|
291
|
+
font-family: var(--serif);
|
|
292
|
+
font-size: 32px;
|
|
293
|
+
font-weight: 500;
|
|
294
|
+
font-style: italic;
|
|
295
|
+
color: var(--clay);
|
|
296
|
+
letter-spacing: -0.01em;
|
|
297
|
+
margin: 0;
|
|
298
|
+
text-transform: none;
|
|
299
|
+
}
|
|
300
|
+
.body section.section-big-ideas ol { counter-reset: bigidea; list-style: none; padding: 0; margin: 28px 0 0; }
|
|
301
|
+
.body section.section-big-ideas ol > li { counter-increment: bigidea; }
|
|
302
|
+
.body section.section-big-ideas ol > li::before { content: counter(bigidea); }
|
|
303
|
+
.body section.section-big-ideas ol > li:last-child { border-bottom: 1px solid var(--rule); }
|
|
304
|
+
.body section.section-headline-findings .pillar h3 { font-size: 21px; margin: 0 0 10px; font-style: italic; }
|
|
305
|
+
.body section.section-headline-findings .pillar p { font-size: 16.5px; line-height: 1.6; }
|
|
306
|
+
|
|
307
|
+
/* Why Now · soft callout. */
|
|
308
|
+
.body section.section-why-now {
|
|
309
|
+
background: var(--surface);
|
|
310
|
+
border: 1px solid var(--rule);
|
|
311
|
+
padding: 24px 28px;
|
|
312
|
+
margin: 24px 0 32px;
|
|
313
|
+
border-radius: 4px;
|
|
314
|
+
}
|
|
315
|
+
.body section.section-why-now p { font-size: 16.5px; line-height: 1.65; }
|
|
316
|
+
|
|
317
|
+
/* Considerations · the gentle action substitute. */
|
|
318
|
+
.body section.section-considerations ol,
|
|
319
|
+
.body section.section-recommendations ol,
|
|
320
|
+
.body section.section-the-bet ol {
|
|
321
|
+
counter-reset: rec;
|
|
322
|
+
list-style: none;
|
|
323
|
+
padding: 0;
|
|
324
|
+
margin: 24px 0 0;
|
|
325
|
+
}
|
|
326
|
+
.body section.section-considerations ol > li,
|
|
327
|
+
.body section.section-recommendations ol > li,
|
|
328
|
+
.body section.section-the-bet ol > li {
|
|
329
|
+
counter-increment: rec;
|
|
330
|
+
position: relative;
|
|
331
|
+
border-top: 1px solid var(--rule);
|
|
332
|
+
padding: 22px 0 22px 64px;
|
|
333
|
+
}
|
|
334
|
+
.body section.section-considerations ol > li:last-child,
|
|
335
|
+
.body section.section-recommendations ol > li:last-child,
|
|
336
|
+
.body section.section-the-bet ol > li:last-child { border-bottom: 1px solid var(--rule); }
|
|
337
|
+
.body section.section-considerations ol > li::before,
|
|
338
|
+
.body section.section-recommendations ol > li::before,
|
|
339
|
+
.body section.section-the-bet ol > li::before {
|
|
340
|
+
content: counter(rec);
|
|
341
|
+
position: absolute;
|
|
342
|
+
top: 22px; left: 0;
|
|
343
|
+
font-family: var(--serif);
|
|
344
|
+
font-style: italic;
|
|
345
|
+
font-size: 28px;
|
|
346
|
+
color: var(--clay);
|
|
347
|
+
font-weight: 500;
|
|
348
|
+
}
|
|
349
|
+
.body section.section-considerations ol > li p:first-child strong,
|
|
350
|
+
.body section.section-recommendations ol > li p:first-child strong,
|
|
351
|
+
.body section.section-the-bet ol > li p:first-child strong { font-size: 17px; color: var(--ink); }
|
|
352
|
+
.body section.section-considerations ol > li em { font-style: italic; color: var(--ink-mid); font-family: var(--serif); font-size: 15px; text-transform: none; letter-spacing: 0; }
|
|
353
|
+
|
|
354
|
+
/* Two paths · two columns separated by hairline. */
|
|
355
|
+
.body section.section-two-paths {
|
|
356
|
+
margin: 24px 0;
|
|
357
|
+
padding: 16px 0;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.body section.section-planning-assumption {
|
|
361
|
+
background: var(--surface);
|
|
362
|
+
border: 1px solid var(--rule);
|
|
363
|
+
padding: 22px 26px;
|
|
364
|
+
margin: 18px 0 28px;
|
|
365
|
+
border-radius: 4px;
|
|
366
|
+
}
|
|
367
|
+
.body section.section-planning-assumption blockquote { border-left: none; padding: 0; margin: 0; font-style: normal; font-size: 16px; }
|
|
368
|
+
.body section.section-planning-assumption blockquote::before { display: none; }
|
|
369
|
+
.body section.section-planning-assumption blockquote strong:first-child {
|
|
370
|
+
display: block;
|
|
371
|
+
color: var(--clay);
|
|
372
|
+
text-transform: uppercase;
|
|
373
|
+
letter-spacing: 0.14em;
|
|
374
|
+
font-size: 11px;
|
|
375
|
+
margin-bottom: 12px;
|
|
376
|
+
font-family: var(--sans);
|
|
377
|
+
font-weight: 500;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.body section.section-new-questions ol { counter-reset: nq; list-style: none; padding: 0; }
|
|
381
|
+
.body section.section-new-questions ol > li {
|
|
382
|
+
counter-increment: nq;
|
|
383
|
+
position: relative;
|
|
384
|
+
padding: 14px 0 14px 48px;
|
|
385
|
+
border-top: 1px dashed var(--rule);
|
|
386
|
+
font-size: 17px;
|
|
387
|
+
}
|
|
388
|
+
.body section.section-new-questions ol > li:last-child { border-bottom: 1px dashed var(--rule); }
|
|
389
|
+
.body section.section-new-questions ol > li::before {
|
|
390
|
+
content: "Q" counter(nq);
|
|
391
|
+
position: absolute;
|
|
392
|
+
top: 14px; left: 0;
|
|
393
|
+
color: var(--clay);
|
|
394
|
+
font-family: var(--sans);
|
|
395
|
+
font-size: 12px;
|
|
396
|
+
letter-spacing: 0.06em;
|
|
397
|
+
font-weight: 600;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.body table.md-table {
|
|
401
|
+
width: 100%;
|
|
402
|
+
border-collapse: collapse;
|
|
403
|
+
margin: 22px 0 24px;
|
|
404
|
+
font-size: 15px;
|
|
405
|
+
border-top: 1px solid var(--ink);
|
|
406
|
+
}
|
|
407
|
+
.body table.md-table th, .body table.md-table td {
|
|
408
|
+
padding: 12px 14px;
|
|
409
|
+
border-bottom: 1px solid var(--rule);
|
|
410
|
+
text-align: left;
|
|
411
|
+
vertical-align: top;
|
|
412
|
+
font-family: var(--serif);
|
|
413
|
+
}
|
|
414
|
+
.body table.md-table th {
|
|
415
|
+
font-family: var(--sans);
|
|
416
|
+
font-weight: 500;
|
|
417
|
+
font-size: 11.5px;
|
|
418
|
+
letter-spacing: 0.12em;
|
|
419
|
+
text-transform: uppercase;
|
|
420
|
+
color: var(--ink-faint);
|
|
421
|
+
}
|
|
422
|
+
.body table.md-table td:first-child { font-weight: 500; color: var(--ink); font-style: italic; }
|
|
423
|
+
|
|
424
|
+
.body h2.section-methodology {
|
|
425
|
+
margin-top: 96px;
|
|
426
|
+
padding-top: 22px;
|
|
427
|
+
font-size: 11.5px;
|
|
428
|
+
color: var(--ink-faint);
|
|
429
|
+
text-transform: uppercase;
|
|
430
|
+
letter-spacing: 0.14em;
|
|
431
|
+
font-weight: 500;
|
|
432
|
+
font-family: var(--sans);
|
|
433
|
+
font-style: normal;
|
|
434
|
+
border-top: 1px solid var(--rule);
|
|
435
|
+
}
|
|
436
|
+
.body section.section-methodology { color: var(--ink-mid); font-size: 14px; line-height: 1.65; }
|
|
437
|
+
.body section.section-methodology em { color: var(--ink-faint); font-style: italic; }
|
|
438
|
+
.body section.section-methodology strong { color: var(--ink); font-family: var(--mono); font-size: 13px; font-weight: 500; }
|
|
439
|
+
|
|
440
|
+
.body pre.codeblock { background: var(--surface); border: 1px solid var(--rule); padding: 14px; font-family: var(--mono); font-size: 13.5px; color: var(--ink-mid); border-radius: 3px; }
|
|
441
|
+
.body pre.mermaid { background: var(--surface); border-top: 1.5px solid var(--clay); border-bottom: 0.5px solid var(--rule); padding: 28px 24px 24px; margin: 22px 0 28px; min-height: 380px; text-align: center; font-family: var(--mono); font-size: 12px; color: var(--ink-faint); }
|
|
442
|
+
.body pre.mermaid svg text { font-family: var(--serif) !important; }
|
|
443
|
+
|
|
444
|
+
.foot-rule {
|
|
445
|
+
margin: 80px 32px 0;
|
|
446
|
+
padding: 22px 0;
|
|
447
|
+
border-top: 1px solid var(--rule);
|
|
448
|
+
text-align: center;
|
|
449
|
+
font-family: var(--serif);
|
|
450
|
+
font-size: 14px;
|
|
451
|
+
color: var(--ink-faint);
|
|
452
|
+
font-style: italic;
|
|
453
|
+
text-transform: none;
|
|
454
|
+
letter-spacing: 0;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
.placeholder {
|
|
458
|
+
text-align: center;
|
|
459
|
+
padding: 120px 32px;
|
|
460
|
+
color: var(--ink-faint);
|
|
461
|
+
font-family: var(--serif);
|
|
462
|
+
font-size: 16px;
|
|
463
|
+
font-style: italic;
|
|
464
|
+
text-transform: none;
|
|
465
|
+
letter-spacing: 0;
|
|
466
|
+
}
|
|
467
|
+
.placeholder.error { color: var(--clay-deep); }
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
/* ─── Recommendations / Considerations · editorial cards (essay register) ─── */
|
|
471
|
+
.body section.section-recommendations li.rec-item,
|
|
472
|
+
.body section.section-considerations li.rec-item {
|
|
473
|
+
padding: 0; margin: 52px 0 0; list-style: none; border: none;
|
|
474
|
+
}
|
|
475
|
+
.body section.section-recommendations li.rec-item:first-child,
|
|
476
|
+
.body section.section-considerations li.rec-item:first-child { margin-top: 28px; }
|
|
477
|
+
.body section.section-recommendations li.rec-item::before,
|
|
478
|
+
.body section.section-considerations li.rec-item::before { display: none; }
|
|
479
|
+
.rec-rule { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
|
|
480
|
+
.rec-num {
|
|
481
|
+
font-family: var(--sans); font-size: 11px; font-weight: 500;
|
|
482
|
+
color: var(--ink-faint); letter-spacing: 0.18em; flex: 0 0 auto;
|
|
483
|
+
}
|
|
484
|
+
.rec-rule code { flex: 0 0 auto; }
|
|
485
|
+
.rec-rule-line { flex: 1 1 auto; height: 1px; background: var(--rule); display: block; }
|
|
486
|
+
.rec-priority-p0 .rec-rule-line { background: var(--clay); height: 1.5px; }
|
|
487
|
+
.rec-action {
|
|
488
|
+
font-family: var(--serif); font-size: 26px; line-height: 1.3;
|
|
489
|
+
color: var(--ink); font-weight: 500; font-style: italic;
|
|
490
|
+
letter-spacing: -0.012em; margin: 0 0 20px; max-width: 68ch;
|
|
491
|
+
}
|
|
492
|
+
.rec-rationale {
|
|
493
|
+
font-family: var(--serif); font-size: 17px; line-height: 1.72;
|
|
494
|
+
color: var(--ink-soft); margin: 0 0 22px; max-width: 68ch;
|
|
495
|
+
}
|
|
496
|
+
.rec-meta {
|
|
497
|
+
display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px;
|
|
498
|
+
margin: 0 0 16px; font-size: 14px; line-height: 1.6; color: var(--ink);
|
|
499
|
+
font-family: var(--serif);
|
|
500
|
+
}
|
|
501
|
+
.rec-meta-pair { display: inline-flex; align-items: baseline; gap: 8px; min-width: 0; }
|
|
502
|
+
.rec-meta-label {
|
|
503
|
+
font-family: var(--sans); font-size: 10.5px; color: var(--ink-faint);
|
|
504
|
+
letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
|
|
505
|
+
}
|
|
506
|
+
.rec-meta-value { color: var(--ink); font-style: italic; font-weight: 500; }
|
|
507
|
+
.rec-meta-sep { color: var(--ink-faint); }
|
|
508
|
+
.rec-risk {
|
|
509
|
+
display: flex; align-items: flex-start; gap: 8px;
|
|
510
|
+
font-family: var(--serif); font-size: 14.5px; line-height: 1.65;
|
|
511
|
+
color: var(--ink-mid); margin: 0; font-style: italic;
|
|
512
|
+
}
|
|
513
|
+
.rec-risk-icon { flex: 0 0 auto; color: var(--clay); font-style: normal; }
|
|
514
|
+
.rec-risk-text { flex: 1 1 auto; }
|
|
515
|
+
.rec-risk-prefix {
|
|
516
|
+
font-family: var(--sans); font-style: normal; font-size: 10.5px;
|
|
517
|
+
color: var(--clay-deep); letter-spacing: 0.14em; text-transform: uppercase;
|
|
518
|
+
font-weight: 500; margin-right: 2px;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
/* ─── New Questions · op-ed cards ─── */
|
|
522
|
+
.body section.section-new-questions li.nq-item {
|
|
523
|
+
padding: 0; margin: 52px 0 0; list-style: none; border: none;
|
|
524
|
+
}
|
|
525
|
+
.body section.section-new-questions li.nq-item:first-child { margin-top: 28px; }
|
|
526
|
+
.body section.section-new-questions li.nq-item::before { display: none; }
|
|
527
|
+
.nq-rule { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
|
|
528
|
+
.nq-num {
|
|
529
|
+
font-family: var(--sans); font-size: 11px; font-weight: 500;
|
|
530
|
+
color: var(--clay); letter-spacing: 0.18em; flex: 0 0 auto;
|
|
531
|
+
}
|
|
532
|
+
.nq-rule-line { flex: 1 1 auto; height: 1px; background: var(--rule); display: block; }
|
|
533
|
+
.nq-attribution {
|
|
534
|
+
flex: 0 0 auto; display: inline-flex; align-items: baseline; gap: 6px;
|
|
535
|
+
font-family: var(--serif); font-style: italic; font-size: 13.5px;
|
|
536
|
+
letter-spacing: 0; text-transform: none; color: var(--ink-faint); font-weight: 400;
|
|
537
|
+
}
|
|
538
|
+
.nq-attribution-prefix { color: var(--ink-faint); }
|
|
539
|
+
.nq-attribution-who { color: var(--ink); font-weight: 500; }
|
|
540
|
+
.nq-question {
|
|
541
|
+
font-family: var(--serif); font-size: 28px; line-height: 1.32;
|
|
542
|
+
color: var(--ink); font-style: italic; font-weight: 500;
|
|
543
|
+
letter-spacing: -0.014em; margin: 0 0 20px; padding: 0;
|
|
544
|
+
border: none; background: transparent; max-width: 56ch; position: relative;
|
|
545
|
+
}
|
|
546
|
+
.nq-question::before {
|
|
547
|
+
content: "\201C"; color: var(--clay); font-size: 42px;
|
|
548
|
+
font-style: normal; font-weight: 500; margin-right: 6px;
|
|
549
|
+
vertical-align: -14px; line-height: 1; font-family: var(--serif);
|
|
550
|
+
}
|
|
551
|
+
.nq-question::after {
|
|
552
|
+
content: "\201D"; color: var(--ink-muted); font-size: 32px;
|
|
553
|
+
font-style: normal; margin-left: 4px; vertical-align: -10px;
|
|
554
|
+
line-height: 1; font-family: var(--serif);
|
|
555
|
+
}
|
|
556
|
+
.nq-why { font-family: var(--serif); font-size: 17px; line-height: 1.72; color: var(--ink-soft); margin: 0; max-width: 56ch; }
|