@forwardimpact/pathway 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.
Files changed (227) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +104 -0
  3. package/app/commands/agent.js +430 -0
  4. package/app/commands/behaviour.js +61 -0
  5. package/app/commands/command-factory.js +211 -0
  6. package/app/commands/discipline.js +58 -0
  7. package/app/commands/driver.js +94 -0
  8. package/app/commands/grade.js +60 -0
  9. package/app/commands/index.js +20 -0
  10. package/app/commands/init.js +67 -0
  11. package/app/commands/interview.js +68 -0
  12. package/app/commands/job.js +157 -0
  13. package/app/commands/progress.js +77 -0
  14. package/app/commands/questions.js +179 -0
  15. package/app/commands/serve.js +143 -0
  16. package/app/commands/site.js +121 -0
  17. package/app/commands/skill.js +76 -0
  18. package/app/commands/stage.js +129 -0
  19. package/app/commands/track.js +70 -0
  20. package/app/components/action-buttons.js +66 -0
  21. package/app/components/behaviour-profile.js +53 -0
  22. package/app/components/builder.js +341 -0
  23. package/app/components/card.js +98 -0
  24. package/app/components/checklist.js +145 -0
  25. package/app/components/comparison-radar.js +237 -0
  26. package/app/components/detail.js +230 -0
  27. package/app/components/error-page.js +72 -0
  28. package/app/components/grid.js +109 -0
  29. package/app/components/list.js +120 -0
  30. package/app/components/modifier-table.js +142 -0
  31. package/app/components/nav.js +64 -0
  32. package/app/components/progression-table.js +320 -0
  33. package/app/components/radar-chart.js +102 -0
  34. package/app/components/skill-matrix.js +97 -0
  35. package/app/css/base.css +56 -0
  36. package/app/css/bundles/app.css +40 -0
  37. package/app/css/bundles/handout.css +43 -0
  38. package/app/css/bundles/slides.css +40 -0
  39. package/app/css/components/badges.css +215 -0
  40. package/app/css/components/buttons.css +101 -0
  41. package/app/css/components/forms.css +105 -0
  42. package/app/css/components/layout.css +209 -0
  43. package/app/css/components/nav.css +166 -0
  44. package/app/css/components/progress.css +166 -0
  45. package/app/css/components/states.css +82 -0
  46. package/app/css/components/surfaces.css +243 -0
  47. package/app/css/components/tables.css +362 -0
  48. package/app/css/components/typography.css +122 -0
  49. package/app/css/components/utilities.css +41 -0
  50. package/app/css/pages/agent-builder.css +391 -0
  51. package/app/css/pages/assessment-results.css +453 -0
  52. package/app/css/pages/detail.css +59 -0
  53. package/app/css/pages/interview-builder.css +148 -0
  54. package/app/css/pages/job-builder.css +134 -0
  55. package/app/css/pages/landing.css +92 -0
  56. package/app/css/pages/lifecycle.css +118 -0
  57. package/app/css/pages/progress-builder.css +274 -0
  58. package/app/css/pages/self-assessment.css +502 -0
  59. package/app/css/reset.css +50 -0
  60. package/app/css/tokens.css +153 -0
  61. package/app/css/views/handout.css +30 -0
  62. package/app/css/views/print.css +608 -0
  63. package/app/css/views/slide-animations.css +113 -0
  64. package/app/css/views/slide-base.css +330 -0
  65. package/app/css/views/slide-sections.css +597 -0
  66. package/app/css/views/slide-tables.css +275 -0
  67. package/app/formatters/agent/dom.js +540 -0
  68. package/app/formatters/agent/profile.js +133 -0
  69. package/app/formatters/agent/skill.js +58 -0
  70. package/app/formatters/behaviour/dom.js +91 -0
  71. package/app/formatters/behaviour/markdown.js +54 -0
  72. package/app/formatters/behaviour/shared.js +64 -0
  73. package/app/formatters/discipline/dom.js +187 -0
  74. package/app/formatters/discipline/markdown.js +87 -0
  75. package/app/formatters/discipline/shared.js +131 -0
  76. package/app/formatters/driver/dom.js +103 -0
  77. package/app/formatters/driver/shared.js +92 -0
  78. package/app/formatters/grade/dom.js +208 -0
  79. package/app/formatters/grade/markdown.js +94 -0
  80. package/app/formatters/grade/shared.js +86 -0
  81. package/app/formatters/index.js +50 -0
  82. package/app/formatters/interview/dom.js +97 -0
  83. package/app/formatters/interview/markdown.js +66 -0
  84. package/app/formatters/interview/shared.js +332 -0
  85. package/app/formatters/job/description.js +176 -0
  86. package/app/formatters/job/dom.js +411 -0
  87. package/app/formatters/job/markdown.js +102 -0
  88. package/app/formatters/progress/dom.js +135 -0
  89. package/app/formatters/progress/markdown.js +86 -0
  90. package/app/formatters/progress/shared.js +339 -0
  91. package/app/formatters/questions/json.js +43 -0
  92. package/app/formatters/questions/markdown.js +303 -0
  93. package/app/formatters/questions/shared.js +274 -0
  94. package/app/formatters/questions/yaml.js +76 -0
  95. package/app/formatters/shared.js +71 -0
  96. package/app/formatters/skill/dom.js +168 -0
  97. package/app/formatters/skill/markdown.js +109 -0
  98. package/app/formatters/skill/shared.js +125 -0
  99. package/app/formatters/stage/dom.js +135 -0
  100. package/app/formatters/stage/index.js +12 -0
  101. package/app/formatters/stage/shared.js +111 -0
  102. package/app/formatters/track/dom.js +128 -0
  103. package/app/formatters/track/markdown.js +105 -0
  104. package/app/formatters/track/shared.js +181 -0
  105. package/app/handout-main.js +421 -0
  106. package/app/handout.html +21 -0
  107. package/app/index.html +59 -0
  108. package/app/lib/card-mappers.js +173 -0
  109. package/app/lib/cli-output.js +270 -0
  110. package/app/lib/error-boundary.js +70 -0
  111. package/app/lib/errors.js +49 -0
  112. package/app/lib/form-controls.js +47 -0
  113. package/app/lib/job-cache.js +86 -0
  114. package/app/lib/markdown.js +114 -0
  115. package/app/lib/radar.js +866 -0
  116. package/app/lib/reactive.js +77 -0
  117. package/app/lib/render.js +212 -0
  118. package/app/lib/router-core.js +160 -0
  119. package/app/lib/router-pages.js +16 -0
  120. package/app/lib/router-slides.js +202 -0
  121. package/app/lib/state.js +148 -0
  122. package/app/lib/utils.js +14 -0
  123. package/app/lib/yaml-loader.js +327 -0
  124. package/app/main.js +213 -0
  125. package/app/model/agent.js +702 -0
  126. package/app/model/checklist.js +137 -0
  127. package/app/model/derivation.js +699 -0
  128. package/app/model/index-generator.js +71 -0
  129. package/app/model/interview.js +539 -0
  130. package/app/model/job.js +222 -0
  131. package/app/model/levels.js +591 -0
  132. package/app/model/loader.js +564 -0
  133. package/app/model/matching.js +858 -0
  134. package/app/model/modifiers.js +158 -0
  135. package/app/model/profile.js +266 -0
  136. package/app/model/progression.js +507 -0
  137. package/app/model/validation.js +1385 -0
  138. package/app/pages/agent-builder.js +823 -0
  139. package/app/pages/assessment-results.js +507 -0
  140. package/app/pages/behaviour.js +70 -0
  141. package/app/pages/discipline.js +71 -0
  142. package/app/pages/driver.js +106 -0
  143. package/app/pages/grade.js +117 -0
  144. package/app/pages/interview-builder.js +50 -0
  145. package/app/pages/interview.js +304 -0
  146. package/app/pages/job-builder.js +50 -0
  147. package/app/pages/job.js +58 -0
  148. package/app/pages/landing.js +305 -0
  149. package/app/pages/progress-builder.js +58 -0
  150. package/app/pages/progress.js +495 -0
  151. package/app/pages/self-assessment.js +729 -0
  152. package/app/pages/skill.js +113 -0
  153. package/app/pages/stage.js +231 -0
  154. package/app/pages/track.js +69 -0
  155. package/app/slide-main.js +360 -0
  156. package/app/slides/behaviour.js +38 -0
  157. package/app/slides/chapter.js +82 -0
  158. package/app/slides/discipline.js +40 -0
  159. package/app/slides/driver.js +39 -0
  160. package/app/slides/grade.js +32 -0
  161. package/app/slides/index.js +198 -0
  162. package/app/slides/interview.js +58 -0
  163. package/app/slides/job.js +55 -0
  164. package/app/slides/overview.js +126 -0
  165. package/app/slides/progress.js +83 -0
  166. package/app/slides/skill.js +40 -0
  167. package/app/slides/track.js +39 -0
  168. package/app/slides.html +56 -0
  169. package/app/types.js +147 -0
  170. package/bin/pathway.js +489 -0
  171. package/examples/agents/.claude/skills/architecture-design/SKILL.md +88 -0
  172. package/examples/agents/.claude/skills/cloud-platforms/SKILL.md +90 -0
  173. package/examples/agents/.claude/skills/code-quality-review/SKILL.md +67 -0
  174. package/examples/agents/.claude/skills/data-modeling/SKILL.md +99 -0
  175. package/examples/agents/.claude/skills/developer-experience/SKILL.md +99 -0
  176. package/examples/agents/.claude/skills/devops-cicd/SKILL.md +96 -0
  177. package/examples/agents/.claude/skills/full-stack-development/SKILL.md +90 -0
  178. package/examples/agents/.claude/skills/knowledge-management/SKILL.md +100 -0
  179. package/examples/agents/.claude/skills/pattern-generalization/SKILL.md +102 -0
  180. package/examples/agents/.claude/skills/sre-practices/SKILL.md +117 -0
  181. package/examples/agents/.claude/skills/technical-debt-management/SKILL.md +123 -0
  182. package/examples/agents/.claude/skills/technical-writing/SKILL.md +129 -0
  183. package/examples/agents/.github/agents/se-platform-code.agent.md +181 -0
  184. package/examples/agents/.github/agents/se-platform-plan.agent.md +178 -0
  185. package/examples/agents/.github/agents/se-platform-review.agent.md +113 -0
  186. package/examples/agents/.vscode/settings.json +8 -0
  187. package/examples/behaviours/_index.yaml +8 -0
  188. package/examples/behaviours/outcome_ownership.yaml +44 -0
  189. package/examples/behaviours/polymathic_knowledge.yaml +42 -0
  190. package/examples/behaviours/precise_communication.yaml +40 -0
  191. package/examples/behaviours/relentless_curiosity.yaml +38 -0
  192. package/examples/behaviours/systems_thinking.yaml +41 -0
  193. package/examples/capabilities/_index.yaml +8 -0
  194. package/examples/capabilities/business.yaml +251 -0
  195. package/examples/capabilities/delivery.yaml +352 -0
  196. package/examples/capabilities/people.yaml +100 -0
  197. package/examples/capabilities/reliability.yaml +318 -0
  198. package/examples/capabilities/scale.yaml +394 -0
  199. package/examples/disciplines/_index.yaml +5 -0
  200. package/examples/disciplines/data_engineering.yaml +76 -0
  201. package/examples/disciplines/software_engineering.yaml +76 -0
  202. package/examples/drivers.yaml +205 -0
  203. package/examples/framework.yaml +58 -0
  204. package/examples/grades.yaml +118 -0
  205. package/examples/questions/behaviours/outcome_ownership.yaml +52 -0
  206. package/examples/questions/behaviours/polymathic_knowledge.yaml +48 -0
  207. package/examples/questions/behaviours/precise_communication.yaml +55 -0
  208. package/examples/questions/behaviours/relentless_curiosity.yaml +51 -0
  209. package/examples/questions/behaviours/systems_thinking.yaml +53 -0
  210. package/examples/questions/skills/architecture_design.yaml +54 -0
  211. package/examples/questions/skills/cloud_platforms.yaml +48 -0
  212. package/examples/questions/skills/code_quality.yaml +49 -0
  213. package/examples/questions/skills/data_modeling.yaml +46 -0
  214. package/examples/questions/skills/devops.yaml +47 -0
  215. package/examples/questions/skills/full_stack_development.yaml +48 -0
  216. package/examples/questions/skills/sre_practices.yaml +44 -0
  217. package/examples/questions/skills/stakeholder_management.yaml +49 -0
  218. package/examples/questions/skills/team_collaboration.yaml +43 -0
  219. package/examples/questions/skills/technical_writing.yaml +43 -0
  220. package/examples/self-assessments.yaml +66 -0
  221. package/examples/stages.yaml +76 -0
  222. package/examples/tracks/_index.yaml +6 -0
  223. package/examples/tracks/manager.yaml +53 -0
  224. package/examples/tracks/platform.yaml +54 -0
  225. package/examples/tracks/sre.yaml +58 -0
  226. package/examples/vscode-settings.yaml +22 -0
  227. package/package.json +68 -0
