@jaimevalasek/aioson 1.5.1 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (341) hide show
  1. package/CHANGELOG.md +49 -0
  2. package/README.md +729 -226
  3. package/docs/design-previews/aurora-command-ui-website.html +884 -0
  4. package/docs/design-previews/aurora-command-ui.html +682 -0
  5. package/docs/design-previews/bold-editorial-ui-website.html +658 -0
  6. package/docs/design-previews/bold-editorial-ui.html +717 -0
  7. package/docs/design-previews/clean-saas-ui-website.html +1202 -0
  8. package/docs/design-previews/clean-saas-ui.html +549 -0
  9. package/docs/design-previews/cognitive-core-ui-website.html +1009 -0
  10. package/docs/design-previews/cognitive-core-ui.html +463 -0
  11. package/docs/design-previews/glassmorphism-ui-website.html +572 -0
  12. package/docs/design-previews/glassmorphism-ui.html +886 -0
  13. package/docs/design-previews/index.html +699 -0
  14. package/docs/design-previews/interface-design-website.html +1187 -0
  15. package/docs/design-previews/interface-design.html +513 -0
  16. package/docs/design-previews/neo-brutalist-ui-website.html +621 -0
  17. package/docs/design-previews/neo-brutalist-ui.html +797 -0
  18. package/docs/design-previews/premium-command-center-ui-website.html +1217 -0
  19. package/docs/design-previews/premium-command-center-ui.html +552 -0
  20. package/docs/design-previews/pt.squarespace.com-homepage.html +889 -0
  21. package/docs/design-previews/warm-craft-ui-website.html +684 -0
  22. package/docs/design-previews/warm-craft-ui.html +739 -0
  23. package/docs/en/cli-reference.md +20 -9
  24. package/docs/integrations/sdlc-genius-boundary.md +76 -0
  25. package/docs/integrations/sdlc-genius-eval-matrix.md +75 -0
  26. package/docs/integrations/sdlc-genius-install-checklist.md +93 -0
  27. package/docs/integrations/sdlc-genius-review-samples.md +86 -0
  28. package/docs/pt/README.md +10 -0
  29. package/docs/pt/agent-sharding.md +132 -0
  30. package/docs/pt/agentes.md +9 -2
  31. package/docs/pt/busca-de-contexto.md +129 -0
  32. package/docs/pt/cache-de-contexto.md +156 -0
  33. package/docs/pt/comandos-cli.md +915 -1
  34. package/docs/pt/design-hybrid-forge.md +356 -0
  35. package/docs/pt/devlog-pipeline.md +270 -0
  36. package/docs/pt/fluxo-artefatos.md +178 -0
  37. package/docs/pt/hooks-session-guard.md +454 -0
  38. package/docs/pt/inicio-rapido.md +54 -3
  39. package/docs/pt/inteligencia-adaptativa.md +324 -0
  40. package/docs/pt/monitor-de-contexto.md +158 -0
  41. package/docs/pt/recuperacao-de-sessao.md +125 -0
  42. package/docs/pt/sandbox.md +125 -0
  43. package/docs/pt/sdd-automation-scripts.md +557 -0
  44. package/docs/pt/site-forge.md +309 -0
  45. package/docs/pt/skills.md +98 -6
  46. package/docs/pt/spec-learnings-pipeline.md +265 -0
  47. package/package.json +1 -1
  48. package/src/a2a/client.js +165 -0
  49. package/src/a2a/server.js +223 -0
  50. package/src/agent-loader.js +280 -0
  51. package/src/cli.js +329 -1
  52. package/src/commands/agent-audit.js +397 -0
  53. package/src/commands/agent-export-skill.js +229 -0
  54. package/src/commands/agent-loader.js +85 -0
  55. package/src/commands/artifact-validate.js +189 -0
  56. package/src/commands/brief-gen.js +405 -0
  57. package/src/commands/brief-validate.js +65 -0
  58. package/src/commands/classify.js +256 -0
  59. package/src/commands/context-cache.js +90 -0
  60. package/src/commands/context-compact.js +49 -0
  61. package/src/commands/context-health.js +175 -0
  62. package/src/commands/context-monitor.js +163 -0
  63. package/src/commands/context-search.js +66 -0
  64. package/src/commands/context-trim.js +177 -0
  65. package/src/commands/design-hybrid-options.js +385 -0
  66. package/src/commands/detect-test-runner.js +55 -0
  67. package/src/commands/devlog-export-brains.js +27 -0
  68. package/src/commands/devlog-process.js +292 -0
  69. package/src/commands/devlog-watch.js +131 -0
  70. package/src/commands/feature-close.js +165 -0
  71. package/src/commands/gate-check.js +228 -0
  72. package/src/commands/health.js +214 -0
  73. package/src/commands/hooks-emit.js +253 -0
  74. package/src/commands/hooks-install.js +347 -0
  75. package/src/commands/init.js +54 -13
  76. package/src/commands/install.js +52 -13
  77. package/src/commands/learning-auto-promote.js +195 -0
  78. package/src/commands/learning-evolve.js +364 -0
  79. package/src/commands/learning-export.js +103 -0
  80. package/src/commands/learning-rollback.js +164 -0
  81. package/src/commands/live.js +59 -1
  82. package/src/commands/pattern-detect.js +33 -0
  83. package/src/commands/preflight-context.js +30 -0
  84. package/src/commands/preflight.js +208 -0
  85. package/src/commands/pulse-update.js +130 -0
  86. package/src/commands/recovery.js +43 -0
  87. package/src/commands/runner-daemon.js +274 -0
  88. package/src/commands/runner-plan.js +70 -0
  89. package/src/commands/runner-queue-from-plan.js +166 -0
  90. package/src/commands/runner-queue.js +189 -0
  91. package/src/commands/runner-run.js +129 -0
  92. package/src/commands/runtime.js +47 -1
  93. package/src/commands/sandbox.js +37 -0
  94. package/src/commands/self-implement-loop.js +256 -0
  95. package/src/commands/session-guard.js +218 -0
  96. package/src/commands/setup-context.js +22 -2
  97. package/src/commands/setup.js +178 -0
  98. package/src/commands/sizing.js +165 -0
  99. package/src/commands/skill.js +144 -32
  100. package/src/commands/spec-checkpoint.js +177 -0
  101. package/src/commands/spec-status.js +79 -0
  102. package/src/commands/spec-sync.js +190 -0
  103. package/src/commands/spec-tasks.js +288 -0
  104. package/src/commands/squad-autorun.js +1220 -0
  105. package/src/commands/squad-bus.js +217 -0
  106. package/src/commands/squad-card.js +149 -0
  107. package/src/commands/squad-daemon.js +134 -0
  108. package/src/commands/squad-dependency-graph.js +164 -0
  109. package/src/commands/squad-review.js +106 -0
  110. package/src/commands/squad-scaffold.js +55 -0
  111. package/src/commands/squad-tool-register.js +157 -0
  112. package/src/commands/state-save.js +122 -0
  113. package/src/commands/tool-registry-cmd.js +232 -0
  114. package/src/commands/update.js +9 -0
  115. package/src/commands/verify-gate.js +572 -0
  116. package/src/commands/workflow-execute.js +241 -0
  117. package/src/constants.js +18 -0
  118. package/src/context-cache.js +159 -0
  119. package/src/context-search.js +326 -0
  120. package/src/design-variation-catalog.js +503 -0
  121. package/src/i18n/messages/en.js +32 -2
  122. package/src/i18n/messages/es.js +30 -2
  123. package/src/i18n/messages/fr.js +30 -2
  124. package/src/i18n/messages/pt-BR.js +32 -2
  125. package/src/install-animation.js +260 -0
  126. package/src/install-profile.js +143 -0
  127. package/src/install-wizard.js +475 -0
  128. package/src/installer.js +44 -10
  129. package/src/lib/health-check.js +158 -0
  130. package/src/lib/hook-protocol.js +76 -0
  131. package/src/mcp/apps/squad-dashboard/app.js +163 -0
  132. package/src/mcp/apps/squad-dashboard/index.html +261 -0
  133. package/src/mcp/apps/squad-dashboard/mcp-manifest.json +23 -0
  134. package/src/mcp/resources/squad-state.js +130 -0
  135. package/src/parser.js +7 -1
  136. package/src/preflight-engine.js +443 -0
  137. package/src/recovery-context-session.js +154 -0
  138. package/src/runner/cascade.js +97 -0
  139. package/src/runner/cli-launcher.js +109 -0
  140. package/src/runner/plan-importer.js +63 -0
  141. package/src/runner/queue-store.js +159 -0
  142. package/src/runtime-store.js +158 -4
  143. package/src/sandbox.js +177 -0
  144. package/src/squad/agent-teams-adapter.js +264 -0
  145. package/src/squad/brief-validator.js +350 -0
  146. package/src/squad/bus-bridge.js +140 -0
  147. package/src/squad/context-compactor.js +265 -0
  148. package/src/squad/cross-ai-synthesizer.js +250 -0
  149. package/src/squad/hooks-generator.js +196 -0
  150. package/src/squad/inter-squad-events.js +175 -0
  151. package/src/squad/intra-bus.js +345 -0
  152. package/src/squad/learning-extractor.js +213 -0
  153. package/src/squad/pattern-detector.js +365 -0
  154. package/src/squad/preflight-context.js +296 -0
  155. package/src/squad/recovery-context.js +242 -71
  156. package/src/squad/reflection.js +365 -0
  157. package/src/squad/squad-scaffold.js +177 -0
  158. package/src/squad/state-manager.js +310 -0
  159. package/src/squad/task-decomposer.js +652 -0
  160. package/src/squad/verify-gate.js +303 -0
  161. package/src/tool-executor.js +94 -0
  162. package/src/updater.js +10 -3
  163. package/src/worker-runner.js +186 -1
  164. package/template/.aioson/agents/analyst.md +119 -3
  165. package/template/.aioson/agents/architect.md +98 -0
  166. package/template/.aioson/agents/design-hybrid-forge.md +141 -0
  167. package/template/.aioson/agents/dev.md +335 -14
  168. package/template/.aioson/agents/deyvin.md +117 -2
  169. package/template/.aioson/agents/discovery-design-doc.md +44 -0
  170. package/template/.aioson/agents/genome.md +14 -0
  171. package/template/.aioson/agents/neo.md +78 -1
  172. package/template/.aioson/agents/orache.md +50 -4
  173. package/template/.aioson/agents/orchestrator.md +197 -1
  174. package/template/.aioson/agents/pm.md +93 -0
  175. package/template/.aioson/agents/product.md +77 -4
  176. package/template/.aioson/agents/profiler-enricher.md +14 -0
  177. package/template/.aioson/agents/profiler-forge.md +14 -0
  178. package/template/.aioson/agents/profiler-researcher.md +14 -0
  179. package/template/.aioson/agents/qa.md +249 -19
  180. package/template/.aioson/agents/setup.md +144 -12
  181. package/template/.aioson/agents/sheldon.md +237 -11
  182. package/template/.aioson/agents/site-forge.md +1753 -0
  183. package/template/.aioson/agents/squad.md +162 -0
  184. package/template/.aioson/agents/tester.md +209 -0
  185. package/template/.aioson/agents/ux-ui.md +34 -1
  186. package/template/.aioson/brains/README.md +128 -0
  187. package/template/.aioson/brains/_index.json +16 -0
  188. package/template/.aioson/brains/scripts/query.js +103 -0
  189. package/template/.aioson/brains/site-forge/visual-patterns.brain.json +205 -0
  190. package/template/.aioson/config.md +158 -13
  191. package/template/.aioson/constitution.md +33 -0
  192. package/template/.aioson/context/forensics/.gitkeep +0 -0
  193. package/template/.aioson/context/project-pulse.md +34 -0
  194. package/template/.aioson/context/seeds/seed-example.md +27 -0
  195. package/template/.aioson/context/user-profile.md +42 -0
  196. package/template/.aioson/docs/LAYERS.md +79 -0
  197. package/template/.aioson/docs/README.md +76 -0
  198. package/template/.aioson/docs/example-external-api-context.md +72 -0
  199. package/template/.aioson/locales/en/agents/architect.md +17 -0
  200. package/template/.aioson/locales/en/agents/dev.md +79 -13
  201. package/template/.aioson/locales/en/agents/orache.md +6 -0
  202. package/template/.aioson/locales/en/agents/orchestrator.md +24 -0
  203. package/template/.aioson/locales/en/agents/product.md +50 -0
  204. package/template/.aioson/locales/en/agents/setup.md +33 -1
  205. package/template/.aioson/locales/en/agents/sheldon.md +115 -0
  206. package/template/.aioson/locales/en/agents/squad.md +14 -0
  207. package/template/.aioson/locales/en/agents/tester.md +6 -0
  208. package/template/.aioson/locales/es/agents/analyst.md +2 -0
  209. package/template/.aioson/locales/es/agents/architect.md +19 -0
  210. package/template/.aioson/locales/es/agents/dev.md +64 -4
  211. package/template/.aioson/locales/es/agents/deyvin.md +2 -0
  212. package/template/.aioson/locales/es/agents/discovery-design-doc.md +2 -0
  213. package/template/.aioson/locales/es/agents/genome.md +2 -0
  214. package/template/.aioson/locales/es/agents/neo.md +2 -0
  215. package/template/.aioson/locales/es/agents/orache.md +2 -0
  216. package/template/.aioson/locales/es/agents/orchestrator.md +26 -0
  217. package/template/.aioson/locales/es/agents/pair.md +2 -0
  218. package/template/.aioson/locales/es/agents/pm.md +2 -0
  219. package/template/.aioson/locales/es/agents/product.md +52 -0
  220. package/template/.aioson/locales/es/agents/profiler-enricher.md +2 -0
  221. package/template/.aioson/locales/es/agents/profiler-forge.md +2 -0
  222. package/template/.aioson/locales/es/agents/profiler-researcher.md +2 -0
  223. package/template/.aioson/locales/es/agents/qa.md +2 -0
  224. package/template/.aioson/locales/es/agents/setup.md +35 -1
  225. package/template/.aioson/locales/es/agents/sheldon.md +117 -0
  226. package/template/.aioson/locales/es/agents/squad.md +16 -0
  227. package/template/.aioson/locales/es/agents/tester.md +9 -0
  228. package/template/.aioson/locales/es/agents/ux-ui.md +2 -0
  229. package/template/.aioson/locales/fr/agents/analyst.md +2 -0
  230. package/template/.aioson/locales/fr/agents/architect.md +19 -0
  231. package/template/.aioson/locales/fr/agents/dev.md +64 -4
  232. package/template/.aioson/locales/fr/agents/deyvin.md +2 -0
  233. package/template/.aioson/locales/fr/agents/discovery-design-doc.md +2 -0
  234. package/template/.aioson/locales/fr/agents/genome.md +2 -0
  235. package/template/.aioson/locales/fr/agents/neo.md +2 -0
  236. package/template/.aioson/locales/fr/agents/orache.md +2 -0
  237. package/template/.aioson/locales/fr/agents/orchestrator.md +26 -0
  238. package/template/.aioson/locales/fr/agents/pair.md +2 -0
  239. package/template/.aioson/locales/fr/agents/pm.md +2 -0
  240. package/template/.aioson/locales/fr/agents/product.md +52 -0
  241. package/template/.aioson/locales/fr/agents/profiler-enricher.md +2 -0
  242. package/template/.aioson/locales/fr/agents/profiler-forge.md +2 -0
  243. package/template/.aioson/locales/fr/agents/profiler-researcher.md +2 -0
  244. package/template/.aioson/locales/fr/agents/qa.md +2 -0
  245. package/template/.aioson/locales/fr/agents/setup.md +35 -1
  246. package/template/.aioson/locales/fr/agents/sheldon.md +117 -0
  247. package/template/.aioson/locales/fr/agents/squad.md +16 -0
  248. package/template/.aioson/locales/fr/agents/tester.md +9 -0
  249. package/template/.aioson/locales/fr/agents/ux-ui.md +2 -0
  250. package/template/.aioson/locales/pt-BR/agents/analyst.md +64 -3
  251. package/template/.aioson/locales/pt-BR/agents/architect.md +42 -0
  252. package/template/.aioson/locales/pt-BR/agents/dev.md +147 -14
  253. package/template/.aioson/locales/pt-BR/agents/deyvin.md +47 -0
  254. package/template/.aioson/locales/pt-BR/agents/neo.md +62 -1
  255. package/template/.aioson/locales/pt-BR/agents/orchestrator.md +158 -2
  256. package/template/.aioson/locales/pt-BR/agents/pm.md +95 -1
  257. package/template/.aioson/locales/pt-BR/agents/product.md +145 -18
  258. package/template/.aioson/locales/pt-BR/agents/qa.md +16 -0
  259. package/template/.aioson/locales/pt-BR/agents/setup.md +134 -19
  260. package/template/.aioson/locales/pt-BR/agents/sheldon.md +132 -1
  261. package/template/.aioson/locales/pt-BR/agents/squad.md +14 -0
  262. package/template/.aioson/locales/pt-BR/agents/tester.md +449 -0
  263. package/template/.aioson/rules/README.md +69 -0
  264. package/template/.aioson/rules/data-format-convention.md +136 -0
  265. package/template/.aioson/rules/example-monetary-values.md +30 -0
  266. package/template/.aioson/schemas/squad-manifest.schema.json +124 -3
  267. package/template/.aioson/skills/design/aurora-command-ui/SKILL.md +243 -0
  268. package/template/.aioson/skills/design/aurora-command-ui/references/art-direction.md +293 -0
  269. package/template/.aioson/skills/design/aurora-command-ui/references/components.md +827 -0
  270. package/template/.aioson/skills/design/aurora-command-ui/references/dashboards.md +250 -0
  271. package/template/.aioson/skills/design/aurora-command-ui/references/design-tokens.md +585 -0
  272. package/template/.aioson/skills/design/aurora-command-ui/references/motion.md +365 -0
  273. package/template/.aioson/skills/design/aurora-command-ui/references/patterns.md +482 -0
  274. package/template/.aioson/skills/design/aurora-command-ui/references/websites.md +387 -0
  275. package/template/.aioson/skills/design/glassmorphism-ui/SKILL.md +222 -0
  276. package/template/.aioson/skills/design/glassmorphism-ui/references/art-direction.md +159 -0
  277. package/template/.aioson/skills/design/glassmorphism-ui/references/components.md +498 -0
  278. package/template/.aioson/skills/design/glassmorphism-ui/references/dashboards.md +236 -0
  279. package/template/.aioson/skills/design/glassmorphism-ui/references/design-tokens.md +274 -0
  280. package/template/.aioson/skills/design/glassmorphism-ui/references/motion.md +355 -0
  281. package/template/.aioson/skills/design/glassmorphism-ui/references/patterns.md +198 -0
  282. package/template/.aioson/skills/design/glassmorphism-ui/references/websites.md +307 -0
  283. package/template/.aioson/skills/design/neo-brutalist-ui/SKILL.md +213 -0
  284. package/template/.aioson/skills/design/neo-brutalist-ui/references/art-direction.md +228 -0
  285. package/template/.aioson/skills/design/neo-brutalist-ui/references/components.md +855 -0
  286. package/template/.aioson/skills/design/neo-brutalist-ui/references/dashboards.md +334 -0
  287. package/template/.aioson/skills/design/neo-brutalist-ui/references/design-tokens.md +342 -0
  288. package/template/.aioson/skills/design/neo-brutalist-ui/references/motion.md +286 -0
  289. package/template/.aioson/skills/design/neo-brutalist-ui/references/patterns.md +458 -0
  290. package/template/.aioson/skills/design/neo-brutalist-ui/references/websites.md +723 -0
  291. package/template/.aioson/skills/design/pt.squarespace.com/.skill-meta.json +31 -0
  292. package/template/.aioson/skills/design/pt.squarespace.com/SKILL.md +66 -0
  293. package/template/.aioson/skills/design/pt.squarespace.com/references/components.md +368 -0
  294. package/template/.aioson/skills/design/pt.squarespace.com/references/design-tokens.md +150 -0
  295. package/template/.aioson/skills/design/pt.squarespace.com/references/motion.md +270 -0
  296. package/template/.aioson/skills/design/pt.squarespace.com/references/patterns.md +189 -0
  297. package/template/.aioson/skills/design/pt.squarespace.com/references/websites.md +165 -0
  298. package/template/.aioson/skills/process/aioson-spec-driven/SKILL.md +46 -0
  299. package/template/.aioson/skills/process/aioson-spec-driven/references/analyst.md +30 -0
  300. package/template/.aioson/skills/process/aioson-spec-driven/references/approval-gates.md +109 -0
  301. package/template/.aioson/skills/process/aioson-spec-driven/references/architect.md +23 -0
  302. package/template/.aioson/skills/process/aioson-spec-driven/references/artifact-map.md +44 -0
  303. package/template/.aioson/skills/process/aioson-spec-driven/references/classification-map.md +37 -0
  304. package/template/.aioson/skills/process/aioson-spec-driven/references/dev.md +47 -0
  305. package/template/.aioson/skills/process/aioson-spec-driven/references/deyvin.md +27 -0
  306. package/template/.aioson/skills/process/aioson-spec-driven/references/hardening-lane.md +49 -0
  307. package/template/.aioson/skills/process/aioson-spec-driven/references/maintenance-and-state.md +101 -0
  308. package/template/.aioson/skills/process/aioson-spec-driven/references/product.md +25 -0
  309. package/template/.aioson/skills/process/aioson-spec-driven/references/qa.md +30 -0
  310. package/template/.aioson/skills/process/aioson-spec-driven/references/sheldon.md +25 -0
  311. package/template/.aioson/skills/process/aioson-spec-driven/references/ui-language.md +75 -0
  312. package/template/.aioson/skills/process/design-hybrid-forge/SKILL.md +147 -0
  313. package/template/.aioson/skills/process/design-hybrid-forge/references/crossover-protocol.md +221 -0
  314. package/template/.aioson/skills/process/design-hybrid-forge/references/naming-registry.md +88 -0
  315. package/template/.aioson/skills/process/design-hybrid-forge/references/output-contract.md +306 -0
  316. package/template/.aioson/skills/process/design-hybrid-forge/references/pair-compatibility.md +149 -0
  317. package/template/.aioson/skills/process/design-hybrid-forge/references/quality-gates.md +208 -0
  318. package/template/.aioson/skills/process/design-hybrid-forge/references/variation-library.md +125 -0
  319. package/template/.aioson/skills/process/simplify/SKILL.md +173 -0
  320. package/template/.aioson/skills/static/context-budget-guide.md +46 -0
  321. package/template/.aioson/skills/static/harness-sensors.md +74 -0
  322. package/template/.aioson/skills/static/multi-agent-patterns.md +43 -0
  323. package/template/.aioson/skills/static/react-motion-patterns.md +22 -0
  324. package/template/.aioson/skills/static/static-html-patterns/checklists.md +43 -0
  325. package/template/.aioson/skills/static/static-html-patterns/css-tokens.md +609 -0
  326. package/template/.aioson/skills/static/static-html-patterns/motion.md +193 -0
  327. package/template/.aioson/skills/static/static-html-patterns/premium.md +711 -0
  328. package/template/.aioson/skills/static/static-html-patterns/structure.md +209 -0
  329. package/template/.aioson/skills/static/static-html-patterns/utilities.md +190 -0
  330. package/template/.aioson/skills/static/static-html-patterns.md +58 -1913
  331. package/template/.aioson/skills/static/threejs-patterns.md +929 -0
  332. package/template/.aioson/skills/static/web-research-cache.md +112 -0
  333. package/template/.aioson/tasks/implementation-plan.md +21 -1
  334. package/template/.claude/commands/aioson/agent/design-hybrid-forge.md +5 -0
  335. package/template/.claude/commands/aioson/agent/orache.md +5 -0
  336. package/template/.claude/commands/aioson/agent/sheldon.md +5 -0
  337. package/template/.claude/commands/aioson/agent/site-forge.md +5 -0
  338. package/template/AGENTS.md +75 -1
  339. package/template/CLAUDE.md +31 -0
  340. package/template/OPENCODE.md +4 -0
  341. package/template/researchs/.gitkeep +0 -0
