heyiam 0.2.29 → 0.3.1

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 (186) hide show
  1. package/README.md +45 -0
  2. package/dist/auth.js +29 -3
  3. package/dist/config.js +10 -1
  4. package/dist/db.js +0 -1
  5. package/dist/export.js +124 -27
  6. package/dist/format-utils.js +5 -0
  7. package/dist/github.js +381 -0
  8. package/dist/index.js +168 -0
  9. package/dist/mount.js +300 -102
  10. package/dist/parsers/claude.js +2 -28
  11. package/dist/parsers/codex.js +2 -26
  12. package/dist/parsers/cursor.js +2 -26
  13. package/dist/parsers/duration.js +35 -0
  14. package/dist/parsers/gemini.js +2 -20
  15. package/dist/parsers/index.js +22 -3
  16. package/dist/parsers/types.js +0 -1
  17. package/dist/public/assets/index-Coilyhtr.css +1 -0
  18. package/dist/public/assets/index-D0noVMFu.js +44 -0
  19. package/dist/public/index.html +2 -2
  20. package/dist/redact.js +4 -104
  21. package/dist/render/build-render-data.js +9 -2
  22. package/dist/render/index.js +32 -5
  23. package/dist/render/liquid.js +147 -7
  24. package/dist/render/mock-data.js +303 -0
  25. package/dist/render/templates/aurora/portfolio.liquid +192 -0
  26. package/dist/render/templates/aurora/project.liquid +260 -0
  27. package/dist/render/templates/aurora/session.liquid +223 -0
  28. package/dist/render/templates/aurora/styles.css +1184 -0
  29. package/dist/render/templates/bauhaus/portfolio.liquid +169 -0
  30. package/dist/render/templates/bauhaus/project.liquid +300 -0
  31. package/dist/render/templates/bauhaus/session.liquid +333 -0
  32. package/dist/render/templates/bauhaus/styles.css +1645 -0
  33. package/dist/render/templates/blueprint/portfolio.liquid +153 -0
  34. package/dist/render/templates/blueprint/project.liquid +286 -0
  35. package/dist/render/templates/blueprint/session.liquid +248 -0
  36. package/dist/render/templates/blueprint/styles.css +1289 -0
  37. package/dist/render/templates/canvas/portfolio.liquid +203 -0
  38. package/dist/render/templates/canvas/project.liquid +235 -0
  39. package/dist/render/templates/canvas/session.liquid +223 -0
  40. package/dist/render/templates/canvas/styles.css +1440 -0
  41. package/dist/render/templates/carbon/portfolio.liquid +160 -0
  42. package/dist/render/templates/carbon/project.liquid +249 -0
  43. package/dist/render/templates/carbon/session.liquid +190 -0
  44. package/dist/render/templates/carbon/styles.css +1097 -0
  45. package/dist/render/templates/chalk/portfolio.liquid +189 -0
  46. package/dist/render/templates/chalk/project.liquid +245 -0
  47. package/dist/render/templates/chalk/session.liquid +215 -0
  48. package/dist/render/templates/chalk/styles.css +1161 -0
  49. package/dist/render/templates/circuit/portfolio.liquid +152 -0
  50. package/dist/render/templates/circuit/project.liquid +247 -0
  51. package/dist/render/templates/circuit/session.liquid +205 -0
  52. package/dist/render/templates/circuit/styles.css +1409 -0
  53. package/dist/render/templates/cosmos/portfolio.liquid +222 -0
  54. package/dist/render/templates/cosmos/project.liquid +327 -0
  55. package/dist/render/templates/cosmos/session.liquid +239 -0
  56. package/dist/render/templates/cosmos/styles.css +1157 -0
  57. package/dist/render/templates/daylight/portfolio.liquid +207 -0
  58. package/dist/render/templates/daylight/project.liquid +229 -0
  59. package/dist/render/templates/daylight/session.liquid +219 -0
  60. package/dist/render/templates/daylight/styles.css +1315 -0
  61. package/dist/render/templates/editorial/portfolio.liquid +110 -0
  62. package/dist/render/templates/editorial/project.liquid +202 -0
  63. package/dist/render/templates/editorial/session.liquid +171 -0
  64. package/dist/render/templates/editorial/styles.css +826 -0
  65. package/dist/render/templates/ember/portfolio.liquid +306 -0
  66. package/dist/render/templates/ember/project.liquid +232 -0
  67. package/dist/render/templates/ember/session.liquid +202 -0
  68. package/dist/render/templates/ember/styles.css +1289 -0
  69. package/dist/render/templates/glacier/portfolio.liquid +261 -0
  70. package/dist/render/templates/glacier/project.liquid +288 -0
  71. package/dist/render/templates/glacier/session.liquid +217 -0
  72. package/dist/render/templates/glacier/styles.css +1204 -0
  73. package/dist/render/templates/grid/portfolio.liquid +255 -0
  74. package/dist/render/templates/grid/project.liquid +306 -0
  75. package/dist/render/templates/grid/session.liquid +260 -0
  76. package/dist/render/templates/grid/styles.css +1445 -0
  77. package/dist/render/templates/kinetic/portfolio.liquid +158 -0
  78. package/dist/render/templates/kinetic/project.liquid +242 -0
  79. package/dist/render/templates/kinetic/session.liquid +228 -0
  80. package/dist/render/templates/kinetic/styles.css +948 -0
  81. package/dist/render/templates/meridian/portfolio.liquid +243 -0
  82. package/dist/render/templates/meridian/project.liquid +376 -0
  83. package/dist/render/templates/meridian/session.liquid +298 -0
  84. package/dist/render/templates/meridian/styles.css +1375 -0
  85. package/dist/render/templates/minimal/portfolio.liquid +71 -0
  86. package/dist/render/templates/minimal/project.liquid +154 -0
  87. package/dist/render/templates/minimal/session.liquid +140 -0
  88. package/dist/render/templates/minimal/styles.css +529 -0
  89. package/dist/render/templates/mono/portfolio.liquid +281 -0
  90. package/dist/render/templates/mono/project.liquid +275 -0
  91. package/dist/render/templates/mono/session.liquid +276 -0
  92. package/dist/render/templates/mono/styles.css +1022 -0
  93. package/dist/render/templates/neon/portfolio.liquid +207 -0
  94. package/dist/render/templates/neon/project.liquid +225 -0
  95. package/dist/render/templates/neon/session.liquid +195 -0
  96. package/dist/render/templates/neon/styles.css +1271 -0
  97. package/dist/render/templates/noir/portfolio.liquid +137 -0
  98. package/dist/render/templates/noir/project.liquid +220 -0
  99. package/dist/render/templates/noir/session.liquid +241 -0
  100. package/dist/render/templates/noir/styles.css +1229 -0
  101. package/dist/render/templates/obsidian/portfolio.liquid +247 -0
  102. package/dist/render/templates/obsidian/project.liquid +280 -0
  103. package/dist/render/templates/obsidian/session.liquid +241 -0
  104. package/dist/render/templates/obsidian/styles.css +1407 -0
  105. package/dist/render/templates/paper/portfolio.liquid +257 -0
  106. package/dist/render/templates/paper/project.liquid +235 -0
  107. package/dist/render/templates/paper/session.liquid +271 -0
  108. package/dist/render/templates/paper/styles.css +1513 -0
  109. package/dist/render/templates/parallax/portfolio.liquid +295 -0
  110. package/dist/render/templates/parallax/project.liquid +275 -0
  111. package/dist/render/templates/parallax/session.liquid +295 -0
  112. package/dist/render/templates/parallax/styles.css +1880 -0
  113. package/dist/render/templates/parchment/portfolio.liquid +280 -0
  114. package/dist/render/templates/parchment/project.liquid +289 -0
  115. package/dist/render/templates/parchment/session.liquid +346 -0
  116. package/dist/render/templates/parchment/styles.css +1401 -0
  117. package/dist/render/templates/partials/_beats.liquid +16 -0
  118. package/dist/render/templates/partials/_breadcrumb.liquid +9 -0
  119. package/dist/render/templates/partials/_footer.liquid +7 -0
  120. package/dist/render/templates/partials/_growth-chart.liquid +7 -0
  121. package/dist/render/templates/partials/_key-decisions.liquid +20 -0
  122. package/dist/render/templates/partials/_links.liquid +16 -0
  123. package/dist/render/templates/partials/_narrative.liquid +8 -0
  124. package/dist/render/templates/partials/_phases.liquid +20 -0
  125. package/dist/render/templates/partials/_portfolio-header.liquid +20 -0
  126. package/dist/render/templates/partials/_portfolio-projects.liquid +16 -0
  127. package/dist/render/templates/partials/_portfolio-stats.liquid +19 -0
  128. package/dist/render/templates/partials/_qa.liquid +13 -0
  129. package/dist/render/templates/partials/_screenshot.liquid +15 -0
  130. package/dist/render/templates/partials/_session-cards.liquid +30 -0
  131. package/dist/render/templates/partials/_session-header.liquid +39 -0
  132. package/dist/render/templates/partials/_session-sidebar.liquid +30 -0
  133. package/dist/render/templates/partials/_skills.liquid +12 -0
  134. package/dist/render/templates/partials/_source-breakdown.liquid +22 -0
  135. package/dist/render/templates/partials/_stats.liquid +38 -0
  136. package/dist/render/templates/partials/_work-timeline.liquid +7 -0
  137. package/dist/render/templates/project.liquid +7 -4
  138. package/dist/render/templates/radar/portfolio.liquid +223 -0
  139. package/dist/render/templates/radar/project.liquid +278 -0
  140. package/dist/render/templates/radar/session.liquid +300 -0
  141. package/dist/render/templates/radar/styles.css +1055 -0
  142. package/dist/render/templates/showcase/portfolio.liquid +221 -0
  143. package/dist/render/templates/showcase/project.liquid +237 -0
  144. package/dist/render/templates/showcase/session.liquid +210 -0
  145. package/dist/render/templates/showcase/styles.css +1284 -0
  146. package/dist/render/templates/signal/portfolio.liquid +217 -0
  147. package/dist/render/templates/signal/project.liquid +278 -0
  148. package/dist/render/templates/signal/session.liquid +282 -0
  149. package/dist/render/templates/signal/styles.css +1401 -0
  150. package/dist/render/templates/strata/portfolio.liquid +180 -0
  151. package/dist/render/templates/strata/project.liquid +282 -0
  152. package/dist/render/templates/strata/session.liquid +261 -0
  153. package/dist/render/templates/strata/styles.css +1354 -0
  154. package/dist/render/templates/styles.css +1190 -0
  155. package/dist/render/templates/terminal/portfolio.liquid +102 -0
  156. package/dist/render/templates/terminal/project.liquid +161 -0
  157. package/dist/render/templates/terminal/session.liquid +145 -0
  158. package/dist/render/templates/terminal/styles.css +497 -0
  159. package/dist/render/templates/verdant/portfolio.liquid +321 -0
  160. package/dist/render/templates/verdant/project.liquid +309 -0
  161. package/dist/render/templates/verdant/session.liquid +237 -0
  162. package/dist/render/templates/verdant/styles.css +1261 -0
  163. package/dist/render/templates/zen/portfolio.liquid +124 -0
  164. package/dist/render/templates/zen/project.liquid +187 -0
  165. package/dist/render/templates/zen/session.liquid +203 -0
  166. package/dist/render/templates/zen/styles.css +1211 -0
  167. package/dist/render/templates.js +90 -0
  168. package/dist/routes/auth.js +7 -3
  169. package/dist/routes/context.js +17 -10
  170. package/dist/routes/delete.js +195 -0
  171. package/dist/routes/enhance.js +57 -40
  172. package/dist/routes/export.js +14 -4
  173. package/dist/routes/github.js +254 -0
  174. package/dist/routes/index.js +2 -0
  175. package/dist/routes/portfolio-render-data.js +160 -0
  176. package/dist/routes/preview.js +555 -108
  177. package/dist/routes/projects.js +61 -24
  178. package/dist/routes/publish.js +320 -31
  179. package/dist/routes/settings.js +194 -1
  180. package/dist/routes/sse.js +9 -0
  181. package/dist/search.js +6 -0
  182. package/dist/server.js +11 -3
  183. package/dist/settings.js +112 -9
  184. package/package.json +3 -4
  185. package/dist/public/assets/index-CC9G8EF1.js +0 -21
  186. package/dist/public/assets/index-Dalqz2mC.css +0 -1
