enya-agent 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +20 -0
- package/.github/workflows/ci.yml +70 -0
- package/.github/workflows/publish.yml +250 -0
- package/.gitmodules +3 -0
- package/Cargo.lock +3584 -0
- package/Cargo.toml +97 -0
- package/crates/enact/Cargo.toml +27 -0
- package/crates/enact/src/lib.rs +60 -0
- package/crates/enact-a2a/Cargo.toml +25 -0
- package/crates/enact-a2a/src/lib.rs +411 -0
- package/crates/enact-channels/Cargo.toml +64 -0
- package/crates/enact-channels/examples/README.md +80 -0
- package/crates/enact-channels/examples/channel_bot.rs +169 -0
- package/crates/enact-channels/examples/telegram-echo.rs +34 -0
- package/crates/enact-channels/examples/whatsapp-echo.rs +142 -0
- package/crates/enact-channels/src/config.rs +213 -0
- package/crates/enact-channels/src/lib.rs +25 -0
- package/crates/enact-channels/src/runtime.rs +237 -0
- package/crates/enact-channels/src/security/mod.rs +5 -0
- package/crates/enact-channels/src/security/pairing.rs +205 -0
- package/crates/enact-channels/src/teams.rs +601 -0
- package/crates/enact-channels/src/telegram.rs +2833 -0
- package/crates/enact-channels/src/traits.rs +200 -0
- package/crates/enact-channels/src/webhook.rs +262 -0
- package/crates/enact-channels/src/whatsapp.rs +310 -0
- package/crates/enact-cli/Cargo.toml +40 -0
- package/crates/enact-cli/src/commands/doctor.rs +62 -0
- package/crates/enact-cli/src/commands/mod.rs +3 -0
- package/crates/enact-cli/src/commands/run.rs +69 -0
- package/crates/enact-cli/src/commands/serve.rs +81 -0
- package/crates/enact-cli/src/config.rs +2 -0
- package/crates/enact-cli/src/main.rs +79 -0
- package/crates/enact-config/Cargo.toml +36 -0
- package/crates/enact-config/ENV_VAR_MAPPING.md +135 -0
- package/crates/enact-config/QUICK_REFERENCE.md +92 -0
- package/crates/enact-config/README.md +107 -0
- package/crates/enact-config/TESTING.md +161 -0
- package/crates/enact-config/examples/test-env-vars.rs +100 -0
- package/crates/enact-config/src/config.rs +399 -0
- package/crates/enact-config/src/encrypted_store.rs +211 -0
- package/crates/enact-config/src/lib.rs +298 -0
- package/crates/enact-config/src/secrets.rs +149 -0
- package/crates/enact-config/src/sync.rs +260 -0
- package/crates/enact-config/test-env-vars.sh +34 -0
- package/crates/enact-config/tests/README.md +99 -0
- package/crates/enact-config/tests/config_integration_test.rs +202 -0
- package/crates/enact-config/tests/security_test.rs +140 -0
- package/crates/enact-context/Cargo.toml +41 -0
- package/crates/enact-context/src/budget.rs +314 -0
- package/crates/enact-context/src/calibrator.rs +535 -0
- package/crates/enact-context/src/compactor.rs +392 -0
- package/crates/enact-context/src/condenser.rs +826 -0
- package/crates/enact-context/src/lib.rs +94 -0
- package/crates/enact-context/src/segment.rs +238 -0
- package/crates/enact-context/src/step_context.rs +645 -0
- package/crates/enact-context/src/token_counter.rs +148 -0
- package/crates/enact-context/src/window.rs +372 -0
- package/crates/enact-core/Cargo.toml +42 -0
- package/crates/enact-core/README.md +98 -0
- package/crates/enact-core/src/background/executor.rs +524 -0
- package/crates/enact-core/src/background/mod.rs +48 -0
- package/crates/enact-core/src/background/target_binding.rs +390 -0
- package/crates/enact-core/src/background/trigger.rs +511 -0
- package/crates/enact-core/src/callable/callable.rs +152 -0
- package/crates/enact-core/src/callable/composite.rs +817 -0
- package/crates/enact-core/src/callable/graph.rs +104 -0
- package/crates/enact-core/src/callable/llm.rs +211 -0
- package/crates/enact-core/src/callable/mod.rs +64 -0
- package/crates/enact-core/src/callable/registry.rs +206 -0
- package/crates/enact-core/src/context/execution_context.rs +757 -0
- package/crates/enact-core/src/context/invocation.rs +99 -0
- package/crates/enact-core/src/context/mod.rs +50 -0
- package/crates/enact-core/src/context/tenant.rs +175 -0
- package/crates/enact-core/src/context/trace.rs +127 -0
- package/crates/enact-core/src/flow/conditional.rs +293 -0
- package/crates/enact-core/src/flow/mod.rs +43 -0
- package/crates/enact-core/src/flow/parallel.rs +437 -0
- package/crates/enact-core/src/flow/repeat.rs +534 -0
- package/crates/enact-core/src/flow/sequential.rs +248 -0
- package/crates/enact-core/src/graph/checkpoint.rs +79 -0
- package/crates/enact-core/src/graph/checkpoint_store.rs +76 -0
- package/crates/enact-core/src/graph/compiled.rs +189 -0
- package/crates/enact-core/src/graph/edge.rs +59 -0
- package/crates/enact-core/src/graph/graph_schema.rs +218 -0
- package/crates/enact-core/src/graph/loader.rs +155 -0
- package/crates/enact-core/src/graph/mod.rs +18 -0
- package/crates/enact-core/src/graph/node/function.rs +49 -0
- package/crates/enact-core/src/graph/node/mod.rs +48 -0
- package/crates/enact-core/src/graph/schema.rs +62 -0
- package/crates/enact-core/src/inbox/message.rs +405 -0
- package/crates/enact-core/src/inbox/mod.rs +31 -0
- package/crates/enact-core/src/inbox/store.rs +355 -0
- package/crates/enact-core/src/kernel/artifact/filesystem.rs +546 -0
- package/crates/enact-core/src/kernel/artifact/metadata.rs +283 -0
- package/crates/enact-core/src/kernel/artifact/mod.rs +27 -0
- package/crates/enact-core/src/kernel/artifact/store.rs +427 -0
- package/crates/enact-core/src/kernel/enforcement.rs +1315 -0
- package/crates/enact-core/src/kernel/error.rs +1200 -0
- package/crates/enact-core/src/kernel/event.rs +1394 -0
- package/crates/enact-core/src/kernel/execution_model.rs +831 -0
- package/crates/enact-core/src/kernel/execution_state.rs +189 -0
- package/crates/enact-core/src/kernel/execution_strategy.rs +117 -0
- package/crates/enact-core/src/kernel/ids.rs +2086 -0
- package/crates/enact-core/src/kernel/interrupt.rs +125 -0
- package/crates/enact-core/src/kernel/kernel.rs +1283 -0
- package/crates/enact-core/src/kernel/mod.rs +205 -0
- package/crates/enact-core/src/kernel/persistence/event_store.rs +270 -0
- package/crates/enact-core/src/kernel/persistence/message_store.rs +908 -0
- package/crates/enact-core/src/kernel/persistence/mod.rs +102 -0
- package/crates/enact-core/src/kernel/persistence/state_store.rs +228 -0
- package/crates/enact-core/src/kernel/persistence/vector_store.rs +299 -0
- package/crates/enact-core/src/kernel/reducer.rs +808 -0
- package/crates/enact-core/src/kernel/replay.rs +153 -0
- package/crates/enact-core/src/lib.rs +413 -0
- package/crates/enact-core/src/memory/episodic.rs +0 -0
- package/crates/enact-core/src/memory/mod.rs +6 -0
- package/crates/enact-core/src/memory/semantic.rs +0 -0
- package/crates/enact-core/src/memory/trait.rs +0 -0
- package/crates/enact-core/src/memory/vector_db.rs +0 -0
- package/crates/enact-core/src/memory/working.rs +0 -0
- package/crates/enact-core/src/policy/execution_policy.rs +292 -0
- package/crates/enact-core/src/policy/filters.rs +458 -0
- package/crates/enact-core/src/policy/input_processor.rs +407 -0
- package/crates/enact-core/src/policy/long_running.rs +134 -0
- package/crates/enact-core/src/policy/mod.rs +193 -0
- package/crates/enact-core/src/policy/pii_input.rs +274 -0
- package/crates/enact-core/src/policy/tenant_policy.rs +453 -0
- package/crates/enact-core/src/policy/tool_policy.rs +407 -0
- package/crates/enact-core/src/providers/mod.rs +63 -0
- package/crates/enact-core/src/providers/trait.rs +292 -0
- package/crates/enact-core/src/runner/callbacks.rs +6 -0
- package/crates/enact-core/src/runner/execution_runner.rs +476 -0
- package/crates/enact-core/src/runner/loop.rs +117 -0
- package/crates/enact-core/src/runner/mod.rs +58 -0
- package/crates/enact-core/src/runner/protected_runner.rs +280 -0
- package/crates/enact-core/src/signal/inmemory.rs +231 -0
- package/crates/enact-core/src/signal/mod.rs +108 -0
- package/crates/enact-core/src/streaming/event_logger.rs +195 -0
- package/crates/enact-core/src/streaming/event_stream.rs +1423 -0
- package/crates/enact-core/src/streaming/mod.rs +108 -0
- package/crates/enact-core/src/streaming/pause_cancel.rs +0 -0
- package/crates/enact-core/src/streaming/protected_emitter.rs +173 -0
- package/crates/enact-core/src/streaming/protection/context.rs +136 -0
- package/crates/enact-core/src/streaming/protection/encryption.rs +289 -0
- package/crates/enact-core/src/streaming/protection/mod.rs +43 -0
- package/crates/enact-core/src/streaming/protection/pii_protection.rs +243 -0
- package/crates/enact-core/src/streaming/protection/processor.rs +166 -0
- package/crates/enact-core/src/streaming/sse.rs +0 -0
- package/crates/enact-core/src/telemetry/exporter.rs +0 -0
- package/crates/enact-core/src/telemetry/init.rs +0 -0
- package/crates/enact-core/src/telemetry/mod.rs +49 -0
- package/crates/enact-core/src/telemetry/spans.rs +245 -0
- package/crates/enact-core/src/tool/agent_tool.rs +177 -0
- package/crates/enact-core/src/tool/browser/mod.rs +0 -0
- package/crates/enact-core/src/tool/browser/webdriver.rs +0 -0
- package/crates/enact-core/src/tool/cost.rs +247 -0
- package/crates/enact-core/src/tool/discovery.rs +0 -0
- package/crates/enact-core/src/tool/dispatcher.rs +347 -0
- package/crates/enact-core/src/tool/filesystem.rs +231 -0
- package/crates/enact-core/src/tool/function.rs +99 -0
- package/crates/enact-core/src/tool/git.rs +162 -0
- package/crates/enact-core/src/tool/http.rs +214 -0
- package/crates/enact-core/src/tool/mcp/client.rs +0 -0
- package/crates/enact-core/src/tool/mcp/mod.rs +0 -0
- package/crates/enact-core/src/tool/mod.rs +51 -0
- package/crates/enact-core/src/tool/reasoning/debugging.rs +0 -0
- package/crates/enact-core/src/tool/reasoning/mcts.rs +0 -0
- package/crates/enact-core/src/tool/reasoning/mod.rs +0 -0
- package/crates/enact-core/src/tool/reasoning/sequential.rs +0 -0
- package/crates/enact-core/src/tool/sandbox/dagger.rs +0 -0
- package/crates/enact-core/src/tool/sandbox/mod.rs +0 -0
- package/crates/enact-core/src/tool/shell.rs +147 -0
- package/crates/enact-core/src/tool/trait.rs +33 -0
- package/crates/enact-core/src/tool/web_search.rs +277 -0
- package/crates/enact-core/src/util/config.rs +0 -0
- package/crates/enact-core/src/util/errors.rs +0 -0
- package/crates/enact-core/src/util/mod.rs +6 -0
- package/crates/enact-core/tests/airgapped_e2e_test.rs +291 -0
- package/crates/enact-core/tests/e2e_agentic_loop.rs +119 -0
- package/crates/enact-core/tests/e2e_test.rs +259 -0
- package/crates/enact-core/tests/graph_test.rs +130 -0
- package/crates/enact-core/tests/stream_event_id_validation.rs +435 -0
- package/crates/enact-cron/Cargo.toml +28 -0
- package/crates/enact-cron/src/lib.rs +44 -0
- package/crates/enact-cron/src/schedule.rs +156 -0
- package/crates/enact-cron/src/store.rs +589 -0
- package/crates/enact-cron/src/types.rs +148 -0
- package/crates/enact-gateway/Cargo.toml +31 -0
- package/crates/enact-gateway/README.md +30 -0
- package/crates/enact-gateway/examples/whatsapp-gateway-runner-mock.rs +59 -0
- package/crates/enact-gateway/examples/whatsapp-gateway.rs +42 -0
- package/crates/enact-gateway/src/lib.rs +582 -0
- package/crates/enact-mcp/Cargo.toml +24 -0
- package/crates/enact-mcp/src/lib.rs +178 -0
- package/crates/enact-memory/Cargo.toml +25 -0
- package/crates/enact-memory/src/backend.rs +20 -0
- package/crates/enact-memory/src/chunker.rs +230 -0
- package/crates/enact-memory/src/embeddings.rs +221 -0
- package/crates/enact-memory/src/lib.rs +67 -0
- package/crates/enact-memory/src/markdown.rs +127 -0
- package/crates/enact-memory/src/none.rs +61 -0
- package/crates/enact-memory/src/sqlite.rs +276 -0
- package/crates/enact-memory/src/traits.rs +65 -0
- package/crates/enact-memory/src/vector.rs +198 -0
- package/crates/enact-oauth/Cargo.toml +27 -0
- package/crates/enact-oauth/src/lib.rs +584 -0
- package/crates/enact-observability/Cargo.toml +22 -0
- package/crates/enact-observability/src/lib.rs +197 -0
- package/crates/enact-providers/Cargo.toml +33 -0
- package/crates/enact-providers/examples/hello-agent.rs +33 -0
- package/crates/enact-providers/src/anthropic.rs +182 -0
- package/crates/enact-providers/src/azure.rs +96 -0
- package/crates/enact-providers/src/bridge.rs +221 -0
- package/crates/enact-providers/src/gemini.rs +227 -0
- package/crates/enact-providers/src/http.rs +78 -0
- package/crates/enact-providers/src/lib.rs +53 -0
- package/crates/enact-providers/src/openai_compatible.rs +167 -0
- package/crates/enact-providers/src/openrouter.rs +33 -0
- package/crates/enact-runner/Cargo.toml +24 -0
- package/crates/enact-runner/README.md +76 -0
- package/crates/enact-runner/src/compaction.rs +225 -0
- package/crates/enact-runner/src/config.rs +118 -0
- package/crates/enact-runner/src/lib.rs +63 -0
- package/crates/enact-runner/src/loop_driver.rs +414 -0
- package/crates/enact-runner/src/parser.rs +421 -0
- package/crates/enact-runner/src/retry.rs +262 -0
- package/crates/enact-runner/tests/integration.rs +278 -0
- package/crates/enact-security/Cargo.toml +22 -0
- package/crates/enact-security/src/audit.rs +375 -0
- package/crates/enact-security/src/lib.rs +37 -0
- package/crates/enact-security/src/policy.rs +406 -0
- package/crates/enact-skills/Cargo.toml +25 -0
- package/crates/enact-skills/src/lib.rs +506 -0
- package/crates/enact-tools/Cargo.toml +22 -0
- package/crates/enact-tools/src/file_read.rs +166 -0
- package/crates/enact-tools/src/file_write.rs +216 -0
- package/crates/enact-tools/src/git_operations.rs +513 -0
- package/crates/enact-tools/src/http_request.rs +417 -0
- package/crates/enact-tools/src/lib.rs +104 -0
- package/crates/enact-tools/src/security.rs +227 -0
- package/crates/enact-tools/src/shell.rs +191 -0
- package/crates/enact-tools/src/traits.rs +159 -0
- package/docs/Makefile +74 -0
- package/docs/config.toml +62 -0
- package/docs/content/_index.md +174 -0
- package/docs/content/a2a/_index.md +431 -0
- package/docs/content/api/_index.md +323 -0
- package/docs/content/channels/_index.md +160 -0
- package/docs/content/channels/teams.md +205 -0
- package/docs/content/channels/telegram.md +182 -0
- package/docs/content/channels/webhook.md +423 -0
- package/docs/content/channels/whatsapp.md +240 -0
- package/docs/content/cli/_index.md +261 -0
- package/docs/content/concepts/_index.md +273 -0
- package/docs/content/configuration/_index.md +241 -0
- package/docs/content/cron/_index.md +248 -0
- package/docs/content/developers/_index.md +278 -0
- package/docs/content/getting-started/_index.md +180 -0
- package/docs/content/installation/_index.md +186 -0
- package/docs/content/installation/uninstall.md +101 -0
- package/docs/content/installation/updating.md +120 -0
- package/docs/content/mcp/_index.md +215 -0
- package/docs/content/memory/_index.md +163 -0
- package/docs/content/oauth/_index.md +515 -0
- package/docs/content/providers/_index.md +206 -0
- package/docs/content/roadmap/_index.md +199 -0
- package/docs/content/security/_index.md +219 -0
- package/docs/content/skills/_index.md +228 -0
- package/docs/content/tools/_index.md +485 -0
- package/docs/content/troubleshooting/_index.md +259 -0
- package/docs/content/yaml-schema/_index.md +294 -0
- package/docs/static/giallo-dark.css +91 -0
- package/docs/static/giallo-light.css +91 -0
- package/docs/themes/tanuki/.github/workflows/deploy.yml +44 -0
- package/docs/themes/tanuki/LICENSE +21 -0
- package/docs/themes/tanuki/README.md +166 -0
- package/docs/themes/tanuki/examples/blog/config.toml +58 -0
- package/docs/themes/tanuki/examples/blog/content/_index.md +4 -0
- package/docs/themes/tanuki/examples/blog/content/about.md +33 -0
- package/docs/themes/tanuki/examples/blog/content/blog/_index.md +7 -0
- package/docs/themes/tanuki/examples/blog/content/blog/api-design-best-practices.md +245 -0
- package/docs/themes/tanuki/examples/blog/content/blog/building-accessible-websites.md +147 -0
- package/docs/themes/tanuki/examples/blog/content/blog/css-grid-vs-flexbox.md +165 -0
- package/docs/themes/tanuki/examples/blog/content/blog/customizing-catppuccin-colors.md +137 -0
- package/docs/themes/tanuki/examples/blog/content/blog/dark-mode-best-practices.md +82 -0
- package/docs/themes/tanuki/examples/blog/content/blog/docker-essentials.md +301 -0
- package/docs/themes/tanuki/examples/blog/content/blog/getting-started-with-zola.md +129 -0
- package/docs/themes/tanuki/examples/blog/content/blog/git-workflow-for-content.md +112 -0
- package/docs/themes/tanuki/examples/blog/content/blog/introduction-to-webassembly.md +183 -0
- package/docs/themes/tanuki/examples/blog/content/blog/modern-javascript-features.md +234 -0
- package/docs/themes/tanuki/examples/blog/content/blog/testing-strategies.md +311 -0
- package/docs/themes/tanuki/examples/blog/content/blog/typography-for-developers.md +104 -0
- package/docs/themes/tanuki/examples/blog/content/blog/welcome-to-tanuki.md +67 -0
- package/docs/themes/tanuki/examples/blog/content/blog/why-static-sites.md +85 -0
- package/docs/themes/tanuki/examples/blog/content/projects.md +64 -0
- package/docs/themes/tanuki/examples/book/config.toml +17 -0
- package/docs/themes/tanuki/examples/book/content/_index.md +12 -0
- package/docs/themes/tanuki/examples/book/content/chapter-1.md +90 -0
- package/docs/themes/tanuki/examples/book/content/chapter-2.md +143 -0
- package/docs/themes/tanuki/examples/book/content/chapter-3.md +217 -0
- package/docs/themes/tanuki/examples/book/content/chapter-4.md +224 -0
- package/docs/themes/tanuki/examples/book/content/chapter-5.md +297 -0
- package/docs/themes/tanuki/examples/book/content/print.md +6 -0
- package/docs/themes/tanuki/examples/docs/config.toml +28 -0
- package/docs/themes/tanuki/examples/docs/content/_index.md +20 -0
- package/docs/themes/tanuki/examples/docs/content/components.md +156 -0
- package/docs/themes/tanuki/examples/docs/content/configuration.md +94 -0
- package/docs/themes/tanuki/examples/docs/content/customization.md +202 -0
- package/docs/themes/tanuki/examples/docs/content/deployment.md +204 -0
- package/docs/themes/tanuki/examples/docs/content/installation.md +59 -0
- package/docs/themes/tanuki/examples/docs/content/print.md +6 -0
- package/docs/themes/tanuki/examples/docs/static/img/tanuki-icon.avif +0 -0
- package/docs/themes/tanuki/examples/index.html +2104 -0
- package/docs/themes/tanuki/mise.toml +108 -0
- package/docs/themes/tanuki/sass/base/_catppuccin.scss +164 -0
- package/docs/themes/tanuki/sass/base/_fonts.scss +64 -0
- package/docs/themes/tanuki/sass/base/_reset.scss +152 -0
- package/docs/themes/tanuki/sass/base/_typography.scss +523 -0
- package/docs/themes/tanuki/sass/components/_buttons.scss +209 -0
- package/docs/themes/tanuki/sass/components/_code.scss +457 -0
- package/docs/themes/tanuki/sass/components/_landing.scss +633 -0
- package/docs/themes/tanuki/sass/components/_layout.scss +294 -0
- package/docs/themes/tanuki/sass/components/_navigation.scss +1200 -0
- package/docs/themes/tanuki/sass/components/_print.scss +237 -0
- package/docs/themes/tanuki/sass/components/_search.scss +224 -0
- package/docs/themes/tanuki/sass/components/_sidebar.scss +473 -0
- package/docs/themes/tanuki/sass/components/_theme-toggle.scss +186 -0
- package/docs/themes/tanuki/sass/modes/_blog.scss +366 -0
- package/docs/themes/tanuki/sass/modes/_product.scss +875 -0
- package/docs/themes/tanuki/sass/modes/_raskell.scss +1696 -0
- package/docs/themes/tanuki/sass/patterns/_buttons.scss +183 -0
- package/docs/themes/tanuki/sass/patterns/_cards.scss +144 -0
- package/docs/themes/tanuki/sass/patterns/_index.scss +9 -0
- package/docs/themes/tanuki/sass/patterns/_lists.scss +259 -0
- package/docs/themes/tanuki/sass/patterns/_sections.scss +243 -0
- package/docs/themes/tanuki/sass/style.scss +47 -0
- package/docs/themes/tanuki/sass/tokens/_colors.scss +139 -0
- package/docs/themes/tanuki/sass/tokens/_spacing.scss +100 -0
- package/docs/themes/tanuki/sass/tokens/_typography.scss +186 -0
- package/docs/themes/tanuki/screenshot.png +0 -0
- package/docs/themes/tanuki/sentinel.kdl +59 -0
- package/docs/themes/tanuki/static/elasticlunr.min.js +10 -0
- package/docs/themes/tanuki/static/fonts/GEIST-LICENSE.txt +92 -0
- package/docs/themes/tanuki/static/fonts/Geist-Variable.woff2 +0 -0
- package/docs/themes/tanuki/static/fonts/GeistMono-Variable.woff2 +0 -0
- package/docs/themes/tanuki/static/img/tanuki-icon.avif +0 -0
- package/docs/themes/tanuki/static/img/tanuki-icon.png +0 -0
- package/docs/themes/tanuki/static/js/anchors.js +18 -0
- package/docs/themes/tanuki/static/js/app.js +274 -0
- package/docs/themes/tanuki/static/js/code.js +394 -0
- package/docs/themes/tanuki/static/js/navigation.js +778 -0
- package/docs/themes/tanuki/static/js/scroll-to-top.js +33 -0
- package/docs/themes/tanuki/static/js/search-raskell.js +240 -0
- package/docs/themes/tanuki/static/js/search.js +215 -0
- package/docs/themes/tanuki/static/js/theme.js +169 -0
- package/docs/themes/tanuki/static/syntax-dark.css +151 -0
- package/docs/themes/tanuki/static/syntax-light.css +151 -0
- package/docs/themes/tanuki/static/wasm/sentinel_playground_wasm.js +486 -0
- package/docs/themes/tanuki/static/wasm/sentinel_playground_wasm_bg.wasm +0 -0
- package/docs/themes/tanuki/templates/404.html +52 -0
- package/docs/themes/tanuki/templates/base.html +428 -0
- package/docs/themes/tanuki/templates/blog.html +66 -0
- package/docs/themes/tanuki/templates/home.html +108 -0
- package/docs/themes/tanuki/templates/index.html +178 -0
- package/docs/themes/tanuki/templates/landing.html +168 -0
- package/docs/themes/tanuki/templates/macros/nav.html +128 -0
- package/docs/themes/tanuki/templates/macros/posts.html +101 -0
- package/docs/themes/tanuki/templates/macros/ui.html +159 -0
- package/docs/themes/tanuki/templates/page.html +135 -0
- package/docs/themes/tanuki/templates/partials/footer.html +38 -0
- package/docs/themes/tanuki/templates/partials/header.html +366 -0
- package/docs/themes/tanuki/templates/partials/nav-buttons.html +55 -0
- package/docs/themes/tanuki/templates/partials/nav-overlay.html +81 -0
- package/docs/themes/tanuki/templates/partials/page-toc-panel.html +43 -0
- package/docs/themes/tanuki/templates/partials/search.html +52 -0
- package/docs/themes/tanuki/templates/partials/sidebar.html +107 -0
- package/docs/themes/tanuki/templates/partials/theme-toggle.html +35 -0
- package/docs/themes/tanuki/templates/partials/toc-overlay.html +146 -0
- package/docs/themes/tanuki/templates/partials/version-picker.html +38 -0
- package/docs/themes/tanuki/templates/print.html +244 -0
- package/docs/themes/tanuki/templates/section.html +186 -0
- package/docs/themes/tanuki/templates/taxonomy_list.html +18 -0
- package/docs/themes/tanuki/templates/taxonomy_single.html +31 -0
- package/docs/themes/tanuki/theme.toml +58 -0
- package/examples/hello-agent.rs +55 -0
- package/package.json +36 -0
- package/proto/config.proto +60 -0
- package/proto/events.proto +0 -0
- package/proto/runtime.proto +215 -0
|
@@ -0,0 +1,875 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Mode: Product
|
|
3
|
+
// Product landing page styling with hero, features, demo, install sections
|
|
4
|
+
// =============================================================================
|
|
5
|
+
|
|
6
|
+
@use "../tokens/spacing" as *;
|
|
7
|
+
@use "../tokens/typography" as *;
|
|
8
|
+
@use "../patterns/cards" as *;
|
|
9
|
+
@use "../patterns/sections" as *;
|
|
10
|
+
@use "../patterns/buttons" as *;
|
|
11
|
+
|
|
12
|
+
// =============================================================================
|
|
13
|
+
// Layout
|
|
14
|
+
// =============================================================================
|
|
15
|
+
|
|
16
|
+
[data-mode="product"] {
|
|
17
|
+
.layout__main {
|
|
18
|
+
width: 100%;
|
|
19
|
+
max-width: 100%;
|
|
20
|
+
padding: 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.main-content {
|
|
24
|
+
padding: 0;
|
|
25
|
+
max-width: 100%;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// Full-width sections
|
|
29
|
+
.product-section {
|
|
30
|
+
width: 100%;
|
|
31
|
+
padding: var(--space-16) var(--space-6);
|
|
32
|
+
|
|
33
|
+
@media (max-width: 640px) {
|
|
34
|
+
padding: var(--space-12) var(--space-4);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.product-section__container {
|
|
39
|
+
max-width: 1200px;
|
|
40
|
+
margin: 0 auto;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.product-section__title {
|
|
44
|
+
text-align: center;
|
|
45
|
+
font-size: var(--text-3xl);
|
|
46
|
+
font-weight: var(--font-bold);
|
|
47
|
+
margin-bottom: var(--space-8);
|
|
48
|
+
color: var(--color-heading);
|
|
49
|
+
|
|
50
|
+
@media (min-width: 800px) {
|
|
51
|
+
font-size: var(--text-4xl);
|
|
52
|
+
margin-bottom: var(--space-12);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// =============================================================================
|
|
58
|
+
// Header Overrides
|
|
59
|
+
// =============================================================================
|
|
60
|
+
|
|
61
|
+
[data-mode="product"] {
|
|
62
|
+
.header {
|
|
63
|
+
position: sticky;
|
|
64
|
+
top: 0;
|
|
65
|
+
z-index: 100;
|
|
66
|
+
background: rgba(var(--color-bg-rgb), 0.8);
|
|
67
|
+
backdrop-filter: blur(12px);
|
|
68
|
+
-webkit-backdrop-filter: blur(12px);
|
|
69
|
+
border-bottom: 1px solid var(--color-border);
|
|
70
|
+
height: 64px;
|
|
71
|
+
display: flex;
|
|
72
|
+
align-items: center;
|
|
73
|
+
justify-content: center;
|
|
74
|
+
padding: 0 var(--space-6);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.header__left {
|
|
78
|
+
display: flex;
|
|
79
|
+
align-items: center;
|
|
80
|
+
gap: var(--space-3);
|
|
81
|
+
flex-shrink: 0;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.header__nav {
|
|
85
|
+
display: flex;
|
|
86
|
+
align-items: center;
|
|
87
|
+
gap: var(--space-6);
|
|
88
|
+
margin-left: auto;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.header__link {
|
|
92
|
+
color: var(--color-text-muted);
|
|
93
|
+
font-size: var(--text-sm);
|
|
94
|
+
font-weight: var(--font-medium);
|
|
95
|
+
text-decoration: none;
|
|
96
|
+
transition: color 0.2s;
|
|
97
|
+
|
|
98
|
+
&:hover {
|
|
99
|
+
color: var(--color-text);
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.header__actions {
|
|
104
|
+
display: flex;
|
|
105
|
+
align-items: center;
|
|
106
|
+
gap: var(--space-2);
|
|
107
|
+
margin-left: var(--space-6);
|
|
108
|
+
flex-shrink: 0;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
// =============================================================================
|
|
113
|
+
// Product Hero
|
|
114
|
+
// =============================================================================
|
|
115
|
+
|
|
116
|
+
.product-hero {
|
|
117
|
+
padding: var(--space-16) var(--space-6);
|
|
118
|
+
text-align: center;
|
|
119
|
+
background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
|
|
120
|
+
|
|
121
|
+
@media (min-width: 800px) {
|
|
122
|
+
padding: var(--space-20) var(--space-6);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.product-hero__title {
|
|
127
|
+
font-family: var(--font-mono);
|
|
128
|
+
font-size: clamp(2.5rem, 8vw, 4rem);
|
|
129
|
+
font-weight: var(--font-bold);
|
|
130
|
+
color: var(--color-accent);
|
|
131
|
+
margin-bottom: var(--space-4);
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.product-hero__subtitle {
|
|
135
|
+
font-size: var(--text-xl);
|
|
136
|
+
color: var(--color-text-muted);
|
|
137
|
+
margin-bottom: var(--space-2);
|
|
138
|
+
|
|
139
|
+
@media (min-width: 800px) {
|
|
140
|
+
font-size: var(--text-2xl);
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.product-hero__tagline {
|
|
145
|
+
font-size: var(--text-lg);
|
|
146
|
+
color: var(--color-text-muted);
|
|
147
|
+
max-width: 600px;
|
|
148
|
+
margin: 0 auto var(--space-8);
|
|
149
|
+
opacity: 0.8;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.product-hero__actions {
|
|
153
|
+
display: flex;
|
|
154
|
+
gap: var(--space-4);
|
|
155
|
+
justify-content: center;
|
|
156
|
+
flex-wrap: wrap;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
// =============================================================================
|
|
160
|
+
// Demo Section
|
|
161
|
+
// =============================================================================
|
|
162
|
+
|
|
163
|
+
.product-demo {
|
|
164
|
+
padding: var(--space-12) 0;
|
|
165
|
+
background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg-elevated) 100%);
|
|
166
|
+
display: flex;
|
|
167
|
+
flex-direction: column;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.product-demo__subtitle {
|
|
171
|
+
text-align: center;
|
|
172
|
+
color: var(--color-text-muted);
|
|
173
|
+
margin: 0 auto var(--space-6);
|
|
174
|
+
font-size: var(--text-lg);
|
|
175
|
+
padding: 0 var(--space-6);
|
|
176
|
+
max-width: 600px;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.product-demo__container {
|
|
180
|
+
display: flex;
|
|
181
|
+
flex-direction: column;
|
|
182
|
+
width: 100%;
|
|
183
|
+
max-width: 1200px;
|
|
184
|
+
margin: 0 auto;
|
|
185
|
+
padding: 0 var(--space-6);
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.product-demo__input-group {
|
|
189
|
+
display: flex;
|
|
190
|
+
gap: var(--space-4);
|
|
191
|
+
margin-bottom: var(--space-6);
|
|
192
|
+
|
|
193
|
+
@media (max-width: 640px) {
|
|
194
|
+
flex-direction: column;
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.product-demo__input {
|
|
199
|
+
flex: 1;
|
|
200
|
+
padding: var(--space-3) var(--space-4);
|
|
201
|
+
font-size: var(--text-base);
|
|
202
|
+
font-family: var(--font-mono);
|
|
203
|
+
background: var(--color-bg-elevated);
|
|
204
|
+
border: 2px solid var(--color-border);
|
|
205
|
+
border-radius: 8px;
|
|
206
|
+
color: var(--color-text);
|
|
207
|
+
transition: border-color 0.2s;
|
|
208
|
+
|
|
209
|
+
&:focus {
|
|
210
|
+
outline: none;
|
|
211
|
+
border-color: var(--color-accent);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
&::placeholder {
|
|
215
|
+
color: var(--color-text-muted);
|
|
216
|
+
opacity: 0.6;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.product-demo__button {
|
|
221
|
+
padding: var(--space-3) var(--space-8);
|
|
222
|
+
font-size: var(--text-base);
|
|
223
|
+
font-weight: var(--font-semibold);
|
|
224
|
+
background: var(--color-accent);
|
|
225
|
+
color: var(--color-bg);
|
|
226
|
+
border: none;
|
|
227
|
+
border-radius: 8px;
|
|
228
|
+
cursor: pointer;
|
|
229
|
+
transition: opacity 0.2s, transform 0.1s;
|
|
230
|
+
|
|
231
|
+
&:hover {
|
|
232
|
+
opacity: 0.9;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
&:active {
|
|
236
|
+
transform: scale(0.98);
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
&:disabled {
|
|
240
|
+
opacity: 0.5;
|
|
241
|
+
cursor: not-allowed;
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.product-demo__output {
|
|
246
|
+
background: var(--color-bg-alt);
|
|
247
|
+
border-radius: 12px;
|
|
248
|
+
padding: var(--space-6);
|
|
249
|
+
overflow-y: auto;
|
|
250
|
+
|
|
251
|
+
&:empty {
|
|
252
|
+
display: none;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.product-demo__placeholder {
|
|
257
|
+
color: var(--color-text-muted);
|
|
258
|
+
text-align: center;
|
|
259
|
+
padding: var(--space-16) var(--space-8);
|
|
260
|
+
font-style: italic;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.product-demo__loading {
|
|
264
|
+
display: flex;
|
|
265
|
+
align-items: center;
|
|
266
|
+
justify-content: center;
|
|
267
|
+
gap: var(--space-2);
|
|
268
|
+
color: var(--color-accent);
|
|
269
|
+
padding: var(--space-16) var(--space-8);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.product-demo__spinner {
|
|
273
|
+
width: 20px;
|
|
274
|
+
height: 20px;
|
|
275
|
+
border: 2px solid var(--color-border);
|
|
276
|
+
border-top-color: var(--color-accent);
|
|
277
|
+
border-radius: 50%;
|
|
278
|
+
animation: product-spin 0.8s linear infinite;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
@keyframes product-spin {
|
|
282
|
+
to { transform: rotate(360deg); }
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
// =============================================================================
|
|
286
|
+
// Install Section
|
|
287
|
+
// =============================================================================
|
|
288
|
+
|
|
289
|
+
.product-install {
|
|
290
|
+
padding: var(--space-16) var(--space-6);
|
|
291
|
+
background: var(--color-bg);
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.product-install__container {
|
|
295
|
+
max-width: 1200px;
|
|
296
|
+
margin: 0 auto;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.product-install__code {
|
|
300
|
+
background: var(--color-bg-alt);
|
|
301
|
+
border-radius: 12px;
|
|
302
|
+
padding: var(--space-6);
|
|
303
|
+
margin-bottom: var(--space-6);
|
|
304
|
+
position: relative;
|
|
305
|
+
|
|
306
|
+
code {
|
|
307
|
+
font-family: var(--font-mono);
|
|
308
|
+
font-size: var(--text-base);
|
|
309
|
+
color: var(--color-text);
|
|
310
|
+
display: block;
|
|
311
|
+
word-break: break-all;
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.product-install__comment {
|
|
316
|
+
color: var(--color-text-muted);
|
|
317
|
+
opacity: 0.6;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.product-install__cmd {
|
|
321
|
+
color: var(--color-accent);
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.product-install__copy-btn {
|
|
325
|
+
position: absolute;
|
|
326
|
+
top: var(--space-4);
|
|
327
|
+
right: var(--space-4);
|
|
328
|
+
padding: var(--space-2);
|
|
329
|
+
background: var(--color-bg-elevated);
|
|
330
|
+
border: 1px solid var(--color-border);
|
|
331
|
+
border-radius: 6px;
|
|
332
|
+
cursor: pointer;
|
|
333
|
+
color: var(--color-text);
|
|
334
|
+
transition: background 0.2s;
|
|
335
|
+
|
|
336
|
+
&:hover {
|
|
337
|
+
background: var(--color-bg-hover);
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.product-install__alternatives {
|
|
342
|
+
text-align: center;
|
|
343
|
+
color: var(--color-text-muted);
|
|
344
|
+
font-size: var(--text-base);
|
|
345
|
+
|
|
346
|
+
a {
|
|
347
|
+
color: var(--color-accent);
|
|
348
|
+
text-decoration: none;
|
|
349
|
+
|
|
350
|
+
&:hover {
|
|
351
|
+
text-decoration: underline;
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
// =============================================================================
|
|
357
|
+
// Usage Section
|
|
358
|
+
// =============================================================================
|
|
359
|
+
|
|
360
|
+
.product-usage {
|
|
361
|
+
padding: var(--space-16) var(--space-6);
|
|
362
|
+
background: var(--color-bg-alt);
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.product-usage__container {
|
|
366
|
+
max-width: 1200px;
|
|
367
|
+
margin: 0 auto;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.product-usage-example {
|
|
371
|
+
background: var(--color-bg-elevated);
|
|
372
|
+
border-radius: 12px;
|
|
373
|
+
margin-bottom: var(--space-4);
|
|
374
|
+
overflow: hidden;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.product-usage-example__header {
|
|
378
|
+
display: flex;
|
|
379
|
+
align-items: center;
|
|
380
|
+
justify-content: space-between;
|
|
381
|
+
padding: var(--space-4) var(--space-6);
|
|
382
|
+
cursor: pointer;
|
|
383
|
+
transition: background 0.2s;
|
|
384
|
+
|
|
385
|
+
&:hover {
|
|
386
|
+
background: var(--color-bg-hover);
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.product-usage-example__content {
|
|
391
|
+
flex: 1;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.product-usage-example__comment {
|
|
395
|
+
color: var(--color-text-muted);
|
|
396
|
+
font-family: var(--font-mono);
|
|
397
|
+
font-size: var(--text-sm);
|
|
398
|
+
margin-bottom: var(--space-1);
|
|
399
|
+
opacity: 0.6;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.product-usage-example__cmd {
|
|
403
|
+
color: var(--color-success);
|
|
404
|
+
font-family: var(--font-mono);
|
|
405
|
+
font-size: var(--text-base);
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.product-usage-example__toggle {
|
|
409
|
+
display: flex;
|
|
410
|
+
align-items: center;
|
|
411
|
+
justify-content: center;
|
|
412
|
+
width: 28px;
|
|
413
|
+
height: 28px;
|
|
414
|
+
background: var(--color-bg-elevated);
|
|
415
|
+
border: none;
|
|
416
|
+
border-radius: 6px;
|
|
417
|
+
color: var(--color-text-muted);
|
|
418
|
+
cursor: pointer;
|
|
419
|
+
transition: all 0.2s;
|
|
420
|
+
flex-shrink: 0;
|
|
421
|
+
|
|
422
|
+
&:hover {
|
|
423
|
+
background: var(--color-bg-hover);
|
|
424
|
+
color: var(--color-text);
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
svg {
|
|
428
|
+
transition: transform 0.2s;
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.product-usage-example.open .product-usage-example__toggle svg {
|
|
433
|
+
transform: rotate(180deg);
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.product-usage-example__output {
|
|
437
|
+
max-height: 0;
|
|
438
|
+
overflow: hidden;
|
|
439
|
+
transition: max-height 0.3s ease-out;
|
|
440
|
+
background: var(--color-bg-alt);
|
|
441
|
+
border-top: 1px solid var(--color-border);
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.product-usage-example.open .product-usage-example__output {
|
|
445
|
+
max-height: 600px;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.product-usage-example__output-content {
|
|
449
|
+
padding: var(--space-4) var(--space-6);
|
|
450
|
+
font-family: var(--font-mono);
|
|
451
|
+
font-size: var(--text-sm);
|
|
452
|
+
line-height: 1.5;
|
|
453
|
+
color: var(--color-text-muted);
|
|
454
|
+
white-space: pre;
|
|
455
|
+
overflow-x: auto;
|
|
456
|
+
|
|
457
|
+
.output-header {
|
|
458
|
+
color: var(--color-accent);
|
|
459
|
+
font-weight: var(--font-semibold);
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
.output-good {
|
|
463
|
+
color: var(--color-success);
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.output-warning {
|
|
467
|
+
color: var(--color-warning);
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.output-bad {
|
|
471
|
+
color: var(--color-error);
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.output-muted {
|
|
475
|
+
color: var(--color-text-muted);
|
|
476
|
+
opacity: 0.6;
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
// =============================================================================
|
|
481
|
+
// Feature Grid
|
|
482
|
+
// =============================================================================
|
|
483
|
+
|
|
484
|
+
.product-features {
|
|
485
|
+
padding: var(--space-16) var(--space-6);
|
|
486
|
+
background: var(--color-bg);
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.product-feature-grid {
|
|
490
|
+
display: grid;
|
|
491
|
+
grid-template-columns: repeat(3, 1fr);
|
|
492
|
+
gap: var(--space-6);
|
|
493
|
+
max-width: 1200px;
|
|
494
|
+
margin: 0 auto;
|
|
495
|
+
|
|
496
|
+
@media (max-width: 900px) {
|
|
497
|
+
grid-template-columns: repeat(2, 1fr);
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
@media (max-width: 600px) {
|
|
501
|
+
grid-template-columns: 1fr;
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.product-feature-card {
|
|
506
|
+
padding: var(--space-6);
|
|
507
|
+
background: var(--color-bg);
|
|
508
|
+
border-radius: 12px;
|
|
509
|
+
border: 1px solid var(--color-border);
|
|
510
|
+
transition: all 0.2s ease;
|
|
511
|
+
|
|
512
|
+
&:hover {
|
|
513
|
+
border-color: var(--color-border-muted);
|
|
514
|
+
transform: translateY(-2px);
|
|
515
|
+
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
.product-feature-card__icon {
|
|
520
|
+
display: flex;
|
|
521
|
+
align-items: center;
|
|
522
|
+
justify-content: center;
|
|
523
|
+
width: 48px;
|
|
524
|
+
height: 48px;
|
|
525
|
+
margin-bottom: var(--space-4);
|
|
526
|
+
background: var(--color-bg-elevated);
|
|
527
|
+
border-radius: 8px;
|
|
528
|
+
color: var(--color-accent);
|
|
529
|
+
|
|
530
|
+
svg {
|
|
531
|
+
width: 24px;
|
|
532
|
+
height: 24px;
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.product-feature-card__title {
|
|
537
|
+
font-size: var(--text-lg);
|
|
538
|
+
font-weight: var(--font-semibold);
|
|
539
|
+
margin-bottom: var(--space-2);
|
|
540
|
+
color: var(--color-text);
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
.product-feature-card__description {
|
|
544
|
+
font-size: var(--text-base);
|
|
545
|
+
color: var(--color-text-muted);
|
|
546
|
+
line-height: 1.6;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
// =============================================================================
|
|
550
|
+
// Support Section
|
|
551
|
+
// =============================================================================
|
|
552
|
+
|
|
553
|
+
.product-support {
|
|
554
|
+
padding: var(--space-16) var(--space-6);
|
|
555
|
+
background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
|
|
556
|
+
text-align: center;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
.product-support__content {
|
|
560
|
+
max-width: 600px;
|
|
561
|
+
margin: 0 auto;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.product-support__text {
|
|
565
|
+
font-size: var(--text-lg);
|
|
566
|
+
color: var(--color-text-muted);
|
|
567
|
+
margin-bottom: var(--space-8);
|
|
568
|
+
line-height: 1.6;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.product-support__button {
|
|
572
|
+
display: inline-flex;
|
|
573
|
+
align-items: center;
|
|
574
|
+
gap: var(--space-3);
|
|
575
|
+
padding: var(--space-4) var(--space-8);
|
|
576
|
+
font-size: var(--text-lg);
|
|
577
|
+
font-weight: var(--font-semibold);
|
|
578
|
+
background: #ff5e5b;
|
|
579
|
+
color: white;
|
|
580
|
+
border: none;
|
|
581
|
+
border-radius: 12px;
|
|
582
|
+
text-decoration: none;
|
|
583
|
+
transition: all 0.2s ease;
|
|
584
|
+
box-shadow: 0 4px 14px rgba(255, 94, 91, 0.3);
|
|
585
|
+
|
|
586
|
+
&:hover {
|
|
587
|
+
transform: translateY(-2px);
|
|
588
|
+
box-shadow: 0 6px 20px rgba(255, 94, 91, 0.4);
|
|
589
|
+
background: #ff4b47;
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
&:active {
|
|
593
|
+
transform: translateY(0);
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
.product-support__icon {
|
|
598
|
+
width: 24px;
|
|
599
|
+
height: 24px;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
// =============================================================================
|
|
603
|
+
// Product Footer
|
|
604
|
+
// =============================================================================
|
|
605
|
+
|
|
606
|
+
.product-footer {
|
|
607
|
+
position: relative;
|
|
608
|
+
padding: var(--space-16) var(--space-8) var(--space-8);
|
|
609
|
+
background: var(--color-bg-alt);
|
|
610
|
+
border-top: 1px solid var(--color-border);
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
.product-footer__container {
|
|
614
|
+
max-width: 1200px;
|
|
615
|
+
margin: 0 auto;
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
.product-footer__content {
|
|
619
|
+
display: grid;
|
|
620
|
+
grid-template-columns: 1fr auto;
|
|
621
|
+
gap: var(--space-16);
|
|
622
|
+
margin-bottom: var(--space-8);
|
|
623
|
+
|
|
624
|
+
@media (max-width: 768px) {
|
|
625
|
+
grid-template-columns: 1fr;
|
|
626
|
+
gap: var(--space-8);
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.product-footer__brand {
|
|
631
|
+
display: flex;
|
|
632
|
+
align-items: flex-start;
|
|
633
|
+
gap: var(--space-6);
|
|
634
|
+
|
|
635
|
+
@media (max-width: 640px) {
|
|
636
|
+
flex-direction: column;
|
|
637
|
+
align-items: center;
|
|
638
|
+
text-align: center;
|
|
639
|
+
}
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.product-footer__icon-wrapper {
|
|
643
|
+
position: relative;
|
|
644
|
+
width: 64px;
|
|
645
|
+
height: 64px;
|
|
646
|
+
flex-shrink: 0;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
.product-footer__icon-glow {
|
|
650
|
+
position: absolute;
|
|
651
|
+
top: 50%;
|
|
652
|
+
left: 50%;
|
|
653
|
+
transform: translate(-50%, -50%);
|
|
654
|
+
width: 100%;
|
|
655
|
+
height: 100%;
|
|
656
|
+
background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
|
|
657
|
+
opacity: 0.3;
|
|
658
|
+
filter: blur(12px);
|
|
659
|
+
animation: product-footer-glow 3s ease-in-out infinite;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
@keyframes product-footer-glow {
|
|
663
|
+
0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
|
|
664
|
+
50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.product-footer__icon {
|
|
668
|
+
position: relative;
|
|
669
|
+
width: 64px;
|
|
670
|
+
height: 64px;
|
|
671
|
+
border-radius: 12px;
|
|
672
|
+
animation: product-footer-float 4s ease-in-out infinite;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
@keyframes product-footer-float {
|
|
676
|
+
0%, 100% { transform: translateY(0); }
|
|
677
|
+
50% { transform: translateY(-4px); }
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
.product-footer__tagline {
|
|
681
|
+
display: flex;
|
|
682
|
+
flex-direction: column;
|
|
683
|
+
gap: var(--space-2);
|
|
684
|
+
max-width: 400px;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
.product-footer__title {
|
|
688
|
+
font-size: var(--text-lg);
|
|
689
|
+
font-weight: var(--font-semibold);
|
|
690
|
+
color: var(--color-text);
|
|
691
|
+
line-height: 1.4;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
.product-footer__description {
|
|
695
|
+
font-size: var(--text-sm);
|
|
696
|
+
color: var(--color-text-muted);
|
|
697
|
+
line-height: 1.6;
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
.product-footer__links {
|
|
701
|
+
display: flex;
|
|
702
|
+
gap: var(--space-16);
|
|
703
|
+
|
|
704
|
+
@media (max-width: 768px) {
|
|
705
|
+
justify-content: center;
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
@media (max-width: 640px) {
|
|
709
|
+
flex-direction: column;
|
|
710
|
+
align-items: center;
|
|
711
|
+
gap: var(--space-8);
|
|
712
|
+
}
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
.product-footer__col {
|
|
716
|
+
display: flex;
|
|
717
|
+
flex-direction: column;
|
|
718
|
+
gap: var(--space-2);
|
|
719
|
+
|
|
720
|
+
@media (max-width: 640px) {
|
|
721
|
+
align-items: center;
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
h4 {
|
|
725
|
+
font-size: var(--text-xs);
|
|
726
|
+
font-weight: var(--font-semibold);
|
|
727
|
+
text-transform: uppercase;
|
|
728
|
+
letter-spacing: 0.1em;
|
|
729
|
+
color: var(--color-text-muted);
|
|
730
|
+
margin-bottom: var(--space-2);
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
a {
|
|
734
|
+
font-size: var(--text-sm);
|
|
735
|
+
color: var(--color-text-muted);
|
|
736
|
+
text-decoration: none;
|
|
737
|
+
transition: color 0.2s;
|
|
738
|
+
|
|
739
|
+
&:hover {
|
|
740
|
+
color: var(--color-accent);
|
|
741
|
+
}
|
|
742
|
+
}
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
.product-footer__bottom {
|
|
746
|
+
padding-top: var(--space-6);
|
|
747
|
+
border-top: 1px solid var(--color-border);
|
|
748
|
+
text-align: center;
|
|
749
|
+
|
|
750
|
+
p {
|
|
751
|
+
font-size: var(--text-sm);
|
|
752
|
+
color: var(--color-text-muted);
|
|
753
|
+
opacity: 0.6;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
a {
|
|
757
|
+
color: var(--color-text-muted);
|
|
758
|
+
text-decoration: none;
|
|
759
|
+
|
|
760
|
+
&:hover {
|
|
761
|
+
color: var(--color-accent);
|
|
762
|
+
}
|
|
763
|
+
}
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
// =============================================================================
|
|
767
|
+
// Utility Classes for Product Mode
|
|
768
|
+
// =============================================================================
|
|
769
|
+
|
|
770
|
+
.product-visually-hidden {
|
|
771
|
+
position: absolute;
|
|
772
|
+
width: 1px;
|
|
773
|
+
height: 1px;
|
|
774
|
+
padding: 0;
|
|
775
|
+
margin: -1px;
|
|
776
|
+
overflow: hidden;
|
|
777
|
+
clip: rect(0, 0, 0, 0);
|
|
778
|
+
white-space: nowrap;
|
|
779
|
+
border: 0;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
// Demo result styles
|
|
783
|
+
.product-demo-results {
|
|
784
|
+
font-family: var(--font-mono);
|
|
785
|
+
font-size: var(--text-sm);
|
|
786
|
+
line-height: 1.6;
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
.product-demo-section-header {
|
|
790
|
+
font-size: var(--text-base);
|
|
791
|
+
font-weight: var(--font-semibold);
|
|
792
|
+
color: var(--color-accent);
|
|
793
|
+
margin: var(--space-6) 0 var(--space-3);
|
|
794
|
+
padding-bottom: var(--space-2);
|
|
795
|
+
border-bottom: 1px solid var(--color-border);
|
|
796
|
+
|
|
797
|
+
&:first-child {
|
|
798
|
+
margin-top: 0;
|
|
799
|
+
}
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
.product-demo-row {
|
|
803
|
+
display: flex;
|
|
804
|
+
padding: var(--space-1) 0;
|
|
805
|
+
|
|
806
|
+
@media (max-width: 640px) {
|
|
807
|
+
flex-direction: column;
|
|
808
|
+
gap: var(--space-1);
|
|
809
|
+
}
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
.product-demo-label {
|
|
813
|
+
color: var(--color-text-muted);
|
|
814
|
+
min-width: 160px;
|
|
815
|
+
|
|
816
|
+
@media (max-width: 640px) {
|
|
817
|
+
min-width: auto;
|
|
818
|
+
font-size: var(--text-xs);
|
|
819
|
+
}
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
.product-demo-value {
|
|
823
|
+
color: var(--color-text);
|
|
824
|
+
|
|
825
|
+
&--good {
|
|
826
|
+
color: var(--color-success);
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
&--warning {
|
|
830
|
+
color: var(--color-warning);
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
&--bad {
|
|
834
|
+
color: var(--color-error);
|
|
835
|
+
}
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
.product-demo-issue {
|
|
839
|
+
padding: var(--space-2) var(--space-3);
|
|
840
|
+
margin: var(--space-1) 0;
|
|
841
|
+
border-radius: 6px;
|
|
842
|
+
font-size: var(--text-sm);
|
|
843
|
+
|
|
844
|
+
&--critical,
|
|
845
|
+
&--high {
|
|
846
|
+
background: color-mix(in srgb, var(--color-error) 15%, transparent);
|
|
847
|
+
border-left: 3px solid var(--color-error);
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
&--medium {
|
|
851
|
+
background: color-mix(in srgb, var(--color-warning) 15%, transparent);
|
|
852
|
+
border-left: 3px solid var(--color-warning);
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
&--low,
|
|
856
|
+
&--info {
|
|
857
|
+
background: color-mix(in srgb, var(--color-info) 15%, transparent);
|
|
858
|
+
border-left: 3px solid var(--color-info);
|
|
859
|
+
}
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
.product-demo-limitations {
|
|
863
|
+
margin-top: var(--space-6);
|
|
864
|
+
padding: var(--space-4);
|
|
865
|
+
background: var(--color-bg-elevated);
|
|
866
|
+
border-radius: 8px;
|
|
867
|
+
font-size: var(--text-sm);
|
|
868
|
+
color: var(--color-text-muted);
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
.product-demo-limitations__title {
|
|
872
|
+
font-weight: var(--font-semibold);
|
|
873
|
+
margin-bottom: var(--space-2);
|
|
874
|
+
color: var(--color-text-muted);
|
|
875
|
+
}
|