@@ -0,0 +1,609 @@
1
+ # CSS Tokens & Design Systems
2
+
3
+ > Load when setting up the visual CSS system for a landing page.
4
+ > Contains complete token blocks, component styles, and mandatory "wow" techniques
5
+ > for both **Bold & Cinematic** and **Clean & Luminous** directions.
6
+
7
+ ---
8
+
9
+ ## 2. CSS Design Systems
10
+
11
+ ### 2a. Bold & Cinematic (Dark, AI/Tech, Gradient-rich)
12
+
13
+ ```css
14
+ /* === TOKENS === */
15
+ :root {
16
+ /* Background scale */
17
+ --bg-base: hsl(240, 15%, 6%); /* deepest: page bg */
18
+ --bg-surface: hsl(240, 12%, 10%); /* cards, panels */
19
+ --bg-elevated: hsl(240, 10%, 14%); /* modals, popovers */
20
+ --bg-glass: hsla(240, 20%, 100%, 0.06); /* glassmorphism */
21
+
22
+ /* Text scale */
23
+ --text-primary: hsl(220, 30%, 96%);
24
+ --text-secondary: hsl(220, 15%, 70%);
25
+ --text-muted: hsl(220, 10%, 50%);
26
+
27
+ /* Brand & accent */
28
+ --accent-primary: hsl(265, 80%, 65%); /* purple */
29
+ --accent-glow: hsla(265, 80%, 65%, 0.35);
30
+ --accent-alt: hsl(190, 80%, 55%); /* cyan complement */
31
+ --gradient-brand: linear-gradient(135deg, hsl(265, 80%, 65%), hsl(310, 75%, 60%));
32
+ --gradient-hero: linear-gradient(135deg,
33
+ hsla(240, 50%, 8%, 0.95) 0%,
34
+ hsla(265, 60%, 20%, 0.75) 50%,
35
+ hsla(310, 40%, 12%, 0.5) 100%);
36
+
37
+ /* Borders */
38
+ --border-faint: hsla(220, 100%, 90%, 0.07);
39
+ --border-subtle: hsla(220, 100%, 90%, 0.12);
40
+ --border-glow: hsla(265, 80%, 65%, 0.3);
41
+
42
+ /* Spacing */
43
+ --space-xs: 4px; --space-sm: 8px; --space-md: 16px;
44
+ --space-lg: 24px; --space-xl: 40px; --space-2xl: 64px;
45
+ --space-3xl: 96px; --space-4xl: 160px;
46
+
47
+ /* Typography */
48
+ --font-display: 'Space Grotesk', 'Syne', sans-serif;
49
+ --font-body: 'Inter', system-ui, sans-serif;
50
+ --font-mono: 'JetBrains Mono', monospace;
51
+
52
+ /* Type scale */
53
+ --text-sm: 0.875rem; /* 14px */
54
+ --text-base: 1rem; /* 16px */
55
+ --text-lg: 1.125rem; /* 18px */
56
+ --text-xl: 1.25rem; /* 20px */
57
+ --text-2xl: 1.5rem; /* 24px */
58
+ --text-3xl: 1.875rem; /* 30px */
59
+ --text-4xl: 2.25rem; /* 36px */
60
+ --text-5xl: 3rem; /* 48px */
61
+ --text-6xl: 3.75rem; /* 60px */
62
+ --text-7xl: 4.5rem; /* 72px */
63
+
64
+ /* Radius */
65
+ --radius-sm: 6px; --radius-md: 12px; --radius-lg: 20px; --radius-pill: 9999px;
66
+
67
+ /* Motion */
68
+ --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
69
+ --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
70
+ --duration-fast: 150ms; --duration-base: 250ms; --duration-slow: 400ms;
71
+ }
72
+
73
+ /* === LAYOUT === */
74
+ .container {
75
+ width: 100%;
76
+ max-width: 1200px;
77
+ margin: 0 auto;
78
+ padding: 0 var(--space-xl);
79
+ }
80
+ @media (max-width: 768px) { .container { padding: 0 var(--space-lg); } }
81
+
82
+ /* === HEADER: glassmorphism, sticky === */
83
+ .header {
84
+ position: sticky; top: 0; left: 0; right: 0; z-index: 100;
85
+ height: 72px;
86
+ backdrop-filter: blur(20px) saturate(180%);
87
+ -webkit-backdrop-filter: blur(20px) saturate(180%);
88
+ background: hsla(240, 15%, 6%, 0.75);
89
+ border-bottom: 1px solid var(--border-faint);
90
+ transition: background var(--duration-base) ease;
91
+ }
92
+ .header.scrolled { background: hsla(240, 15%, 6%, 0.95); }
93
+ .header__inner {
94
+ height: 100%;
95
+ display: flex; align-items: center; gap: var(--space-xl);
96
+ }
97
+ .header__logo {
98
+ display: flex; align-items: center; gap: var(--space-sm);
99
+ font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg);
100
+ color: var(--text-primary);
101
+ }
102
+ .logo-mark { color: var(--accent-primary); }
103
+ .header__nav {
104
+ display: flex; gap: var(--space-xl);
105
+ margin-left: auto; /* push right */
106
+ }
107
+ .header__nav a {
108
+ font-size: var(--text-sm); font-weight: 500;
109
+ color: var(--text-secondary);
110
+ transition: color var(--duration-fast) ease;
111
+ }
112
+ .header__nav a:hover { color: var(--text-primary); }
113
+
114
+ /* === HERO === */
115
+ .hero {
116
+ position: relative;
117
+ min-height: 100dvh;
118
+ display: flex; align-items: center; justify-content: center;
119
+ overflow: hidden;
120
+ }
121
+ .hero__bg {
122
+ position: absolute; inset: 0; z-index: 0;
123
+ }
124
+ .hero__bg img {
125
+ width: 100%; height: 100%;
126
+ object-fit: cover; object-position: center;
127
+ }
128
+ .hero__overlay {
129
+ position: absolute; inset: 0;
130
+ background: var(--gradient-hero);
131
+ }
132
+ .hero__content {
133
+ position: relative; z-index: 1;
134
+ text-align: center;
135
+ padding: var(--space-4xl) 0;
136
+ }
137
+ .hero__label {
138
+ display: inline-block;
139
+ padding: 6px 16px;
140
+ border-radius: var(--radius-pill);
141
+ border: 1px solid var(--border-glow);
142
+ background: hsla(265, 80%, 65%, 0.1);
143
+ font-size: var(--text-sm); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
144
+ color: var(--accent-primary);
145
+ margin-bottom: var(--space-xl);
146
+ }
147
+ .hero__title {
148
+ font-family: var(--font-display);
149
+ font-size: clamp(var(--text-4xl), 7vw, var(--text-7xl));
150
+ font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
151
+ color: var(--text-primary);
152
+ margin-bottom: var(--space-lg);
153
+ }
154
+ .hero__subtitle {
155
+ font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl));
156
+ color: var(--text-secondary); line-height: 1.6; max-width: 600px; margin: 0 auto var(--space-xl);
157
+ }
158
+ .hero__actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }
159
+
160
+ /* Decorative glowing orbs */
161
+ .hero__decor { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
162
+ .orb {
163
+ position: absolute; border-radius: 50%;
164
+ filter: blur(80px); opacity: 0.35;
165
+ }
166
+ .orb--1 {
167
+ width: 600px; height: 600px;
168
+ background: radial-gradient(circle, hsl(265, 80%, 65%), transparent 70%);
169
+ top: -200px; left: -100px;
170
+ }
171
+ .orb--2 {
172
+ width: 400px; height: 400px;
173
+ background: radial-gradient(circle, hsl(190, 80%, 55%), transparent 70%);
174
+ bottom: -100px; right: -50px;
175
+ }
176
+ .orb--3 {
177
+ width: 300px; height: 300px;
178
+ background: radial-gradient(circle, hsl(310, 75%, 60%), transparent 70%);
179
+ top: 50%; left: 50%; transform: translate(-50%, -50%);
180
+ }
181
+
182
+ /* === GRADIENT TEXT === */
183
+ .gradient-text {
184
+ background: var(--gradient-brand);
185
+ -webkit-background-clip: text; -webkit-text-fill-color: transparent;
186
+ background-clip: text; display: inline;
187
+ }
188
+
189
+ /* === BUTTONS === */
190
+ .btn {
191
+ display: inline-flex; align-items: center; gap: var(--space-sm);
192
+ font-weight: 600; border-radius: var(--radius-md);
193
+ transition: all var(--duration-base) var(--ease-out);
194
+ white-space: nowrap;
195
+ }
196
+ .btn--sm { padding: 8px 16px; font-size: var(--text-sm); }
197
+ .btn--md { padding: 12px 24px; font-size: var(--text-base); }
198
+ .btn--lg { padding: 14px 32px; font-size: var(--text-lg); }
199
+ .btn--xl { padding: 18px 48px; font-size: var(--text-xl); }
200
+ .btn--primary {
201
+ background: var(--gradient-brand);
202
+ color: white;
203
+ box-shadow: 0 0 32px var(--accent-glow), 0 4px 16px rgba(0,0,0,0.3);
204
+ }
205
+ .btn--primary:hover {
206
+ box-shadow: 0 0 48px hsla(265, 80%, 65%, 0.55), 0 8px 24px rgba(0,0,0,0.4);
207
+ transform: translateY(-2px) scale(1.02);
208
+ }
209
+ .btn--primary:active { transform: translateY(0) scale(0.99); }
210
+ .btn--ghost {
211
+ background: var(--bg-glass);
212
+ color: var(--text-primary);
213
+ border: 1px solid var(--border-subtle);
214
+ backdrop-filter: blur(8px);
215
+ }
216
+ .btn--ghost:hover {
217
+ background: hsla(240, 20%, 100%, 0.1);
218
+ border-color: var(--border-glow);
219
+ }
220
+
221
+ /* === GLASSMORPHISM CARDS === */
222
+ .feature-card {
223
+ background: var(--bg-glass);
224
+ border: 1px solid var(--border-faint);
225
+ border-radius: var(--radius-lg);
226
+ padding: var(--space-xl);
227
+ backdrop-filter: blur(16px);
228
+ -webkit-backdrop-filter: blur(16px);
229
+ transition: all var(--duration-base) var(--ease-out);
230
+ position: relative; overflow: hidden;
231
+ }
232
+ .feature-card::before {
233
+ /* Shimmer top border */
234
+ content: '';
235
+ position: absolute; top: 0; left: 0; right: 0; height: 1px;
236
+ background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
237
+ opacity: 0;
238
+ transition: opacity var(--duration-base) ease;
239
+ }
240
+ .feature-card:hover {
241
+ border-color: var(--border-glow);
242
+ transform: translateY(-4px);
243
+ box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px var(--accent-glow);
244
+ }
245
+ .feature-card:hover::before { opacity: 1; }
246
+ .feature-card__icon {
247
+ font-size: var(--text-3xl); margin-bottom: var(--space-md);
248
+ }
249
+ .feature-card__title {
250
+ font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700;
251
+ color: var(--text-primary); margin-bottom: var(--space-sm);
252
+ }
253
+ .feature-card__desc { font-size: var(--text-base); color: var(--text-secondary); line-height: 1.6; }
254
+
255
+ /* Grid: 3 cols → 2 → 1 */
256
+ .features__grid {
257
+ display: grid;
258
+ grid-template-columns: repeat(3, 1fr);
259
+ gap: var(--space-lg);
260
+ margin-top: var(--space-3xl);
261
+ }
262
+ @media (max-width: 900px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
263
+ @media (max-width: 600px) { .features__grid { grid-template-columns: 1fr; } }
264
+
265
+ /* === ANIMATED GRADIENT BORDER === */
266
+ .card--glow-border {
267
+ position: relative;
268
+ background: var(--bg-surface);
269
+ border-radius: var(--radius-lg);
270
+ }
271
+ .card--glow-border::before {
272
+ content: '';
273
+ position: absolute; inset: -1px;
274
+ border-radius: inherit;
275
+ background: linear-gradient(135deg, hsl(265,80%,65%), hsl(190,80%,55%), hsl(310,75%,60%));
276
+ z-index: -1;
277
+ opacity: 0;
278
+ transition: opacity var(--duration-base) ease;
279
+ }
280
+ .card--glow-border:hover::before { opacity: 1; }
281
+
282
+ /* === SECTION HEADERS === */
283
+ .section-header { text-align: center; max-width: 700px; margin: 0 auto var(--space-3xl); }
284
+ .section-label {
285
+ display: inline-block;
286
+ font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
287
+ color: var(--accent-primary); margin-bottom: var(--space-md);
288
+ }
289
+ .section-title {
290
+ font-family: var(--font-display);
291
+ font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
292
+ font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
293
+ color: var(--text-primary); margin-bottom: var(--space-md);
294
+ }
295
+ .section-subtitle { font-size: var(--text-lg); color: var(--text-secondary); line-height: 1.6; }
296
+
297
+ /* Sections padding */
298
+ .features, .how-it-works, .testimonials { padding: var(--space-4xl) 0; }
299
+
300
+ /* Alternating section background */
301
+ .how-it-works {
302
+ background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-surface) 50%, var(--bg-base) 100%);
303
+ }
304
+
305
+ /* === ANGULAR CLIP-PATH DIVIDER === */
306
+ .section--angled {
307
+ clip-path: polygon(0 4%, 100% 0%, 100% 96%, 0 100%);
308
+ margin: -40px 0;
309
+ padding: calc(var(--space-4xl) + 40px) 0;
310
+ }
311
+
312
+ /* === TESTIMONIAL CARDS === */
313
+ .testimonials__grid {
314
+ display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg);
315
+ }
316
+ .testimonial-card {
317
+ background: var(--bg-surface);
318
+ border: 1px solid var(--border-faint);
319
+ border-radius: var(--radius-lg);
320
+ padding: var(--space-xl);
321
+ transition: border-color var(--duration-base) ease;
322
+ }
323
+ .testimonial-card:hover { border-color: var(--border-glow); }
324
+ .testimonial-card__quote {
325
+ font-size: var(--text-base); line-height: 1.7; color: var(--text-secondary);
326
+ font-style: italic; margin-bottom: var(--space-lg);
327
+ }
328
+ .testimonial-card__quote::before { content: '"'; font-size: var(--text-3xl); color: var(--accent-primary); line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
329
+ .testimonial-card__author { display: flex; align-items: center; gap: var(--space-md); }
330
+ .testimonial-card__author img { border-radius: 50%; border: 2px solid var(--border-subtle); }
331
+ .testimonial-card__name { display: block; font-weight: 600; color: var(--text-primary); }
332
+ .testimonial-card__role { font-size: var(--text-sm); color: var(--text-muted); }
333
+ @media (max-width: 900px) { .testimonials__grid { grid-template-columns: 1fr; } }
334
+
335
+ /* === FINAL CTA === */
336
+ .cta-final {
337
+ text-align: center; padding: var(--space-4xl) 0;
338
+ background: radial-gradient(ellipse 80% 60% at 50% 50%, hsla(265,60%,30%,0.3), transparent);
339
+ border-top: 1px solid var(--border-faint);
340
+ }
341
+ .cta-final__title {
342
+ font-family: var(--font-display);
343
+ font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
344
+ font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
345
+ color: var(--text-primary); margin-bottom: var(--space-md);
346
+ }
347
+ .cta-final__subtitle { font-size: var(--text-xl); color: var(--text-secondary); margin-bottom: var(--space-xl); }
348
+ .cta-final__note { font-size: var(--text-sm); color: var(--text-muted); margin-top: var(--space-md); }
349
+
350
+ /* === FOOTER === */
351
+ .footer {
352
+ background: var(--bg-surface); border-top: 1px solid var(--border-faint);
353
+ padding: var(--space-xl) 0;
354
+ }
355
+ .footer__inner {
356
+ display: flex; align-items: center; gap: var(--space-xl);
357
+ flex-wrap: wrap;
358
+ }
359
+ .footer__logo { font-family: var(--font-display); font-weight: 700; color: var(--text-primary); }
360
+ .footer__nav { display: flex; gap: var(--space-lg); margin-left: auto; }
361
+ .footer__nav a { font-size: var(--text-sm); color: var(--text-muted); transition: color var(--duration-fast) ease; }
362
+ .footer__nav a:hover { color: var(--text-primary); }
363
+ .footer__copy { font-size: var(--text-sm); color: var(--text-muted); }
364
+
365
+ /* === SCROLL REVEAL ANIMATIONS === */
366
+ .reveal {
367
+ animation: fadeUp 0.7s var(--ease-out) both;
368
+ }
369
+ .reveal-delay-1 { animation-delay: 0.1s; }
370
+ .reveal-delay-2 { animation-delay: 0.2s; }
371
+ .reveal-delay-3 { animation-delay: 0.3s; }
372
+ .reveal-delay-4 { animation-delay: 0.4s; }
373
+ @keyframes fadeUp {
374
+ from { opacity: 0; transform: translateY(28px); }
375
+ to { opacity: 1; transform: translateY(0); }
376
+ }
377
+
378
+ /* === COUNTER ANIMATION (hero stats) === */
379
+ .stat-number {
380
+ font-family: var(--font-display); font-size: var(--text-5xl); font-weight: 800;
381
+ background: var(--gradient-brand);
382
+ -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
383
+ }
384
+
385
+ /* === AVATAR GROUP === */
386
+ .avatar-group { display: flex; }
387
+ .avatar-group img {
388
+ width: 32px; height: 32px; border-radius: 50%;
389
+ border: 2px solid var(--bg-base);
390
+ margin-left: -8px;
391
+ }
392
+ .avatar-group img:first-child { margin-left: 0; }
393
+
394
+ /* === STAR RATING === */
395
+ .star-rating { color: hsl(45, 100%, 60%); font-size: var(--text-sm); font-weight: 600; }
396
+ .star-rating span { color: var(--text-secondary); margin-left: 4px; }
397
+
398
+ /* === ACCESSIBILITY === */
399
+ :focus-visible {
400
+ outline: 2px solid var(--accent-primary);
401
+ outline-offset: 3px;
402
+ border-radius: var(--radius-sm);
403
+ }
404
+ .sr-only {
405
+ position: absolute; width: 1px; height: 1px;
406
+ padding: 0; margin: -1px; overflow: hidden;
407
+ clip: rect(0,0,0,0); white-space: nowrap; border: 0;
408
+ }
409
+
410
+ /* === REDUCED MOTION === */
411
+ @media (prefers-reduced-motion: reduce) {
412
+ *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
413
+ }
414
+ ```
415
+
416
+ ### 2a-extra. Mandatory "Wow" Techniques for Bold & Cinematic
417
+
418
+ These three techniques are **required** — not optional. They separate a premium landing page from a generic dark dashboard.
419
+
420
+ #### Animated mesh background (background breathes)
421
+
422
+ ```css
423
+ /* Replace the static mesh with an animated one */
424
+ .hero__bg--mesh {
425
+ position: absolute; inset: 0; z-index: 0;
426
+ background:
427
+ radial-gradient(ellipse 120% 80% at -15% -10%, hsla(265,70%,55%,0.28), transparent 55%),
428
+ radial-gradient(ellipse 100% 70% at 115% 15%, hsla(190,70%,50%,0.25), transparent 50%),
429
+ radial-gradient(ellipse 120% 80% at 50% 110%, hsla(310,65%,55%,0.2), transparent 52%),
430
+ linear-gradient(160deg, hsl(240,18%,6%) 0%, hsl(240,15%,10%) 100%);
431
+ background-size: 200% 200%;
432
+ animation: meshDrift 20s ease infinite alternate;
433
+ }
434
+ @keyframes meshDrift {
435
+ 0% { background-position: 0% 0%; }
436
+ 33% { background-position: 60% 40%; }
437
+ 66% { background-position: 40% 80%; }
438
+ 100% { background-position: 100% 100%; }
439
+ }
440
+
441
+ @media (prefers-reduced-motion: reduce) {
442
+ .hero__bg--mesh { animation: none; }
443
+ }
444
+ ```
445
+
446
+ **HTML usage:**
447
+ ```html
448
+ <section class="hero">
449
+ <div class="hero__bg--mesh" aria-hidden="true"></div>
450
+ <!-- orbs still work on top of this -->
451
+ <div class="hero__decor" aria-hidden="true">
452
+ <div class="orb orb--1"></div>
453
+ <div class="orb orb--2"></div>
454
+ </div>
455
+ <div class="container hero__content"> ... </div>
456
+ </section>
457
+ ```
458
+
459
+ ---
460
+
461
+ #### Animated gradient text (headline that breathes color)
462
+
463
+ The headline `<em>` or key phrase has a gradient that slowly shifts — subtle but unmistakably premium.
464
+
465
+ ```css
466
+ .gradient-text--animated {
467
+ background: linear-gradient(
468
+ 135deg,
469
+ var(--accent-primary),
470
+ hsl(190, 80%, 55%),
471
+ hsl(310, 75%, 65%),
472
+ var(--accent-primary)
473
+ );
474
+ background-size: 300% 300%;
475
+ -webkit-background-clip: text;
476
+ -webkit-text-fill-color: transparent;
477
+ background-clip: text;
478
+ display: inline;
479
+ animation: textGradient 8s ease infinite;
480
+ }
481
+ @keyframes textGradient {
482
+ 0%, 100% { background-position: 0% 50%; }
483
+ 50% { background-position: 100% 50%; }
484
+ }
485
+
486
+ @media (prefers-reduced-motion: reduce) {
487
+ .gradient-text--animated { animation: none; }
488
+ }
489
+ ```
490
+
491
+ **HTML usage:**
492
+ ```html
493
+ <h1 class="hero__title">
494
+ The fastest way to <em class="gradient-text--animated">ship AI products</em>
495
+ </h1>
496
+ ```
497
+
498
+ ---
499
+
500
+ #### 3D Card Tilt on hover (cards feel physical)
501
+
502
+ Cards that tilt toward the cursor. One of the strongest single micro-interactions.
503
+
504
+ ```css
505
+ /* CSS: enable GPU compositing and smooth reset */
506
+ .feature-card {
507
+ transform-style: preserve-3d;
508
+ transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
509
+ box-shadow 0.3s ease;
510
+ will-change: transform;
511
+ }
512
+ ```
513
+
514
+ ```js
515
+ // JS: 3D tilt on mousemove, smooth reset on mouseleave
516
+ function initCardTilt(selector = '.feature-card') {
517
+ document.querySelectorAll(selector).forEach(card => {
518
+ card.addEventListener('mousemove', e => {
519
+ const r = card.getBoundingClientRect();
520
+ const x = (e.clientX - r.left) / r.width - 0.5; // -0.5 → +0.5
521
+ const y = (e.clientY - r.top) / r.height - 0.5;
522
+ card.style.transition = 'none';
523
+ card.style.transform =
524
+ `perspective(700px) rotateY(${x * 14}deg) rotateX(${-y * 14}deg) translateZ(10px)`;
525
+ });
526
+ card.addEventListener('mouseleave', () => {
527
+ card.style.transition = 'transform 0.6s cubic-bezier(0.16, 1, 0.3, 1)';
528
+ card.style.transform = '';
529
+ });
530
+ });
531
+ }
532
+
533
+ // Initialize on DOM ready
534
+ document.addEventListener('DOMContentLoaded', () => {
535
+ if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
536
+ initCardTilt('.feature-card');
537
+ initCardTilt('.tool-card');
538
+ }
539
+ });
540
+ ```
541
+
542
+ **Important:** do NOT apply tilt on touch devices:
543
+ ```js
544
+ if (window.matchMedia('(hover: none)').matches) return; // skip on touch
545
+ ```
546
+
547
+ ---
548
+
549
+ ### 2b. Clean & Luminous (Light, Apple-like)
550
+
551
+ ```css
552
+ :root {
553
+ --bg-base: hsl(0, 0%, 100%);
554
+ --bg-surface: hsl(220, 20%, 97%);
555
+ --bg-sunken: hsl(220, 15%, 94%);
556
+
557
+ --text-primary: hsl(220, 30%, 10%);
558
+ --text-secondary: hsl(220, 15%, 40%);
559
+ --text-muted: hsl(220, 10%, 65%);
560
+
561
+ --accent-primary: hsl(250, 90%, 58%);
562
+ --accent-light: hsla(250, 90%, 58%, 0.1);
563
+ --gradient-brand: linear-gradient(135deg, hsl(250,90%,58%), hsl(280,80%,65%));
564
+
565
+ --border-faint: hsl(220, 20%, 92%);
566
+ --border-subtle: hsl(220, 15%, 86%);
567
+ --shadow-sm: 0 1px 3px hsla(220,30%,10%,0.06), 0 4px 16px hsla(220,30%,10%,0.04);
568
+ --shadow-md: 0 4px 12px hsla(220,30%,10%,0.08), 0 16px 40px hsla(220,30%,10%,0.06);
569
+ --shadow-lg: 0 8px 24px hsla(220,30%,10%,0.1), 0 32px 64px hsla(220,30%,10%,0.08);
570
+
571
+ /* Same spacing/radius/motion tokens as Bold & Cinematic */
572
+ --font-display: 'Plus Jakarta Sans', sans-serif;
573
+ --font-body: 'Plus Jakarta Sans', sans-serif;
574
+ }
575
+
576
+ /* Header: white with subtle border */
577
+ .header {
578
+ background: hsla(0, 0%, 100%, 0.85);
579
+ backdrop-filter: blur(20px);
580
+ border-bottom: 1px solid var(--border-faint);
581
+ }
582
+
583
+ /* Cards with elegant hover */
584
+ .feature-card {
585
+ background: var(--bg-base);
586
+ border: 1px solid var(--border-faint);
587
+ border-radius: var(--radius-lg);
588
+ padding: var(--space-xl);
589
+ box-shadow: var(--shadow-sm);
590
+ transition: box-shadow var(--duration-base) ease, transform var(--duration-base) var(--ease-out);
591
+ }
592
+ .feature-card:hover {
593
+ box-shadow: var(--shadow-md);
594
+ transform: translateY(-4px);
595
+ }
596
+
597
+ /* Accent rule under section titles */
598
+ .section-title::after {
599
+ content: '';
600
+ display: block;
601
+ width: 48px; height: 3px;
602
+ border-radius: 2px;
603
+ background: var(--gradient-brand);
604
+ margin-top: 12px;
605
+ }
606
+
607
+ /* Soft section background alternation */
608
+ .how-it-works { background: var(--bg-surface); }
609
+ ```