@@ -0,0 +1,453 @@
1
+ /**
2
+ * Assessment Results Page
3
+ *
4
+ * Match cards, tiers, score breakdowns, gaps display.
5
+ */
6
+
7
+ @layer pages {
8
+ .assessment-results-page {
9
+ max-width: 1000px;
10
+ margin: 0 auto;
11
+ }
12
+
13
+ .no-assessment-message {
14
+ text-align: center;
15
+ padding: var(--space-2xl);
16
+ background: var(--color-surface);
17
+ border-radius: var(--radius-lg);
18
+ box-shadow: var(--shadow-md);
19
+ }
20
+
21
+ .no-assessment-message h1 {
22
+ margin-bottom: var(--space-md);
23
+ }
24
+
25
+ .no-assessment-message p {
26
+ margin-bottom: var(--space-xl);
27
+ color: var(--color-text-muted);
28
+ }
29
+
30
+ .results-summary-section {
31
+ background: var(--color-surface);
32
+ border-radius: var(--radius-lg);
33
+ padding: var(--space-xl);
34
+ box-shadow: var(--shadow-md);
35
+ margin-bottom: var(--space-xl);
36
+ }
37
+
38
+ .results-summary-section h2 {
39
+ margin-bottom: var(--space-lg);
40
+ text-align: center;
41
+ }
42
+
43
+ .result-stat-box {
44
+ background: var(--color-bg);
45
+ padding: var(--space-lg);
46
+ border-radius: var(--radius-md);
47
+ text-align: center;
48
+ }
49
+
50
+ .result-stat-box .stat-icon {
51
+ font-size: 1.5rem;
52
+ display: block;
53
+ margin-bottom: var(--space-sm);
54
+ }
55
+
56
+ .result-stat-box .stat-value {
57
+ display: block;
58
+ font-size: var(--font-size-xl);
59
+ font-weight: 700;
60
+ color: var(--color-primary);
61
+ }
62
+
63
+ /* .stat-label inherits from consolidated labels */
64
+
65
+ /* Matches Section */
66
+ .matches-section {
67
+ margin-bottom: var(--space-xl);
68
+ }
69
+
70
+ .matches-section > h2 {
71
+ margin-bottom: var(--space-xs);
72
+ }
73
+
74
+ .matches-section > .text-muted {
75
+ margin-bottom: var(--space-lg);
76
+ }
77
+
78
+ .matches-list {
79
+ display: flex;
80
+ flex-direction: column;
81
+ gap: var(--space-lg);
82
+ }
83
+
84
+ .match-card {
85
+ background: var(--color-surface);
86
+ border-radius: var(--radius-lg);
87
+ padding: var(--space-lg);
88
+ box-shadow: var(--shadow-md);
89
+ border-left: 4px solid var(--color-border);
90
+ transition: all 0.2s;
91
+ }
92
+
93
+ .match-card:hover {
94
+ box-shadow: var(--shadow-lg);
95
+ }
96
+
97
+ .match-card.top-match {
98
+ border-left-color: gold;
99
+ background: linear-gradient(135deg, #fffbeb 0%, var(--color-surface) 100%);
100
+ }
101
+
102
+ /* Tier-based match card colors */
103
+ .match-card.match-tier-green {
104
+ border-left-color: var(--color-success);
105
+ }
106
+
107
+ .match-card.match-tier-blue {
108
+ border-left-color: var(--color-primary);
109
+ }
110
+
111
+ .match-card.match-tier-amber {
112
+ border-left-color: var(--color-warning);
113
+ }
114
+
115
+ .match-card.match-tier-gray {
116
+ border-left-color: var(--color-text-muted);
117
+ }
118
+
119
+ /* Legacy match quality classes (can be removed later) */
120
+ .match-card.match-excellent {
121
+ border-left-color: var(--color-success);
122
+ }
123
+
124
+ .match-card.match-good {
125
+ border-left-color: var(--color-primary);
126
+ }
127
+
128
+ .match-card.match-fair {
129
+ border-left-color: var(--color-warning);
130
+ }
131
+
132
+ .match-card.match-developing {
133
+ border-left-color: var(--color-text-muted);
134
+ }
135
+
136
+ .match-card-header {
137
+ display: flex;
138
+ gap: var(--space-md);
139
+ align-items: flex-start;
140
+ margin-bottom: var(--space-lg);
141
+ }
142
+
143
+ .match-rank {
144
+ font-size: 1.5rem;
145
+ min-width: 50px;
146
+ text-align: center;
147
+ }
148
+
149
+ .match-title-area {
150
+ flex: 1;
151
+ }
152
+
153
+ .match-job-title {
154
+ margin: 0 0 var(--space-sm);
155
+ }
156
+
157
+ .match-job-title a {
158
+ color: var(--color-text);
159
+ }
160
+
161
+ .match-job-title a:hover {
162
+ color: var(--color-primary);
163
+ }
164
+
165
+ .match-badges {
166
+ display: flex;
167
+ gap: var(--space-xs);
168
+ flex-wrap: wrap;
169
+ }
170
+
171
+ .match-score-area {
172
+ text-align: center;
173
+ }
174
+
175
+ .match-score {
176
+ display: flex;
177
+ flex-direction: column;
178
+ align-items: center;
179
+ padding: var(--space-sm) var(--space-md);
180
+ border-radius: var(--radius-md);
181
+ background: var(--color-bg);
182
+ }
183
+
184
+ .match-score .score-value {
185
+ font-size: var(--font-size-2xl);
186
+ font-weight: 700;
187
+ }
188
+
189
+ /* .score-label inherits from consolidated labels */
190
+
191
+ .match-score-excellent .score-value {
192
+ color: var(--color-success);
193
+ }
194
+ .match-score-good .score-value {
195
+ color: var(--color-primary);
196
+ }
197
+ .match-score-fair .score-value {
198
+ color: var(--color-warning);
199
+ }
200
+ .match-score-developing .score-value {
201
+ color: var(--color-text-muted);
202
+ }
203
+
204
+ /* Tier-based score colors */
205
+ .match-score-green .score-value {
206
+ color: var(--color-success);
207
+ }
208
+ .match-score-blue .score-value {
209
+ color: var(--color-primary);
210
+ }
211
+ .match-score-amber .score-value {
212
+ color: var(--color-warning);
213
+ }
214
+ .match-score-gray .score-value {
215
+ color: var(--color-text-muted);
216
+ }
217
+
218
+ /* Tier Sections */
219
+ .tier-section {
220
+ margin-bottom: var(--space-2xl);
221
+ }
222
+
223
+ .tier-header {
224
+ display: flex;
225
+ align-items: center;
226
+ gap: var(--space-md);
227
+ margin-bottom: var(--space-xs);
228
+ }
229
+
230
+ .tier-title {
231
+ margin: 0;
232
+ font-size: var(--font-size-xl);
233
+ }
234
+
235
+ .tier-count {
236
+ background: var(--color-bg);
237
+ padding: var(--space-xs) var(--space-sm);
238
+ border-radius: var(--radius-sm);
239
+ font-size: var(--font-size-sm);
240
+ color: var(--color-text-muted);
241
+ }
242
+
243
+ .tier-description {
244
+ color: var(--color-text-muted);
245
+ margin: 0 0 var(--space-lg);
246
+ font-size: var(--font-size-sm);
247
+ }
248
+
249
+ /* Tier color accents */
250
+ .tier-color-green .tier-title {
251
+ color: var(--color-success);
252
+ }
253
+ .tier-color-blue .tier-title {
254
+ color: var(--color-primary);
255
+ }
256
+ .tier-color-amber .tier-title {
257
+ color: var(--color-warning);
258
+ }
259
+ .tier-color-gray .tier-title {
260
+ color: var(--color-text-muted);
261
+ }
262
+
263
+ .tier-color-green .tier-count {
264
+ background: rgba(34, 197, 94, 0.1);
265
+ color: var(--color-success);
266
+ }
267
+ .tier-color-blue .tier-count {
268
+ background: rgba(59, 130, 246, 0.1);
269
+ color: var(--color-primary);
270
+ }
271
+ .tier-color-amber .tier-count {
272
+ background: rgba(245, 158, 11, 0.1);
273
+ color: var(--color-warning);
274
+ }
275
+ .tier-color-gray .tier-count {
276
+ background: rgba(107, 114, 128, 0.1);
277
+ color: var(--color-text-muted);
278
+ }
279
+
280
+ /* Score Breakdown */
281
+ .score-bar-item {
282
+ background: var(--color-bg);
283
+ padding: var(--space-md);
284
+ border-radius: var(--radius-md);
285
+ }
286
+
287
+ .score-bar-header {
288
+ display: flex;
289
+ justify-content: space-between;
290
+ margin-bottom: var(--space-sm);
291
+ font-size: var(--font-size-sm);
292
+ }
293
+
294
+ .score-bar-label {
295
+ font-weight: 500;
296
+ }
297
+
298
+ .score-bar-values {
299
+ color: var(--color-text-muted);
300
+ }
301
+
302
+ /* Uses .progress-bar and .progress-bar-fill from styles.css */
303
+
304
+ /* Gaps */
305
+ .match-gaps {
306
+ margin-bottom: var(--space-lg);
307
+ }
308
+
309
+ .match-gaps h4 {
310
+ margin-bottom: var(--space-sm);
311
+ color: var(--color-text-muted);
312
+ font-size: var(--font-size-sm);
313
+ text-transform: uppercase;
314
+ }
315
+
316
+ .gaps-list {
317
+ display: flex;
318
+ flex-direction: column;
319
+ gap: var(--space-sm);
320
+ }
321
+
322
+ .gap-item {
323
+ display: flex;
324
+ align-items: center;
325
+ gap: var(--space-sm);
326
+ padding: var(--space-sm);
327
+ background: var(--color-bg);
328
+ border-radius: var(--radius-md);
329
+ font-size: var(--font-size-sm);
330
+ }
331
+
332
+ .gap-type-icon {
333
+ font-size: var(--font-size-base);
334
+ }
335
+
336
+ .gap-name {
337
+ flex: 1;
338
+ font-weight: 500;
339
+ }
340
+
341
+ .gap-levels {
342
+ display: flex;
343
+ align-items: center;
344
+ gap: var(--space-xs);
345
+ color: var(--color-text-muted);
346
+ }
347
+
348
+ .gap-arrow {
349
+ color: var(--color-primary);
350
+ }
351
+
352
+ .gap-required {
353
+ color: var(--color-text);
354
+ font-weight: 500;
355
+ }
356
+
357
+ .gap-size {
358
+ padding: 2px 8px;
359
+ border-radius: var(--radius-sm);
360
+ font-weight: 500;
361
+ font-size: var(--font-size-xs);
362
+ }
363
+
364
+ .gap-size-1 {
365
+ background: #fef3c7;
366
+ color: #92400e;
367
+ }
368
+ .gap-size-2 {
369
+ background: #fed7aa;
370
+ color: #c2410c;
371
+ }
372
+ .gap-size-3 {
373
+ background: #fecaca;
374
+ color: #991b1b;
375
+ }
376
+ .gap-size-4 {
377
+ background: #fca5a5;
378
+ color: #7f1d1d;
379
+ }
380
+ .gap-size-5 {
381
+ background: #f87171;
382
+ color: white;
383
+ }
384
+
385
+ .more-gaps {
386
+ font-size: var(--font-size-sm);
387
+ color: var(--color-text-muted);
388
+ font-style: italic;
389
+ }
390
+
391
+ /* Match Card Actions */
392
+ .match-card-actions {
393
+ display: flex;
394
+ gap: var(--space-sm);
395
+ flex-wrap: wrap;
396
+ }
397
+
398
+ /* Results Footer Actions */
399
+ .results-actions-footer {
400
+ display: flex;
401
+ gap: var(--space-md);
402
+ justify-content: center;
403
+ flex-wrap: wrap;
404
+ }
405
+
406
+ /* Responsive */
407
+ @media (max-width: 640px) {
408
+ .step-indicators {
409
+ justify-content: flex-start;
410
+ }
411
+
412
+ .step-indicator {
413
+ min-width: 60px;
414
+ padding: var(--space-sm);
415
+ }
416
+
417
+ .step-name {
418
+ display: none;
419
+ }
420
+
421
+ .level-selector {
422
+ flex-direction: column;
423
+ align-items: stretch;
424
+ }
425
+
426
+ .level-btn {
427
+ flex-direction: row;
428
+ justify-content: center;
429
+ min-width: 100%;
430
+ }
431
+
432
+ .level-btn-number {
433
+ margin-right: var(--space-sm);
434
+ }
435
+
436
+ .match-card-header {
437
+ flex-direction: column;
438
+ }
439
+
440
+ .match-rank {
441
+ align-self: flex-start;
442
+ }
443
+
444
+ .match-score-area {
445
+ align-self: flex-start;
446
+ }
447
+
448
+ .intro-info {
449
+ flex-direction: column;
450
+ align-items: center;
451
+ }
452
+ }
453
+ }
@@ -0,0 +1,59 @@
1
+ /**
2
+ * Detail Page Styles
3
+ *
4
+ * Shared styles for entity detail pages.
5
+ */
6
+
7
+ @layer pages {
8
+ /* Expectation items */
9
+ .expectation-item {
10
+ background: var(--color-bg);
11
+ padding: var(--space-md);
12
+ border-radius: var(--radius-md);
13
+ border-left: 4px solid var(--color-primary);
14
+ }
15
+
16
+ .expectation-value {
17
+ font-weight: 500;
18
+ }
19
+
20
+ /* Question groups */
21
+ .question-group {
22
+ margin-bottom: var(--space-lg);
23
+ padding: var(--space-md);
24
+ background: var(--color-surface);
25
+ border-radius: var(--radius-md);
26
+ border: 1px solid var(--color-border);
27
+ }
28
+
29
+ .question-group-title {
30
+ font-weight: 600;
31
+ margin-bottom: var(--space-sm);
32
+ display: flex;
33
+ align-items: center;
34
+ gap: var(--space-sm);
35
+ }
36
+
37
+ .question-list {
38
+ margin-top: var(--space-md);
39
+ }
40
+
41
+ .question-text {
42
+ padding: var(--space-sm) 0;
43
+ color: var(--color-text-secondary);
44
+ margin: 0;
45
+ }
46
+
47
+ /* Links list */
48
+ .links-list {
49
+ display: flex;
50
+ flex-direction: column;
51
+ gap: var(--space-sm);
52
+ }
53
+
54
+ .links-list a {
55
+ display: inline-flex;
56
+ align-items: center;
57
+ gap: var(--space-xs);
58
+ }
59
+ }
@@ -0,0 +1,148 @@
1
+ /**
2
+ * Interview Builder Page
3
+ *
4
+ * Interview type toggles, question cards, follow-ups.
5
+ */
6
+
7
+ @layer pages {
8
+ .interview-type-toggle {
9
+ display: flex;
10
+ gap: var(--space-md);
11
+ margin-bottom: var(--space-xl);
12
+ flex-wrap: wrap;
13
+ }
14
+
15
+ .interview-type-btn {
16
+ display: flex;
17
+ align-items: center;
18
+ gap: var(--space-sm);
19
+ padding: var(--space-md) var(--space-lg);
20
+ border: 2px solid var(--color-border);
21
+ background: var(--color-surface);
22
+ border-radius: var(--radius-md);
23
+ cursor: pointer;
24
+ transition: all 0.2s ease;
25
+ font-size: var(--font-size-base);
26
+ }
27
+
28
+ .interview-type-btn:hover {
29
+ border-color: var(--color-primary);
30
+ background: var(--color-bg);
31
+ }
32
+
33
+ .interview-type-btn.active {
34
+ border-color: var(--color-primary);
35
+ background: var(--color-primary);
36
+ color: white;
37
+ }
38
+
39
+ .interview-type-icon {
40
+ font-size: var(--font-size-lg);
41
+ }
42
+
43
+ .interview-type-name {
44
+ font-weight: 500;
45
+ }
46
+
47
+ .interview-summary {
48
+ margin-bottom: var(--space-xl);
49
+ }
50
+
51
+ .interview-summary-header {
52
+ margin-bottom: var(--space-md);
53
+ }
54
+
55
+ .interview-summary-header h2 {
56
+ margin-bottom: var(--space-xs);
57
+ }
58
+
59
+ .interview-summary-stats {
60
+ display: flex;
61
+ gap: var(--space-sm);
62
+ flex-wrap: wrap;
63
+ }
64
+
65
+ .questions-list {
66
+ display: flex;
67
+ flex-direction: column;
68
+ gap: var(--space-lg);
69
+ }
70
+
71
+ .question-card {
72
+ background: var(--color-bg);
73
+ border-radius: var(--radius-md);
74
+ padding: var(--space-lg);
75
+ border-left: 4px solid var(--color-primary);
76
+ }
77
+
78
+ .question-header {
79
+ display: flex;
80
+ align-items: center;
81
+ gap: var(--space-md);
82
+ margin-bottom: var(--space-md);
83
+ flex-wrap: wrap;
84
+ }
85
+
86
+ .question-number {
87
+ background: var(--color-primary);
88
+ color: white;
89
+ font-weight: 700;
90
+ font-size: var(--font-size-sm);
91
+ padding: var(--space-xs) var(--space-sm);
92
+ border-radius: var(--radius-sm);
93
+ min-width: 40px;
94
+ text-align: center;
95
+ }
96
+
97
+ .question-meta {
98
+ display: flex;
99
+ gap: var(--space-xs);
100
+ flex-wrap: wrap;
101
+ }
102
+
103
+ .question-text {
104
+ font-size: var(--font-size-lg);
105
+ font-weight: 500;
106
+ line-height: 1.5;
107
+ margin-bottom: var(--space-md);
108
+ }
109
+
110
+ .question-followups,
111
+ .question-looking-for {
112
+ margin-top: var(--space-md);
113
+ padding-top: var(--space-md);
114
+ border-top: 1px solid var(--color-border);
115
+ }
116
+
117
+ .question-followups h4,
118
+ .question-looking-for h4 {
119
+ font-size: var(--font-size-sm);
120
+ color: var(--color-text-muted);
121
+ text-transform: uppercase;
122
+ letter-spacing: 0.025em;
123
+ margin-bottom: var(--space-sm);
124
+ }
125
+
126
+ .question-followups ul,
127
+ .question-looking-for ul {
128
+ margin: 0;
129
+ padding-left: var(--space-lg);
130
+ }
131
+
132
+ .question-followups li,
133
+ .question-looking-for li {
134
+ margin-bottom: var(--space-xs);
135
+ color: var(--color-text-secondary);
136
+ }
137
+
138
+ @media (max-width: 640px) {
139
+ .interview-type-toggle {
140
+ flex-direction: column;
141
+ }
142
+
143
+ .interview-type-btn {
144
+ width: 100%;
145
+ justify-content: center;
146
+ }
147
+ }
148
+ }