@@ -0,0 +1,1409 @@
1
+ /* ── Circuit Template ── */
2
+
3
+ body { background: var(--bg); color: var(--fg); }
4
+
5
+ /* ── Tokens ── */
6
+ .circuit {
7
+ --bg: #0a0f0a;
8
+ --bg-surface: #111a11;
9
+ --fg: #d4e6d4;
10
+ --fg-muted: #7a937a;
11
+ --accent: #a3e635;
12
+ --accent-dim: rgba(163, 230, 53, 0.15);
13
+ --accent-glow: rgba(163, 230, 53, 0.25);
14
+ --border: #1e2e1e;
15
+ --border-accent: rgba(163, 230, 53, 0.3);
16
+ --radius-sm: 2px;
17
+ --radius: 4px;
18
+ --font-display: 'Space Grotesk', sans-serif;
19
+ --font-body: 'Inter', sans-serif;
20
+ --font-mono: 'IBM Plex Mono', monospace;
21
+ --trace: rgba(163, 230, 53, 0.08);
22
+ --trace-bright: rgba(163, 230, 53, 0.18);
23
+ --pad-size: 6px;
24
+ }
25
+
26
+ .circuit {
27
+ font-family: var(--font-body);
28
+ color: var(--fg);
29
+ background-color: var(--bg);
30
+ background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0v40h30v-20h40v60h-20v40h60v-30h20v50h-40v20h70v-40h30v-20' fill='none' stroke='rgba(163,230,53,0.06)' stroke-width='1'/%3E%3Cpath d='M0 120h30v40h20v-20h40v30h-10v30' fill='none' stroke='rgba(163,230,53,0.06)' stroke-width='1'/%3E%3Cpath d='M120 0v20h40v30h-20v20h60v40h-30v20h30v20h-50v30h-20' fill='none' stroke='rgba(163,230,53,0.06)' stroke-width='1'/%3E%3Ccircle cx='10' cy='40' r='2' fill='rgba(163,230,53,0.1)'/%3E%3Ccircle cx='80' cy='80' r='2' fill='rgba(163,230,53,0.1)'/%3E%3Ccircle cx='160' cy='50' r='2' fill='rgba(163,230,53,0.1)'/%3E%3Ccircle cx='40' cy='160' r='2' fill='rgba(163,230,53,0.1)'/%3E%3Ccircle cx='130' cy='150' r='2' fill='rgba(163,230,53,0.1)'/%3E%3C/svg%3E");
31
+ line-height: 1.6;
32
+ -webkit-font-smoothing: antialiased;
33
+ max-width: 960px;
34
+ margin-inline: auto;
35
+ padding-inline: 24px;
36
+ }
37
+ .circuit a { color: inherit; text-decoration: none; }
38
+ .circuit a:visited { color: inherit; }
39
+
40
+ /* ── Breadcrumb ── */
41
+ .circuit .breadcrumb {
42
+ font-family: var(--font-mono);
43
+ font-size: 12px;
44
+ color: var(--fg-muted);
45
+ padding: 16px 0 0;
46
+ }
47
+ .circuit .breadcrumb a {
48
+ color: var(--fg-muted);
49
+ text-decoration: none;
50
+ }
51
+ .circuit .breadcrumb a:hover { color: var(--accent); }
52
+ .circuit .breadcrumb a:focus-visible {
53
+ outline: 2px solid var(--accent);
54
+ outline-offset: 2px;
55
+ border-radius: var(--radius-sm);
56
+ }
57
+ .circuit .breadcrumb .sep { color: var(--accent); opacity: 0.5; margin: 0 6px; }
58
+
59
+ /* ── Component pad decorators ── */
60
+ .circuit .pad-corner { position: relative; }
61
+ .circuit .pad-corner::before,
62
+ .circuit .pad-corner::after {
63
+ content: '';
64
+ position: absolute;
65
+ width: var(--pad-size);
66
+ height: var(--pad-size);
67
+ background: var(--accent-dim);
68
+ border-radius: 50%;
69
+ }
70
+ .circuit .pad-corner::before { top: -3px; inset-inline-start: -3px; }
71
+ .circuit .pad-corner::after { top: -3px; inset-inline-end: -3px; }
72
+
73
+ /* ── Hero (Portfolio) ── */
74
+ .circuit .hero {
75
+ padding: 80px 0 48px;
76
+ position: relative;
77
+ }
78
+ .circuit .hero-profile {
79
+ display: flex;
80
+ gap: 24px;
81
+ align-items: flex-start;
82
+ }
83
+ .circuit .hero-photo-wrap {
84
+ position: relative;
85
+ width: 120px;
86
+ height: 150px;
87
+ flex-shrink: 0;
88
+ }
89
+ .circuit .hero-photo {
90
+ width: 120px;
91
+ height: 150px;
92
+ border-radius: var(--radius);
93
+ object-fit: cover;
94
+ object-position: 55% 10%;
95
+ border: 1px solid var(--accent);
96
+ display: block;
97
+ filter: grayscale(0.7) brightness(0.9);
98
+ }
99
+ .circuit .hero-photo-wrap::before,
100
+ .circuit .hero-photo-wrap::after,
101
+ .circuit .hero-photo-wrap .pad-bl,
102
+ .circuit .hero-photo-wrap .pad-br {
103
+ content: '';
104
+ position: absolute;
105
+ width: var(--pad-size);
106
+ height: var(--pad-size);
107
+ background: var(--accent);
108
+ border-radius: 1px;
109
+ opacity: 0.6;
110
+ }
111
+ .circuit .hero-photo-wrap::before { top: -3px; inset-inline-start: -3px; }
112
+ .circuit .hero-photo-wrap::after { top: -3px; inset-inline-end: -3px; }
113
+ .circuit .hero-photo-wrap .pad-bl { bottom: -3px; left: -3px; position: absolute; }
114
+ .circuit .hero-photo-wrap .pad-br { bottom: -3px; right: -3px; position: absolute; }
115
+ .circuit .hero-info { flex: 1; min-width: 0; }
116
+ .circuit .hero h1 {
117
+ font-family: var(--font-display);
118
+ font-size: clamp(32px, 5vw, 48px);
119
+ font-weight: 700;
120
+ color: var(--fg);
121
+ letter-spacing: -0.03em;
122
+ line-height: 1.15;
123
+ margin-bottom: 16px;
124
+ }
125
+ .circuit .hero h1 .accent { color: var(--accent); }
126
+ .circuit.heyiam-project .hero h1 {
127
+ font-size: clamp(28px, 5vw, 40px);
128
+ margin-bottom: 12px;
129
+ }
130
+ .circuit.heyiam-project .hero { padding: 48px 0 40px; }
131
+ .circuit.heyiam-session .hero { padding: 48px 0 40px; }
132
+ .circuit.heyiam-session .hero h1 {
133
+ font-size: clamp(24px, 4vw, 36px);
134
+ line-height: 1.2;
135
+ max-width: 640px;
136
+ margin-bottom: 16px;
137
+ }
138
+ .circuit .hero-bio {
139
+ font-size: 16px;
140
+ color: var(--fg-muted);
141
+ max-width: 560px;
142
+ line-height: 1.7;
143
+ margin-bottom: 8px;
144
+ }
145
+ .circuit .hero-location {
146
+ font-family: var(--font-mono);
147
+ font-size: 13px;
148
+ color: var(--fg-muted);
149
+ opacity: 0.7;
150
+ }
151
+ .circuit .hero-location::before {
152
+ content: '// ';
153
+ color: var(--accent);
154
+ opacity: 0.5;
155
+ }
156
+ .circuit .hero-contact {
157
+ display: flex;
158
+ flex-wrap: wrap;
159
+ gap: 12px;
160
+ margin-top: 16px;
161
+ list-style: none;
162
+ }
163
+ .circuit .hero-contact a {
164
+ display: inline-flex;
165
+ align-items: center;
166
+ gap: 6px;
167
+ font-family: var(--font-mono);
168
+ font-size: 13px;
169
+ color: var(--fg-muted);
170
+ text-decoration: none;
171
+ transition: color 0.15s;
172
+ }
173
+ .circuit .hero-contact a:hover { color: var(--accent); }
174
+ .circuit .hero-contact svg { flex-shrink: 0; }
175
+ .circuit .hero-resume {
176
+ display: inline-flex;
177
+ align-items: center;
178
+ gap: 6px;
179
+ margin-top: 16px;
180
+ padding: 6px 14px;
181
+ font-family: var(--font-mono);
182
+ font-size: 13px;
183
+ color: var(--bg);
184
+ background: var(--accent);
185
+ border: none;
186
+ border-radius: var(--radius);
187
+ text-decoration: none;
188
+ transition: opacity 0.15s;
189
+ }
190
+ .circuit .hero-resume:hover { opacity: 0.85; color: var(--bg); }
191
+
192
+ /* ── Hero links (project) ── */
193
+ .circuit .hero-links {
194
+ font-family: var(--font-mono);
195
+ font-size: 13px;
196
+ color: var(--fg-muted);
197
+ display: flex;
198
+ gap: 16px;
199
+ flex-wrap: wrap;
200
+ }
201
+ .circuit .hero-links a {
202
+ color: var(--accent);
203
+ text-decoration: none;
204
+ border-bottom: 1px solid var(--accent-dim);
205
+ }
206
+ .circuit .hero-links a:hover { border-color: var(--accent); }
207
+ .circuit .hero-links a:focus-visible {
208
+ outline: 2px solid var(--accent);
209
+ outline-offset: 2px;
210
+ border-radius: var(--radius-sm);
211
+ }
212
+
213
+ /* ── Hero meta (session) ── */
214
+ .circuit .hero-meta {
215
+ display: flex;
216
+ flex-wrap: wrap;
217
+ gap: 8px 20px;
218
+ font-family: var(--font-mono);
219
+ font-size: 12px;
220
+ color: var(--fg-muted);
221
+ }
222
+ .circuit .hero-meta .val { color: var(--accent); }
223
+
224
+ /* ── Hero trace decoration ── */
225
+ .circuit .hero-trace {
226
+ position: absolute;
227
+ top: 0;
228
+ inset-inline-end: 0;
229
+ width: 200px;
230
+ height: 200px;
231
+ pointer-events: none;
232
+ opacity: 0.4;
233
+ }
234
+ .circuit .hero-trace path {
235
+ fill: none;
236
+ stroke: var(--accent);
237
+ stroke-width: 1.5;
238
+ stroke-dasharray: 400;
239
+ stroke-dashoffset: 400;
240
+ transition: stroke-dashoffset 1.5s ease;
241
+ }
242
+ .circuit .hero.visible .hero-trace path { stroke-dashoffset: 0; }
243
+ .circuit .hero-trace circle {
244
+ fill: var(--accent);
245
+ opacity: 0;
246
+ transition: opacity 0.3s ease 1.2s;
247
+ }
248
+ .circuit .hero.visible .hero-trace circle { opacity: 1; }
249
+
250
+ /* ── Stat Chips (portfolio defaults) ── */
251
+ .circuit .stat-chips {
252
+ display: flex;
253
+ flex-wrap: wrap;
254
+ gap: 16px;
255
+ margin: 40px 0;
256
+ }
257
+ .circuit .stat-chip {
258
+ background: var(--bg-surface);
259
+ border: 1px solid var(--border);
260
+ border-radius: var(--radius);
261
+ padding: 16px 24px;
262
+ position: relative;
263
+ min-width: 140px;
264
+ }
265
+ .circuit .stat-chip::before {
266
+ content: '';
267
+ position: absolute;
268
+ top: 0;
269
+ inset-inline-start: 12px;
270
+ width: 16px;
271
+ height: 4px;
272
+ background: var(--bg);
273
+ border-bottom-left-radius: 2px;
274
+ border-bottom-right-radius: 2px;
275
+ }
276
+ .circuit .stat-chip::after {
277
+ content: '';
278
+ position: absolute;
279
+ top: 8px;
280
+ inset-inline-end: 8px;
281
+ width: 4px;
282
+ height: 4px;
283
+ background: var(--accent);
284
+ border-radius: 50%;
285
+ }
286
+ .circuit .stat-chip-value {
287
+ font-family: var(--font-mono);
288
+ font-size: 28px;
289
+ font-weight: 600;
290
+ color: var(--accent);
291
+ display: block;
292
+ line-height: 1.1;
293
+ }
294
+ .circuit .stat-chip-label {
295
+ font-family: var(--font-mono);
296
+ font-size: 11px;
297
+ color: var(--fg-muted);
298
+ text-transform: uppercase;
299
+ letter-spacing: 0.08em;
300
+ margin-top: 4px;
301
+ display: block;
302
+ }
303
+
304
+ /* Project stat chip overrides */
305
+ .circuit.heyiam-project .stat-chips {
306
+ gap: 12px;
307
+ margin: 0 0 40px;
308
+ }
309
+ .circuit.heyiam-project .stat-chip {
310
+ padding: 12px 20px;
311
+ min-width: 100px;
312
+ }
313
+ .circuit.heyiam-project .stat-chip::before {
314
+ inset-inline-start: 10px;
315
+ width: 14px;
316
+ height: 3px;
317
+ }
318
+ .circuit.heyiam-project .stat-chip::after {
319
+ top: 6px;
320
+ inset-inline-end: 6px;
321
+ width: 3px;
322
+ height: 3px;
323
+ }
324
+ .circuit.heyiam-project .stat-chip-value {
325
+ font-size: 20px;
326
+ }
327
+ .circuit.heyiam-project .stat-chip-label {
328
+ font-size: 10px;
329
+ margin-top: 2px;
330
+ }
331
+
332
+ /* Session stat chip overrides */
333
+ .circuit.heyiam-session .stat-chips {
334
+ gap: 10px;
335
+ margin: 0 0 32px;
336
+ }
337
+ .circuit.heyiam-session .stat-chip {
338
+ padding: 10px 16px;
339
+ min-width: 80px;
340
+ }
341
+ .circuit.heyiam-session .stat-chip::before {
342
+ inset-inline-start: 8px;
343
+ width: 12px;
344
+ height: 3px;
345
+ }
346
+ .circuit.heyiam-session .stat-chip::after {
347
+ top: 5px;
348
+ inset-inline-end: 5px;
349
+ width: 3px;
350
+ height: 3px;
351
+ }
352
+ .circuit.heyiam-session .stat-chip-value {
353
+ font-size: 18px;
354
+ }
355
+ .circuit.heyiam-session .stat-chip-label {
356
+ font-size: 10px;
357
+ margin-top: 2px;
358
+ }
359
+
360
+ /* ── Leverage chip ── */
361
+ .circuit .stat-chip--leverage { flex: 2 1 220px; }
362
+ .circuit .leverage-row {
363
+ display: flex;
364
+ align-items: baseline;
365
+ gap: 0.75rem;
366
+ margin-bottom: 0.5rem;
367
+ }
368
+ .circuit .leverage-row .lev-val {
369
+ font-family: var(--font-mono);
370
+ font-size: 1.25rem;
371
+ font-weight: 600;
372
+ color: var(--fg);
373
+ line-height: 1.1;
374
+ }
375
+ .circuit .leverage-row .lev-val--agent,
376
+ .circuit .leverage-row .lev-val--multi { color: var(--accent); }
377
+ .circuit .leverage-row .lev-lbl {
378
+ font-family: var(--font-mono);
379
+ font-size: 10px;
380
+ color: var(--fg-muted);
381
+ text-transform: uppercase;
382
+ letter-spacing: 0.08em;
383
+ }
384
+ .circuit .circuit-leverage-bar {
385
+ height: 3px;
386
+ border-radius: 1px;
387
+ background: rgba(255,255,255,0.06);
388
+ display: flex;
389
+ overflow: hidden;
390
+ }
391
+ .circuit .circuit-leverage-bar__human {
392
+ height: 100%;
393
+ background: rgba(255,255,255,0.25);
394
+ border-radius: 1px 0 0 1px;
395
+ }
396
+ .circuit .circuit-leverage-bar__agent {
397
+ height: 100%;
398
+ background: var(--accent);
399
+ border-radius: 0 1px 1px 0;
400
+ }
401
+
402
+ /* ── Section headers ── */
403
+ .circuit .section-header {
404
+ font-family: var(--font-display);
405
+ font-size: 20px;
406
+ font-weight: 600;
407
+ color: var(--fg);
408
+ margin-bottom: 24px;
409
+ padding-bottom: 12px;
410
+ border-bottom: 1px solid var(--border);
411
+ position: relative;
412
+ }
413
+ .circuit .section-header::after {
414
+ content: '';
415
+ position: absolute;
416
+ bottom: -1px;
417
+ inset-inline-start: 0;
418
+ width: 48px;
419
+ height: 2px;
420
+ background: var(--accent);
421
+ }
422
+
423
+ /* ── Trace connector ── */
424
+ .circuit .trace-connector {
425
+ width: 2px;
426
+ height: 32px;
427
+ background: linear-gradient(to bottom, var(--trace-bright), var(--trace));
428
+ margin-inline-start: 48px;
429
+ position: relative;
430
+ }
431
+ .circuit .trace-connector::before,
432
+ .circuit .trace-connector::after {
433
+ content: '';
434
+ position: absolute;
435
+ inset-inline-start: -2px;
436
+ width: var(--pad-size);
437
+ height: var(--pad-size);
438
+ background: var(--accent-dim);
439
+ border-radius: 50%;
440
+ }
441
+ .circuit .trace-connector::before { top: 0; }
442
+ .circuit .trace-connector::after { bottom: 0; }
443
+
444
+ /* ── Dev Take ── */
445
+ .circuit .dev-take {
446
+ background: var(--bg-surface);
447
+ border: 1px solid var(--border);
448
+ border-inline-start: 3px solid var(--accent);
449
+ border-radius: var(--radius);
450
+ padding: 20px 24px;
451
+ margin-bottom: 40px;
452
+ position: relative;
453
+ }
454
+ .circuit .dev-take::after {
455
+ content: '';
456
+ position: absolute;
457
+ top: 8px;
458
+ inset-inline-end: 8px;
459
+ width: 4px;
460
+ height: 4px;
461
+ background: var(--accent);
462
+ border-radius: 50%;
463
+ }
464
+ .circuit .dev-take-label {
465
+ font-family: var(--font-mono);
466
+ font-size: 10px;
467
+ color: var(--accent);
468
+ text-transform: uppercase;
469
+ letter-spacing: 0.1em;
470
+ margin-bottom: 8px;
471
+ display: block;
472
+ }
473
+ .circuit .dev-take p {
474
+ font-size: 15px;
475
+ color: var(--fg);
476
+ line-height: 1.7;
477
+ font-style: italic;
478
+ }
479
+
480
+ /* ── Two-column layout ── */
481
+ .circuit .layout-two-col {
482
+ display: grid;
483
+ grid-template-columns: 1fr 280px;
484
+ gap: 40px;
485
+ align-items: start;
486
+ }
487
+
488
+ /* ── Execution Path (beats) ── */
489
+ .circuit .beats { margin-bottom: 40px; }
490
+ .circuit .beat-list {
491
+ position: relative;
492
+ padding-inline-start: 28px;
493
+ }
494
+ .circuit .beat-list::before {
495
+ content: '';
496
+ position: absolute;
497
+ inset-inline-start: 8px;
498
+ top: 0;
499
+ bottom: 0;
500
+ width: 2px;
501
+ background: var(--trace-bright);
502
+ }
503
+ .circuit .beat-item {
504
+ position: relative;
505
+ padding-bottom: 24px;
506
+ }
507
+ .circuit .beat-item:last-child { padding-bottom: 0; }
508
+ .circuit .beat-item::before {
509
+ content: '';
510
+ position: absolute;
511
+ inset-inline-start: -20px;
512
+ top: 8px;
513
+ width: 16px;
514
+ height: 2px;
515
+ background: var(--accent);
516
+ }
517
+ .circuit .beat-item::after {
518
+ content: '';
519
+ position: absolute;
520
+ inset-inline-start: -24px;
521
+ top: 5px;
522
+ width: 8px;
523
+ height: 8px;
524
+ background: var(--accent);
525
+ border-radius: 50%;
526
+ border: 2px solid var(--bg);
527
+ }
528
+ .circuit .beat-title {
529
+ font-family: var(--font-display);
530
+ font-size: 15px;
531
+ font-weight: 600;
532
+ color: var(--fg);
533
+ margin-bottom: 4px;
534
+ }
535
+ .circuit .beat-title .beat-num {
536
+ font-family: var(--font-mono);
537
+ font-size: 11px;
538
+ color: var(--accent);
539
+ margin-inline-end: 8px;
540
+ }
541
+ .circuit .beat-desc {
542
+ font-size: 14px;
543
+ color: var(--fg-muted);
544
+ line-height: 1.6;
545
+ }
546
+
547
+ /* ── Q&A ── */
548
+ .circuit .qa-section { margin-bottom: 40px; }
549
+ .circuit .qa-item { margin-bottom: 24px; }
550
+ .circuit .qa-item:last-child { margin-bottom: 0; }
551
+ .circuit .qa-question {
552
+ font-family: var(--font-display);
553
+ font-size: 14px;
554
+ font-weight: 600;
555
+ color: var(--fg);
556
+ margin-bottom: 8px;
557
+ padding-inline-start: 20px;
558
+ position: relative;
559
+ }
560
+ .circuit .qa-question::before {
561
+ content: 'Q';
562
+ position: absolute;
563
+ inset-inline-start: 0;
564
+ font-family: var(--font-mono);
565
+ font-size: 12px;
566
+ color: var(--accent);
567
+ font-weight: 600;
568
+ }
569
+ .circuit .qa-answer {
570
+ font-size: 14px;
571
+ color: var(--fg-muted);
572
+ line-height: 1.7;
573
+ padding-inline-start: 20px;
574
+ position: relative;
575
+ }
576
+ .circuit .qa-answer::before {
577
+ content: 'A';
578
+ position: absolute;
579
+ inset-inline-start: 0;
580
+ font-family: var(--font-mono);
581
+ font-size: 12px;
582
+ color: var(--fg-muted);
583
+ font-weight: 600;
584
+ }
585
+
586
+ /* ── Agent Summary table ── */
587
+ .circuit .agent-table-wrapper {
588
+ margin-bottom: 40px;
589
+ overflow-x: auto;
590
+ -webkit-overflow-scrolling: touch;
591
+ }
592
+ .circuit .agent-table {
593
+ width: 100%;
594
+ border-collapse: collapse;
595
+ font-size: 13px;
596
+ }
597
+ .circuit .agent-table th {
598
+ font-family: var(--font-mono);
599
+ font-size: 10px;
600
+ font-weight: 600;
601
+ color: var(--fg-muted);
602
+ text-transform: uppercase;
603
+ letter-spacing: 0.08em;
604
+ text-align: start;
605
+ padding: 8px 12px;
606
+ border-bottom: 2px solid var(--border);
607
+ white-space: nowrap;
608
+ }
609
+ .circuit .agent-table td {
610
+ padding: 10px 12px;
611
+ border-bottom: 1px solid var(--border);
612
+ vertical-align: middle;
613
+ white-space: nowrap;
614
+ }
615
+ .circuit .agent-table tr:hover td { background: var(--accent-dim); }
616
+ .circuit .agent-table .role-cell {
617
+ display: flex;
618
+ align-items: center;
619
+ gap: 8px;
620
+ }
621
+ .circuit .agent-table .role-dot {
622
+ width: 8px;
623
+ height: 8px;
624
+ border-radius: 50%;
625
+ flex-shrink: 0;
626
+ }
627
+ .circuit .agent-table .mono {
628
+ font-family: var(--font-mono);
629
+ font-size: 12px;
630
+ color: var(--fg-muted);
631
+ }
632
+
633
+ /* ── Sidebar ── */
634
+ .circuit .sidebar {
635
+ position: sticky;
636
+ top: 80px;
637
+ }
638
+ .circuit .sidebar-section { margin-bottom: 32px; }
639
+ .circuit .sidebar-title {
640
+ font-family: var(--font-mono);
641
+ font-size: 10px;
642
+ font-weight: 600;
643
+ color: var(--fg-muted);
644
+ text-transform: uppercase;
645
+ letter-spacing: 0.1em;
646
+ margin-bottom: 12px;
647
+ padding-bottom: 8px;
648
+ border-bottom: 1px solid var(--border);
649
+ }
650
+
651
+ /* ── Sidebar: Tools ── */
652
+ .circuit .tool-list { list-style: none; }
653
+ .circuit .tool-item {
654
+ display: flex;
655
+ justify-content: space-between;
656
+ align-items: center;
657
+ padding: 6px 0;
658
+ font-size: 13px;
659
+ }
660
+ .circuit .tool-item + .tool-item { border-top: 1px solid var(--border); }
661
+ .circuit .tool-name {
662
+ font-family: var(--font-mono);
663
+ font-size: 12px;
664
+ color: var(--fg);
665
+ }
666
+ .circuit .tool-count {
667
+ font-family: var(--font-mono);
668
+ font-size: 12px;
669
+ color: var(--accent);
670
+ min-width: 24px;
671
+ text-align: end;
672
+ }
673
+
674
+ /* ── Sidebar: Files ── */
675
+ .circuit .file-list { list-style: none; }
676
+ .circuit .file-item {
677
+ display: flex;
678
+ justify-content: space-between;
679
+ align-items: baseline;
680
+ padding: 6px 0;
681
+ gap: 8px;
682
+ }
683
+ .circuit .file-item + .file-item { border-top: 1px solid var(--border); }
684
+ .circuit .file-name {
685
+ font-family: var(--font-mono);
686
+ font-size: 11px;
687
+ color: var(--fg);
688
+ overflow: hidden;
689
+ text-overflow: ellipsis;
690
+ white-space: nowrap;
691
+ min-width: 0;
692
+ }
693
+ .circuit .file-diff {
694
+ font-family: var(--font-mono);
695
+ font-size: 11px;
696
+ color: var(--accent);
697
+ white-space: nowrap;
698
+ flex-shrink: 0;
699
+ }
700
+
701
+ /* ── Sidebar: Skill pins ── */
702
+ .circuit .sidebar-pins {
703
+ display: flex;
704
+ flex-wrap: wrap;
705
+ gap: 4px;
706
+ }
707
+ .circuit .sidebar-pin {
708
+ font-family: var(--font-mono);
709
+ font-size: 10px;
710
+ color: var(--accent);
711
+ background: var(--accent-dim);
712
+ border: 1px solid rgba(163, 230, 53, 0.15);
713
+ border-radius: var(--radius-sm);
714
+ padding: 2px 8px;
715
+ display: inline-flex;
716
+ align-items: center;
717
+ gap: 4px;
718
+ }
719
+ .circuit .sidebar-pin::before {
720
+ content: '';
721
+ width: 2px;
722
+ height: 2px;
723
+ background: var(--accent);
724
+ border-radius: 50%;
725
+ flex-shrink: 0;
726
+ }
727
+
728
+ /* ── Screenshot ── */
729
+ .circuit .screenshot {
730
+ background: linear-gradient(135deg, #1a2a1a 0%, #0f1a0f 100%);
731
+ border: 1px solid var(--border);
732
+ border-radius: var(--radius);
733
+ height: 280px;
734
+ display: flex;
735
+ align-items: center;
736
+ justify-content: center;
737
+ margin-bottom: 40px;
738
+ position: relative;
739
+ overflow: hidden;
740
+ }
741
+ .circuit .screenshot::before {
742
+ content: '';
743
+ position: absolute;
744
+ inset: 0;
745
+ background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50h30v-30h40v60h30' fill='none' stroke='rgba(163,230,53,0.08)' stroke-width='1'/%3E%3Ccircle cx='30' cy='50' r='2' fill='rgba(163,230,53,0.12)'/%3E%3Ccircle cx='70' cy='20' r='2' fill='rgba(163,230,53,0.12)'/%3E%3C/svg%3E");
746
+ }
747
+ .circuit .screenshot-text {
748
+ font-family: var(--font-mono);
749
+ font-size: 13px;
750
+ color: var(--fg-muted);
751
+ opacity: 0.5;
752
+ z-index: 1;
753
+ }
754
+ .circuit .screenshot-chrome {
755
+ position: absolute;
756
+ top: 0;
757
+ left: 0;
758
+ right: 0;
759
+ height: 32px;
760
+ background: var(--bg-surface);
761
+ border-bottom: 1px solid var(--border);
762
+ display: flex;
763
+ align-items: center;
764
+ padding-inline-start: 12px;
765
+ gap: 6px;
766
+ z-index: 1;
767
+ }
768
+ .circuit .screenshot-dot {
769
+ width: 8px;
770
+ height: 8px;
771
+ border-radius: 50%;
772
+ background: var(--border);
773
+ }
774
+
775
+ /* ── Narrative ── */
776
+ .circuit .narrative { margin-bottom: 40px; }
777
+ .circuit .narrative p {
778
+ font-size: 15px;
779
+ color: var(--fg);
780
+ line-height: 1.75;
781
+ margin-bottom: 16px;
782
+ }
783
+ .circuit .narrative p:last-child { margin-bottom: 0; }
784
+
785
+ /* ── Skills pins ── */
786
+ .circuit .skill-pins {
787
+ display: flex;
788
+ flex-wrap: wrap;
789
+ gap: 6px;
790
+ margin-bottom: 40px;
791
+ }
792
+ .circuit .skill-pin {
793
+ font-family: var(--font-mono);
794
+ font-size: 11px;
795
+ color: var(--accent);
796
+ background: var(--accent-dim);
797
+ border: 1px solid rgba(163, 230, 53, 0.15);
798
+ border-radius: var(--radius-sm);
799
+ padding: 3px 10px;
800
+ display: inline-flex;
801
+ align-items: center;
802
+ gap: 6px;
803
+ }
804
+ .circuit .skill-pin::before {
805
+ content: '';
806
+ width: 3px;
807
+ height: 3px;
808
+ background: var(--accent);
809
+ border-radius: 50%;
810
+ flex-shrink: 0;
811
+ }
812
+
813
+ /* ── Key Decisions ── */
814
+ .circuit .decisions { margin-bottom: 40px; }
815
+ .circuit .decision-item {
816
+ background: var(--bg-surface);
817
+ border: 1px solid var(--border);
818
+ border-inline-start: 3px solid var(--accent);
819
+ border-radius: var(--radius);
820
+ padding: 16px 20px;
821
+ margin-bottom: 12px;
822
+ font-size: 14px;
823
+ color: var(--fg);
824
+ line-height: 1.6;
825
+ position: relative;
826
+ }
827
+ .circuit .decision-item::after {
828
+ content: '';
829
+ position: absolute;
830
+ top: 8px;
831
+ inset-inline-end: 8px;
832
+ width: 4px;
833
+ height: 4px;
834
+ background: var(--accent);
835
+ border-radius: 50%;
836
+ }
837
+ .circuit .decision-number {
838
+ font-family: var(--font-mono);
839
+ font-size: 11px;
840
+ color: var(--accent);
841
+ margin-inline-end: 8px;
842
+ }
843
+
844
+ /* ── Phase Bus Line ── */
845
+ .circuit .phase-bus {
846
+ margin-bottom: 40px;
847
+ position: relative;
848
+ padding-inline-start: 28px;
849
+ }
850
+ .circuit .phase-bus::before {
851
+ content: '';
852
+ position: absolute;
853
+ inset-inline-start: 8px;
854
+ top: 0;
855
+ bottom: 0;
856
+ width: 2px;
857
+ background: var(--trace-bright);
858
+ }
859
+ .circuit .phase-item {
860
+ position: relative;
861
+ padding-bottom: 28px;
862
+ }
863
+ .circuit .phase-item:last-child { padding-bottom: 0; }
864
+ .circuit .phase-item::before {
865
+ content: '';
866
+ position: absolute;
867
+ inset-inline-start: -20px;
868
+ top: 8px;
869
+ width: 16px;
870
+ height: 2px;
871
+ background: var(--accent);
872
+ }
873
+ .circuit .phase-item::after {
874
+ content: '';
875
+ position: absolute;
876
+ inset-inline-start: -24px;
877
+ top: 5px;
878
+ width: 8px;
879
+ height: 8px;
880
+ background: var(--accent);
881
+ border-radius: 50%;
882
+ border: 2px solid var(--bg);
883
+ }
884
+ .circuit .phase-label {
885
+ font-family: var(--font-display);
886
+ font-size: 15px;
887
+ font-weight: 600;
888
+ color: var(--fg);
889
+ margin-bottom: 4px;
890
+ }
891
+ .circuit .phase-label .phase-num {
892
+ font-family: var(--font-mono);
893
+ font-size: 11px;
894
+ color: var(--accent);
895
+ margin-inline-end: 8px;
896
+ }
897
+ .circuit .phase-dates {
898
+ font-family: var(--font-mono);
899
+ font-size: 11px;
900
+ color: var(--fg-muted);
901
+ margin-bottom: 4px;
902
+ }
903
+ .circuit .phase-desc {
904
+ font-size: 13px;
905
+ color: var(--fg-muted);
906
+ line-height: 1.55;
907
+ }
908
+
909
+ /* ── Source breakdown ── */
910
+ .circuit .source-section { margin-bottom: 40px; }
911
+ .circuit .source-bar-container { margin-top: 8px; }
912
+ .circuit .source-bar-label {
913
+ font-family: var(--font-mono);
914
+ font-size: 12px;
915
+ color: var(--fg-muted);
916
+ margin-bottom: 8px;
917
+ display: flex;
918
+ justify-content: space-between;
919
+ }
920
+ .circuit .source-bar {
921
+ height: 6px;
922
+ background: var(--border);
923
+ border-radius: 3px;
924
+ overflow: hidden;
925
+ display: flex;
926
+ }
927
+ .circuit .source-bar-fill {
928
+ height: 100%;
929
+ background: var(--accent);
930
+ transition: width 0.6s ease;
931
+ }
932
+ .circuit .source-bar-fill.cursor { background: var(--fg-muted); }
933
+
934
+ /* ── Featured sessions grid ── */
935
+ .circuit .featured-grid {
936
+ display: grid;
937
+ grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
938
+ gap: 16px;
939
+ margin-bottom: 40px;
940
+ }
941
+ .circuit .featured-card {
942
+ background: var(--bg-surface);
943
+ border: 1px solid var(--border);
944
+ border-radius: var(--radius);
945
+ padding: 20px;
946
+ position: relative;
947
+ transition: border-color 0.2s;
948
+ text-decoration: none;
949
+ color: inherit;
950
+ display: block;
951
+ }
952
+ .circuit .featured-card:hover { border-color: var(--border-accent); }
953
+ .circuit .featured-card::after {
954
+ content: '';
955
+ position: absolute;
956
+ top: 8px;
957
+ inset-inline-end: 8px;
958
+ width: 4px;
959
+ height: 4px;
960
+ background: var(--accent);
961
+ border-radius: 50%;
962
+ }
963
+ .circuit .featured-card-tag {
964
+ font-family: var(--font-mono);
965
+ font-size: 10px;
966
+ color: var(--accent);
967
+ text-transform: uppercase;
968
+ letter-spacing: 0.1em;
969
+ margin-bottom: 8px;
970
+ display: block;
971
+ }
972
+ .circuit .featured-card h4 {
973
+ font-family: var(--font-display);
974
+ font-size: 15px;
975
+ font-weight: 600;
976
+ color: var(--fg);
977
+ margin-bottom: 8px;
978
+ line-height: 1.3;
979
+ }
980
+ .circuit .featured-card:hover h4 { color: var(--accent); }
981
+ .circuit .featured-card-stats {
982
+ font-family: var(--font-mono);
983
+ font-size: 11px;
984
+ color: var(--fg-muted);
985
+ display: flex;
986
+ gap: 12px;
987
+ }
988
+ .circuit .featured-card-stats .val { color: var(--accent); }
989
+
990
+ /* ── Project Cards (portfolio) ── */
991
+ .circuit .projects-grid {
992
+ display: grid;
993
+ grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
994
+ gap: 24px;
995
+ }
996
+ .circuit .project-card {
997
+ background: var(--bg-surface);
998
+ border: 1px solid var(--border);
999
+ border-radius: var(--radius);
1000
+ padding: 28px;
1001
+ position: relative;
1002
+ transition: border-color 0.2s;
1003
+ }
1004
+ .circuit .project-card:hover { border-color: var(--border-accent); }
1005
+ .circuit .project-card::before,
1006
+ .circuit .project-card::after {
1007
+ content: '';
1008
+ position: absolute;
1009
+ width: var(--pad-size);
1010
+ height: var(--pad-size);
1011
+ background: var(--accent-dim);
1012
+ border-radius: 50%;
1013
+ }
1014
+ .circuit .project-card::before { bottom: -3px; inset-inline-start: -3px; }
1015
+ .circuit .project-card::after { bottom: -3px; inset-inline-end: -3px; }
1016
+ .circuit .project-card-header {
1017
+ display: flex;
1018
+ align-items: center;
1019
+ justify-content: space-between;
1020
+ margin-bottom: 12px;
1021
+ }
1022
+ .circuit .project-card h3 {
1023
+ font-family: var(--font-display);
1024
+ font-size: 20px;
1025
+ font-weight: 600;
1026
+ }
1027
+ .circuit .project-card h3 a {
1028
+ color: var(--fg);
1029
+ text-decoration: none;
1030
+ }
1031
+ .circuit .project-card h3 a:hover { color: var(--accent); }
1032
+ .circuit .project-card h3 a:focus-visible {
1033
+ outline: 2px solid var(--accent);
1034
+ outline-offset: 4px;
1035
+ border-radius: var(--radius-sm);
1036
+ }
1037
+ .circuit .project-card-narrative {
1038
+ font-size: 14px;
1039
+ color: var(--fg-muted);
1040
+ line-height: 1.65;
1041
+ margin-bottom: 16px;
1042
+ }
1043
+ .circuit .project-card-stats {
1044
+ font-family: var(--font-mono);
1045
+ font-size: 12px;
1046
+ color: var(--fg-muted);
1047
+ margin-bottom: 16px;
1048
+ display: flex;
1049
+ flex-wrap: wrap;
1050
+ gap: 4px 16px;
1051
+ }
1052
+ .circuit .project-card-stats .val { color: var(--accent); }
1053
+
1054
+ /* ── Session Table (project page) ── */
1055
+ .circuit .session-table-wrapper {
1056
+ overflow-x: auto;
1057
+ margin-bottom: 40px;
1058
+ -webkit-overflow-scrolling: touch;
1059
+ }
1060
+ .circuit .session-table {
1061
+ width: 100%;
1062
+ border-collapse: collapse;
1063
+ font-size: 13px;
1064
+ }
1065
+ .circuit .session-table th {
1066
+ font-family: var(--font-mono);
1067
+ font-size: 10px;
1068
+ font-weight: 600;
1069
+ color: var(--fg-muted);
1070
+ text-transform: uppercase;
1071
+ letter-spacing: 0.08em;
1072
+ text-align: start;
1073
+ padding: 8px 12px;
1074
+ border-bottom: 2px solid var(--border);
1075
+ white-space: nowrap;
1076
+ }
1077
+ .circuit .session-table td {
1078
+ padding: 10px 12px;
1079
+ border-bottom: 1px solid var(--border);
1080
+ vertical-align: middle;
1081
+ white-space: nowrap;
1082
+ }
1083
+ .circuit .session-table tr:hover td { background: var(--accent-dim); }
1084
+ .circuit .session-table .num {
1085
+ font-family: var(--font-mono);
1086
+ color: var(--accent);
1087
+ font-size: 12px;
1088
+ }
1089
+ .circuit .session-table .title-cell a {
1090
+ color: var(--fg);
1091
+ text-decoration: none;
1092
+ }
1093
+ .circuit .session-table .title-cell a:hover { color: var(--accent); }
1094
+ .circuit .session-table .title-cell a:focus-visible {
1095
+ outline: 2px solid var(--accent);
1096
+ outline-offset: 2px;
1097
+ border-radius: var(--radius-sm);
1098
+ }
1099
+ .circuit .session-table .mono {
1100
+ font-family: var(--font-mono);
1101
+ font-size: 12px;
1102
+ color: var(--fg-muted);
1103
+ }
1104
+
1105
+ /* ── Agent Dots ── */
1106
+ .circuit .agent-dots {
1107
+ display: flex;
1108
+ gap: 3px;
1109
+ }
1110
+ .circuit .agent-dot {
1111
+ width: 8px;
1112
+ height: 8px;
1113
+ border-radius: 50%;
1114
+ }
1115
+
1116
+ /* ── Featured card article pattern ── */
1117
+ .circuit .featured-card h4 a {
1118
+ color: var(--fg);
1119
+ text-decoration: none;
1120
+ }
1121
+ .circuit .featured-card h4 a:hover { color: var(--accent); }
1122
+ .circuit .featured-card h4 a:focus-visible {
1123
+ outline: 2px solid var(--accent);
1124
+ outline-offset: 2px;
1125
+ border-radius: var(--radius-sm);
1126
+ }
1127
+
1128
+ /* ── Source Overview (portfolio) ── */
1129
+ .circuit .source-overview {
1130
+ background: var(--bg-surface);
1131
+ border: 1px solid var(--border);
1132
+ border-radius: var(--radius);
1133
+ padding: 24px;
1134
+ margin-bottom: 40px;
1135
+ position: relative;
1136
+ }
1137
+ .circuit .source-overview::before {
1138
+ content: '';
1139
+ position: absolute;
1140
+ top: 0;
1141
+ inset-inline-start: 16px;
1142
+ width: 20px;
1143
+ height: 4px;
1144
+ background: var(--bg);
1145
+ border-bottom-left-radius: 2px;
1146
+ border-bottom-right-radius: 2px;
1147
+ }
1148
+ .circuit .source-overview h3 {
1149
+ font-family: var(--font-mono);
1150
+ font-size: 11px;
1151
+ font-weight: 600;
1152
+ color: var(--fg-muted);
1153
+ text-transform: uppercase;
1154
+ letter-spacing: 0.08em;
1155
+ margin-bottom: 16px;
1156
+ }
1157
+ .circuit .source-overview-row {
1158
+ display: flex;
1159
+ align-items: center;
1160
+ gap: 12px;
1161
+ margin-bottom: 10px;
1162
+ }
1163
+ .circuit .source-overview-row:last-child { margin-bottom: 0; }
1164
+ .circuit .source-overview-name {
1165
+ font-family: var(--font-mono);
1166
+ font-size: 13px;
1167
+ color: var(--fg);
1168
+ min-width: 80px;
1169
+ }
1170
+ .circuit .source-overview-bar {
1171
+ flex: 1;
1172
+ height: 6px;
1173
+ background: var(--border);
1174
+ border-radius: 3px;
1175
+ overflow: hidden;
1176
+ }
1177
+ .circuit .source-overview-fill {
1178
+ height: 100%;
1179
+ border-radius: 3px;
1180
+ transition: width 0.8s ease;
1181
+ }
1182
+ .circuit .source-overview-fill.claude { background: var(--accent); }
1183
+ .circuit .source-overview-fill.cursor-fill { background: var(--fg-muted); }
1184
+ .circuit .source-overview-pct {
1185
+ font-family: var(--font-mono);
1186
+ font-size: 12px;
1187
+ color: var(--accent);
1188
+ min-width: 36px;
1189
+ text-align: end;
1190
+ }
1191
+
1192
+ /* ── Aggregate Skills (portfolio) ── */
1193
+ .circuit .all-skills-section { padding-bottom: 40px; }
1194
+ .circuit .all-skills-grid {
1195
+ display: grid;
1196
+ grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
1197
+ gap: 8px;
1198
+ }
1199
+ .circuit .skill-ic {
1200
+ background: var(--bg-surface);
1201
+ border: 1px solid var(--border);
1202
+ border-radius: var(--radius);
1203
+ padding: 10px 14px;
1204
+ display: flex;
1205
+ align-items: center;
1206
+ gap: 10px;
1207
+ font-family: var(--font-mono);
1208
+ font-size: 12px;
1209
+ color: var(--fg);
1210
+ position: relative;
1211
+ transition: border-color 0.2s;
1212
+ }
1213
+ .circuit .skill-ic:hover { border-color: var(--border-accent); }
1214
+ .circuit .skill-ic::before {
1215
+ content: '';
1216
+ position: absolute;
1217
+ top: 50%;
1218
+ inset-inline-start: -1px;
1219
+ width: 3px;
1220
+ height: 10px;
1221
+ transform: translateY(-50%);
1222
+ background: var(--accent-dim);
1223
+ border-radius: 0 2px 2px 0;
1224
+ }
1225
+ .circuit .skill-ic::after {
1226
+ content: '';
1227
+ position: absolute;
1228
+ top: 50%;
1229
+ inset-inline-end: -1px;
1230
+ width: 3px;
1231
+ height: 10px;
1232
+ transform: translateY(-50%);
1233
+ background: var(--accent-dim);
1234
+ border-radius: 2px 0 0 2px;
1235
+ }
1236
+ .circuit .skill-ic-dot {
1237
+ width: 6px;
1238
+ height: 6px;
1239
+ background: var(--accent);
1240
+ border-radius: 50%;
1241
+ flex-shrink: 0;
1242
+ }
1243
+ .circuit .skill-ic-count {
1244
+ margin-inline-start: auto;
1245
+ color: var(--accent);
1246
+ font-size: 11px;
1247
+ }
1248
+
1249
+ /* ── Trace SVG Connector (portfolio) ── */
1250
+ .circuit .trace-svg-connector {
1251
+ width: 100%;
1252
+ height: 60px;
1253
+ overflow: visible;
1254
+ display: block;
1255
+ margin: 8px 0;
1256
+ }
1257
+ .circuit .trace-svg-connector path {
1258
+ fill: none;
1259
+ stroke: var(--accent);
1260
+ stroke-width: 1.5;
1261
+ opacity: 0.2;
1262
+ stroke-dasharray: 300;
1263
+ stroke-dashoffset: 300;
1264
+ transition: stroke-dashoffset 0.8s ease;
1265
+ }
1266
+ .circuit .trace-svg-connector.drawn path { stroke-dashoffset: 0; }
1267
+ .circuit .trace-svg-connector circle {
1268
+ fill: var(--accent);
1269
+ opacity: 0;
1270
+ transition: opacity 0.3s ease 0.6s;
1271
+ }
1272
+ .circuit .trace-svg-connector.drawn circle { opacity: 0.5; }
1273
+
1274
+ /* ── Portfolio source bar variant ── */
1275
+ .circuit.heyiam-portfolio .source-bar-container { margin-top: 16px; }
1276
+ .circuit.heyiam-portfolio .source-bar-label {
1277
+ font-size: 11px;
1278
+ margin-bottom: 6px;
1279
+ }
1280
+ .circuit.heyiam-portfolio .source-bar {
1281
+ height: 4px;
1282
+ border-radius: 2px;
1283
+ }
1284
+
1285
+ /* ── Portfolio section-header size ── */
1286
+ .circuit.heyiam-portfolio .section-header { font-size: 22px; }
1287
+
1288
+ /* ── Portfolio trace-connector height ── */
1289
+ .circuit.heyiam-portfolio .trace-connector { height: 40px; }
1290
+
1291
+ /* ── Counter animation ── */
1292
+ .circuit .counter { font-variant-numeric: tabular-nums; }
1293
+
1294
+ /* ── Skip link ── */
1295
+ .circuit .skip-link {
1296
+ position: absolute;
1297
+ inset-inline-start: -9999px;
1298
+ top: 0;
1299
+ background: var(--accent);
1300
+ color: var(--bg);
1301
+ padding: 8px 16px;
1302
+ font-family: var(--font-mono);
1303
+ font-size: 13px;
1304
+ z-index: 100;
1305
+ border-radius: var(--radius);
1306
+ }
1307
+ .circuit .skip-link:focus {
1308
+ inset-inline-start: 8px;
1309
+ top: 8px;
1310
+ }
1311
+
1312
+ /* ── Footer ── */
1313
+ .circuit .footer {
1314
+ border-top: 1px solid var(--border);
1315
+ padding: 32px 0;
1316
+ margin-top: 64px;
1317
+ text-align: center;
1318
+ }
1319
+ .circuit .footer p {
1320
+ font-family: var(--font-mono);
1321
+ font-size: 12px;
1322
+ color: var(--fg-muted);
1323
+ }
1324
+
1325
+ /* ── Clickable session cards ── */
1326
+ .circuit a.session-card {
1327
+ text-decoration: none;
1328
+ color: inherit;
1329
+ display: block;
1330
+ transition: transform 0.15s ease, box-shadow 0.15s ease;
1331
+ }
1332
+ .circuit a.session-card:hover { transform: translateY(-2px); }
1333
+
1334
+ /* ── Animations ── */
1335
+ .circuit .fade-in {
1336
+ opacity: 0;
1337
+ transform: translateY(12px);
1338
+ transition: opacity 0.5s ease, transform 0.5s ease;
1339
+ }
1340
+ .circuit .fade-in.visible {
1341
+ opacity: 1;
1342
+ transform: translateY(0);
1343
+ }
1344
+
1345
+ @media (prefers-reduced-motion: reduce) {
1346
+ .circuit .fade-in { opacity: 1; transform: none; transition: none; }
1347
+ .circuit .source-bar-fill { transition: none; }
1348
+ .circuit .source-overview-fill { transition: none; }
1349
+ .circuit .stat-chip-value { transition: none; }
1350
+ .circuit .trace-connector { background: var(--trace-bright); }
1351
+ .circuit .trace-svg-connector path { transition: none; }
1352
+ .circuit .trace-svg-connector circle { transition: none; }
1353
+ }
1354
+
1355
+ /* ── Responsive ── */
1356
+ @media (max-width: 768px) {
1357
+ .circuit .layout-two-col {
1358
+ grid-template-columns: 1fr;
1359
+ gap: 0;
1360
+ }
1361
+ .circuit .sidebar {
1362
+ position: static;
1363
+ display: grid;
1364
+ grid-template-columns: 1fr 1fr;
1365
+ gap: 16px;
1366
+ padding-top: 32px;
1367
+ border-top: 1px solid var(--border);
1368
+ margin-top: 40px;
1369
+ }
1370
+ .circuit .sidebar-section:last-child { grid-column: 1 / -1; }
1371
+ .circuit .hero { padding: 48px 0 32px; }
1372
+ .circuit .hero-profile { flex-direction: column; }
1373
+ .circuit .hero-photo { width: 80px; height: 80px; }
1374
+ .circuit .hero-contact { font-size: 12px; }
1375
+ .circuit .stat-chips { gap: 12px; }
1376
+ .circuit .stat-chip { min-width: 90px; padding: 10px 14px; flex: 1 1 calc(50% - 12px); }
1377
+ .circuit .stat-chip-value { font-size: 16px; }
1378
+ .circuit.heyiam-portfolio .stat-chip { min-width: 120px; padding: 12px 16px; }
1379
+ .circuit.heyiam-portfolio .stat-chip-value { font-size: 22px; }
1380
+ .circuit .featured-grid { grid-template-columns: 1fr; }
1381
+ .circuit .phase-bus { padding-inline-start: 24px; }
1382
+ .circuit .trace-connector { margin-inline-start: 24px; }
1383
+ .circuit .screenshot { height: 180px; }
1384
+ .circuit .project-card { padding: 20px; }
1385
+ .circuit .project-card-header { flex-direction: column; gap: 8px; }
1386
+ .circuit .footer { margin-top: 40px; }
1387
+ /* Session-specific responsive */
1388
+ .circuit.heyiam-session .hero { padding: 32px 0 24px; }
1389
+ .circuit.heyiam-session .stat-chips { gap: 8px; }
1390
+ .circuit.heyiam-session .stat-chip { min-width: 70px; padding: 8px 12px; flex: 1 1 calc(33% - 8px); }
1391
+ .circuit.heyiam-session .stat-chip-value { font-size: 15px; }
1392
+ /* Project-specific responsive */
1393
+ .circuit.heyiam-project .hero { padding: 32px 0 24px; }
1394
+ .circuit.heyiam-project .stat-chips { gap: 8px; }
1395
+ .circuit.heyiam-project .stat-chip { min-width: 90px; padding: 10px 14px; flex: 1 1 calc(50% - 8px); }
1396
+ .circuit.heyiam-project .stat-chip-value { font-size: 16px; }
1397
+ }
1398
+
1399
+ @media (max-width: 480px) {
1400
+ .circuit .stat-chip { flex: 1 1 100%; }
1401
+ .circuit .hero-links { flex-direction: column; gap: 8px; }
1402
+ .circuit .sidebar { grid-template-columns: 1fr; }
1403
+ .circuit .hero-meta { flex-direction: column; gap: 4px; }
1404
+ .circuit.heyiam-session .stat-chip { flex: 1 1 calc(50% - 8px); }
1405
+ }
1406
+
1407
+
1408
+ /* Live-edit empty field hiding */
1409
+ [data-portfolio-empty="true"] { display: none; }