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,1184 @@
1
+ /* ── Aurora template styles ──
2
+ * Dark theme with teal/green/purple aurora gradient accents.
3
+ * Space Grotesk display, Inter body, JetBrains Mono code.
4
+ */
5
+
6
+ :root {
7
+ --aurora-bg: #020617;
8
+ --aurora-surface: #0f172a;
9
+ --aurora-surface-hover: #1e293b;
10
+ --aurora-accent: #2dd4bf;
11
+ --aurora-accent-green: #4ade80;
12
+ --aurora-accent-purple: #a78bfa;
13
+ --aurora-accent-dim: rgba(45, 212, 191, 0.15);
14
+ --aurora-accent-glow: rgba(45, 212, 191, 0.25);
15
+ --aurora-text: #f1f5f9;
16
+ --aurora-text-secondary: #94a3b8;
17
+ --aurora-text-tertiary: #64748b;
18
+ --aurora-border: #1e293b;
19
+ --aurora-border-accent: rgba(45, 212, 191, 0.2);
20
+ --aurora-font-display: 'Space Grotesk', system-ui, sans-serif;
21
+ --aurora-font-body: 'Inter', system-ui, sans-serif;
22
+ --aurora-font-mono: 'JetBrains Mono', monospace;
23
+ --aurora-radius: 8px;
24
+ --aurora-radius-lg: 12px;
25
+ --aurora-duration: 300ms;
26
+ --aurora-ease: cubic-bezier(0.16, 1, 0.3, 1);
27
+
28
+ /* Agent colors */
29
+ --agent-frontend: #7c3aed;
30
+ --agent-backend: #0891b2;
31
+ --agent-qa: #059669;
32
+ --agent-security: #475569;
33
+ --agent-reviewer: #e11d48;
34
+ --agent-ux: #d97706;
35
+ }
36
+ body { background: var(--aurora-bg); color: var(--aurora-text); }
37
+
38
+
39
+ /* ── Dark wrapper ── */
40
+ .aurora {
41
+ background: var(--aurora-bg);
42
+ color: var(--aurora-text);
43
+ font-family: var(--aurora-font-body);
44
+ line-height: 1.6;
45
+ -webkit-font-smoothing: antialiased;
46
+ -moz-osx-font-smoothing: grayscale;
47
+ }
48
+ .aurora a {
49
+ color: var(--aurora-accent);
50
+ text-decoration: none;
51
+ transition: color var(--aurora-duration) ease;
52
+ }
53
+ .aurora a:hover { color: var(--aurora-accent-green); }
54
+ .aurora a:visited { color: var(--aurora-accent); }
55
+ .aurora a:focus-visible {
56
+ outline: 2px solid var(--aurora-accent);
57
+ outline-offset: 2px;
58
+ border-radius: 2px;
59
+ }
60
+
61
+ /* ── Aurora Gradient Header ── */
62
+ .aurora .aurora-header {
63
+ position: relative;
64
+ overflow: hidden;
65
+ padding: 4rem 2rem 3rem;
66
+ }
67
+ .aurora .aurora-header::before {
68
+ content: '';
69
+ position: absolute;
70
+ inset: 0;
71
+ background: linear-gradient(
72
+ 135deg,
73
+ rgba(45, 212, 191, 0.08) 0%,
74
+ rgba(74, 222, 128, 0.06) 30%,
75
+ rgba(167, 139, 250, 0.05) 60%,
76
+ rgba(45, 212, 191, 0.04) 100%
77
+ );
78
+ background-size: 200% 200%;
79
+ animation: auroraShift 60s ease-in-out infinite;
80
+ pointer-events: none;
81
+ }
82
+ .aurora .aurora-header::after {
83
+ content: '';
84
+ position: absolute;
85
+ inset: 0;
86
+ background: linear-gradient(to bottom, transparent 60%, var(--aurora-bg) 100%);
87
+ pointer-events: none;
88
+ }
89
+
90
+ @keyframes auroraShift {
91
+ 0%, 100% { background-position: 0% 50%; opacity: 1; }
92
+ 25% { background-position: 50% 0%; opacity: 0.7; }
93
+ 50% { background-position: 100% 50%; opacity: 1; }
94
+ 75% { background-position: 50% 100%; opacity: 0.8; }
95
+ }
96
+
97
+ @keyframes auroraGlow {
98
+ 0%, 100% { background-position: 0% 50%; }
99
+ 33% { background-position: 100% 0%; }
100
+ 66% { background-position: 50% 100%; }
101
+ }
102
+
103
+ @keyframes pulseDot {
104
+ 0%, 100% { box-shadow: 0 0 12px rgba(45, 212, 191, 0.4); }
105
+ 50% { box-shadow: 0 0 20px rgba(45, 212, 191, 0.6); }
106
+ }
107
+
108
+ @media (prefers-reduced-motion: reduce) {
109
+ .aurora .aurora-header::before { animation: none; }
110
+ .aurora .hero-photo-wrap::before { animation: none; }
111
+ .aurora .fade-up { opacity: 1 !important; transform: none !important; }
112
+ .aurora .aurora-stat-number { animation: none !important; }
113
+ .aurora .aurora-beat-dot { animation: none !important; }
114
+ .aurora .aurora-phase-dot { animation: none !important; }
115
+ .aurora .aurora-chart-bar-fill { transition: none; }
116
+ .aurora .aurora-agent-bar-fill { transition: none; }
117
+ }
118
+
119
+ /* ── Hero (Portfolio) ── */
120
+ .aurora .aurora-hero {
121
+ max-width: 960px;
122
+ margin: 0 auto;
123
+ position: relative;
124
+ z-index: 2;
125
+ display: flex;
126
+ align-items: flex-start;
127
+ gap: 2.5rem;
128
+ }
129
+ .aurora .hero-photo-wrap {
130
+ position: relative;
131
+ flex-shrink: 0;
132
+ }
133
+ .aurora .hero-photo-wrap::before {
134
+ content: '';
135
+ position: absolute;
136
+ inset: -4px;
137
+ border-radius: 12px;
138
+ background: linear-gradient(135deg, #2dd4bf, #4ade80, #a78bfa, #2dd4bf);
139
+ background-size: 300% 300%;
140
+ animation: auroraGlow 8s ease infinite;
141
+ z-index: 0;
142
+ opacity: 0.7;
143
+ filter: blur(8px);
144
+ }
145
+ .aurora .hero-photo {
146
+ position: relative;
147
+ z-index: 1;
148
+ width: 250px;
149
+ height: 320px;
150
+ border-radius: 8px;
151
+ object-fit: cover;
152
+ object-position: center 10%;
153
+ border: 2px solid rgba(45, 212, 191, 0.3);
154
+ display: block;
155
+ }
156
+ .aurora .aurora-hero-content {
157
+ flex: 1;
158
+ min-width: 0;
159
+ }
160
+ .aurora .aurora-hero h1 {
161
+ font-family: var(--aurora-font-display);
162
+ font-size: 3rem;
163
+ font-weight: 700;
164
+ letter-spacing: -0.03em;
165
+ color: var(--aurora-text);
166
+ text-shadow: 0 0 40px rgba(45, 212, 191, 0.2);
167
+ margin-bottom: 0.25rem;
168
+ }
169
+ .aurora .aurora-hero-location {
170
+ display: flex;
171
+ align-items: center;
172
+ gap: 0.5rem;
173
+ margin-bottom: 1rem;
174
+ font-size: 0.875rem;
175
+ color: var(--aurora-text-tertiary);
176
+ }
177
+ .aurora .aurora-hero-location svg {
178
+ width: 14px;
179
+ height: 14px;
180
+ fill: none;
181
+ stroke: currentColor;
182
+ stroke-width: 2;
183
+ }
184
+ .aurora .aurora-hero-bio {
185
+ font-size: 1.125rem;
186
+ color: var(--aurora-text-secondary);
187
+ line-height: 1.7;
188
+ margin-bottom: 1.25rem;
189
+ }
190
+ .aurora .aurora-hero-links {
191
+ display: flex;
192
+ flex-wrap: wrap;
193
+ gap: 1rem;
194
+ list-style: none;
195
+ }
196
+ .aurora .aurora-hero-links a {
197
+ display: inline-flex;
198
+ align-items: center;
199
+ gap: 0.375rem;
200
+ font-family: var(--aurora-font-mono);
201
+ font-size: 0.8125rem;
202
+ color: var(--aurora-text-secondary);
203
+ transition: color var(--aurora-duration) ease;
204
+ }
205
+ .aurora .aurora-hero-links a:hover { color: var(--aurora-accent); }
206
+ .aurora .aurora-hero-links svg { flex-shrink: 0; }
207
+
208
+ /* ── Hero Stats (Portfolio) ── */
209
+ .aurora .aurora-hero-stats {
210
+ max-width: 960px;
211
+ margin: 2.5rem auto 0;
212
+ padding: 0 2rem;
213
+ position: relative;
214
+ z-index: 2;
215
+ }
216
+ .aurora .aurora-hero-stats-inner {
217
+ display: flex;
218
+ gap: 2rem;
219
+ font-family: var(--aurora-font-mono);
220
+ font-size: 0.8125rem;
221
+ color: var(--aurora-text-tertiary);
222
+ }
223
+ .aurora .aurora-hero-stats-inner span { white-space: nowrap; }
224
+ .aurora .aurora-hero-stats-inner strong { color: var(--aurora-accent); font-weight: 500; }
225
+
226
+ /* ── Stats Grid ── */
227
+ .aurora .aurora-stats {
228
+ max-width: 960px;
229
+ margin: 3rem auto;
230
+ padding: 0 2rem;
231
+ display: grid;
232
+ grid-template-columns: repeat(4, 1fr);
233
+ gap: 1rem;
234
+ }
235
+ .aurora .aurora-stats--project {
236
+ grid-template-columns: repeat(6, 1fr);
237
+ margin-bottom: 2rem;
238
+ gap: 0.75rem;
239
+ }
240
+ .aurora .aurora-stats--project .aurora-stat {
241
+ padding: 1rem;
242
+ border-radius: var(--aurora-radius);
243
+ }
244
+ .aurora .aurora-stats--project .aurora-stat-number {
245
+ font-size: 1.375rem;
246
+ }
247
+ .aurora .aurora-stats--project .aurora-stat-label {
248
+ font-size: 0.6875rem;
249
+ margin-top: 0.125rem;
250
+ }
251
+ .aurora .aurora-stat {
252
+ background: var(--aurora-surface);
253
+ border: 1px solid var(--aurora-border);
254
+ border-radius: var(--aurora-radius-lg);
255
+ padding: 1.5rem;
256
+ text-align: center;
257
+ box-shadow: 0 0 20px rgba(45, 212, 191, 0.05);
258
+ transition: box-shadow var(--aurora-duration) ease, border-color var(--aurora-duration) ease;
259
+ }
260
+ .aurora .aurora-stat:hover {
261
+ border-color: var(--aurora-border-accent);
262
+ box-shadow: 0 0 30px rgba(45, 212, 191, 0.1);
263
+ }
264
+ .aurora .aurora-stat-number {
265
+ font-family: var(--aurora-font-display);
266
+ font-size: 2rem;
267
+ font-weight: 700;
268
+ color: var(--aurora-accent);
269
+ text-shadow: 0 0 20px rgba(45, 212, 191, 0.3);
270
+ }
271
+ .aurora .aurora-stat-label {
272
+ font-size: 0.8125rem;
273
+ color: var(--aurora-text-tertiary);
274
+ margin-top: 0.25rem;
275
+ text-transform: uppercase;
276
+ letter-spacing: 0.05em;
277
+ }
278
+
279
+ /* ── Leverage Section ── */
280
+ .aurora .aurora-leverage-section {
281
+ text-align: center;
282
+ padding: 1.5rem 1rem;
283
+ }
284
+ .aurora .aurora-leverage-section__multi {
285
+ font-family: var(--aurora-font-display);
286
+ font-size: 2rem;
287
+ font-weight: 700;
288
+ color: var(--aurora-accent);
289
+ text-shadow: 0 0 20px rgba(45, 212, 191, 0.3);
290
+ line-height: 1;
291
+ }
292
+ .aurora .aurora-leverage-section__context {
293
+ font-size: 0.875rem;
294
+ color: var(--aurora-text-tertiary);
295
+ margin-block-start: 0.375rem;
296
+ }
297
+ .aurora .aurora-leverage-section__context strong {
298
+ color: var(--aurora-accent);
299
+ }
300
+ .aurora .aurora-leverage-section__bar {
301
+ height: 2px;
302
+ border-radius: 1px;
303
+ background: rgba(255,255,255,0.06);
304
+ display: flex;
305
+ overflow: hidden;
306
+ max-width: 300px;
307
+ margin: 0.75rem auto 0;
308
+ }
309
+ .aurora .aurora-leverage-section__bar-human {
310
+ height: 100%;
311
+ background: rgba(255,255,255,0.25);
312
+ border-radius: 1px 0 0 1px;
313
+ }
314
+ .aurora .aurora-leverage-section__bar-agent {
315
+ height: 100%;
316
+ background: var(--aurora-accent);
317
+ border-radius: 0 1px 1px 0;
318
+ }
319
+
320
+ /* ── Section ── */
321
+ .aurora .aurora-section {
322
+ max-width: 960px;
323
+ margin: 0 auto;
324
+ padding: 2rem 2rem 0;
325
+ }
326
+ .aurora .aurora-section--content {
327
+ margin-bottom: 3rem;
328
+ padding: 0;
329
+ }
330
+ .aurora .aurora-section-title {
331
+ font-family: var(--aurora-font-display);
332
+ font-size: 1.5rem;
333
+ font-weight: 600;
334
+ color: var(--aurora-text);
335
+ margin-bottom: 1.5rem;
336
+ text-shadow: 0 0 20px rgba(45, 212, 191, 0.15);
337
+ }
338
+ .aurora .aurora-section-title--sm,
339
+ .heyiam-project.aurora .aurora-section-title {
340
+ font-size: 1.25rem;
341
+ margin-bottom: 1.25rem;
342
+ }
343
+
344
+ /* ── Project Cards (Portfolio) ── */
345
+ .aurora .aurora-projects {
346
+ display: grid;
347
+ grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
348
+ gap: 1.5rem;
349
+ }
350
+ .aurora .aurora-card {
351
+ background: var(--aurora-surface);
352
+ border: 1px solid var(--aurora-border);
353
+ border-radius: var(--aurora-radius-lg);
354
+ padding: 2rem;
355
+ transition: border-color var(--aurora-duration) ease, box-shadow var(--aurora-duration) ease, transform var(--aurora-duration) ease;
356
+ text-decoration: none;
357
+ color: inherit;
358
+ display: block;
359
+ }
360
+ .aurora .aurora-card:hover {
361
+ border-color: var(--aurora-border-accent);
362
+ box-shadow: 0 4px 24px rgba(45, 212, 191, 0.08);
363
+ transform: translateY(-2px);
364
+ }
365
+ .aurora .aurora-card-header {
366
+ display: flex;
367
+ justify-content: space-between;
368
+ align-items: flex-start;
369
+ margin-bottom: 0.75rem;
370
+ }
371
+ .aurora .aurora-card h3 {
372
+ font-family: var(--aurora-font-display);
373
+ font-size: 1.25rem;
374
+ font-weight: 600;
375
+ color: var(--aurora-text);
376
+ }
377
+ .aurora .aurora-card-narrative {
378
+ font-size: 0.9375rem;
379
+ color: var(--aurora-text-secondary);
380
+ line-height: 1.65;
381
+ margin-bottom: 1.25rem;
382
+ }
383
+ .aurora .aurora-card-stats {
384
+ display: flex;
385
+ gap: 1.5rem;
386
+ margin-bottom: 1.25rem;
387
+ font-size: 0.8125rem;
388
+ color: var(--aurora-text-tertiary);
389
+ font-family: var(--aurora-font-mono);
390
+ }
391
+ .aurora .aurora-card-stats span { white-space: nowrap; }
392
+
393
+ /* ── Tags ── */
394
+ .aurora .aurora-tags {
395
+ display: flex;
396
+ flex-wrap: wrap;
397
+ gap: 0.5rem;
398
+ }
399
+ .aurora .aurora-tag {
400
+ font-size: 0.75rem;
401
+ font-family: var(--aurora-font-mono);
402
+ color: var(--aurora-accent);
403
+ background: var(--aurora-accent-dim);
404
+ border: 1px solid rgba(45, 212, 191, 0.15);
405
+ padding: 0.25rem 0.625rem;
406
+ border-radius: 9999px;
407
+ white-space: nowrap;
408
+ }
409
+
410
+ /* ── Breadcrumb ── */
411
+ .aurora .aurora-breadcrumb {
412
+ max-width: 960px;
413
+ margin: 0 auto 1.5rem;
414
+ position: relative;
415
+ z-index: 2;
416
+ font-size: 0.8125rem;
417
+ font-family: var(--aurora-font-mono);
418
+ color: var(--aurora-text-tertiary);
419
+ }
420
+ .aurora .aurora-breadcrumb a { color: var(--aurora-text-tertiary); }
421
+ .aurora .aurora-breadcrumb a:hover { color: var(--aurora-accent); }
422
+ .aurora .aurora-breadcrumb a:visited { color: var(--aurora-text-tertiary); }
423
+ .aurora .aurora-breadcrumb-sep { margin: 0 0.375rem; }
424
+
425
+ /* ── Project Hero ── */
426
+ .aurora .aurora-project-hero {
427
+ max-width: 960px;
428
+ margin: 0 auto;
429
+ position: relative;
430
+ z-index: 2;
431
+ }
432
+ .aurora .aurora-project-hero h1 {
433
+ font-family: var(--aurora-font-display);
434
+ font-size: 2.5rem;
435
+ font-weight: 700;
436
+ letter-spacing: -0.03em;
437
+ color: var(--aurora-text);
438
+ text-shadow: 0 0 40px rgba(45, 212, 191, 0.2);
439
+ margin-bottom: 0.5rem;
440
+ }
441
+ .aurora .aurora-project-links {
442
+ display: flex;
443
+ gap: 1.25rem;
444
+ font-size: 0.875rem;
445
+ margin-bottom: 0.5rem;
446
+ }
447
+ .aurora .aurora-project-links a {
448
+ display: flex;
449
+ align-items: center;
450
+ gap: 0.375rem;
451
+ color: var(--aurora-text-secondary);
452
+ }
453
+ .aurora .aurora-project-links svg {
454
+ width: 14px;
455
+ height: 14px;
456
+ fill: none;
457
+ stroke: currentColor;
458
+ stroke-width: 2;
459
+ }
460
+
461
+ /* ── Screenshot ── */
462
+ .aurora .aurora-screenshot {
463
+ max-width: 960px;
464
+ margin: 2rem auto;
465
+ padding: 0 2rem;
466
+ }
467
+ .aurora .aurora-screenshot-frame {
468
+ background: var(--aurora-surface);
469
+ border: 1px solid var(--aurora-border);
470
+ border-radius: var(--aurora-radius-lg);
471
+ overflow: hidden;
472
+ }
473
+ .aurora .aurora-screenshot-chrome {
474
+ display: flex;
475
+ align-items: center;
476
+ gap: 6px;
477
+ padding: 0.75rem 1rem;
478
+ background: #0f172a;
479
+ border-bottom: 1px solid var(--aurora-border);
480
+ }
481
+ .aurora .aurora-screenshot-dot {
482
+ width: 10px;
483
+ height: 10px;
484
+ border-radius: 50%;
485
+ background: var(--aurora-text-tertiary);
486
+ opacity: 0.4;
487
+ }
488
+ .aurora .aurora-screenshot-dot:nth-child(1) { background: #f87171; opacity: 0.7; }
489
+ .aurora .aurora-screenshot-dot:nth-child(2) { background: #fbbf24; opacity: 0.7; }
490
+ .aurora .aurora-screenshot-dot:nth-child(3) { background: #4ade80; opacity: 0.7; }
491
+ .aurora .aurora-screenshot img {
492
+ width: 100%;
493
+ display: block;
494
+ }
495
+
496
+ /* ── Narrative ── */
497
+ .aurora .aurora-narrative p {
498
+ font-size: 0.9375rem;
499
+ color: var(--aurora-text-secondary);
500
+ line-height: 1.75;
501
+ margin-bottom: 1rem;
502
+ }
503
+ .aurora .aurora-narrative p:last-child { margin-bottom: 0; }
504
+
505
+ /* ── Content Container ── */
506
+ .aurora .aurora-content {
507
+ max-width: 960px;
508
+ margin: 0 auto;
509
+ padding: 0 2rem;
510
+ }
511
+
512
+ /* ── Work Timeline Chart ── */
513
+ .aurora .aurora-chart {
514
+ background: var(--aurora-surface);
515
+ border: 1px solid var(--aurora-border);
516
+ border-radius: var(--aurora-radius-lg);
517
+ padding: 1.5rem;
518
+ }
519
+ .aurora .aurora-chart-bars {
520
+ display: flex;
521
+ flex-direction: column;
522
+ gap: 0.625rem;
523
+ }
524
+ .aurora .aurora-chart-row {
525
+ display: grid;
526
+ grid-template-columns: 200px 1fr 60px;
527
+ align-items: center;
528
+ gap: 1rem;
529
+ font-size: 0.8125rem;
530
+ }
531
+ .aurora .aurora-chart-label {
532
+ color: var(--aurora-text-secondary);
533
+ white-space: nowrap;
534
+ overflow: hidden;
535
+ text-overflow: ellipsis;
536
+ }
537
+ .aurora .aurora-chart-label a { color: var(--aurora-text-secondary); }
538
+ .aurora .aurora-chart-label a:hover { color: var(--aurora-accent); }
539
+ .aurora .aurora-chart-label a:visited { color: var(--aurora-text-secondary); }
540
+ .aurora .aurora-chart-bar-track {
541
+ height: 20px;
542
+ border-radius: 4px;
543
+ background: rgba(45, 212, 191, 0.06);
544
+ overflow: hidden;
545
+ position: relative;
546
+ }
547
+ .aurora .aurora-chart-bar-fill {
548
+ height: 100%;
549
+ border-radius: 4px;
550
+ background: linear-gradient(90deg, var(--aurora-accent), var(--aurora-accent-green));
551
+ transition: width 1s var(--aurora-ease);
552
+ position: relative;
553
+ }
554
+ .aurora .aurora-chart-bar-fill--cursor {
555
+ background: linear-gradient(90deg, var(--aurora-accent-purple), #c084fc);
556
+ }
557
+ .aurora .aurora-chart-bar-agents {
558
+ position: absolute;
559
+ top: 50%;
560
+ right: 6px;
561
+ transform: translateY(-50%);
562
+ display: flex;
563
+ gap: 2px;
564
+ }
565
+ .aurora .aurora-chart-agent-dot {
566
+ width: 6px;
567
+ height: 6px;
568
+ border-radius: 50%;
569
+ }
570
+ .aurora .aurora-chart-value {
571
+ font-family: var(--aurora-font-mono);
572
+ font-size: 0.75rem;
573
+ color: var(--aurora-text-tertiary);
574
+ text-align: end;
575
+ }
576
+
577
+ /* ── Phases Timeline ── */
578
+ .aurora .aurora-phases {
579
+ position: relative;
580
+ padding-inline-start: 2rem;
581
+ }
582
+ .aurora .aurora-phases::before {
583
+ content: '';
584
+ position: absolute;
585
+ left: 7px;
586
+ top: 4px;
587
+ bottom: 4px;
588
+ width: 2px;
589
+ background: linear-gradient(to bottom, var(--aurora-accent), var(--aurora-accent-green), var(--aurora-accent-purple));
590
+ border-radius: 1px;
591
+ }
592
+ .aurora .aurora-phase {
593
+ position: relative;
594
+ margin-bottom: 1.5rem;
595
+ }
596
+ .aurora .aurora-phase:last-child { margin-bottom: 0; }
597
+ .aurora .aurora-phase-dot {
598
+ position: absolute;
599
+ left: -2rem;
600
+ top: 2px;
601
+ width: 16px;
602
+ height: 16px;
603
+ border-radius: 50%;
604
+ background: linear-gradient(135deg, var(--aurora-accent), var(--aurora-accent-green));
605
+ box-shadow: 0 0 12px rgba(45, 212, 191, 0.4);
606
+ animation: pulseDot 3s ease-in-out infinite;
607
+ }
608
+ .aurora .aurora-phase:nth-child(2) .aurora-phase-dot { animation-delay: 0.75s; }
609
+ .aurora .aurora-phase:nth-child(3) .aurora-phase-dot { animation-delay: 1.5s; }
610
+ .aurora .aurora-phase:nth-child(4) .aurora-phase-dot { animation-delay: 2.25s; }
611
+ .aurora .aurora-phase-title {
612
+ font-family: var(--aurora-font-display);
613
+ font-size: 0.9375rem;
614
+ font-weight: 600;
615
+ color: var(--aurora-text);
616
+ }
617
+ .aurora .aurora-phase-dates {
618
+ font-family: var(--aurora-font-mono);
619
+ font-size: 0.75rem;
620
+ color: var(--aurora-text-tertiary);
621
+ margin-top: 0.125rem;
622
+ }
623
+ .aurora .aurora-phase-desc {
624
+ font-size: 0.875rem;
625
+ color: var(--aurora-text-secondary);
626
+ margin-top: 0.25rem;
627
+ }
628
+
629
+ /* ── Key Decisions ── */
630
+ .aurora .aurora-decisions {
631
+ list-style: none;
632
+ display: flex;
633
+ flex-direction: column;
634
+ gap: 0.75rem;
635
+ }
636
+ .aurora .aurora-decision {
637
+ display: flex;
638
+ gap: 0.75rem;
639
+ align-items: flex-start;
640
+ padding: 1rem;
641
+ background: var(--aurora-surface);
642
+ border: 1px solid var(--aurora-border);
643
+ border-radius: var(--aurora-radius);
644
+ }
645
+ .aurora .aurora-decision-num {
646
+ font-family: var(--aurora-font-display);
647
+ font-weight: 700;
648
+ font-size: 0.875rem;
649
+ color: var(--aurora-accent);
650
+ min-width: 1.5rem;
651
+ text-shadow: 0 0 10px rgba(45, 212, 191, 0.3);
652
+ }
653
+ .aurora .aurora-decision-text {
654
+ font-size: 0.9375rem;
655
+ color: var(--aurora-text-secondary);
656
+ line-height: 1.5;
657
+ }
658
+
659
+ /* ── Source Breakdown ── */
660
+ .aurora .aurora-source-bar {
661
+ display: flex;
662
+ align-items: center;
663
+ gap: 0.75rem;
664
+ }
665
+ .aurora .aurora-source-track {
666
+ flex: 1;
667
+ height: 8px;
668
+ border-radius: 4px;
669
+ background: var(--aurora-border);
670
+ overflow: hidden;
671
+ display: flex;
672
+ }
673
+ .aurora .aurora-source-fill-claude {
674
+ background: linear-gradient(90deg, var(--aurora-accent), var(--aurora-accent-green));
675
+ height: 100%;
676
+ }
677
+ .aurora .aurora-source-fill-cursor {
678
+ background: var(--aurora-accent-purple);
679
+ height: 100%;
680
+ }
681
+ .aurora .aurora-source-labels {
682
+ display: flex;
683
+ gap: 1rem;
684
+ font-size: 0.75rem;
685
+ color: var(--aurora-text-tertiary);
686
+ font-family: var(--aurora-font-mono);
687
+ white-space: nowrap;
688
+ }
689
+ .aurora .aurora-source-dot {
690
+ display: inline-block;
691
+ width: 8px;
692
+ height: 8px;
693
+ border-radius: 50%;
694
+ margin-inline-end: 0.25rem;
695
+ vertical-align: middle;
696
+ }
697
+ .aurora .aurora-source-dot--claude { background: var(--aurora-accent); }
698
+ .aurora .aurora-source-dot--cursor { background: var(--aurora-accent-purple); }
699
+
700
+ /* ── Session Cards (Project) ── */
701
+ .aurora .aurora-sessions {
702
+ display: grid;
703
+ grid-template-columns: repeat(2, 1fr);
704
+ gap: 1rem;
705
+ }
706
+ .aurora .aurora-session-card {
707
+ background: var(--aurora-surface);
708
+ border: 1px solid var(--aurora-border);
709
+ border-radius: var(--aurora-radius);
710
+ padding: 1.25rem;
711
+ transition: border-color var(--aurora-duration) ease, box-shadow var(--aurora-duration) ease;
712
+ text-decoration: none;
713
+ color: inherit;
714
+ display: block;
715
+ }
716
+ .aurora .aurora-session-card:hover {
717
+ border-color: var(--aurora-border-accent);
718
+ box-shadow: 0 4px 20px rgba(45, 212, 191, 0.08);
719
+ transform: translateY(-2px);
720
+ }
721
+ .aurora .aurora-session-card:visited { color: inherit; }
722
+ .aurora .aurora-session-card h3 {
723
+ font-family: var(--aurora-font-display);
724
+ font-size: 0.9375rem;
725
+ font-weight: 600;
726
+ color: var(--aurora-text);
727
+ margin-bottom: 0.5rem;
728
+ }
729
+ .aurora .aurora-session-card h3 a:visited { color: var(--aurora-text); }
730
+ .aurora .aurora-session-meta {
731
+ display: flex;
732
+ gap: 0.75rem;
733
+ font-size: 0.75rem;
734
+ font-family: var(--aurora-font-mono);
735
+ color: var(--aurora-text-tertiary);
736
+ flex-wrap: wrap;
737
+ }
738
+ .aurora .aurora-session-tag {
739
+ margin-top: 0.5rem;
740
+ font-size: 0.6875rem;
741
+ font-family: var(--aurora-font-mono);
742
+ color: var(--aurora-accent);
743
+ background: var(--aurora-accent-dim);
744
+ display: inline-block;
745
+ padding: 0.125rem 0.5rem;
746
+ border-radius: 9999px;
747
+ }
748
+
749
+ /* ── Session Hero ── */
750
+ .aurora .aurora-session-hero {
751
+ max-width: 960px;
752
+ margin: 0 auto;
753
+ position: relative;
754
+ z-index: 2;
755
+ }
756
+ .aurora .aurora-session-hero h1 {
757
+ font-family: var(--aurora-font-display);
758
+ font-size: 2rem;
759
+ font-weight: 700;
760
+ letter-spacing: -0.02em;
761
+ color: var(--aurora-text);
762
+ text-shadow: 0 0 40px rgba(45, 212, 191, 0.2);
763
+ margin-bottom: 0.75rem;
764
+ max-width: 700px;
765
+ }
766
+ .aurora .aurora-session-meta-row {
767
+ display: flex;
768
+ flex-wrap: wrap;
769
+ gap: 1.25rem;
770
+ font-size: 0.8125rem;
771
+ color: var(--aurora-text-tertiary);
772
+ font-family: var(--aurora-font-mono);
773
+ }
774
+ .aurora .aurora-session-meta-item {
775
+ display: flex;
776
+ align-items: center;
777
+ gap: 0.375rem;
778
+ }
779
+ .aurora .aurora-session-meta-item svg {
780
+ width: 14px;
781
+ height: 14px;
782
+ fill: none;
783
+ stroke: currentColor;
784
+ stroke-width: 2;
785
+ }
786
+ .aurora .aurora-source-badge {
787
+ display: inline-flex;
788
+ align-items: center;
789
+ gap: 0.375rem;
790
+ padding: 0.25rem 0.625rem;
791
+ border-radius: 9999px;
792
+ font-size: 0.75rem;
793
+ font-family: var(--aurora-font-mono);
794
+ background: var(--aurora-accent-dim);
795
+ color: var(--aurora-accent);
796
+ border: 1px solid rgba(45, 212, 191, 0.15);
797
+ }
798
+ .aurora .aurora-source-badge::before {
799
+ content: '';
800
+ width: 6px;
801
+ height: 6px;
802
+ border-radius: 50%;
803
+ background: var(--aurora-accent);
804
+ }
805
+
806
+ /* ── Dev Take ── */
807
+ .aurora .aurora-dev-take {
808
+ max-width: 960px;
809
+ margin: 2rem auto;
810
+ padding: 0 2rem;
811
+ }
812
+ .aurora .aurora-dev-take-box {
813
+ background: var(--aurora-surface);
814
+ border: 1px solid var(--aurora-border-accent);
815
+ border-inline-start: 3px solid var(--aurora-accent);
816
+ border-radius: var(--aurora-radius);
817
+ padding: 1.25rem 1.5rem;
818
+ font-size: 0.9375rem;
819
+ color: var(--aurora-text-secondary);
820
+ line-height: 1.7;
821
+ font-style: italic;
822
+ }
823
+
824
+ /* ── Two-Column Layout (Session) ── */
825
+ .aurora .aurora-layout {
826
+ max-width: 960px;
827
+ margin: 0 auto;
828
+ padding: 0 2rem;
829
+ display: grid;
830
+ grid-template-columns: 1fr 280px;
831
+ gap: 2rem;
832
+ align-items: start;
833
+ }
834
+ .aurora .aurora-main-content {
835
+ min-width: 0;
836
+ }
837
+
838
+ /* ── Execution Path / Beats ── */
839
+ .aurora .aurora-beats {
840
+ position: relative;
841
+ padding-inline-start: 2rem;
842
+ }
843
+ .aurora .aurora-beats::before {
844
+ content: '';
845
+ position: absolute;
846
+ left: 7px;
847
+ top: 4px;
848
+ bottom: 4px;
849
+ width: 2px;
850
+ background: linear-gradient(to bottom, var(--aurora-accent), var(--aurora-accent-green), var(--aurora-accent-purple));
851
+ border-radius: 1px;
852
+ }
853
+ .aurora .aurora-beat {
854
+ position: relative;
855
+ margin-bottom: 1.75rem;
856
+ }
857
+ .aurora .aurora-beat:last-child { margin-bottom: 0; }
858
+ .aurora .aurora-beat-dot {
859
+ position: absolute;
860
+ left: -2rem;
861
+ top: 2px;
862
+ width: 16px;
863
+ height: 16px;
864
+ border-radius: 50%;
865
+ background: linear-gradient(135deg, var(--aurora-accent), var(--aurora-accent-green));
866
+ box-shadow: 0 0 12px rgba(45, 212, 191, 0.4);
867
+ animation: pulseDot 3s ease-in-out infinite;
868
+ }
869
+ .aurora .aurora-beat:nth-child(2) .aurora-beat-dot { animation-delay: 0.75s; }
870
+ .aurora .aurora-beat:nth-child(3) .aurora-beat-dot { animation-delay: 1.5s; }
871
+ .aurora .aurora-beat:nth-child(4) .aurora-beat-dot { animation-delay: 2.25s; }
872
+ .aurora .aurora-beat-title {
873
+ font-family: var(--aurora-font-display);
874
+ font-size: 0.9375rem;
875
+ font-weight: 600;
876
+ color: var(--aurora-text);
877
+ margin-bottom: 0.25rem;
878
+ }
879
+ .aurora .aurora-beat-desc {
880
+ font-size: 0.875rem;
881
+ color: var(--aurora-text-secondary);
882
+ line-height: 1.65;
883
+ }
884
+
885
+ /* ── Q&A ── */
886
+ .aurora .aurora-qa-list {
887
+ display: flex;
888
+ flex-direction: column;
889
+ gap: 1.25rem;
890
+ }
891
+ .aurora .aurora-qa-item {
892
+ background: var(--aurora-surface);
893
+ border: 1px solid var(--aurora-border);
894
+ border-radius: var(--aurora-radius);
895
+ padding: 1.25rem;
896
+ }
897
+ .aurora .aurora-qa-question {
898
+ font-family: var(--aurora-font-display);
899
+ font-size: 0.9375rem;
900
+ font-weight: 600;
901
+ color: var(--aurora-text);
902
+ margin-bottom: 0.625rem;
903
+ display: flex;
904
+ gap: 0.5rem;
905
+ }
906
+ .aurora .aurora-qa-q-mark {
907
+ color: var(--aurora-accent);
908
+ font-weight: 700;
909
+ flex-shrink: 0;
910
+ text-shadow: 0 0 10px rgba(45, 212, 191, 0.3);
911
+ }
912
+ .aurora .aurora-qa-answer {
913
+ font-size: 0.875rem;
914
+ color: var(--aurora-text-secondary);
915
+ line-height: 1.7;
916
+ padding-inline-start: 1.5rem;
917
+ }
918
+
919
+ /* ── Agent Summary ── */
920
+ .aurora .aurora-agents {
921
+ display: flex;
922
+ flex-direction: column;
923
+ gap: 0.625rem;
924
+ }
925
+ .aurora .aurora-agent-row {
926
+ display: grid;
927
+ grid-template-columns: 140px 1fr 50px 50px;
928
+ align-items: center;
929
+ gap: 0.75rem;
930
+ font-size: 0.8125rem;
931
+ }
932
+ .aurora .aurora-agent-name {
933
+ display: flex;
934
+ align-items: center;
935
+ gap: 0.5rem;
936
+ color: var(--aurora-text-secondary);
937
+ font-family: var(--aurora-font-mono);
938
+ font-size: 0.75rem;
939
+ }
940
+ .aurora .aurora-agent-dot {
941
+ width: 8px;
942
+ height: 8px;
943
+ border-radius: 50%;
944
+ flex-shrink: 0;
945
+ }
946
+ .aurora .aurora-agent-bar-track {
947
+ height: 16px;
948
+ border-radius: 4px;
949
+ background: rgba(45, 212, 191, 0.06);
950
+ overflow: hidden;
951
+ }
952
+ .aurora .aurora-agent-bar-fill {
953
+ height: 100%;
954
+ border-radius: 4px;
955
+ opacity: 0.8;
956
+ transition: width 1s var(--aurora-ease);
957
+ }
958
+ .aurora .aurora-agent-value {
959
+ font-family: var(--aurora-font-mono);
960
+ font-size: 0.75rem;
961
+ color: var(--aurora-text-tertiary);
962
+ text-align: end;
963
+ }
964
+
965
+ /* ── Sidebar ── */
966
+ .aurora .aurora-sidebar {
967
+ display: flex;
968
+ flex-direction: column;
969
+ gap: 1.5rem;
970
+ }
971
+ .aurora .aurora-sidebar-card {
972
+ background: var(--aurora-surface);
973
+ border: 1px solid var(--aurora-border);
974
+ border-radius: var(--aurora-radius);
975
+ padding: 1.25rem;
976
+ }
977
+ .aurora .aurora-sidebar-title {
978
+ font-family: var(--aurora-font-display);
979
+ font-size: 0.8125rem;
980
+ font-weight: 600;
981
+ color: var(--aurora-text-tertiary);
982
+ text-transform: uppercase;
983
+ letter-spacing: 0.05em;
984
+ margin-bottom: 0.75rem;
985
+ }
986
+
987
+ /* ── Tools Used ── */
988
+ .aurora .aurora-tools-list {
989
+ display: flex;
990
+ flex-direction: column;
991
+ gap: 0.375rem;
992
+ }
993
+ .aurora .aurora-tool-row {
994
+ display: flex;
995
+ justify-content: space-between;
996
+ align-items: center;
997
+ font-size: 0.8125rem;
998
+ }
999
+ .aurora .aurora-tool-name {
1000
+ font-family: var(--aurora-font-mono);
1001
+ color: var(--aurora-text-secondary);
1002
+ }
1003
+ .aurora .aurora-tool-count {
1004
+ font-family: var(--aurora-font-mono);
1005
+ color: var(--aurora-accent);
1006
+ font-weight: 500;
1007
+ text-shadow: 0 0 10px rgba(45, 212, 191, 0.2);
1008
+ }
1009
+
1010
+ /* ── Files Changed ── */
1011
+ .aurora .aurora-files-list {
1012
+ display: flex;
1013
+ flex-direction: column;
1014
+ gap: 0.375rem;
1015
+ }
1016
+ .aurora .aurora-file-row {
1017
+ display: flex;
1018
+ justify-content: space-between;
1019
+ align-items: center;
1020
+ font-size: 0.75rem;
1021
+ gap: 0.5rem;
1022
+ }
1023
+ .aurora .aurora-file-name {
1024
+ font-family: var(--aurora-font-mono);
1025
+ color: var(--aurora-text-secondary);
1026
+ overflow: hidden;
1027
+ text-overflow: ellipsis;
1028
+ white-space: nowrap;
1029
+ min-width: 0;
1030
+ }
1031
+ .aurora .aurora-file-diff {
1032
+ font-family: var(--aurora-font-mono);
1033
+ flex-shrink: 0;
1034
+ font-weight: 500;
1035
+ }
1036
+ .aurora .aurora-file-adds { color: var(--aurora-accent-green); }
1037
+ .aurora .aurora-file-dels { color: #f87171; }
1038
+
1039
+ /* ── Sidebar Tags ── */
1040
+ .aurora .aurora-sidebar-tags {
1041
+ display: flex;
1042
+ flex-wrap: wrap;
1043
+ gap: 0.375rem;
1044
+ }
1045
+
1046
+ /* ── Narrative (Session) ── */
1047
+ .aurora .aurora-narrative-section {
1048
+ margin-bottom: 2.5rem;
1049
+ }
1050
+ .aurora .aurora-narrative-section p {
1051
+ font-size: 0.9375rem;
1052
+ color: var(--aurora-text-secondary);
1053
+ line-height: 1.75;
1054
+ }
1055
+
1056
+ /* ── Highlights ── */
1057
+ .aurora .aurora-highlights {
1058
+ list-style: none;
1059
+ padding: 0;
1060
+ }
1061
+ .aurora .aurora-highlights li {
1062
+ font-size: 0.875rem;
1063
+ color: var(--aurora-text-secondary);
1064
+ line-height: 1.7;
1065
+ padding: 0.375rem 0;
1066
+ border-bottom: 1px solid var(--aurora-border);
1067
+ }
1068
+ .aurora .aurora-highlights li:last-child { border-bottom: none; }
1069
+
1070
+ /* ── Footer ── */
1071
+ .aurora .aurora-footer {
1072
+ max-width: 960px;
1073
+ margin: 4rem auto 0;
1074
+ padding: 2rem;
1075
+ border-top: 1px solid var(--aurora-border);
1076
+ text-align: center;
1077
+ font-size: 0.8125rem;
1078
+ color: var(--aurora-text-tertiary);
1079
+ }
1080
+ .aurora .aurora-footer a:visited { color: var(--aurora-accent); }
1081
+
1082
+ /* ── Fade-up Animation ── */
1083
+ .aurora .fade-up {
1084
+ opacity: 0;
1085
+ transform: translateY(16px);
1086
+ transition: opacity 0.6s var(--aurora-ease), transform 0.6s var(--aurora-ease);
1087
+ }
1088
+ .aurora .fade-up.visible {
1089
+ opacity: 1;
1090
+ transform: translateY(0);
1091
+ }
1092
+
1093
+ /* ── Responsive ── */
1094
+ @media (max-width: 768px) {
1095
+ .aurora .aurora-header { padding: 2.5rem 1.25rem 2rem; }
1096
+ .aurora .aurora-hero {
1097
+ flex-direction: column;
1098
+ align-items: center;
1099
+ text-align: center;
1100
+ gap: 1.5rem;
1101
+ }
1102
+ .aurora .aurora-hero-content {
1103
+ display: flex;
1104
+ flex-direction: column;
1105
+ align-items: center;
1106
+ }
1107
+ .aurora .aurora-hero-location { justify-content: center; }
1108
+ .aurora .aurora-hero-bio { text-align: center; }
1109
+ .aurora .aurora-hero-links { justify-content: center; }
1110
+ .aurora .aurora-hero-stats-inner {
1111
+ flex-wrap: wrap;
1112
+ justify-content: center;
1113
+ gap: 1rem 2rem;
1114
+ }
1115
+ .aurora .hero-photo {
1116
+ width: 120px;
1117
+ height: 155px;
1118
+ }
1119
+ .aurora .aurora-hero h1 { font-size: 2rem; }
1120
+ .aurora .aurora-stats {
1121
+ grid-template-columns: repeat(2, 1fr);
1122
+ padding: 0 1.25rem;
1123
+ }
1124
+ .aurora .aurora-stats--project {
1125
+ grid-template-columns: repeat(3, 1fr);
1126
+ }
1127
+ .aurora .aurora-section { padding: 1.5rem 1.25rem 0; }
1128
+ .aurora .aurora-card { padding: 1.5rem; }
1129
+ .aurora .aurora-card-header { flex-direction: column; gap: 0.5rem; }
1130
+ .aurora .aurora-card-stats { flex-wrap: wrap; gap: 0.75rem; }
1131
+ .aurora .aurora-source-bar { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
1132
+ .aurora .aurora-source-track { width: 100%; }
1133
+ .aurora .aurora-footer { padding: 1.5rem 1.25rem; }
1134
+ .aurora .aurora-hero-stats { padding: 0 1.25rem; }
1135
+ .aurora .aurora-project-hero h1 { font-size: 1.75rem; }
1136
+ .aurora .aurora-content { padding: 0 1.25rem; }
1137
+ .aurora .aurora-sessions { grid-template-columns: 1fr; }
1138
+ .aurora .aurora-screenshot { padding: 0 1.25rem; }
1139
+ .aurora .aurora-session-hero h1 { font-size: 1.5rem; }
1140
+ .aurora .aurora-layout {
1141
+ grid-template-columns: 1fr;
1142
+ padding: 0 1.25rem;
1143
+ }
1144
+ .aurora .aurora-sidebar { order: -1; }
1145
+ .aurora .aurora-dev-take { padding: 0 1.25rem; }
1146
+ .aurora .aurora-agent-row {
1147
+ grid-template-columns: 110px 1fr 40px 40px;
1148
+ gap: 0.5rem;
1149
+ }
1150
+ .aurora .aurora-chart-row {
1151
+ grid-template-columns: 120px 1fr 50px;
1152
+ gap: 0.5rem;
1153
+ }
1154
+ .aurora .aurora-nav-links { gap: 1rem; }
1155
+ }
1156
+
1157
+ @media (max-width: 480px) {
1158
+ .aurora .aurora-hero h1 { font-size: 1.75rem; }
1159
+ .aurora .hero-photo {
1160
+ width: 100px;
1161
+ height: 130px;
1162
+ }
1163
+ .aurora .aurora-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
1164
+ .aurora .aurora-stat { padding: 1rem; }
1165
+ .aurora .aurora-stat-number { font-size: 1.5rem; }
1166
+ .aurora .aurora-project-hero h1 { font-size: 1.5rem; }
1167
+ .aurora .aurora-session-hero h1 { font-size: 1.25rem; }
1168
+ .aurora .aurora-session-meta-row { gap: 0.75rem; }
1169
+ .aurora .aurora-agent-row {
1170
+ grid-template-columns: 1fr;
1171
+ gap: 0.25rem;
1172
+ }
1173
+ .aurora .aurora-agent-bar-track { display: none; }
1174
+ .aurora .aurora-agent-name { justify-content: space-between; }
1175
+ .aurora .aurora-chart-row {
1176
+ grid-template-columns: 1fr;
1177
+ gap: 0.25rem;
1178
+ }
1179
+ .aurora .aurora-chart-value { text-align: start; }
1180
+ }
1181
+
1182
+
1183
+ /* Live-edit empty field hiding */
1184
+ [data-portfolio-empty="true"] { display: none; }