@doxbrix/doxloop 0.1.4 → 0.2.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/CHANGELOG.md +1153 -0
- package/README.md +422 -226
- package/assets/doxbrix-preview.css +77 -15
- package/contracts/agent-events-v1.schema.json +1 -0
- package/contracts/coverage-v1.schema.json +59 -0
- package/contracts/drift-v1.schema.json +1 -0
- package/contracts/evaluation-v1.schema.json +62 -0
- package/contracts/quality-codes-v1.json +1 -0
- package/contracts/quality-report-v1.schema.json +1 -0
- package/contracts/validation-v1.schema.json +1 -0
- package/dist/agent-failure.d.ts +36 -0
- package/dist/agent-failure.js +98 -0
- package/dist/agent-isolation.d.ts +17 -0
- package/dist/agent-isolation.js +94 -0
- package/dist/agent-log.d.ts +197 -0
- package/dist/agent-log.js +1094 -0
- package/dist/agent-process.d.ts +63 -0
- package/dist/agent-process.js +128 -0
- package/dist/agent-reply.d.ts +47 -0
- package/dist/agent-reply.js +315 -0
- package/dist/agents.d.ts +40 -4
- package/dist/agents.js +115 -11
- package/dist/api-coverage.d.ts +11 -0
- package/dist/api-coverage.js +72 -0
- package/dist/application-probe.d.ts +28 -0
- package/dist/application-probe.js +93 -0
- package/dist/application-url.d.ts +14 -0
- package/dist/application-url.js +26 -0
- package/dist/args.js +15 -0
- package/dist/artifact-deploy.d.ts +9 -0
- package/dist/artifact-deploy.js +28 -8
- package/dist/assets.d.ts +72 -0
- package/dist/assets.js +382 -0
- package/dist/auth.d.ts +10 -0
- package/dist/auth.js +38 -9
- package/dist/author.d.ts +206 -4
- package/dist/author.js +1650 -52
- package/dist/authoring-batches.d.ts +190 -0
- package/dist/authoring-batches.js +489 -0
- package/dist/authoring-postpass.d.ts +79 -0
- package/dist/authoring-postpass.js +1289 -0
- package/dist/authoring-progress.d.ts +95 -0
- package/dist/authoring-progress.js +269 -0
- package/dist/autosync.d.ts +56 -0
- package/dist/autosync.js +442 -0
- package/dist/batch-artifacts.d.ts +81 -0
- package/dist/batch-artifacts.js +412 -0
- package/dist/batch-limits.d.ts +37 -0
- package/dist/batch-limits.js +80 -0
- package/dist/branding.d.ts +41 -0
- package/dist/branding.js +229 -0
- package/dist/bundle-upload.d.ts +26 -0
- package/dist/bundle-upload.js +99 -0
- package/dist/capture-auth.d.ts +95 -0
- package/dist/capture-auth.js +204 -0
- package/dist/capture.d.ts +48 -0
- package/dist/capture.js +20 -1
- package/dist/cli.js +839 -32
- package/dist/content-links.d.ts +10 -0
- package/dist/content-links.js +49 -0
- package/dist/contract-validation.d.ts +4 -0
- package/dist/contract-validation.js +25 -0
- package/dist/coverage-actions.d.ts +8 -0
- package/dist/coverage-actions.js +71 -0
- package/dist/coverage-resolutions.d.ts +16 -0
- package/dist/coverage-resolutions.js +58 -0
- package/dist/db.d.ts +37 -0
- package/dist/db.js +288 -0
- package/dist/demo.d.ts +12 -0
- package/dist/demo.js +122 -0
- package/dist/deploy-credentials.d.ts +7 -0
- package/dist/deploy-credentials.js +76 -0
- package/dist/deploy-targets/github-pages.d.ts +3 -0
- package/dist/deploy-targets/github-pages.js +100 -0
- package/dist/deploy-targets/index.d.ts +8 -0
- package/dist/deploy-targets/index.js +78 -0
- package/dist/deploy-targets/netlify.d.ts +3 -0
- package/dist/deploy-targets/netlify.js +49 -0
- package/dist/deploy-targets/types.d.ts +32 -0
- package/dist/deploy-targets/types.js +2 -0
- package/dist/deploy-targets/vercel.d.ts +3 -0
- package/dist/deploy-targets/vercel.js +95 -0
- package/dist/deploy.d.ts +9 -0
- package/dist/deploy.js +87 -13
- package/dist/deterministic-capture.d.ts +90 -0
- package/dist/deterministic-capture.js +435 -0
- package/dist/direct-edit.d.ts +40 -0
- package/dist/direct-edit.js +159 -0
- package/dist/docs-crawl.d.ts +86 -0
- package/dist/docs-crawl.js +536 -0
- package/dist/docs-site.d.ts +49 -0
- package/dist/docs-site.js +233 -0
- package/dist/doctor.js +8 -0
- package/dist/documentation-collections.d.ts +23 -0
- package/dist/documentation-collections.js +191 -0
- package/dist/documentation-plan.d.ts +253 -0
- package/dist/documentation-plan.js +2563 -0
- package/dist/doxbrix-build.d.ts +19 -0
- package/dist/doxbrix-build.js +167 -0
- package/dist/doxbrix-markdown.d.ts +9 -0
- package/dist/doxbrix-markdown.js +115 -14
- package/dist/drift.d.ts +10 -0
- package/dist/drift.js +164 -0
- package/dist/evaluation.d.ts +46 -0
- package/dist/evaluation.js +113 -0
- package/dist/evidence-pack.d.ts +47 -0
- package/dist/evidence-pack.js +358 -0
- package/dist/evidence.d.ts +25 -0
- package/dist/evidence.js +175 -0
- package/dist/fs.d.ts +8 -2
- package/dist/fs.js +41 -11
- package/dist/generator-api.d.ts +89 -0
- package/dist/generator-preflight.d.ts +27 -0
- package/dist/generator-preflight.js +105 -0
- package/dist/generator-runtime.d.ts +7 -0
- package/dist/generator-runtime.js +17 -1
- package/dist/generators.d.ts +24 -2
- package/dist/generators.js +54 -1
- package/dist/git-delivery.d.ts +17 -0
- package/dist/git-delivery.js +123 -0
- package/dist/globs.d.ts +16 -0
- package/dist/globs.js +65 -0
- package/dist/glossary.d.ts +26 -0
- package/dist/glossary.js +179 -0
- package/dist/history.d.ts +106 -0
- package/dist/history.js +600 -0
- package/dist/html-markdown.d.ts +46 -0
- package/dist/html-markdown.js +423 -0
- package/dist/interactive.js +16 -15
- package/dist/job-events.d.ts +74 -0
- package/dist/job-events.js +377 -0
- package/dist/keep-awake.d.ts +50 -0
- package/dist/keep-awake.js +123 -0
- package/dist/local-source-snapshot.d.ts +20 -0
- package/dist/local-source-snapshot.js +61 -0
- package/dist/mintlify-detect.d.ts +3 -0
- package/dist/mintlify-detect.js +18 -0
- package/dist/mintlify-import.d.ts +75 -0
- package/dist/mintlify-import.js +190 -0
- package/dist/navigation.d.ts +98 -0
- package/dist/navigation.js +310 -0
- package/dist/openapi.d.ts +60 -0
- package/dist/openapi.js +439 -0
- package/dist/page-editor-bridge.d.ts +3 -0
- package/dist/page-editor-bridge.js +109 -0
- package/dist/page-editor-preview.d.ts +10 -0
- package/dist/page-editor-preview.js +55 -0
- package/dist/page-extension.d.ts +9 -0
- package/dist/page-extension.js +15 -0
- package/dist/page-metadata.d.ts +28 -0
- package/dist/page-metadata.js +166 -0
- package/dist/page-operations.d.ts +34 -0
- package/dist/page-operations.js +215 -0
- package/dist/page-routes.d.ts +4 -0
- package/dist/page-routes.js +61 -0
- package/dist/pages.d.ts +20 -0
- package/dist/pages.js +184 -0
- package/dist/plan-generator.d.ts +3 -0
- package/dist/plan-generator.js +21 -0
- package/dist/plan-navigation.d.ts +11 -0
- package/dist/plan-navigation.js +30 -0
- package/dist/planning-captures.d.ts +20 -0
- package/dist/planning-captures.js +143 -0
- package/dist/planning-research.d.ts +135 -0
- package/dist/planning-research.js +472 -0
- package/dist/planning-triage.d.ts +23 -0
- package/dist/planning-triage.js +131 -0
- package/dist/preview.d.ts +24 -0
- package/dist/preview.js +280 -29
- package/dist/project-detect.d.ts +36 -0
- package/dist/project-detect.js +251 -0
- package/dist/project-import.d.ts +54 -0
- package/dist/project-import.js +157 -0
- package/dist/project-lock.d.ts +6 -0
- package/dist/project-lock.js +96 -0
- package/dist/project-registry.d.ts +25 -0
- package/dist/project-registry.js +79 -0
- package/dist/project.d.ts +35 -3
- package/dist/project.js +388 -38
- package/dist/prompts.d.ts +9 -0
- package/dist/prompts.js +33 -4
- package/dist/proposal-replay.d.ts +32 -0
- package/dist/proposal-replay.js +99 -0
- package/dist/quality-claims.d.ts +8 -0
- package/dist/quality-claims.js +168 -0
- package/dist/quality-config.d.ts +5 -0
- package/dist/quality-config.js +84 -0
- package/dist/quality-contract.d.ts +37 -0
- package/dist/quality-contract.js +46 -0
- package/dist/quality-examples.d.ts +4 -0
- package/dist/quality-examples.js +233 -0
- package/dist/quality-gates.d.ts +16 -0
- package/dist/quality-gates.js +192 -0
- package/dist/quality-links.d.ts +7 -0
- package/dist/quality-links.js +149 -0
- package/dist/quality-lint.d.ts +6 -0
- package/dist/quality-lint.js +124 -0
- package/dist/quality-rendered.d.ts +11 -0
- package/dist/quality-rendered.js +222 -0
- package/dist/quality-schema.d.ts +3 -0
- package/dist/quality-schema.js +71 -0
- package/dist/release-notes.d.ts +44 -0
- package/dist/release-notes.js +183 -0
- package/dist/remote-monitor.d.ts +16 -0
- package/dist/remote-monitor.js +74 -0
- package/dist/remote-source.d.ts +34 -0
- package/dist/remote-source.js +426 -0
- package/dist/review-diff.d.ts +82 -0
- package/dist/review-diff.js +400 -0
- package/dist/review-learning.d.ts +11 -0
- package/dist/review-learning.js +60 -0
- package/dist/review-render.d.ts +38 -0
- package/dist/review-render.js +224 -0
- package/dist/review-report.d.ts +9 -0
- package/dist/review-report.js +89 -0
- package/dist/review-ui.d.ts +14 -0
- package/dist/review-ui.js +1248 -0
- package/dist/schedule.d.ts +78 -0
- package/dist/schedule.js +480 -0
- package/dist/screen-capture-provider.d.ts +52 -0
- package/dist/screen-capture-provider.js +218 -0
- package/dist/screenshot-workflow.d.ts +167 -0
- package/dist/screenshot-workflow.js +1237 -0
- package/dist/settings.d.ts +1 -1
- package/dist/settings.js +95 -7
- package/dist/site-export.d.ts +18 -0
- package/dist/site-export.js +87 -0
- package/dist/source-connectors.d.ts +33 -0
- package/dist/source-connectors.js +268 -0
- package/dist/source-discovery.d.ts +132 -0
- package/dist/source-discovery.js +823 -0
- package/dist/source-intelligence.d.ts +9 -0
- package/dist/source-intelligence.js +306 -0
- package/dist/sync-review.d.ts +28 -0
- package/dist/sync-review.js +264 -0
- package/dist/sync-runs.d.ts +192 -0
- package/dist/sync-runs.js +2244 -0
- package/dist/sync.d.ts +35 -0
- package/dist/sync.js +298 -32
- package/dist/text-diff.d.ts +9 -0
- package/dist/text-diff.js +59 -0
- package/dist/types.d.ts +946 -1
- package/dist/ui/assets/doxloop-logo-light-De7Nx7j7.png +0 -0
- package/dist/ui/assets/index-BHBYU2aG.css +1 -0
- package/dist/ui/assets/index-Cq3RPQiC.js +33 -0
- package/dist/ui/index.html +18 -0
- package/dist/ui-server.d.ts +83 -0
- package/dist/ui-server.js +3532 -0
- package/dist/usage-budget.d.ts +28 -0
- package/dist/usage-budget.js +90 -0
- package/dist/validation.d.ts +25 -1
- package/dist/validation.js +312 -26
- package/dist/workspace-tools.d.ts +54 -0
- package/dist/workspace-tools.js +123 -0
- package/docs/agent-compatibility.md +50 -28
- package/docs/ci-and-automation.md +105 -66
- package/docs/doxbrix-http-api.md +8 -1
- package/docs/existing-documentation.md +80 -0
- package/docs/generation-performance.md +108 -0
- package/docs/generator-authoring.md +68 -5
- package/docs/generator-selection.md +50 -13
- package/docs/mintlify-import.md +71 -0
- package/docs/openapi-security.md +25 -0
- package/docs/project-format.md +331 -36
- package/docs/release-quality.md +158 -0
- package/docs/releasing.md +72 -0
- package/docs/review-workflows.md +51 -0
- package/docs/security-model.md +102 -39
- package/docs/troubleshooting.md +226 -93
- package/package.json +46 -15
- package/scripts/test-auto-screenshot.mjs +172 -0
- package/skills/doxloop-authoring/SKILL.md +242 -361
- package/skills/doxloop-authoring/references/existing-documentation.md +94 -0
- package/skills/doxloop-authoring/references/navigation-architecture.md +18 -7
- package/skills/doxloop-authoring/references/page-depth.md +169 -0
- package/skills/doxloop-authoring/references/project-format.md +106 -7
- package/skills/doxloop-authoring/references/quality.md +10 -0
- package/skills/doxloop-authoring/references/screenshot-manifest.md +113 -0
- package/skills/doxloop-authoring/references/screenshots.md +149 -235
- package/skills/doxloop-authoring/references/workflows.md +76 -0
- package/skills/doxloop-doxbrix/SKILL.md +38 -22
- package/skills/doxloop-doxbrix/references/api-endpoints.md +15 -14
- package/skills/doxloop-doxbrix/references/components.md +30 -3
- package/skills/doxloop-doxbrix/references/manifest.md +3 -2
- package/vendor/doxbrix-import/LICENSE +202 -0
- package/vendor/doxbrix-import/README.md +17 -0
- package/vendor/doxbrix-import/UPSTREAM.json +47 -0
- package/vendor/doxbrix-import/dist/docs/frontmatter.d.ts +13 -0
- package/vendor/doxbrix-import/dist/docs/frontmatter.js +83 -0
- package/vendor/doxbrix-import/dist/docs/import.d.ts +21 -0
- package/vendor/doxbrix-import/dist/docs/import.js +147 -0
- package/vendor/doxbrix-import/dist/docs/manifest.d.ts +163 -0
- package/vendor/doxbrix-import/dist/docs/manifest.js +64 -0
- package/vendor/doxbrix-import/dist/docs/project.d.ts +25 -0
- package/vendor/doxbrix-import/dist/docs/project.js +77 -0
- package/vendor/doxbrix-import/dist/docs/starter.d.ts +4 -0
- package/vendor/doxbrix-import/dist/docs/starter.js +11 -0
- package/vendor/doxbrix-import/dist/importer.d.ts +227 -0
- package/vendor/doxbrix-import/dist/importer.js +1567 -0
- package/vendor/doxbrix-import/dist/mintlify-openapi.d.ts +37 -0
- package/vendor/doxbrix-import/dist/mintlify-openapi.js +305 -0
- package/vendor/doxbrix-import/dist/safe-path.d.ts +9 -0
- package/vendor/doxbrix-import/dist/safe-path.js +47 -0
- package/dist/agents.d.ts.map +0 -1
- package/dist/agents.js.map +0 -1
- package/dist/args.d.ts.map +0 -1
- package/dist/args.js.map +0 -1
- package/dist/artifact-deploy.d.ts.map +0 -1
- package/dist/artifact-deploy.js.map +0 -1
- package/dist/auth.d.ts.map +0 -1
- package/dist/auth.js.map +0 -1
- package/dist/author.d.ts.map +0 -1
- package/dist/author.js.map +0 -1
- package/dist/capture.d.ts.map +0 -1
- package/dist/capture.js.map +0 -1
- package/dist/cli.d.ts.map +0 -1
- package/dist/cli.js.map +0 -1
- package/dist/deploy.d.ts.map +0 -1
- package/dist/deploy.js.map +0 -1
- package/dist/deployment-visibility.d.ts.map +0 -1
- package/dist/deployment-visibility.js.map +0 -1
- package/dist/doctor.d.ts.map +0 -1
- package/dist/doctor.js.map +0 -1
- package/dist/doxbrix-markdown.d.ts.map +0 -1
- package/dist/doxbrix-markdown.js.map +0 -1
- package/dist/errors.d.ts.map +0 -1
- package/dist/errors.js.map +0 -1
- package/dist/fs.d.ts.map +0 -1
- package/dist/fs.js.map +0 -1
- package/dist/generator-api.d.ts.map +0 -1
- package/dist/generator-api.js.map +0 -1
- package/dist/generator-manager.d.ts.map +0 -1
- package/dist/generator-manager.js.map +0 -1
- package/dist/generator-runtime.d.ts.map +0 -1
- package/dist/generator-runtime.js.map +0 -1
- package/dist/generators.d.ts.map +0 -1
- package/dist/generators.js.map +0 -1
- package/dist/interactive.d.ts.map +0 -1
- package/dist/interactive.js.map +0 -1
- package/dist/preview.d.ts.map +0 -1
- package/dist/preview.js.map +0 -1
- package/dist/progress.d.ts.map +0 -1
- package/dist/progress.js.map +0 -1
- package/dist/project.d.ts.map +0 -1
- package/dist/project.js.map +0 -1
- package/dist/prompts.d.ts.map +0 -1
- package/dist/prompts.js.map +0 -1
- package/dist/settings.d.ts.map +0 -1
- package/dist/settings.js.map +0 -1
- package/dist/sync.d.ts.map +0 -1
- package/dist/sync.js.map +0 -1
- package/dist/types.d.ts.map +0 -1
- package/dist/types.js.map +0 -1
- package/dist/validation.d.ts.map +0 -1
- package/dist/validation.js.map +0 -1
- package/dist/version.d.ts.map +0 -1
- package/dist/version.js.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--brand: #15afaa;--brand-dark: #0b7f7b;--brand-soft: #e8f7f6;--brand-tint: #cdecea;--brand-ink: #063b3a;--heading: #102a56;--text: #29415f;--muted: #637089;--faint: #8993a5;--canvas: #ffffff;--subtle: #f7f9fc;--hover: #f6f8fa;--border: #e3e8ee;--divider: #eef1f5;--strong-border: #d3dae2;--good: #0e6245;--good-soft: #cbf4c9;--warn: #8a4d00;--warn-soft: #fcedb9;--bad: #d92d20;--bad-soft: #fef3f2;--info: #1b5ea8;--info-soft: #d9edff;--ring: 0 0 0 3px rgb(21 175 170 / 22%);--hairline: 0 0 0 1px var(--border);--lift: 0 1px 1px rgb(24 27 41 / 4%), 0 2px 5px rgb(24 27 41 / 4%);--pop: 0 4px 12px rgb(24 27 41 / 8%), 0 16px 40px rgb(24 27 41 / 10%);--radius: 8px;--app-canvas: #f5f6f8;font-family:Segoe UI,-apple-system,BlinkMacSystemFont,Roboto,Helvetica Neue,Arial,sans-serif;font-size:14px;line-height:20px;color:var(--text);font-synthesis:none;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto}html:has(.shell .reference-sidebar-nav),body:has(.shell .reference-sidebar-nav){background:#f7f8fb}.shell:has(.reference-sidebar-nav){--heading: #102a56;--text: #29415f;--muted: #637089;--faint: #8993a5;--border: #e1e5ed;--divider: #edf0f5;--strong-border: #cfd7e3;font-size:14px}.shell:has(.reference-sidebar-nav) .main{background:#fbfcff}.shell:has(.reference-sidebar-nav).proposal-shell{grid-template-columns:270px minmax(0,1fr)}.shell:has(.reference-sidebar-nav).proposal-shell .sidebar{width:auto}.shell:has(.reference-sidebar-nav).proposal-shell .sidebar-mode-flag{width:fit-content;height:auto;min-height:28px;margin:8px 7px 0;padding:0 10px;border:1px solid var(--border);border-radius:999px;color:#59667e;background:#fff;font-size:12px}.shell:has(.reference-sidebar-nav).proposal-shell .sidebar-mode-flag:after{content:none}.shell:has(.reference-sidebar-nav) .mobile-topbar{display:none}.shell:has(.reference-sidebar-nav) .page,.shell:has(.reference-sidebar-nav).sources-shell .page,.shell:has(.reference-sidebar-nav).proposal-shell .page{width:100%;max-width:none;gap:20px;padding:24px 30px 44px;background:#fbfcff}.shell:has(.reference-sidebar-nav) .page-head,.shell:has(.reference-sidebar-nav) .sources-page-header{gap:16px;margin:0}.shell:has(.reference-sidebar-nav) .page-head h1,.shell:has(.reference-sidebar-nav) .sources-page-header h1,.shell:has(.reference-sidebar-nav).proposal-shell .page-head h1{color:var(--heading);font-size:25px;line-height:31px;font-weight:700;letter-spacing:-.4px}.shell:has(.reference-sidebar-nav) .page-head p,.shell:has(.reference-sidebar-nav) .sources-page-header p,.shell:has(.reference-sidebar-nav).proposal-shell .page-head p{max-width:68ch;margin-top:3px;color:var(--muted);font-size:14px;line-height:20px}.shell:has(.reference-sidebar-nav) .page-meta{margin-top:8px;color:var(--muted);font-size:13px}.shell:has(.reference-sidebar-nav) .btn.md{height:38px;padding-inline:14px;border-radius:7px;font-size:14px;font-weight:600}.shell:has(.reference-sidebar-nav) .btn.sm{height:32px;padding-inline:11px;border-radius:6px;font-size:13px;font-weight:600}.shell:has(.reference-sidebar-nav) .input{min-height:38px;padding:7px 11px;border-radius:7px;color:var(--text);font-size:14px}.shell:has(.reference-sidebar-nav) .textarea{min-height:96px;padding:10px 12px;font-size:14px;line-height:21px}.shell:has(.reference-sidebar-nav) .field-label{color:var(--heading);font-size:14px;font-weight:620}.shell:has(.reference-sidebar-nav) .field small{color:var(--muted);font-size:13px}.shell:has(.reference-sidebar-nav) .toggle-text{color:var(--text);font-size:14px}.shell:has(.reference-sidebar-nav) .toggle-track{width:36px;height:22px}.shell:has(.reference-sidebar-nav) .toggle-track:after{width:18px;height:18px}.shell:has(.reference-sidebar-nav) .toggle input:checked+.toggle-track:after{transform:translate(14px)}.shell:has(.reference-sidebar-nav) .custom-select-menu>button,.shell:has(.reference-sidebar-nav) .editable-select-menu>button{font-size:14px}.shell:has(.reference-sidebar-nav) .panel{border-radius:10px;background:#fff;box-shadow:0 0 0 1px var(--border),0 2px 8px #1f28400a}.shell:has(.reference-sidebar-nav) .panel-head{min-height:54px;gap:12px;padding:12px 16px}.shell:has(.reference-sidebar-nav) .panel-body{padding:16px;gap:16px}.shell:has(.reference-sidebar-nav) .panel-icon{width:30px;height:30px;border-radius:7px}.shell:has(.reference-sidebar-nav) .badge{font-size:12px}.shell:has(.reference-sidebar-nav) .table th{padding:9px 14px;font-size:12px}.shell:has(.reference-sidebar-nav) .table td{padding:11px 14px;font-size:14px}.shell:has(.reference-sidebar-nav) .table .muted-cell{color:var(--muted);font-size:13px}.shell:has(.reference-sidebar-nav) .row-copy strong,.shell:has(.reference-sidebar-nav) .link-rows strong{font-size:14px;font-weight:600}.shell:has(.reference-sidebar-nav) .row-copy small,.shell:has(.reference-sidebar-nav) .link-rows small{color:var(--muted);font-size:13px}.shell:has(.reference-sidebar-nav) .sources-page-tools>label{height:38px;font-size:13px}.shell:has(.reference-sidebar-nav) .sources-add-dropdown-button{height:38px;font-size:13px}.shell:has(.reference-sidebar-nav) .sources-data-panel>header{min-height:54px;padding-inline:16px;font-size:14px}.shell:has(.reference-sidebar-nav) .sources-table-head{min-height:36px;padding-inline:16px;font-size:11.5px}.shell:has(.reference-sidebar-nav) .sources-data-row{min-height:62px;padding-inline:16px}.shell:has(.reference-sidebar-nav) .proposal-summary{min-height:132px;gap:16px;padding:20px}.shell:has(.reference-sidebar-nav) .review{grid-template-columns:230px minmax(0,1fr);gap:16px}.shell:has(.reference-sidebar-nav) .review-rail{min-height:520px}.shell:has(.reference-sidebar-nav) .review-main{min-width:0;overflow:hidden}.shell:has(.reference-sidebar-nav) .proposal-summary{grid-template-columns:48px minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .proposal-summary-icon{width:48px;height:48px;border-radius:9px}.shell:has(.reference-sidebar-nav) .proposal-summary-line h2{font-size:16px;line-height:22px}.shell:has(.reference-sidebar-nav) .proposal-summary-side{grid-column:2;min-width:0;width:100%;display:flex;align-items:center;justify-content:space-between;gap:12px}.shell:has(.reference-sidebar-nav) .proposal-actions .btn{min-width:104px;height:36px}.shell:has(.reference-sidebar-nav) .review-toolbar{min-height:58px;padding:10px 16px}.shell:has(.reference-sidebar-nav) .settings{grid-template-columns:220px minmax(0,1fr);gap:16px}.shell:has(.reference-sidebar-nav) .settings-nav strong{font-size:13px}.shell:has(.reference-sidebar-nav) .settings-nav small{color:var(--muted);font-size:11.5px}.shell:has(.reference-sidebar-nav) .page:has(.authoring-page){min-height:700px;padding-top:20px;padding-bottom:28px}.shell:has(.reference-sidebar-nav) .authoring-page{min-height:652px;gap:0}.shell:has(.reference-sidebar-nav) .authoring-hero{min-height:86px;gap:14px;padding:0;border-bottom-color:var(--border)}.shell:has(.reference-sidebar-nav) .authoring-hero-icon{width:44px;height:44px;border-radius:8px;color:var(--brand)}.shell:has(.reference-sidebar-nav) .authoring-hero h1{color:var(--heading);font-size:25px;line-height:31px}.shell:has(.reference-sidebar-nav) .authoring-hero p{margin-top:3px;color:var(--muted);font-size:13px;line-height:19px}.shell:has(.reference-sidebar-nav) .authoring-regenerate-action{min-width:200px;gap:5px}.shell:has(.reference-sidebar-nav) .authoring-regenerate-action .btn{min-width:200px;height:38px;font-size:13px}.shell:has(.reference-sidebar-nav) .authoring-regenerate-action small{color:var(--muted);font-size:11px}.shell:has(.reference-sidebar-nav) .authoring-request{background:transparent!important;box-shadow:none!important}.shell:has(.reference-sidebar-nav) .authoring-request .panel-body{min-height:0;padding:18px 0 0;gap:0}.shell:has(.reference-sidebar-nav) .authoring-fields{gap:18px}.shell:has(.reference-sidebar-nav) .authoring-prompt-block{gap:10px}.shell:has(.reference-sidebar-nav) .authoring-prompt-title{gap:12px}.shell:has(.reference-sidebar-nav) .authoring-prompt-title>span{width:36px;height:36px}.shell:has(.reference-sidebar-nav) .authoring-prompt-title h2{color:var(--heading);font-size:14px;line-height:20px;font-weight:650}.shell:has(.reference-sidebar-nav) .authoring-request .textarea{min-height:112px;padding:10px 12px 28px;font-size:13px}.shell:has(.reference-sidebar-nav) .authoring-textarea-wrap>small{right:12px;bottom:8px;color:var(--muted)!important;font-size:11.5px}.shell:has(.reference-sidebar-nav) .authoring-options{grid-template-columns:repeat(4,minmax(0,1fr));gap:0}.shell:has(.reference-sidebar-nav) .authoring-options>*{min-width:0;padding:0 14px}.shell:has(.reference-sidebar-nav) .authoring-options>:first-child{padding-left:0}.shell:has(.reference-sidebar-nav) .authoring-options>:last-child{padding-right:0}.shell:has(.reference-sidebar-nav) .authoring-options>*+*{border-left:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .authoring-request .field-label,.shell:has(.reference-sidebar-nav) .screenshot-option>strong{color:var(--heading);font-size:12.5px;font-weight:620}.shell:has(.reference-sidebar-nav) .authoring-control-icon:before{left:5px;width:28px;height:28px;border-radius:7px}.shell:has(.reference-sidebar-nav) .authoring-control-icon>.icon{left:10px;width:15px;height:15px;color:var(--brand)}.shell:has(.reference-sidebar-nav) .screenshot-option>div{min-height:38px;gap:12px}.shell:has(.reference-sidebar-nav) .screenshot-camera{width:32px;height:32px;border-radius:7px}.shell:has(.reference-sidebar-nav) .screenshot-camera,.shell:has(.reference-sidebar-nav) .action-card-icon.audit{color:var(--brand);background:var(--brand-soft)!important}.shell:has(.reference-sidebar-nav) .authoring-request .panel-inline-foot{min-height:58px;margin:0;padding:10px 0 12px;border-bottom-color:var(--border)}.shell:has(.reference-sidebar-nav) .authoring-request .panel-inline-foot .btn{min-width:188px;height:39px;font-size:13px}.shell:has(.reference-sidebar-nav) .authoring-action-card-head{min-height:64px;padding:9px 4px;border-bottom-color:var(--border)}.shell:has(.reference-sidebar-nav) .action-card-icon{width:38px;height:38px}.shell:has(.reference-sidebar-nav) .audit-card .btn{min-width:132px;height:38px;color:var(--text);border-color:var(--border);font-size:13px}@media(max-width:900px){.shell:has(.reference-sidebar-nav) .mobile-topbar{display:flex}.shell:has(.reference-sidebar-nav) .page,.shell:has(.reference-sidebar-nav).sources-shell .page,.shell:has(.reference-sidebar-nav).proposal-shell .page{padding:20px 18px 48px}.shell:has(.reference-sidebar-nav) .page-head h1,.shell:has(.reference-sidebar-nav) .sources-page-header h1,.shell:has(.reference-sidebar-nav) .authoring-hero h1{font-size:24px;line-height:30px}.shell:has(.reference-sidebar-nav) .authoring-options{grid-template-columns:minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .authoring-options>*{padding:12px 0;border-left:0;border-bottom:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .authoring-options>:last-child{border-bottom:0}.shell:has(.reference-sidebar-nav) .review{grid-template-columns:minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .review-rail{min-height:0}.shell:has(.reference-sidebar-nav) .proposal-summary{grid-template-columns:minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .proposal-summary-side{grid-column:1}}*{box-sizing:border-box}html,body{background:var(--canvas)}body{margin:0;min-width:320px;min-height:100vh}button,input,textarea,select{font:inherit;color:inherit}button{background:none;border:0;padding:0;cursor:pointer}h1,h2,h3,p,dl,dd,ol,ul,figure{margin:0}ol,ul{padding:0;list-style:none}a{color:var(--brand);text-decoration:none}:focus-visible{outline:2px solid var(--brand);outline-offset:1px;border-radius:4px}.icon{flex:0 0 auto}.icon.spin{animation:spin 1.1s linear infinite}.mono{font-family:ui-monospace,SFMono-Regular,SF Mono,Menlo,monospace;font-size:12.5px;color:var(--text)}code.mono{background:var(--subtle);border:1px solid var(--divider);border-radius:4px;padding:1px 5px}kbd{font:500 11px/1 -apple-system,BlinkMacSystemFont,sans-serif;color:var(--muted);background:#fff;border:1px solid var(--border);border-bottom-width:2px;border-radius:4px;padding:3px 5px}@keyframes fade-up{0%{opacity:0;transform:translateY(4px)}to{opacity:1;transform:none}}.shell{min-height:100vh;display:grid;grid-template-columns:244px minmax(0,1fr);max-width:100%}.sidebar{position:sticky;top:0;height:100vh;overflow-y:auto;display:flex;flex-direction:column;gap:4px;padding:12px 12px 14px;background:var(--canvas);border-right:1px solid var(--border);z-index:30}.account{display:flex;align-items:center;gap:9px;width:100%;padding:7px 8px;border-radius:6px;color:var(--heading);margin-bottom:10px}.account:hover{background:var(--hover)}.account-mark{width:26px;height:26px;flex:0 0 auto;border-radius:6px;display:grid;place-items:center;color:#fff;background:var(--brand);font-size:13px;font-weight:600}.account-name{flex:1;min-width:0;text-align:left;font-size:14px;font-weight:600;letter-spacing:-.1px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.account .icon{color:var(--faint)}.sidebar nav{display:grid;gap:14px}.nav-group{display:grid;gap:1px}.nav-label{padding:6px 8px 4px;font-size:12px;font-weight:500;color:var(--faint)}.nav-group button{display:flex;align-items:center;gap:10px;padding:7px 8px;border-radius:6px;font-size:14px;font-weight:500;color:var(--text);text-align:left}.nav-group button .icon{color:var(--muted)}.nav-group button>span{flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.nav-group button:hover{background:var(--hover)}.nav-group button.active{color:var(--brand);font-weight:600;background:var(--brand-soft)}.nav-group button.active .icon{color:var(--brand)}.nav-group button b{min-width:18px;padding:0 5px;border-radius:9px;background:var(--brand);color:#fff;font-size:11px;font-weight:600;line-height:18px;text-align:center}.sidebar-foot{margin-top:auto;display:flex;align-items:center;gap:9px;padding:10px 8px 2px;border-top:1px solid var(--divider)}.sidebar-foot strong{display:block;font-size:12.5px;font-weight:600;color:var(--text)}.sidebar-foot small{display:block;font-size:12px;color:var(--faint);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.sidebar-foot>div{min-width:0}.dot{width:8px;height:8px;border-radius:50%;background:#21c17a;box-shadow:0 0 0 3px #21c17a29;flex:0 0 auto}.main{min-width:0;max-width:100%;display:flex;flex-direction:column}.workspace-navbar{position:sticky;top:0;z-index:20;min-height:60px;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:0 30px;border-bottom:1px solid var(--border);background:#fffffff0;-webkit-backdrop-filter:saturate(180%) blur(8px);backdrop-filter:saturate(180%) blur(8px)}.workspace-navbar>strong{color:var(--heading);font-size:14px;font-weight:650}.workspace-navbar>div{display:flex;align-items:center;gap:10px}.topbar{position:sticky;top:0;z-index:20;display:flex;align-items:center;gap:16px;height:56px;padding:0 24px;background:#ffffffe0;-webkit-backdrop-filter:saturate(180%) blur(8px);backdrop-filter:saturate(180%) blur(8px);border-bottom:1px solid var(--border)}.topbar-search{display:flex;align-items:center;gap:9px;flex:1;max-width:560px;height:34px;padding:0 10px;border-radius:6px;background:var(--subtle);box-shadow:inset 0 0 0 1px var(--border);color:var(--muted);font-size:14px}.topbar-search:hover{background:#fff;box-shadow:inset 0 0 0 1px var(--strong-border)}.topbar-search>span{flex:1;text-align:left}.topbar-tools{display:flex;align-items:center;gap:6px;margin-left:auto}.mode-flag{display:inline-flex;align-items:center;gap:6px;margin-right:6px;font-size:13px;font-weight:500;color:var(--muted)}.mode-flag i{width:7px;height:7px;border-radius:50%;background:#21c17a}.icon-btn{width:32px;height:32px;display:grid;place-items:center;border-radius:6px;color:var(--muted)}.icon-btn:hover{background:var(--hover);color:var(--text)}.mobile-topbar,.nav-scrim{display:none}.page{position:relative;display:grid;align-content:start;gap:20px;width:100%;min-width:0;max-width:1280px;padding:28px 24px 72px}.page>*{min-width:0}.loading-bar{position:fixed;top:0;left:244px;right:0;height:2px;background:linear-gradient(90deg,transparent,var(--brand),transparent);animation:sweep 1.1s linear infinite;z-index:25}@keyframes sweep{0%{background-position:-60% 0}to{background-position:160% 0}}.loading-bar{background-size:60% 100%;background-repeat:no-repeat}.page-head{display:flex;align-items:flex-start;gap:20px;flex-wrap:wrap}.page-head-copy{flex:1;min-width:260px}.page-head h1{font-size:28px;line-height:34px;font-weight:700;letter-spacing:-.4px;color:var(--heading)}.page-head p{margin-top:4px;font-size:15px;color:var(--muted);max-width:68ch}.page-meta{display:flex;align-items:center;flex-wrap:wrap;gap:8px 14px;margin-top:10px;font-size:13px;color:var(--muted)}.page-meta>span{display:inline-flex;align-items:center;gap:6px}.page-meta>span+span:before{content:"";width:3px;height:3px;border-radius:50%;background:var(--strong-border);margin-right:8px}.page-head-actions{display:flex;align-items:center;gap:8px;padding-top:4px}.btn{display:inline-flex;align-items:center;justify-content:center;gap:6px;border-radius:6px;font-weight:500;white-space:nowrap;transition:background-color .12s ease,box-shadow .12s ease,color .12s ease}.btn.md{height:32px;padding:0 12px;font-size:14px}.btn.sm{height:28px;padding:0 10px;font-size:13px}.btn.secondary{background:#fff;color:var(--text);box-shadow:var(--hairline),0 1px 1px #181b290d}.btn.secondary:hover:not(:disabled){background:var(--hover);box-shadow:0 0 0 1px var(--strong-border),0 1px 1px #181b290f}.btn.primary{background:var(--brand);color:#fff;box-shadow:0 1px 1px #181b2914}.btn.primary:hover:not(:disabled){color:#fff;background:var(--brand-dark)}.btn.danger{background:#fff;color:var(--bad);box-shadow:0 0 0 1px #a41c4e3d,0 1px 1px #181b290d}.btn.danger:hover:not(:disabled){background:#fff5f6}.btn.ghost{color:var(--muted)}.btn.ghost:hover:not(:disabled){background:var(--hover);color:var(--text)}.btn.link{color:var(--brand);font-weight:500;height:auto;padding:0}.btn.link:hover:not(:disabled){text-decoration:underline}.btn:disabled{opacity:.5;cursor:not-allowed}.spinner{width:13px;height:13px;border-radius:50%;border:2px solid currentColor;border-top-color:transparent;animation:spin .7s linear infinite}.panel{background:var(--canvas);border-radius:var(--radius);box-shadow:var(--hairline),var(--lift);overflow:hidden}.panel-head{display:flex;align-items:flex-start;gap:16px;padding:15px 18px;border-bottom:1px solid var(--divider)}.panel-title{flex:1;min-width:0}.panel-head h2{font-size:16px;line-height:22px;font-weight:600;color:var(--heading);letter-spacing:-.15px}.panel-head p{margin-top:2px;font-size:13px;color:var(--muted)}.panel-actions{display:flex;align-items:center;gap:8px;flex-shrink:0}.panel-body{padding:18px;display:grid;gap:18px;align-content:start}.panel-body.flush{padding:0;gap:0}.panel-foot{padding:12px 18px;border-top:1px solid var(--divider);background:var(--subtle)}.panel-inline-foot{display:flex;align-items:center;justify-content:space-between;gap:16px;margin:0 -18px -18px;padding:12px 18px;border-top:1px solid var(--divider);background:var(--subtle)}.panel-inline-foot>span{display:inline-flex;align-items:center;gap:7px;font-size:13px;color:var(--muted)}.stack{display:grid;gap:20px;align-content:start}.split{display:grid;gap:20px;grid-template-columns:repeat(2,minmax(0,1fr));align-items:start}.split.wide-left{grid-template-columns:minmax(0,1.85fr) minmax(0,1fr)}.stat-row{display:grid;gap:12px;grid-template-columns:repeat(4,minmax(0,1fr))}.stat-row.three{grid-template-columns:repeat(3,minmax(0,1fr))}.stat{display:grid;align-content:start;gap:2px;padding:13px 15px 14px;min-height:84px;border-radius:var(--radius);background:var(--canvas);box-shadow:var(--hairline);text-align:left}.stat.with-icon{display:flex;align-items:center;gap:14px;padding:16px 18px}.stat-copy{display:grid;align-content:center;gap:2px;min-width:0}.stat-icon{display:grid;place-items:center;width:40px;height:40px;flex:0 0 auto;border-radius:10px;color:var(--brand);background:var(--brand-soft);box-shadow:inset 0 0 0 1px var(--brand-tint)}button.stat{transition:box-shadow .12s ease}button.stat:hover{box-shadow:0 0 0 1px var(--strong-border)}.stat.active{box-shadow:0 0 0 1.5px var(--brand)}.stat.active .stat-label,.stat.active .stat-value{color:var(--brand)}.stat-label{font-size:13.5px;color:var(--muted)}.stat-value{font-size:22px;line-height:30px;font-weight:600;letter-spacing:-.3px;color:var(--heading);font-variant-numeric:tabular-nums}.stat-value.good{color:var(--good)}.stat-value.warn{color:#b45309}.stat-value.bad{color:var(--bad)}.stat small{font-size:12.5px;color:var(--faint);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table-wrap{width:100%;overflow-x:auto}.table{width:100%;border-collapse:collapse}.table th{padding:9px 18px;text-align:left;font-size:12.5px;font-weight:500;color:var(--muted);background:var(--subtle);border-bottom:1px solid var(--divider);white-space:nowrap}.table td{padding:12px 18px;font-size:14px;color:var(--text);border-bottom:1px solid var(--divider);vertical-align:middle}.table tr:last-child td{border-bottom:0}.table tr.selectable{cursor:pointer}.table tr.selectable:hover td{background:var(--hover)}.table tr.selected td{background:var(--brand-soft)}.table .right{text-align:right}.table .muted-cell{color:var(--muted);font-size:13px}.cell-lead{display:flex;align-items:center;gap:9px}.cell-lead .icon{color:var(--faint)}.cell-lead strong{font-weight:600;color:var(--heading)}.history-panel{margin-top:18px}.history-loading{padding:26px 18px;color:var(--muted);font-size:13.5px;text-align:center}.history-table td{vertical-align:top}.history-table tr.history-row:hover td{background:var(--hover)}.history-table .muted-cell .history-duration{display:block;margin-top:2px;font-size:11.5px;white-space:nowrap}.history-action strong{color:var(--heading);font-size:13.5px;font-weight:650}.history-request{display:grid;gap:3px;max-width:560px}.history-request strong{color:var(--heading);font-size:14px;line-height:19px;font-weight:560;overflow-wrap:anywhere}.history-request small{color:var(--muted);font-size:12px;line-height:16px}.history-request .history-error{color:var(--bad);overflow-wrap:anywhere}.history-result{display:grid;justify-items:start;gap:5px;white-space:nowrap}.history-result small{color:var(--muted);font-size:12px}.job-table .job-name{display:flex;align-items:center;gap:8px;font-weight:500}.job-table .job-name .icon{color:var(--muted)}.job-output{margin-top:6px}.job-output summary{font-size:12.5px;color:var(--brand);cursor:pointer;list-style:none}.job-output summary::-webkit-details-marker{display:none}.job-output summary:hover{text-decoration:underline}.job-full-log{display:inline-block;margin-top:7px;font-size:12.5px}.terminal{margin:8px 0 0;padding:12px 14px;border:1px solid #e1e5ed;border-radius:6px;background:#fff;color:#3f4a5f;font-family:ui-monospace,SFMono-Regular,SF Mono,Menlo,monospace;font-size:12px;line-height:18px;white-space:pre-wrap;word-break:break-word;max-height:260px;overflow:auto}.terminal.tall{margin:0;max-height:520px}.live-job-meta{display:flex;align-items:center;flex-wrap:wrap;gap:6px 18px;font-size:12.5px;color:var(--muted)}.live-job-help{display:flex;align-items:flex-start;gap:9px;padding:9px 11px;border-radius:6px;font-size:13px;color:var(--info);background:var(--info-soft)}.live-job-help .icon{flex:0 0 auto;margin-top:2px}.live-job-meta span{display:inline-flex;align-items:center;gap:7px}.live-job-meta .icon{color:var(--faint)}.live-job-meta a{display:inline-flex;align-items:center;gap:5px;font-weight:500}.live-job-meta a .icon{color:currentColor}.meta-divider{width:1px;height:14px;background:var(--border);margin:0 -4px}.live-terminal{margin:0;min-height:170px;max-height:360px}.main:has(.sync-page){background:var(--app-canvas)}.page:has(.authoring-page){padding-bottom:28px}.authoring-page,.sync-page{display:grid;gap:16px;align-content:start}.sync-page{gap:16px}.page-head:has(.page-head-icon){align-items:center;gap:12px}.page-head-icon{display:grid;place-items:center;color:var(--brand);flex:0 0 auto}.authoring-page .page-head,.sync-page .page-head{margin:0 4px 2px}.authoring-page .page-head h1,.sync-page .page-head h1{font-size:30px;line-height:34px;letter-spacing:-.6px}.authoring-page .page-head p,.sync-page .page-head p{margin-top:1px;font-size:13.5px}.authoring-page .panel,.sync-page .panel,.sync-page .stat{border-radius:10px;box-shadow:0 0 0 1px var(--border),0 4px 14px #181b290d}.authoring-page .panel-head{min-height:62px;padding:13px 18px}.authoring-page .panel-head h2{font-size:16px}.panel-head:has(.panel-icon){align-items:center;gap:12px}.panel-icon{display:grid;place-items:center;width:30px;height:30px;flex:0 0 auto;border-radius:8px;color:var(--brand);background:var(--brand-soft);box-shadow:inset 0 0 0 1px var(--brand-tint)}.authoring-hero{display:flex;align-items:center;min-height:112px;gap:18px;padding:4px 0}.authoring-hero-icon{width:54px;height:54px;display:grid;place-items:center;flex:0 0 auto;border:1px solid #e3e8f1;border-radius:10px;color:#0aa9a4;background:#fff;box-shadow:0 4px 12px #12336812}.authoring-hero-copy{min-width:0}.authoring-hero h1{color:#05153e;font-size:28px;line-height:34px;font-weight:700;letter-spacing:-.4px}.authoring-hero p{margin-top:3px;color:#294475;font-size:14px}.authoring-regenerate-action{margin-left:auto;display:grid;justify-items:stretch;gap:7px;min-width:240px;text-align:center}.authoring-regenerate-action .btn{min-width:240px;height:46px;border-radius:7px;font-weight:620}.authoring-regenerate-action small{color:#526a96;font-size:12.5px}.authoring-request{border-radius:13px!important}.authoring-request .panel-body{min-height:576px;gap:22px;padding:26px 24px 0}.authoring-section-title h2{color:#071640;font-size:18px;line-height:24px;font-weight:660}.authoring-fields{display:grid;gap:22px;margin:0;padding:0;border:0;min-width:0}.authoring-options{display:grid;grid-template-columns:1.08fr 1.06fr .9fr;gap:20px;align-items:stretch}.authoring-option-card{min-width:0;min-height:174px;padding:18px;border:1px solid #e0e6ef;border-radius:9px;background:#fff}.agent-option-card{display:grid;grid-template-columns:76px minmax(0,1fr);align-items:center;gap:15px}.agent-option-icon{width:64px;height:64px;display:grid;place-items:center;border:1px solid #e1e7f0;border-radius:50%;color:#00a9a5;background:#ebfaf9;box-shadow:inset 0 0 0 10px #fff}.model-option-card{display:grid;align-content:center;gap:15px}.authoring-option-card .field{min-width:0}.authoring-combo-icon{position:relative;display:block}.authoring-combo-icon>.icon{position:absolute;z-index:1;left:12px;top:50%;transform:translateY(-50%);color:#1265f3;pointer-events:none}.authoring-combo-icon .input{padding-left:42px}.screenshot-option{display:grid;align-content:center;justify-items:start;gap:10px}.screenshot-option>strong{color:#09245b;font-size:14px;font-weight:650}.screenshot-option>p{max-width:23ch;color:#526a96;font-size:12.5px;line-height:20px}.screenshot-option .toggle-text{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)}.screenshot-option .toggle{align-self:center;justify-content:center}.screenshot-option .toggle-track{width:38px;height:22px;background:#b8c1d0}.screenshot-option .toggle-track:after{width:16px;height:16px;top:3px;left:3px}.screenshot-option .toggle input:checked+.toggle-track:after{transform:translate(16px)}.authoring-request .field-label{font-weight:620}.authoring-request .input{min-height:40px;padding-inline:12px;border-radius:7px;font-size:14px;box-shadow:0 0 0 1px #d7dfec}.authoring-textarea-wrap{position:relative;display:block}.authoring-request .textarea{min-height:112px;padding:12px 13px 30px;resize:vertical}.authoring-textarea-wrap>small{position:absolute;right:13px;bottom:9px;color:#647aa4!important;font-size:12px;font-variant-numeric:tabular-nums}.authoring-request .panel-inline-foot{justify-content:flex-end;margin:auto -24px 0;padding:0 24px 20px;border:0;border-radius:0 0 13px 13px;background:#fff}.authoring-request .panel-inline-foot .btn{height:42px;padding-inline:18px;border-radius:7px;font-weight:610}.authoring-request .panel-inline-foot .btn.primary{min-width:210px;background:var(--brand)}.live-authoring .panel-body{gap:8px;padding:10px 16px 12px}.live-authoring .live-job-meta{order:-1;padding:0 4px 7px;border-bottom:1px solid var(--divider)}.live-authoring .live-job-help{border:1px solid #9cc8fa;background:#eef6ff}.live-authoring .live-terminal{min-height:180px;border:1px solid #e1e5ed;border-radius:7px;color:#3f4a5f;background:#fff}.authoring-action-card{min-width:0;overflow:hidden;border-radius:12px;background:#fff;box-shadow:0 0 0 1px #e4eaf2,0 4px 12px #1f3a690a}.authoring-action-card-head{width:100%;min-height:104px;display:flex;align-items:center;gap:16px;padding:13px 20px;text-align:left}.authoring-action-card-head>.icon{color:#082a68;transition:transform .14s ease}.activity-card.open .authoring-action-card-head>.icon{transform:rotate(180deg)}.action-card-icon{width:40px;height:40px;display:grid;place-items:center;flex:0 0 auto;border-radius:50%}.action-card-icon.activity{color:#00a9a5;background:#e1f8f6}.action-card-icon.audit{color:#8a2be2;background:#f4e8ff;border-radius:8px}.action-card-copy{flex:1;min-width:0;display:grid;gap:2px}.action-card-copy strong{color:#09245b;font-size:15px;font-weight:650}.action-card-copy small{color:#526a96;font-size:12.5px}.audit-card .btn{min-width:150px;height:38px;justify-content:space-between;padding-inline:18px;border-radius:7px;font-weight:620}.authoring-activity-list{display:grid}.authoring-action-card .authoring-activity-list{border-top:1px solid #edf0f5}.authoring-activity-row{min-height:72px;display:grid;grid-template-columns:30px minmax(0,1fr) auto auto;align-items:center;gap:12px;padding:12px 20px}.authoring-activity-row+.authoring-activity-row{border-top:1px solid var(--divider)}.activity-status-icon{width:26px;height:26px;display:grid;place-items:center;border:2px solid #17b95f;border-radius:50%;color:#17b95f}.activity-status-icon.failed{border-color:var(--bad);color:var(--bad)}.activity-status-icon.running{border-color:var(--info);color:var(--info)}.activity-status-icon.cancelled{border-color:#9ba7b8;color:#9ba7b8}.authoring-activity-row strong{display:block;color:#09245b;font-size:14px}.authoring-activity-row a{display:inline-block;margin-top:3px;color:#00a8a5;font-size:13px}.authoring-activity-row time{color:#4a618d;font-size:13px;white-space:nowrap}.authoring-activity-row>.btn{grid-column:4}.page:has(.authoring-page){min-height:100vh;padding-top:28px;padding-bottom:28px}.authoring-page{min-height:calc(100vh - 56px);gap:0}.authoring-hero{min-height:147px;padding:0;border-bottom:1px solid #dde4ed}.authoring-hero-icon{width:66px;height:66px;border-radius:11px}.authoring-hero h1{font-size:28px;line-height:34px;font-weight:700;letter-spacing:-.4px}.authoring-hero p{margin-top:4px;font-size:15px}.authoring-regenerate-action{min-width:260px;gap:10px}.authoring-regenerate-action .btn{min-width:260px;height:54px;color:#e51b1b;border:1px solid #ff4d4d;box-shadow:none;background:#fff;font-size:14px}.authoring-regenerate-action .btn:hover:not(:disabled){color:#c91616;border-color:#df2a2a;background:#fff7f7}.authoring-regenerate-action small{font-size:12.5px}.authoring-request{overflow:visible;border-radius:0!important;background:transparent!important;box-shadow:none!important}.authoring-request .panel-body{min-height:562px;gap:0;padding:36px 0 0}.authoring-fields{gap:28px}.authoring-prompt-block{display:grid;gap:20px}.authoring-prompt-title{display:flex;align-items:center;gap:20px}.authoring-prompt-title>span{width:44px;height:44px;display:grid;place-items:center;flex:0 0 auto;border-radius:50%;color:#fff;background:linear-gradient(145deg,#08b7ad,#079b99)}.authoring-prompt-title h2{color:#071640;font-size:16px;line-height:22px;font-weight:600}.authoring-request .textarea{min-height:190px;padding:14px 18px 36px;border-radius:8px;font-size:14px}.authoring-textarea-wrap>small{right:18px;bottom:13px;font-size:12.5px}.authoring-options{grid-template-columns:repeat(4,minmax(0,1fr));gap:0;align-items:start}.authoring-options>*{min-width:0;padding:0 30px}.authoring-options>:first-child{padding-left:0}.authoring-options>:last-child{padding-right:0}.authoring-options>*+*{border-left:1px solid #dfe5ed}.authoring-options .field,.screenshot-option{display:grid;align-content:start;gap:10px}.authoring-request .field-label,.screenshot-option>strong{color:#071640;font-size:13px;font-weight:650}.authoring-control-icon{position:relative;display:block}.authoring-control-icon>.icon{position:absolute;z-index:1;left:11px;top:50%;transform:translateY(-50%);pointer-events:none}.authoring-control-icon.agent>.icon{color:#009c98}.authoring-control-icon.model>.icon{color:#135ff0}.authoring-control-icon.reasoning>.icon{color:#6b2fd1}.authoring-control-icon:before{content:"";position:absolute;z-index:0;left:7px;top:50%;width:34px;height:34px;transform:translateY(-50%);border-radius:9px;background:#eaf8f6;pointer-events:none}.authoring-control-icon.model:before{background:#eaf1ff}.authoring-control-icon.reasoning:before{background:#f0eaff}.authoring-control-icon .input{min-height:57px;padding-left:58px;border-radius:7px}.screenshot-option{min-height:0;justify-items:start}.screenshot-option>div{min-height:57px;display:flex;align-items:center;gap:20px}.screenshot-camera{width:46px;height:46px;display:grid;place-items:center;border-radius:11px;color:#6a2bd1;background:#f0e8ff}.authoring-request .panel-inline-foot{min-height:88px;margin:auto 0 0;padding:18px 0 38px;border-bottom:1px solid #dde4ed;border-radius:0;background:transparent}.authoring-request .panel-inline-foot .btn{min-width:302px;height:56px;border-radius:7px;font-size:14px}.authoring-action-card{border-radius:0;background:transparent;box-shadow:none}.authoring-action-card-head{min-height:112px;padding:18px 6px;border-bottom:1px solid #dde4ed}.action-card-icon{width:48px;height:48px;background:transparent!important}.action-card-icon.activity{color:#00a6a2}.action-card-icon.audit{color:#6a2bd1;background:#f1e9ff!important;border-radius:11px}.action-card-copy strong{font-size:16px}.action-card-copy small{margin-top:2px;font-size:13px}.audit-card .btn{min-width:175px;height:54px;border:1px solid #bba1ff;color:#4e1bb7;box-shadow:none}.audit-card .btn:hover:not(:disabled){border-color:#8d68ef;color:#3d1198;background:#fbf9ff}@media(max-width:1100px){.authoring-options{grid-template-columns:repeat(2,minmax(0,1fr))}.authoring-options>*{padding:14px;border:0!important}}@media(max-height:900px)and (min-width:901px){.page:has(.authoring-page){padding-top:18px;padding-bottom:16px}.authoring-hero{min-height:105px}.authoring-hero-icon{width:46px;height:46px}.authoring-hero h1{font-size:28px;line-height:34px}.authoring-regenerate-action .btn{height:38px}.authoring-request .panel-body{min-height:420px;padding-top:22px}.authoring-fields{gap:18px}.authoring-prompt-block{gap:13px}.authoring-prompt-title>span{width:36px;height:36px}.authoring-request .textarea{min-height:124px}.authoring-control-icon .input{min-height:48px}.screenshot-option>div{min-height:48px}.authoring-request .panel-inline-foot{min-height:64px;padding:10px 0 16px}.authoring-request .panel-inline-foot .btn{height:36px}.authoring-action-card-head{min-height:70px;padding-block:9px}.action-card-icon{width:40px;height:40px}.audit-card .btn{height:40px}}.sync-status{display:grid;align-content:start;gap:3px;padding:16px 18px;border-radius:9px;background:var(--subtle);box-shadow:var(--hairline);font-family:ui-monospace,SFMono-Regular,SF Mono,Menlo,monospace;font-size:12.5px;line-height:20px;overflow-x:auto}.sync-status-head{display:flex;align-items:center;gap:8px;margin-bottom:7px;font-weight:600;color:var(--heading)}.sync-status-head i{width:7px;height:7px;border-radius:50%;flex:0 0 auto;background:var(--faint)}.sync-status-head i.on{background:#21c17a;box-shadow:0 0 0 3px #21c17a29}.sync-status-rule{height:0;margin:9px 0;border:0;border-top:1px solid var(--border)}.sync-status-row{display:grid;grid-template-columns:16px minmax(0,1fr) minmax(0,1.5fr);align-items:baseline;gap:10px;min-height:24px}.sync-status-row .icon{color:var(--faint);align-self:center}.sync-status-row.good .icon{color:var(--good)}.sync-status-row.warn .icon{color:var(--warn)}.sync-status-row.bad .icon{color:var(--bad)}.sync-status-label{color:var(--text)}.sync-status-value{color:var(--muted);overflow-wrap:anywhere}.sync-status-foot{margin-top:4px;color:var(--muted)}.sync-status-foot code{color:var(--brand);font:inherit}.status-block{margin:0;padding:14px 16px;border-radius:7px;background:var(--subtle);box-shadow:var(--hairline);font-family:ui-monospace,SFMono-Regular,SF Mono,Menlo,monospace;font-size:12px;line-height:20px;color:var(--text);white-space:pre;overflow:auto;max-height:520px}.link-rows{display:grid}.link-rows button{display:flex;align-items:center;gap:12px;padding:13px 18px;border-bottom:1px solid var(--divider);text-align:left}.link-rows button:last-child{border-bottom:0}.link-rows button:hover{background:var(--hover)}.row-icon{width:30px;height:30px;flex:0 0 auto;display:grid;place-items:center;border-radius:7px;background:var(--brand-soft);color:var(--brand)}.row-copy{flex:1;min-width:0}.row-copy strong,.link-rows strong{display:block;font-size:14px;font-weight:500;color:var(--text)}.row-copy small,.link-rows small{display:block;font-size:12.5px;color:var(--muted)}.row-chevron{color:var(--faint)}.row-actions{display:flex;align-items:center;gap:8px;flex-wrap:wrap}.check-rows{display:grid}.check,.agent-row{display:flex;align-items:center;gap:11px;padding:13px 18px;border-bottom:1px solid var(--divider)}.check:last-child,.agent-row:last-child{border-bottom:0}.check-mark{width:20px;height:20px;flex:0 0 auto;display:grid;place-items:center;border-radius:50%;color:#fff}.check-mark.pass{background:#1fa971}.check-mark.warn{background:#d9822b}.check-mark.fail{background:#d4436a}.check strong,.agent-row strong{display:block;font-size:14px;font-weight:500;color:var(--text)}.check small,.agent-row small{display:block;font-size:12.5px;color:var(--muted)}.check-copy{flex:1;min-width:0}.check-action{flex:0 0 auto;display:flex;align-items:center;gap:8px;margin-left:auto}.check-action .select-wrap{width:190px}.agent-install-progress{width:170px;display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:5px 8px}.agent-install-progress-copy{min-width:0}.agent-install-progress-copy strong,.agent-install-progress-copy small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.agent-install-progress-copy small{margin-top:1px}.agent-install-track{grid-column:1 / -1;height:4px;overflow:hidden;border-radius:999px;background:#e6e9ee}.agent-install-track i{display:block;width:42%;height:100%;border-radius:inherit;background:var(--brand)}.agent-install-progress.running .agent-install-track i{animation:install-progress 1.2s ease-in-out infinite}.agent-install-progress.complete .agent-install-track i{width:100%;background:#1fa971}.agent-install-progress.failed .agent-install-track i{width:100%;background:var(--bad)}.agent-install-progress .btn{grid-column:2;grid-row:1}@keyframes install-progress{0%{transform:translate(-110%)}to{transform:translate(250%)}}.account-login-progress{width:250px;display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:5px 8px}.account-login-progress-copy{min-width:0}.account-login-progress-copy strong,.account-login-progress-copy small{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.account-login-track{grid-column:1 / -1;height:4px;overflow:hidden;border-radius:999px;background:#e6e9ee}.account-login-track i{display:block;width:42%;height:100%;border-radius:inherit;background:var(--brand)}.account-login-progress.running .account-login-track i{animation:install-progress 1.2s ease-in-out infinite}.account-login-progress.complete .account-login-track i{width:100%;background:#1fa971}.account-login-progress.failed .account-login-track i{width:100%;background:var(--bad)}.account-login-progress .btn{grid-column:2;grid-row:1}.agent-row{justify-content:space-between}.agent-row>div:first-child{min-width:0}.badge{display:inline-flex;align-items:center;gap:4px;padding:2px 7px;border-radius:5px;background:#e6e9ee;color:#4a5262;font-size:12px;font-weight:600;line-height:18px;white-space:nowrap}.badge:first-letter{text-transform:uppercase}.badge.good{background:var(--good-soft);color:var(--good)}.badge.warn{background:var(--warn-soft);color:var(--warn)}.badge.bad{background:var(--bad-soft);color:var(--bad)}.badge.info{background:var(--info-soft);color:var(--info)}.form-grid{display:grid;gap:16px;grid-template-columns:repeat(2,minmax(0,1fr))}.form-grid.one{grid-template-columns:minmax(0,1fr)}.form-grid.gap-top{margin-top:2px}.schedule-fields{padding-top:2px}.schedule-summary{display:flex;align-items:center;gap:7px;margin:-2px 0 0;color:var(--muted);font-size:13px}.schedule-summary .icon{color:var(--brand)}.field{display:grid;gap:6px;align-content:start;min-width:0}.field.wide{grid-column:1 / -1}.field-label{font-size:13px;font-weight:550;color:var(--heading)}.field small{font-size:12.5px;color:var(--muted)}.form-heading{font-size:13px;font-weight:600;color:var(--heading)}.form-actions{display:flex;justify-content:flex-end;gap:8px;flex-wrap:wrap}.lede{font-size:14.5px;color:var(--muted)}.input{width:100%;min-height:34px;padding:6px 10px;border:0;border-radius:6px;background:#fff;color:var(--text);font-size:14px;box-shadow:var(--hairline),0 1px 1px #181b290a;transition:box-shadow .12s ease}.input:hover{box-shadow:0 0 0 1px var(--strong-border),0 1px 1px #181b290d}.input:focus{outline:none;box-shadow:0 0 0 1px var(--brand),var(--ring)}.input[aria-invalid=true]{border-color:var(--bad);box-shadow:0 0 0 1px var(--bad)}.input::placeholder{color:var(--faint)}.textarea{min-height:90px;padding:9px 11px;line-height:21px;resize:vertical}.mono-input{font-family:ui-monospace,SFMono-Regular,SF Mono,Menlo,monospace;font-size:12.5px;line-height:20px}.select-wrap{position:relative;display:block}.select-wrap select{appearance:none;padding-right:30px;cursor:pointer}.select-wrap>.icon{position:absolute;right:10px;top:50%;transform:translateY(-50%);color:var(--muted);pointer-events:none}.select-wrap>.lead-icon{right:auto;left:11px;color:var(--faint)}.select-wrap.with-icon select{padding-left:34px}.custom-select-trigger{display:flex;align-items:center;justify-content:space-between;gap:10px;padding-right:10px;cursor:pointer;text-align:left}.custom-select-trigger>span{min-width:0;overflow:hidden;flex:1;white-space:nowrap;text-overflow:ellipsis}.custom-select-trigger>.icon{flex:0 0 auto;color:var(--muted);transition:transform .14s ease}.custom-select-trigger[aria-expanded=true]{box-shadow:0 0 0 1px var(--brand),var(--ring)}.custom-select-trigger[aria-expanded=true]>.icon{transform:rotate(180deg)}.custom-select.with-icon .custom-select-trigger{padding-left:34px}.custom-select-trigger:disabled{cursor:not-allowed;opacity:.58;background:#f7f8fa}.custom-select-menu{position:fixed;z-index:1000;max-height:248px;overflow:auto;display:grid;gap:2px;padding:5px;border:1px solid #d8dde7;border-radius:8px;background:#fff;box-shadow:0 10px 28px #1c24392b;animation:fade-up .1s ease}.custom-select-menu>button{min-height:34px;display:flex;align-items:center;justify-content:space-between;gap:10px;padding:7px 9px;border-radius:5px;color:#30394d;background:transparent;font-size:13.5px;text-align:left}.custom-select-menu>button>span{min-width:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.custom-select-menu>button.highlighted{color:var(--brand-dark);background:var(--brand-soft)}.custom-select-menu>button.selected{color:var(--brand-dark);font-weight:600}.custom-select-menu>button>.icon{flex:0 0 auto;color:var(--brand)}.custom-select-menu>button:disabled{cursor:not-allowed;opacity:.48}.editable-select input{padding-right:38px}.editable-select>button{position:absolute;inset:1px 1px 1px auto;width:35px;display:grid;place-items:center;border-left:1px solid var(--divider);border-radius:0 6px 6px 0;color:var(--muted);background:#fff}.editable-select>button:hover:not(:disabled){color:var(--brand);background:var(--hover)}.editable-select>button:disabled{cursor:not-allowed;background:#f7f8fa}.editable-select>button .icon{transition:transform .14s ease}.editable-select:has(input[aria-expanded=true])>button .icon{transform:rotate(180deg)}.editable-select-menu{position:fixed;z-index:1000;max-height:248px;overflow:auto;display:grid;gap:2px;padding:5px;border:1px solid #d8dde7;border-radius:8px;background:#fff;box-shadow:0 10px 28px #1c24392b;animation:fade-up .1s ease}.editable-select-menu>button{min-height:40px;display:flex;align-items:center;justify-content:space-between;gap:10px;padding:6px 9px;border-radius:5px;color:#30394d;text-align:left}.editable-select-menu>button>span{min-width:0;display:grid;gap:1px}.editable-select-menu strong{overflow:hidden;font-size:13px;font-weight:580;white-space:nowrap;text-overflow:ellipsis}.editable-select-menu small{overflow:hidden;color:var(--muted);font:11px/15px ui-monospace,SFMono-Regular,Menlo,monospace;white-space:nowrap;text-overflow:ellipsis}.editable-select-menu>button.highlighted{color:var(--brand-dark);background:var(--brand-soft)}.editable-select-menu>button.selected{color:var(--brand-dark);font-weight:600}.editable-select-menu>button>.icon{flex:0 0 auto;color:var(--brand)}.editable-select-empty{padding:10px;color:var(--muted);font-size:12px;line-height:17px}.toggle{display:inline-flex;align-items:center;gap:9px;cursor:pointer}.toggle input{position:absolute;opacity:0;width:0;height:0}.toggle-track{width:34px;height:20px;flex:0 0 auto;border-radius:999px;background:#cdd4dd;position:relative;transition:background-color .15s ease}.toggle-track:after{content:"";position:absolute;top:2px;left:2px;width:16px;height:16px;border-radius:50%;background:#fff;box-shadow:0 1px 2px #181b2940;transition:transform .15s ease}.toggle input:checked+.toggle-track{background:var(--brand)}.toggle input:checked+.toggle-track:after{transform:translate(14px)}.toggle input:focus-visible+.toggle-track{outline:3px solid color-mix(in srgb,var(--brand) 28%,transparent);outline-offset:2px}.toggle input:disabled+.toggle-track{opacity:.5}.toggle-text{font-size:13.5px;color:var(--text)}.options{display:grid;gap:10px;grid-template-columns:repeat(var(--option-columns, 2),minmax(0,1fr))}.option{position:relative;display:grid;gap:3px;align-content:start;padding:12px 13px;border-radius:7px;background:#fff;box-shadow:var(--hairline);text-align:left;transition:box-shadow .12s ease,background-color .12s ease}.option:hover{box-shadow:0 0 0 1px var(--strong-border)}.option-head{display:flex;align-items:center;gap:9px;min-width:0}.option-head .icon{color:var(--muted)}.option strong{font-size:14px;font-weight:600;color:var(--heading)}.option small{font-size:12.5px;color:var(--muted);line-height:17px}.option-check{position:absolute;top:10px;right:10px;width:16px;height:16px;display:grid;place-items:center;border-radius:50%;background:var(--brand);color:#fff;opacity:0;transform:scale(.7);transition:opacity .12s ease,transform .12s ease}.option.selected{background:#fff;box-shadow:0 0 0 1.5px var(--brand)}.option.selected .option-head .icon{color:var(--brand)}.option.selected .option-check{opacity:1;transform:none}.segmented{display:inline-flex;padding:2px;border-radius:7px;background:#eef1f5}.segmented button{height:26px;padding:0 10px;border-radius:5px;font-size:13px;font-weight:500;color:var(--muted)}.segmented button.active{background:#fff;color:var(--heading);box-shadow:0 1px 2px #181b291a}.tabs{display:flex;gap:20px;border-bottom:1px solid var(--border);margin:-2px 0 4px}.panel-body>.tabs:first-child{margin:-18px -18px 0;padding:0 18px}.tabs button{position:relative;padding:0 0 9px;font-size:14px;font-weight:500;color:var(--muted)}.tabs button:hover{color:var(--text)}.tabs button.active{color:var(--brand);font-weight:600}.tabs button.active:after{content:"";position:absolute;left:0;right:0;bottom:-1px;height:2px;border-radius:2px 2px 0 0;background:var(--brand)}.disclosure{display:inline-flex;align-items:center;gap:7px;font-size:13.5px;font-weight:600;color:var(--brand);justify-self:start}.disclosure:hover{text-decoration:underline}.keyvalues{display:grid;gap:0;border-radius:7px;box-shadow:var(--hairline);overflow:hidden}.keyvalues>div{display:grid;grid-template-columns:200px minmax(0,1fr);gap:12px;padding:10px 14px;border-bottom:1px solid var(--divider)}.keyvalues>div:last-child{border-bottom:0}.keyvalues dt{font-size:13px;color:var(--muted)}.keyvalues dd{font-size:13.5px;color:var(--text);min-width:0;overflow-wrap:anywhere}.note{display:flex;align-items:flex-start;gap:8px;padding:10px 12px;border-radius:6px;background:var(--subtle);box-shadow:var(--hairline);font-size:13px;color:var(--muted)}.note .icon{margin-top:2px;color:var(--faint)}.note.warn{background:#fffaeb;box-shadow:0 0 0 1px #f6e3b4;color:var(--warn)}.note.bad{background:var(--bad-soft);box-shadow:0 0 0 1px #fecdca;color:var(--bad)}.note.bad .icon{color:var(--bad)}.empty{display:grid;justify-items:center;gap:7px;padding:34px 24px;text-align:center}.empty-icon{width:44px;height:44px;display:grid;place-items:center;border-radius:10px;background:var(--brand-soft);box-shadow:inset 0 0 0 1px var(--brand-tint);color:var(--brand);margin-bottom:2px}.empty strong{font-size:16px;font-weight:600;color:var(--heading)}.empty p{font-size:13.5px;color:var(--muted);max-width:46ch}.empty .btn{margin-top:6px}.banner{display:flex;align-items:flex-start;gap:10px;padding:12px 14px;border-radius:7px;animation:fade-up .16s ease}.banner strong{display:block;font-size:13.5px;font-weight:600}.banner span{font-size:13px;opacity:.9;overflow-wrap:anywhere}.banner>div{flex:1;min-width:0}.banner>button{color:inherit;opacity:.6;padding:2px}.banner>button:hover{opacity:1}.banner.bad{background:var(--bad-soft);color:var(--bad)}.source-sync-banner{display:flex;align-items:flex-start;gap:12px;padding:14px 16px;border-radius:var(--radius);color:var(--info);background:var(--info-soft);box-shadow:0 0 0 1px #1b5ea829}.source-sync-icon{width:30px;height:30px;flex:0 0 auto;display:grid;place-items:center;border-radius:7px;background:#ffffff8c}.source-sync-banner>div{min-width:0}.source-sync-banner strong{display:block;font-size:14px;font-weight:600}.source-sync-banner p{margin-top:2px;font-size:13px;color:#315f8e}.regeneration-row{display:flex;align-items:center;justify-content:space-between;gap:20px}.regeneration-row>div{min-width:0}.regeneration-row strong{display:block;font-weight:600;color:var(--heading)}.regeneration-row p{margin-top:2px;font-size:13px;color:var(--muted)}.confirm-dialog{width:min(520px,92vw);display:grid;grid-template-columns:auto minmax(0,1fr);gap:12px 14px;padding:20px;border-radius:10px;background:var(--canvas);box-shadow:var(--pop);animation:fade-up .14s ease}.confirm-icon{width:34px;height:34px;display:grid;place-items:center;border-radius:8px;color:var(--bad);background:var(--bad-soft)}.confirm-copy h2{font-size:17px;line-height:23px;font-weight:600;color:var(--heading)}.confirm-copy>p{margin-top:5px;font-size:13.5px;color:var(--muted)}.confirm-copy .note{margin-top:14px}.confirm-actions{grid-column:1 / -1;display:flex;justify-content:flex-end;gap:8px;padding-top:4px}.proposal-shell{grid-template-columns:130px minmax(0,1fr);background:#fff}.proposal-shell .sidebar{width:130px;padding:16px 10px 18px;overflow-x:hidden;box-shadow:1px 0 0 var(--divider)}.proposal-shell .account{justify-content:center;margin:0 0 28px;padding:0}.proposal-shell .account-mark{width:40px;height:40px;border-radius:9px;font-size:0;box-shadow:0 6px 15px #15afaa38}.proposal-shell .account-mark:after{content:"D";font-size:19px;font-weight:700}.proposal-shell .account-name,.proposal-shell .account>.icon,.proposal-shell .nav-label{display:none}.proposal-shell .sidebar nav{gap:3px}.proposal-shell .nav-group{gap:3px}.proposal-shell .nav-group button{position:relative;min-height:61px;flex-direction:column;justify-content:center;gap:5px;padding:7px 5px;border-radius:9px;font-size:12px;color:var(--heading);text-align:center}.proposal-shell .nav-group button .icon{width:20px;height:20px;color:var(--heading)}.proposal-shell .nav-group button>span{flex:none;width:100%}.proposal-shell .nav-group button.active{background:var(--brand-soft);color:var(--brand)}.proposal-shell .nav-group button.active .icon{color:var(--brand)}.proposal-shell .nav-group button b{position:absolute;top:5px;right:12px}.proposal-shell .sidebar-foot{justify-content:center;padding:12px 0 0;text-align:center}.proposal-shell .sidebar-foot .dot{display:none}.proposal-shell .sidebar-foot strong{color:var(--heading)}.proposal-shell .sidebar-foot small{max-width:102px}.proposal-shell .topbar{height:69px;padding:0 28px;background:#fffffff0}.proposal-shell .topbar-search{height:40px;max-width:544px;padding:0 13px;border-radius:8px;background:#fff;box-shadow:0 0 0 1px var(--border),0 2px 7px #181b290a}.proposal-shell .topbar-tools{gap:12px}.proposal-shell .mode-flag{height:40px;margin-right:7px;padding:0 16px;border:1px solid var(--border);border-radius:8px;background:#fff;color:#46516b}.proposal-shell .mode-flag:after{content:"⌄";margin-left:10px;color:var(--faint)}.proposal-shell .icon-btn{width:38px;height:38px;border-radius:8px}.proposal-shell .page{max-width:none;gap:20px;padding:24px 30px 48px;background:linear-gradient(135deg,#fff 0% 55%,#fbfaff)}.proposal-shell .page-head h1{font-size:30px;line-height:35px;letter-spacing:-.6px}.proposal-shell .page-head p{max-width:43ch;margin-top:3px;color:#62708c}.proposal-shell .loading-bar{top:69px;left:130px}.review{display:grid;gap:20px;grid-template-columns:375px minmax(0,1fr);align-items:start}.review-rail{min-height:610px;border-radius:12px;background:#fff;border:1px solid var(--border);box-shadow:0 8px 24px #181b290a;overflow:hidden;position:sticky;top:90px}.rail-head{min-height:58px;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:0 18px;font-size:13px;font-weight:600;color:#53617d;background:#fff;border-bottom:1px solid var(--divider)}.rail-sort{display:inline-flex;align-items:center;gap:8px;font-weight:500;color:#6b7690}.review-rail>button{display:grid;gap:12px;width:100%;min-height:94px;padding:17px 18px;border-bottom:1px solid var(--divider);text-align:left}.review-rail>button:last-child{border-bottom:0}.review-rail>button:hover{background:#fafaff}.review-rail>button.active{background:linear-gradient(90deg,var(--brand-soft) 0%,#f9fffe 100%);box-shadow:inset 3px 0 0 var(--brand)}.review-rail>button>strong{font-size:13.5px;font-weight:650;color:#1f2941;line-height:20px}.rail-row{display:flex;align-items:center;justify-content:space-between;gap:10px}.rail-row .badge{flex:0 0 auto;font-size:10.5px;line-height:16px;padding:1px 7px;text-transform:uppercase}.review-rail small{font-size:12px;color:#75819b}.review-main{min-width:0}.proposal-card{min-width:0;overflow:hidden;border:1px solid #e9ebf2;border-radius:15px;background:#fff;box-shadow:0 12px 34px #231f5414,0 2px 8px #231f540a}.proposal-summary{min-height:160px;display:grid;grid-template-columns:62px minmax(260px,1fr) auto;align-items:start;gap:20px;padding:26px 30px 24px}.proposal-summary-icon{width:60px;height:60px;display:grid;place-items:center;border:1px solid #dcd7ff;border-radius:12px;background:#f7f5ff;color:var(--brand)}.proposal-summary-copy{min-width:0;padding-top:4px}.proposal-summary-line{display:flex;align-items:center;flex-wrap:wrap;gap:10px 18px}.proposal-summary-line h2{font-size:18px;line-height:25px;font-weight:700;letter-spacing:-.25px;color:#141b34}.change-counts{display:flex;align-items:center;gap:10px;font-size:13px;color:#66718b}.change-counts span{display:inline-flex;align-items:center;gap:6px;white-space:nowrap}.change-counts span i{width:14px;height:14px;display:inline-block;position:relative;border-radius:50%}.change-counts span i:after{content:"✓";position:absolute;inset:0;display:grid;place-items:center;color:#fff;font-size:9px;font-style:normal;font-weight:800}.change-counts .added i{background:#34c77b}.change-counts .modified i{background:#5b7cfa}.change-counts .deleted{color:#bd234a}.change-counts .deleted i{background:#ff6686}.change-counts>b{width:1px;height:19px;background:var(--border)}.source-count{display:flex;align-items:center;gap:7px;max-width:100%;margin-top:8px;font-size:13px;font-weight:650;color:#4d5872;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.source-count .icon{color:#7e89a0}.source-detail{margin-top:8px;font-size:12.5px;color:#68748e;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.proposal-summary-side{min-width:275px;display:grid;justify-items:end;gap:28px}.proposal-actions{display:flex;align-items:center;gap:10px}.proposal-actions .btn{min-width:122px;height:40px;border-radius:8px}.proposal-actions .btn.primary{background:var(--brand);box-shadow:0 5px 12px #15afaa3b}.proposal-actions .btn.danger{color:#df234e;box-shadow:0 0 0 1px #ff6686}.proposal-meta{display:flex;align-items:center;gap:13px;font-size:12.5px;color:#6b7690}.proposal-meta span{display:inline-flex;align-items:center;gap:7px;white-space:nowrap}.proposal-meta b{width:1px;height:17px;background:var(--border)}.file-picker-bar{padding:14px 24px;border-top:1px solid var(--divider);border-bottom:1px solid var(--divider);background:#fff}.file-picker{position:relative;min-height:50px;display:flex;align-items:center;gap:11px;width:100%;padding:7px 14px;border:1px solid #dfe3ed;border-radius:9px;background:#fff;box-shadow:0 2px 6px #181b2908;cursor:pointer}.file-picker:hover{border-color:#c6cce0;background:#fdfdff}.file-picker:focus-within{border-color:var(--brand);box-shadow:var(--ring)}.file-picker-icon{color:#34415e}.file-picker-copy{flex:1;min-width:0;display:grid;line-height:17px}.file-picker-copy small{font-size:10.5px;font-weight:650;letter-spacing:.05em;text-transform:uppercase;color:#929bad}.file-picker-copy strong{font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:12.5px;font-weight:550;color:#26314b;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.file-picker>.select-wrap{position:absolute;inset:0;z-index:2}.file-picker .file-picker-select{width:100%;height:100%;opacity:0;cursor:pointer}.file-picker .badge{text-transform:capitalize}.file-position{font-size:12px;color:#7c879e;white-space:nowrap}.file-picker>.icon:last-child{color:#68748e}.review-toolbar{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;min-height:68px;padding:12px 24px;border-bottom:1px solid var(--divider)}.toolbar-label{margin-right:2px;font-size:12px;color:#68748e}.review-toolbar .segmented{padding:3px;border:1px solid #e2e5ed;background:#f6f7fa}.review-toolbar .segmented button{height:30px;padding:0 13px}.review-toolbar .segmented button.active{color:var(--brand-dark);box-shadow:0 0 0 1px var(--brand-tint),0 2px 4px #15afaa12}.review-toolbar .btn{height:36px;border-radius:7px}.chips{display:flex;gap:6px}.review-frame,.site-frame{width:100%;border:0;display:block;background:#fff}.review-frame{height:min(68vh,760px)}.site-frame{height:min(76vh,900px)}.frame-panel .panel-body{min-height:0}.source-diff{padding:14px;display:grid;gap:12px}.diff-summary{display:flex;align-items:center;gap:10px;font-size:13px}.diff-summary .added{color:var(--good);font-weight:600;font-variant-numeric:tabular-nums}.diff-summary .removed{color:var(--bad);font-weight:600;font-variant-numeric:tabular-nums}.diff-summary small{color:var(--muted);margin-left:auto}.hunk{border-radius:7px;box-shadow:var(--hairline);overflow:hidden}.hunk>header{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:8px 12px;background:var(--subtle);border-bottom:1px solid var(--divider)}.hunk>header strong{font-size:12.5px;font-weight:600;color:var(--muted)}.hunk.accepted{box-shadow:0 0 0 1px #b6e7c8}.hunk.rejected{box-shadow:0 0 0 1px #f6c9c9}.diff-lines{font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:12.5px;line-height:20px}.diff-line{display:grid;grid-template-columns:44px 44px 18px minmax(0,1fr);background:#fff}.diff-line>span{text-align:right;padding-right:8px;color:#b3bac5;-webkit-user-select:none;user-select:none;font-variant-numeric:tabular-nums}.diff-line b{text-align:center;color:var(--faint);font-weight:500}.diff-line code{white-space:pre-wrap;word-break:break-word;padding-right:10px}.diff-line.insert{background:#ecfdf3}.diff-line.insert b{color:var(--good)}.diff-line.delete{background:#fff1f2}.diff-line.delete b{color:var(--bad)}.diff-line.gap{background:var(--subtle);color:var(--faint);font-style:italic}.diff-line mark{background:#cbf4c9;color:inherit;border-radius:2px}.diff-line.delete mark{background:#fcd9de}.diff-message{padding:28px;text-align:center;font-size:13.5px;color:var(--muted)}.diff-message.error{color:var(--bad)}.settings{display:grid;gap:20px;grid-template-columns:260px minmax(0,1fr);align-items:start}.settings-nav{display:grid;gap:2px;position:sticky;top:76px}.settings-nav button{display:flex;align-items:flex-start;gap:10px;padding:10px 11px;border-radius:7px;text-align:left}.settings-nav button .icon{margin-top:2px;color:var(--muted)}.settings-nav button:hover{background:var(--hover)}.settings-nav button.active{background:var(--brand-soft)}.settings-nav button.active .icon,.settings-nav button.active strong{color:var(--brand)}.settings-nav strong{display:block;font-size:13.5px;font-weight:600;color:var(--heading)}.settings-nav small{display:block;font-size:12px;color:var(--muted)}.account-card{display:grid;justify-items:start;gap:6px}.account-card strong{font-size:15px;font-weight:600;color:var(--heading)}.account-card small{font-size:13px;color:var(--muted)}.account-card .btn{margin-top:8px}.avatar{width:40px;height:40px;display:grid;place-items:center;border-radius:50%;background:var(--brand);color:#fff;font-size:16px;font-weight:600;margin-bottom:4px}.avatar.muted{background:var(--subtle);color:var(--muted);box-shadow:var(--hairline)}.generator-mark{width:28px;height:28px;display:grid;place-items:center;border-radius:6px;background:var(--brand-soft);color:var(--brand);font-size:13px;font-weight:600}body:has(.shell .reference-sidebar-nav){background:#f7f8fb}.shell:has(.reference-sidebar-nav){width:100%;min-height:100vh;grid-template-columns:270px minmax(0,1fr);margin:0;background:#fbfcff}.shell:has(.reference-sidebar-nav) .sidebar{position:sticky;height:100vh;padding:24px 18px 20px;gap:0;background:#fafbff;border-right-color:#e0e4ef}.shell:has(.reference-sidebar-nav) .main{min-height:100vh}.shell:has(.reference-sidebar-nav) .page:has(.authoring-page){min-height:calc(100vh - 60px)}.shell:has(.reference-sidebar-nav) .authoring-page{min-height:calc(100vh - 108px)}.doxloop-sidebar-brand{height:45px;display:flex;align-items:center;gap:10px;padding:0 7px}.doxloop-sidebar-brand>span{width:148px;height:42px;display:grid;place-items:center;overflow:visible}.doxloop-sidebar-brand img{width:148px;height:auto;display:block;object-fit:contain}.sidebar-mode-flag{width:fit-content;min-height:28px;margin:8px 7px 0;padding:0 10px;border:1px solid #dfe4ec;border-radius:999px;background:#fff;color:#59667e;font-size:12px}.setup-sidebar-heading{display:grid;gap:5px;margin:34px 10px 23px;padding-bottom:21px;border-bottom:1px solid #e5e8f0}.setup-sidebar-heading strong{color:var(--heading);font-size:17px;line-height:22px;font-weight:680}.setup-sidebar-heading small{color:var(--heading);font-size:12.5px;line-height:18px}.reference-setup .setup-reference-nav{gap:7px!important}.reference-setup .setup-reference-nav button{min-height:66px;gap:14px;padding:9px 11px;color:var(--text);font-size:14px;font-weight:500}.reference-setup .setup-reference-nav button>.icon{width:20px;height:20px;flex:0 0 auto;color:var(--muted)}.reference-setup .setup-reference-nav button>span{display:grid;gap:3px}.reference-setup .setup-reference-nav button strong{color:inherit;font-size:14px;line-height:19px;font-weight:500}.reference-setup .setup-reference-nav button small{color:var(--muted);font-size:12px;line-height:16px}.reference-setup .setup-reference-nav button.active small{color:var(--brand-dark)}.reference-sidebar-nav{display:grid!important;gap:7px!important;margin-top:18px;padding:18px 0;border-top:1px solid #e0e4ec;border-bottom:1px solid #e0e4ec}.reference-sidebar-nav button{min-height:45px;display:flex;align-items:center;gap:13px;padding:0 9px;border-left:1.5px solid transparent;border-radius:7px;color:var(--heading);font-size:14px;font-weight:500;text-align:left}.reference-sidebar-nav button .icon{color:var(--heading)}.reference-sidebar-nav button.active{color:var(--brand-dark);background:linear-gradient(90deg,var(--brand-soft),#f7fffe)}.reference-sidebar-nav button.active .icon{color:var(--brand-dark)}.reference-sidebar-nav button:hover{background-color:var(--brand-soft)}.sources-shell .topbar{display:none}.sources-shell .page{width:100%;max-width:none;gap:0;padding:32px 48px 58px;background:#fbfcff}.sources-reference-page{display:grid;gap:28px}.sources-page-header{display:flex;align-items:flex-start;justify-content:space-between;gap:28px}.sources-page-header h1{color:#11182f;font-size:28px;line-height:34px;font-weight:720;letter-spacing:-.5px}.sources-page-header p{margin-top:2px;color:#65728b;font-size:14px}.sources-page-tools{display:flex;align-items:center;gap:12px;padding-top:6px}.sources-page-tools>label{width:250px;height:40px;display:flex;align-items:center;gap:9px;padding:0 12px;border:1px solid #d5dbe7;border-radius:7px;color:#6c7890;background:#fff}.sources-page-tools>label input{min-width:0;flex:1;border:0;outline:0;background:transparent;font-size:14px}.sources-add-wrap{position:relative;display:flex;width:175px}.sources-add-dropdown-button{width:100%;height:40px;display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:0 13px;border:1px solid var(--brand-dark);border-radius:7px;color:#fff;background:var(--brand);font-size:13.5px;font-weight:590;box-shadow:0 2px 5px #0b7f7b33}.sources-add-dropdown-button[aria-expanded=true]{border-radius:7px 7px 0 0;box-shadow:none}.sources-add-dropdown-button:hover{color:#fff;background:var(--brand-dark)}.sources-add-dropdown-button .icon:last-child{margin-left:2px}.sources-add-wrap>.btn{height:40px;min-width:110px;border-radius:7px 0 0 7px;color:#fff;border-color:var(--brand-dark);background:var(--brand)}.sources-add-chevron{width:39px;display:grid;place-items:center;border-left:1px solid rgb(0 59 58 / 20%);border-radius:0 7px 7px 0;color:#fff;background:var(--brand-dark)}.sources-add-menu{position:absolute;z-index:15;top:calc(100% - 1px);right:0;width:270px;display:grid;gap:3px;padding:10px;border:1px solid #d6dbe5;border-radius:0 0 9px 9px;background:#fff;box-shadow:0 8px 24px #21283d26}.sources-add-menu button{min-height:66px;display:grid;grid-template-columns:42px minmax(0,1fr);align-items:center;gap:11px;padding:8px;border-radius:7px;text-align:left}.sources-add-menu button:hover{background:var(--brand-soft)}.sources-add-menu button>span:first-child{width:41px;height:41px;display:grid;place-items:center;border-radius:7px;color:var(--brand-dark);background:var(--brand-soft)}.sources-add-menu button>span:last-child{display:grid;gap:3px}.sources-add-menu strong{color:#172037;font-size:12.5px;font-weight:640}.sources-add-menu small{color:#69758d;font-size:12px}.sources-add-wrap .sources-add-menu{width:100%;padding:7px}.sources-add-wrap .sources-add-menu button{width:100%;min-height:40px;grid-template-columns:34px minmax(0,1fr);gap:9px;padding:7px 8px}.sources-add-wrap .sources-add-menu button>span:first-child{width:32px;height:32px}.sources-add-wrap .sources-add-menu button>span:last-child{gap:0}.sources-add-wrap .sources-add-menu strong{font-size:12.5px}.sources-data-panel{overflow:hidden;border:1px solid #dce1eb;border-radius:7px;background:#fff}.sources-data-panel>header{height:67px;display:flex;align-items:center;padding:0 23px;border-bottom:1px solid #e0e4ec;color:#172037;font-size:15px;font-weight:670}.sources-table-head,.sources-data-row{display:grid;grid-template-columns:minmax(280px,2.3fr) minmax(120px,1fr) minmax(130px,.85fr) minmax(120px,.85fr) 82px;align-items:center}.sources-table-head{height:43px;padding:0 23px;border-bottom:1px solid #e3e7ee;color:#68758e;background:#fcfcfe;font-size:12px}.sources-data-row{min-height:78px;padding:0 23px;border-bottom:1px solid #e3e7ee}.sources-data-row:hover{background:#fbfaff}.sources-name-cell{min-width:0;display:flex;align-items:center;gap:13px}.sources-name-cell>span:last-child{min-width:0;display:grid;gap:3px}.sources-name-cell strong{overflow:hidden;color:#162037;font-size:13px;font-weight:630;white-space:nowrap;text-overflow:ellipsis}.sources-name-cell small{overflow:hidden;color:#67758e;font-size:12px;white-space:nowrap;text-overflow:ellipsis}.source-service-icon{width:44px;height:44px;display:grid;flex:0 0 auto;place-items:center;border-radius:9px;color:#171e31;background:#f0f2f7}.source-service-icon .icon{width:25px;height:25px;stroke-width:1.8}.source-service-icon.openapi{color:#159a6d;background:#e9f8f1}.source-service-icon.gitlab{color:#e24329;background:#fff0eb}.source-type-pill{width:fit-content;padding:3px 9px;border-radius:5px;color:var(--brand-dark);background:var(--brand-soft);font-size:11px;font-style:normal}.source-type-pill.openapi{color:#55708e;background:#eef3f8}.source-type-pill.local{color:#7655a8;background:#f3edfa}.source-updated{color:#62708a;font-size:12px}.source-sync-status{width:fit-content;display:flex;align-items:center;gap:5px;color:#169462;font-size:11.5px;font-style:normal}.source-sync-status .icon{padding:2px;border-radius:50%;background:#ddf6eb}.source-row-menu{display:flex;justify-content:flex-end;gap:2px;text-align:right}.source-row-menu button{padding:7px;border-radius:6px;color:#7b879b}.source-row-menu button:hover{color:#c53d54;background:#fff0f2}.source-row-menu button.monitoring-button:hover,.source-row-menu button.monitoring-active{color:var(--brand-dark);background:var(--brand-soft)}.source-row-menu button.monitoring-active:hover{color:var(--brand-dark);background:#d6f3f1}.sources-data-panel>footer{height:64px;display:flex;align-items:center;justify-content:space-between;padding:0 20px;color:#64718b;font-size:11.5px}.sources-data-panel>footer>span:last-child{display:flex;gap:8px}.sources-data-panel>footer button{width:33px;height:33px;display:grid;place-items:center;border:1px solid #dce1ea;border-radius:6px;color:#8a95a8}.sources-data-panel>footer button:first-child .icon{transform:rotate(180deg)}.sources-table-empty{min-height:245px;display:grid;place-content:center;justify-items:center;gap:7px;color:#8a94a8}.sources-table-empty strong{color:#263149;font-size:13px}.sources-table-empty small{font-size:11.5px}.sources-modal-scrim{position:fixed;z-index:100;inset:0;display:grid;place-items:center;padding:24px;background:#f7f8fcab;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.sources-reference-dialog{width:min(540px,100%);overflow:hidden;border:1px solid #d2d7e2;border-radius:9px;background:#fff;box-shadow:0 12px 34px #1e263b2e;animation:fade-up .14s ease}.sources-reference-dialog.openapi{width:min(560px,100%)}.sources-reference-dialog>header{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:start;gap:14px;padding:22px 22px 14px}.sources-reference-dialog>header:has(.sources-dialog-icon){grid-template-columns:50px minmax(0,1fr) auto}.sources-dialog-icon{width:48px;height:48px;display:grid;place-items:center;border-radius:8px;color:var(--brand-dark);background:var(--brand-soft)}.sources-reference-dialog>header>div{display:grid;gap:4px}.sources-reference-dialog h2{color:var(--heading);font-size:21px;line-height:27px;font-weight:700}.sources-reference-dialog header p{color:#68758d;font-size:13.5px;line-height:20px}.sources-reference-dialog>header>button{padding:4px;color:#64718b}.sources-dialog-body{display:grid;gap:15px;padding:0 22px 22px}.dialog-section-label{color:var(--heading);font-size:13px;font-weight:620}.source-mode-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0}.source-mode-grid>button{min-height:47px;display:flex;align-items:center;justify-content:center;gap:8px;padding:0 14px;border:1px solid #d7dce7;background:#fff;color:#5f6c84;text-align:center;transition:border-color .14s ease,background-color .14s ease,color .14s ease,box-shadow .14s ease}.source-mode-grid>button:first-child{border-radius:7px 0 0 7px}.source-mode-grid>button:last-child{margin-left:-1px;border-radius:0 7px 7px 0}.source-mode-grid>button:hover{background:var(--brand-soft)}.source-mode-grid>button.selected{position:relative;z-index:1;color:var(--brand-dark);border-color:var(--brand);background:var(--brand-soft);box-shadow:none}.source-mode-grid>button>span{width:auto;height:auto;display:grid;place-items:center;color:currentColor;background:transparent}.source-mode-grid>button .icon{width:18px;height:18px}.source-mode-grid>button>i,.source-mode-grid small{display:none}.source-mode-grid strong{margin:0;color:inherit;font-size:13.5px;font-weight:560}.source-code-fields{display:grid;gap:14px}.repository-connect-input{display:flex;align-items:stretch}.repository-connect-input .input{min-width:0;border-radius:7px 0 0 7px}.repository-connect-button{width:47px;min-height:41px;display:grid;flex:0 0 auto;place-items:center;margin-left:-1px;border:1px solid var(--brand-dark);border-radius:0 7px 7px 0;color:#fff;background:var(--brand);transition:border-color .14s ease,background .14s ease,color .14s ease}.repository-connect-button:hover:not(:disabled){color:#fff;background:var(--brand-dark)}.repository-connect-button:disabled{cursor:not-allowed;opacity:.48}.repository-connect-button.connected,.repository-connect-button.connected:disabled{color:#fff;border-color:#209d6c;background:#25a873;cursor:default;opacity:1}.repository-connect-spinner{width:17px;height:17px;border:2px solid rgb(255 255 255 / 42%);border-top-color:#fff;border-radius:50%;animation:spin .7s linear infinite}.private-git-fields{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;padding:14px;border:1px solid #e0e3eb;border-radius:7px;background:#fafafe}.source-branch-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.sources-reference-dialog .field{gap:6px}.sources-reference-dialog .field-label{color:var(--heading);font-size:12.5px;font-weight:610}.sources-reference-dialog .input{min-height:41px;font-size:13px}.source-folder-input{display:flex;gap:8px}.sources-reference-dialog>footer{display:flex;justify-content:flex-end;gap:10px;padding:0 22px 22px}.sources-reference-dialog>footer .btn{min-width:78px;min-height:37px}.sources-reference-dialog>footer .btn.primary{color:#fff;border-color:var(--brand-dark);background:var(--brand)}.monitoring-dialog{width:min(720px,100%);max-height:min(850px,calc(100vh - 48px));display:flex;flex-direction:column;overflow:hidden;border:1px solid #d2d7e2;border-radius:9px;background:#fff;box-shadow:0 12px 34px #1e263b2e;animation:fade-up .14s ease}.monitoring-dialog>header{display:grid;grid-template-columns:48px minmax(0,1fr) auto;align-items:start;gap:14px;padding:22px;border-bottom:1px solid #e4e7ee}.monitoring-dialog>header>div{display:grid;gap:4px}.monitoring-dialog h2{color:var(--heading);font-size:20px;line-height:26px;font-weight:700}.monitoring-dialog header p{color:#68758d;font-size:13px;line-height:19px}.monitoring-dialog header p strong{color:#263149}.monitoring-dialog>header>button{padding:4px;color:#64718b}.monitoring-dialog-body{overflow-y:auto;display:grid;gap:18px;padding:20px 22px 24px}.monitoring-dialog-status{min-height:42px;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:8px 10px 8px 13px;border:1px solid #e0e4ec;border-radius:7px;background:#fafbfc}.monitoring-dialog-status>span{display:flex;align-items:center;gap:8px;color:#6c7890;font-size:12.5px}.monitoring-dialog-status>span i{width:8px;height:8px;border-radius:50%;background:#9da6b6}.monitoring-dialog-status>span.active{color:#187b5a}.monitoring-dialog-status>span.active i{background:#20a671;box-shadow:0 0 0 3px #ddf6eb}.monitoring-policy-fields{display:grid;gap:16px}.monitoring-policy-fields .form-heading{margin-top:2px}.monitoring-dialog>footer{display:flex;align-items:center;gap:9px;padding:15px 22px;border-top:1px solid #e4e7ee;background:#fcfcfd}.monitoring-dialog>footer>span{flex:1}.openapi-tabs{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}.openapi-tabs button{height:47px;display:flex;align-items:center;justify-content:center;gap:8px;border:1px solid #d7dce7;color:#5f6c84;background:#fff;font-size:13.5px;transition:border-color .14s ease,background-color .14s ease,color .14s ease,box-shadow .14s ease}.openapi-tabs button:hover{background:var(--brand-soft)}.openapi-tabs button:first-child{border-radius:7px 0 0 7px}.openapi-tabs button:last-child{margin-left:-1px;border-radius:0 7px 7px 0}.openapi-tabs button.active{position:relative;z-index:1;color:var(--brand-dark);border-color:var(--brand);background:var(--brand-soft);box-shadow:none}.openapi-dropzone{min-height:240px;display:grid;align-content:center;justify-items:center;gap:9px;padding:22px;border:1.5px dashed #78d1cd;border-radius:8px}.openapi-dropzone input{display:none}.openapi-dropzone>span{width:54px;height:54px;display:grid;place-items:center;border-radius:50%;color:var(--brand-dark);background:var(--brand-soft)}.openapi-dropzone strong{color:#1c263d;font-size:14px}.openapi-dropzone small{color:#6a778e;font-size:13px}.openapi-dropzone .btn{min-width:120px;color:var(--brand-dark);border-color:#78d1cd}.openapi-dropzone em{margin-top:6px;color:#6d7990;font-size:12px;font-style:normal}.openapi-dropzone.has-file{border-style:solid;border-color:#5bc594;background:#f7fcf9}.openapi-or{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:16px;color:#6d7990;font-size:12px}.openapi-or span{height:1px;background:#dfe3eb}.openapi-url-input{position:relative}.openapi-url-input>.icon{position:absolute;z-index:1;top:50%;left:12px;transform:translateY(-50%);color:#697791}.openapi-url-input .input{padding-left:38px}.openapi-body .field>small{color:#6b7890;font-size:11px}@media(max-width:1250px){.proposal-shell .review{grid-template-columns:320px minmax(0,1fr)}.proposal-summary{grid-template-columns:52px minmax(0,1fr)}.proposal-summary-icon{width:52px;height:52px}.proposal-summary-side{grid-column:2;min-width:0;width:100%;display:flex;align-items:center;justify-content:space-between}}@media(max-width:1100px){.split,.split.wide-left,.review,.settings{grid-template-columns:minmax(0,1fr)}.review-rail,.settings-nav{position:static}.review-rail{min-height:0}.settings-nav{grid-auto-flow:column;grid-auto-columns:minmax(0,1fr);overflow-x:auto}.settings-nav small{display:none}.stat-row{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:900px){.shell{grid-template-columns:minmax(0,1fr)}.shell:has(.reference-sidebar-nav){width:100%;height:auto;min-height:100vh;grid-template-columns:minmax(0,1fr);margin:0;overflow:visible;border:0;border-radius:0;box-shadow:none}.shell:has(.reference-sidebar-nav) .main{height:auto;min-height:100vh;overflow:visible}.shell:has(.reference-sidebar-nav) .page:has(.authoring-page),.shell:has(.reference-sidebar-nav) .authoring-page{min-height:0}.sources-shell .page{padding:24px 18px 48px}.sources-page-header{flex-direction:column}.sources-page-tools{width:100%}.sources-page-tools>label{flex:1;width:auto}.sources-data-panel{overflow-x:auto}.sources-data-panel>header,.sources-table-head,.sources-table-body,.sources-data-panel>footer{min-width:850px}.reference-setup .setup-panel{grid-template-columns:minmax(0,1fr)}.reference-setup .setup-rail{min-height:0;border-right:0;border-bottom:1px solid #e0e4ef}.reference-setup .setup-reference-nav{grid-template-columns:repeat(5,minmax(0,1fr));margin-top:16px}.reference-setup .setup-sidebar-heading{display:none}.reference-setup .setup-reference-nav button{justify-content:center}.reference-setup .setup-reference-nav button span{display:none}.setup-home-card{grid-template-columns:minmax(0,1fr)}.setup-home-intro{display:grid;grid-template-columns:180px minmax(0,1fr);grid-template-rows:auto auto;align-items:center;gap:12px 28px;padding:30px 32px 24px;border-right:0;border-bottom:1px solid #eff1fa}.workspace-home-illustration{grid-row:1 / 3;width:180px}.setup-home-copy{align-self:end;margin-top:0}.setup-home-copy h1{font-size:28px}.setup-home-copy p{margin-top:8px;font-size:15px}.setup-home-location{align-self:start;margin-top:0;padding:13px}.reference-setup .setup-home-body{min-height:500px;padding:52px 42px 118px}.proposal-shell .sidebar{width:260px}.proposal-shell .account{justify-content:flex-start;padding:7px 8px;margin-bottom:10px}.proposal-shell .account-name,.proposal-shell .account>.icon{display:block}.proposal-shell .account-mark{width:30px;height:30px}.proposal-shell .nav-label{display:block}.proposal-shell .nav-group button{min-height:0;flex-direction:row;justify-content:flex-start;gap:10px;padding:8px;text-align:left}.proposal-shell .nav-group button .icon{width:17px;height:17px}.proposal-shell .sidebar-foot{justify-content:flex-start;text-align:left;padding:10px 8px 2px}.proposal-shell .sidebar-foot .dot{display:block}.sidebar{position:fixed;inset:0 auto 0 0;width:260px;transform:translate(-100%);transition:transform .18s ease;box-shadow:var(--pop)}.shell:has(.reference-sidebar-nav) .sidebar{position:fixed;height:100vh}.sidebar.open{transform:none}.nav-scrim{display:block;position:fixed;inset:0;z-index:25;background:#1a1f3652}.topbar,.workspace-navbar{display:none}.mobile-topbar{position:sticky;top:0;z-index:20;display:flex;align-items:center;gap:12px;height:52px;padding:0 14px;background:#fff;border-bottom:1px solid var(--border)}.mobile-topbar strong{flex:1;font-size:15px;font-weight:600;color:var(--heading)}.mobile-topbar>button:first-child{color:var(--muted)}.loading-bar{top:52px;left:0}.page,.proposal-shell .page{padding:20px 14px 60px}.page-head h1{font-size:24px;line-height:30px}.form-grid,.options{grid-template-columns:minmax(0,1fr)!important}.keyvalues>div{grid-template-columns:minmax(0,1fr);gap:2px}.setup-panel{grid-template-columns:minmax(0,1fr)}.setup-rail{border-right:0;border-bottom:1px solid var(--divider)}.setup-trust{display:none}.steps{grid-template-columns:repeat(4,minmax(0,1fr));margin-top:18px}.steps button{height:100%}.setup-agentify-layout{grid-template-columns:minmax(0,1fr) minmax(280px,1fr);gap:22px}}@media(max-width:640px){.reference-setup{padding:0;align-content:start}.reference-setup .setup-panel{min-height:100vh;border:0;border-radius:0}.reference-setup .setup-body{min-height:650px;padding:24px 18px 0}.reference-setup .setup-actions{margin-right:-18px;margin-left:-18px;padding-right:18px;padding-left:18px}.setup-home-intro{display:flex;padding:28px 22px 22px}.workspace-home-illustration{width:170px}.setup-home-copy{width:100%}.setup-home-copy h1{font-size:25px}.setup-home-location{width:100%}.reference-setup .setup-home-body{min-height:500px;padding:42px 20px 112px}.setup-home-field{grid-template-columns:48px minmax(0,1fr);gap:13px}.setup-home-field-icon{width:46px;height:46px}.setup-home-field .field-label{font-size:16px}.setup-home-field .validated-setup-input .input{min-height:56px;font-size:17px}.reference-setup .setup-home-body .setup-actions{padding-inline:20px}.reference-setup .setup-review-body{padding:24px 18px 0}.setup-review-heading>span{width:58px;height:58px;font-size:32px}.setup-review-heading h1{font-size:25px}.setup-creation-heading{align-items:flex-start}.setup-creation-spinner{width:58px;height:58px}.setup-creation-heading h1{font-size:24px;line-height:30px}.setup-creation-status-top{align-items:flex-start;flex-direction:column}.setup-creation-log pre{min-height:210px}.setup-next-steps{padding:17px}.setup-next-steps-header{align-items:stretch;flex-direction:column}.setup-preview-documentation.btn{width:100%;justify-content:center}.setup-agentify-layout{grid-template-columns:minmax(0,1fr);gap:22px}.setup-agentify-pitch{padding-inline:0}.setup-agentify-action.btn{width:100%;margin-top:22px}.setup-creation-footer-status{min-height:34px}.setup-review-grid{grid-template-columns:minmax(0,1fr)}.setup-review-summary.concise .review-summary-row{min-height:74px;grid-template-columns:40px 70px minmax(0,1fr);gap:10px;margin-inline:14px}.setup-review-summary.concise .review-summary-trailing{grid-column:3;justify-self:start}.setup-review-summary.concise .review-summary-icon{width:38px;height:38px}.setup-guidance-section{padding:19px 16px}.setup-guidance-label{gap:10px}.audience-picker input{min-width:130px}.setup-review-ready{padding-right:76px}.setup-review-ready:after{right:12px}.setup-review-safety{grid-template-columns:repeat(3,minmax(0,1fr));align-items:start;justify-items:stretch}.review-safety-illustration,.setup-review-safety h2,.review-safety-divider{grid-column:1 / -1;justify-self:center}.review-safety-point{grid-template-columns:34px minmax(0,1fr)}.reference-setup .setup-review-actions{align-items:stretch;flex-direction:column;margin-right:-18px;margin-left:-18px;padding:14px 18px}.setup-review-progress{justify-content:space-between}.setup-review-progress{gap:10px}.setup-review-progress b{width:19px}.setup-review-actions>div:last-child{width:100%}.setup-review-actions>div:last-child .btn{flex:1}.sources-page-tools{align-items:stretch;flex-direction:column}.sources-add-wrap{width:100%}.sources-add-dropdown-button{justify-content:center}.sources-add-wrap>.btn{flex:1}.source-branch-grid,.private-git-fields{grid-template-columns:minmax(0,1fr)}.repository-connect-button{width:47px}.source-mode-grid>button{min-height:47px;padding-inline:8px}.setup{padding:0;align-content:start}.setup-panel{min-height:100vh;border:0;border-radius:0}.setup-rail{padding:18px 14px}.steps{grid-template-columns:repeat(5,1fr);gap:3px}.steps button{justify-content:center;padding:8px 3px;border-left:0;border-bottom:2px solid transparent}.steps button.current{border-bottom-color:var(--brand)}.steps button>span:last-child{display:none}.setup-body{min-height:620px;padding:24px 18px 0}.setup-actions{margin-left:-18px;margin-right:-18px;padding:13px 18px}.source-type-grid,.git-option-grid,.git-private-fields,.setup-tools{grid-template-columns:minmax(0,1fr);gap:12px}.setup-agent-readiness{grid-template-columns:38px minmax(0,1fr)}.setup-agent-readiness>:last-child{grid-column:1 / -1;justify-self:stretch}.setup-agent-readiness>.badge{justify-self:start}.setup-agent-readiness .agent-install-progress{width:100%}.source-composer-fields,.source-progressive-section,.private-source-fields,.source-option-grid,.source-wizard-fields{grid-template-columns:minmax(0,1fr)}.add-sources-empty{grid-template-columns:38px minmax(0,1fr)}.add-sources-empty>.btn{grid-column:1 / -1}.connected-source-heading{align-items:flex-start}.connected-source-card>div{grid-template-columns:minmax(0,1fr)}.connected-source-card small,.connected-source-card code{grid-column:1}.source-type-choice{min-height:104px}.git-connect-heading{align-items:stretch;flex-direction:column;gap:8px}.git-connect-heading>.btn{align-self:flex-start}.git-repository-box{grid-template-columns:auto minmax(0,1fr)}.git-repository-box .btn,.git-repository-check{grid-column:1 / -1;width:100%}.git-repository-check{height:34px;border-radius:7px}.git-setting-row{grid-template-columns:38px minmax(0,1fr)}.git-setting-row .btn{grid-column:2;justify-self:start}.setup-step-heading h3{font-size:18px}.check{align-items:flex-start;flex-wrap:wrap}.check-action{width:calc(100% - 31px);margin-left:31px;justify-content:flex-start}.account-login-progress{width:100%}.authoring-options{grid-template-columns:minmax(0,1fr)}.authoring-page .page-head-icon{display:none}.authoring-hero{min-height:88px;gap:14px;padding-inline:0;flex-wrap:wrap}.authoring-hero-icon{width:48px;height:48px;border-radius:9px}.authoring-hero-icon .icon{width:24px;height:24px}.authoring-hero h1{font-size:24px;line-height:30px}.authoring-hero p{font-size:14px}.authoring-hero-art{display:none}.authoring-regenerate-action{width:100%;margin-left:0}.authoring-regenerate-action .btn{width:100%;min-width:0}.authoring-request .panel-body{min-height:0;padding:22px 20px 0}.authoring-option-card{min-height:0}.screenshot-option{grid-column:auto}.authoring-request .panel-inline-foot{margin-inline:-20px;padding-inline:20px}.authoring-activity-row{grid-template-columns:32px minmax(0,1fr) auto;padding-inline:20px}.authoring-activity-row time{grid-column:2}.authoring-activity-row>.btn{grid-column:3}.authoring-request .panel-inline-foot{align-items:stretch;flex-direction:column}.authoring-request .panel-inline-foot .row-actions{width:100%}.authoring-request .panel-inline-foot .btn{flex:1;min-width:0}.authoring-action-card-head{min-height:76px}.audit-card .authoring-action-card-head{align-items:flex-start;flex-wrap:wrap}.audit-card .btn{width:100%}.stat-row,.stat-row.three{grid-template-columns:minmax(0,1fr)}.stat{min-height:0}.page-head-actions{width:100%}.proposal-summary{grid-template-columns:minmax(0,1fr);padding:20px}.proposal-summary-icon{display:none}.proposal-summary-side{grid-column:1;align-items:flex-start;gap:14px;flex-direction:column}.proposal-actions{width:100%}.proposal-actions .btn{flex:1;min-width:0}.regeneration-row{align-items:flex-start;flex-direction:column}.confirm-dialog{grid-template-columns:minmax(0,1fr)}.confirm-actions{grid-column:1;flex-direction:column-reverse}.confirm-actions .btn{width:100%}.live-job-meta{align-items:flex-start;flex-direction:column}.proposal-meta{flex-wrap:wrap;gap:8px}.proposal-meta b{display:none}.file-picker-bar,.review-toolbar{padding-left:14px;padding-right:14px}.file-picker .badge,.file-position{display:none}.review-toolbar{align-items:flex-start}.review-toolbar .row-actions{width:100%}}.agent-capabilities-details{margin-top:14px;border:1px solid var(--border);border-radius:10px;background:var(--surface, #fff)}.agent-capabilities-details>summary{cursor:pointer;padding:10px 14px;font-weight:600;font-size:13px;list-style:none;display:flex;align-items:center;gap:8px}.agent-capabilities-details>summary::-webkit-details-marker{display:none}.agent-capabilities-details>summary:before{content:"▸";font-size:11px;color:var(--muted, #6b7280)}.agent-capabilities-details[open]>summary:before{content:"▾"}.agent-capabilities{display:grid;gap:0;padding:0 14px 12px;overflow-x:auto;font-size:13px}.agent-capabilities-head,.agent-capabilities-row{display:grid;grid-template-columns:minmax(160px,1.6fr) repeat(3,minmax(96px,1fr));gap:8px;align-items:start;padding:8px 0;border-top:1px solid var(--border)}.agent-capabilities-head{border-top:0}.agent-capabilities-head span{display:grid;gap:2px}.agent-capabilities-head small{font-size:11px;font-weight:600;border-radius:999px;padding:1px 8px;width:max-content;background:#e8f5ec;color:#1f7a3a}.agent-capabilities-head small.limited{background:#fff0de;color:#9a5b00}.agent-capabilities-head span.selected strong,.agent-capabilities-row span.selected{color:var(--accent, #2f5bea)}.agent-capabilities-row [role=rowheader]{display:grid;gap:2px}.agent-capabilities-row [role=rowheader] small,.agent-capabilities-row [role=cell] small{display:block;color:var(--muted, #6b7280);font-size:11.5px;line-height:1.35}.agent-capabilities-row [role=cell]{display:flex;flex-wrap:wrap;align-items:center;gap:5px;font-weight:600}.agent-capabilities-row [role=cell] small{flex-basis:100%;font-weight:400}.agent-capabilities-row [role=cell].full{color:#1f7a3a}.agent-capabilities-row [role=cell].limited{color:#9a5b00}.agent-capabilities-row [role=cell].none{color:var(--muted, #6b7280)}.agent-capabilities.compact .agent-capabilities-row{padding:5px 0}.sync-outcome-toast.warn .toast-icon{color:#9a5b00}.sync-outcome-toast.bad .toast-icon{color:#b42318}.generator-tier-label{width:fit-content;display:inline-flex;align-items:center;gap:4px;margin-top:6px;padding:2px 8px;border-radius:999px;font-size:10.5px!important;font-weight:600;background:var(--surface-2, #f3f4f6);color:var(--muted, #6b7280)!important}.generator-tier-label.tier-full{background:var(--ok-soft, #ecfdf5);color:var(--ok, #047857)!important}.generator-tier-label.tier-supported{background:var(--brand-soft, #eef2ff);color:var(--brand, #4f46e5)!important}.generator-tier-label.tier-basic{background:var(--warn-soft, #fff7ed);color:var(--warn, #c2410c)!important}.generator-tiers{display:grid;font-size:12.5px}.generator-tiers-head,.generator-tiers-row{display:grid;grid-template-columns:minmax(0,1.4fr) minmax(0,.8fr) minmax(0,1.6fr);gap:10px;padding:8px 14px;align-items:center;border-top:1px solid var(--border)}.generator-tiers-head{border-top:0;color:var(--muted, #6b7280);font-size:11px;text-transform:uppercase;letter-spacing:.04em}.generator-tiers-row.selected{background:var(--brand-soft, #eef2ff)}.generator-tiers-row [role=cell].tier-full{color:var(--ok, #047857);font-weight:600}.generator-tiers-row [role=cell].tier-supported{color:var(--brand, #4f46e5);font-weight:600}.generator-tiers-row [role=cell].tier-basic{color:var(--warn, #c2410c);font-weight:600}.generator-tiers-legend{margin:0;padding:10px 14px 12px;border-top:1px solid var(--border);color:var(--muted, #6b7280);font-size:11.5px;line-height:17px}.generator-tiers-legend strong{color:var(--heading, #111827);margin-right:3px}.generator-tiers-legend strong+strong,.generator-tiers-legend strong:not(:first-child){margin-left:6px}.setup-generator-preflight{margin-top:14px;border:1px solid var(--border);border-radius:10px;background:var(--surface, #fff)}.setup-generator-preflight>header{display:flex;align-items:center;gap:12px;padding:12px 14px}.setup-generator-preflight>header>div{flex:1;min-width:0;display:grid;gap:3px}.setup-generator-preflight>header strong{color:var(--heading, #111827);font-size:13.5px;font-weight:650}.setup-generator-preflight>header small{color:var(--muted, #6b7280);font-size:12px;line-height:17px}.setup-generator-preflight-icon{width:38px;height:38px;flex:none;display:grid;place-items:center;border-radius:9px;background:var(--surface-2, #f3f4f6);color:var(--muted, #6b7280)}.setup-generator-preflight.ready .setup-generator-preflight-icon{background:var(--ok-soft, #ecfdf5);color:var(--ok, #047857)}.setup-generator-preflight.warning .setup-generator-preflight-icon,.setup-generator-preflight.missing .setup-generator-preflight-icon{background:#fff0de;color:var(--warn, #c2410c)}.setup-generator-preflight.missing{border-color:var(--warn, #c2410c)}.setup-generator-preflight-checks{list-style:none;margin:0;padding:0 14px 12px;display:grid;gap:6px}.setup-generator-preflight-checks li{display:flex;align-items:flex-start;gap:8px;font-size:12.5px}.setup-generator-preflight-checks li>span{display:grid;gap:2px}.setup-generator-preflight-checks li small{color:var(--muted, #6b7280);font-size:11.5px;line-height:16px}.setup-generator-preflight-checks li.pass{color:var(--ok, #047857)}.setup-generator-preflight-checks li.warning{color:var(--warn, #c2410c)}.setup-generator-preflight-checks li.fail{color:var(--danger, #b91c1c)}.setup-generator-preflight-checks li strong{color:var(--heading, #111827);font-weight:600}.source-service-icon.docs-site{color:#b45f06;background:#fdf1e2}.source-type-pill.docs-site{color:#9a5b12;background:#fbefdf}.sources-reference-dialog.docs-site{width:min(600px,100%)}.docs-site-fields{display:grid;gap:12px}.docs-site-url-input{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:10px}.docs-site-url-input>.icon{color:#64718b}.docs-site-progress{display:flex;align-items:center;gap:12px;padding:12px 14px;border:1px solid #d8dde8;border-radius:8px;background:#f6f8fb}.docs-site-progress strong{display:block;color:var(--heading);font-size:13px}.docs-site-progress small{color:#62708a;font-size:12px}.docs-site-summary{display:grid;gap:10px;padding:14px;border:1px solid #cfe6d8;border-radius:8px;background:#f2faf5}.docs-site-summary header{display:flex;align-items:flex-start;gap:10px}.docs-site-summary header strong{display:block;color:var(--heading);font-size:13.5px}.docs-site-summary header small{color:#4f6a5b;font-size:12px;line-height:17px}.docs-site-summary-icon{display:grid;flex:0 0 auto;width:26px;height:26px;place-items:center;border-radius:50%;color:#169462;background:#ddf6eb}.docs-site-sample-pages{display:grid;gap:4px;margin:0;padding:0 0 0 36px;list-style:none}.docs-site-sample-pages li{display:flex;justify-content:space-between;gap:12px;font-size:12.5px;color:var(--heading)}.docs-site-sample-pages li small{flex:0 0 auto;color:#62708a;font-size:11.5px}.docs-site-sample-pages .docs-site-more{color:#62708a;font-style:italic}.docs-site-notes{display:grid;gap:4px;margin:0;padding:0 0 0 36px;color:#8a5a12;font-size:12px;line-height:17px}.docs-site-notes li{list-style:disc;margin-left:14px}.plan-existing-docs{display:grid;gap:16px}.plan-existing-docs-source{display:grid;gap:12px}.plan-existing-docs-source>header{display:flex;flex-wrap:wrap;align-items:baseline;gap:8px 12px}.plan-existing-docs-source>header h3{font-size:14px;color:var(--heading)}.plan-existing-docs-source>header small{color:#62708a;font-size:12px}.plan-existing-docs-source>p{color:var(--text);font-size:13.5px;line-height:20px}.plan-existing-docs-stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(120px,1fr));gap:8px}.plan-existing-docs-stats>div{display:grid;gap:2px;padding:10px 12px;border:1px solid #e0e4ec;border-radius:8px;background:#fafbfd}.plan-existing-docs-stats strong{font-size:18px;color:var(--heading)}.plan-existing-docs-stats span{color:#62708a;font-size:11.5px}.plan-existing-docs-columns{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px}.plan-existing-docs-columns section{display:grid;gap:6px;padding:12px;border:1px solid #e0e4ec;border-radius:8px}.plan-existing-docs-columns h4{font-size:12px;color:var(--heading);text-transform:uppercase;letter-spacing:.04em}.plan-existing-docs-columns ul{display:grid;gap:4px;margin:0;padding:0 0 0 16px;font-size:12.5px;line-height:18px}.plan-existing-docs-columns .empty{color:#8a94a8;font-style:italic;font-size:12.5px}.plan-existing-docs-columns section.gaps{border-color:#f1d3a0;background:#fff9f0}.plan-existing-docs-columns section.contradicted{border-color:#f0b7b7;background:#fff5f5}.plan-existing-docs-columns section.obsolete{border-color:#dcdfe6;background:#f7f8fb}.plan-existing-docs-columns section.preserved{border-color:#cfe6d8;background:#f2faf5}.plan-existing-docs-findings{display:grid;gap:8px}.plan-existing-docs-findings article{display:grid;grid-template-columns:auto minmax(0,1fr);gap:10px;padding:10px 12px;border:1px solid #e0e4ec;border-radius:8px}.plan-existing-docs-findings article strong{display:block;font-size:13px;color:var(--heading)}.plan-existing-docs-findings article p{margin:2px 0 0;font-size:12.5px;line-height:18px;color:var(--text)}.plan-existing-docs-findings article small{display:block;margin-top:4px;color:#62708a;font-size:11.5px}.severity-pill{align-self:start;padding:2px 8px;border-radius:999px;font-size:11px;font-weight:600;text-transform:capitalize}.severity-pill.blocker{color:#a12525;background:#fde8e8}.severity-pill.major{color:#9a5b12;background:#fbefdf}.severity-pill.minor{color:#45566f;background:#eef1f6}.plan-existing-docs-dispositions summary{cursor:pointer;font-size:13px;color:var(--heading)}.plan-existing-docs-dispositions table{width:100%;margin-top:8px;border-collapse:collapse;font-size:12.5px}.plan-existing-docs-dispositions th,.plan-existing-docs-dispositions td{padding:6px 8px;border-bottom:1px solid #e6e9f0;text-align:left;vertical-align:top}.plan-existing-docs-dispositions th{color:#62708a;font-size:11.5px;font-weight:600;text-transform:uppercase;letter-spacing:.04em}.plan-existing-docs-dispositions td small{display:block;color:#62708a}.disposition-pill{padding:2px 8px;border-radius:999px;font-size:11px;font-weight:600;text-transform:capitalize}.disposition-pill.rewrite{color:#1d5fb8;background:#e6f0fc}.disposition-pill.merge{color:#6b4fbb;background:#f0ebfa}.disposition-pill.preserve{color:#169462;background:#ddf6eb}.disposition-pill.drop{color:#7a8398;background:#eef1f6}.splash{min-height:100vh;display:grid;align-content:center;justify-items:center;gap:12px;background:var(--app-canvas);font-family:var(--font-ui)}.splash-mark{width:44px;height:44px;display:grid;place-items:center;border-radius:12px;background:var(--brand);color:#fff;font-family:var(--font-display);font-size:22px;font-weight:700}.splash strong{font-family:var(--font-display);font-size:18px;font-weight:600;letter-spacing:-.01em;color:var(--ink)}.splash p{margin:0;font-size:14px;color:var(--muted)}.setup.setup-wizard{min-height:100vh;display:flex;flex-direction:column;align-content:stretch;justify-items:stretch;padding:0;background:var(--app-canvas);color:var(--text);font-family:var(--font-ui)}.wizard-bar{position:sticky;top:0;z-index:20;height:64px;flex:0 0 auto;display:flex;align-items:center;justify-content:space-between;gap:24px;padding:0 32px;background:#fff;border-bottom:1px solid var(--border)}.wizard-brand{flex:0 0 auto;display:flex;align-items:center;gap:14px}.wizard-mark{width:28px;height:28px;display:inline-grid;place-items:center;border-radius:8px;background:var(--brand);color:#fff;font-family:var(--font-display);font-size:16px;font-weight:700}.wizard-wordmark{margin-left:-4px;font-family:var(--font-display);font-size:16px;font-weight:600;letter-spacing:-.01em;color:var(--ink)}.wizard-bar-divider{width:1px;height:20px;background:var(--strong-border)}.wizard-context{font-size:14px;color:var(--muted);white-space:nowrap}.wizard-bar-actions{flex:0 0 auto;min-width:110px;display:flex;justify-content:flex-end;align-items:center;gap:8px}.wizard-stepper{flex:0 1 auto;min-width:0;display:flex;align-items:center;gap:12px}.wizard-step{display:inline-flex;align-items:center;gap:8px;padding:0;border:0;background:transparent;color:var(--faint);font:inherit;font-size:13px;font-weight:500;cursor:pointer}.wizard-step:disabled{cursor:default;opacity:1}.wizard-step-mark{width:22px;height:22px;box-sizing:border-box;display:inline-grid;place-items:center;border:1px solid var(--strong-border);border-radius:50%;color:var(--faint);font-size:11px;font-weight:600;line-height:1}.wizard-step.current{color:var(--ink);font-weight:600}.wizard-step.current .wizard-step-mark{border:2px solid var(--brand);color:var(--brand)}.wizard-step.done{color:var(--text)}.wizard-step.done .wizard-step-mark{border-color:var(--brand);background:var(--brand);color:#fff}.wizard-step.done .wizard-step-mark .icon{stroke-width:2.4}.wizard-step.done:hover .wizard-step-label{color:var(--brand-dark);text-decoration:underline}.wizard-connector{width:40px;height:1px;background:var(--strong-border)}.wizard-connector.done{background:var(--brand)}.wizard-body{flex:1 1 auto;padding:56px 40px 64px}.wizard-column{max-width:640px;margin:0 auto;display:flex;flex-direction:column;gap:28px}.wizard-heading{display:grid;gap:10px}.wizard-heading .kicker{color:var(--muted)}.wizard-heading h1{margin:0;font-family:var(--font-display);font-size:32px;font-weight:600;letter-spacing:-.02em;line-height:1.15;color:var(--ink)}.wizard-heading p{margin:0;font-size:15px;line-height:1.55;color:var(--muted)}.setup-wizard .field,.wizard-group{display:grid;gap:8px}.wizard-group>.field-label{color:var(--ink);font-size:13px;font-weight:500}.wizard-addon-row{display:flex;align-items:center;gap:8px}.wizard-addon-row>.input,.wizard-addon-row>.validated-setup-input{flex:1 1 auto;min-width:0}.wizard-addon-row>.btn{flex:0 0 auto}.validated-setup-input{position:relative}.validated-setup-input .input{width:100%;padding-right:36px}.validated-setup-input>.icon{position:absolute;top:50%;right:12px;transform:translateY(-50%);color:var(--good);pointer-events:none}.wizard-field-badges{display:flex;align-items:center;gap:8px}.wizard-field-badges:empty{display:none}.setup-wizard .field>.wizard-field-badges{margin-top:-2px}.setup-wizard .field-error{color:var(--bad);font-size:12.5px;line-height:17px}.setup-wizard .radio-rows>label{position:relative}.wizard-radio-input{position:absolute;width:1px;height:1px;margin:0;opacity:0;pointer-events:none}.setup-wizard .radio-rows>label:has(.wizard-radio-input:focus-visible){box-shadow:inset 0 0 0 2px var(--brand)}.setup-wizard .radio-rows>*:disabled,.setup-wizard .radio-rows>label:has(input:disabled){cursor:default}.setup-wizard .radio-rows>*>.badge,.setup-wizard .radio-rows>*>.btn{margin-left:auto;flex:0 0 auto}.wizard-chips{display:flex;flex-wrap:wrap;gap:8px}.wizard-chips .chip .icon{color:var(--brand)}.audience-picker.input{display:flex;flex-wrap:wrap;align-items:center;gap:6px;min-height:40px;padding:5px 8px;cursor:text}.audience-picker input{flex:1 1 140px;min-width:120px;height:28px;border:0;padding:0 4px;background:transparent;color:var(--ink);font:inherit;font-size:14px;outline:none}.audience-picker input::placeholder{color:var(--faint)}.audience-token{display:inline-flex;align-items:center;gap:4px;height:26px;padding:0 6px 0 10px;border-radius:999px;background:var(--brand-soft);color:var(--brand-ink);font-size:13px;font-weight:500}.audience-token button{display:inline-grid;place-items:center;width:18px;height:18px;padding:0;border:0;border-radius:50%;background:transparent;color:inherit;cursor:pointer}.audience-token button:hover{background:var(--brand-tint)}.wizard-advanced{border:1px solid var(--border);border-radius:10px;background:#fff}.wizard-advanced>summary{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 16px;list-style:none;cursor:pointer}.wizard-advanced>summary::-webkit-details-marker{display:none}.wizard-advanced>summary>span{display:grid;gap:2px}.wizard-advanced>summary strong{color:var(--ink);font-size:14px;font-weight:500}.wizard-advanced>summary small{color:var(--muted);font-size:12.5px}.wizard-advanced>summary>.icon{flex:0 0 auto;color:var(--muted);transition:transform .15s ease}.wizard-advanced[open]>summary>.icon{transform:rotate(180deg)}.wizard-advanced[open]>summary{border-bottom:1px solid var(--border)}.wizard-advanced-fields{display:grid;gap:20px;padding:16px}.wizard-advanced-fields .agent-capabilities-details,.wizard-advanced-fields .setup-generator-preflight{margin-top:0}.wizard-source-list{display:grid;border:1px solid var(--border);border-radius:12px;background:#fff;overflow:hidden}.wizard-source-row{display:flex;align-items:center;gap:16px;padding:14px 20px;border-top:1px solid var(--border)}.wizard-source-row:first-child{border-top:0}.wizard-source-icon{display:inline-grid;place-items:center;width:16px;color:var(--muted)}.wizard-source-copy{flex:1 1 auto;min-width:0;display:grid;gap:2px}.wizard-source-copy strong{color:var(--ink);font-size:14px;font-weight:500;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wizard-source-meta{display:flex;align-items:center;gap:12px;min-width:0;color:var(--muted);font-size:14px}.wizard-source-meta>.badge{flex:0 0 auto}.wizard-source-meta>span{flex:0 1 auto;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wizard-source-meta>span+span:before{content:"·";margin-right:12px;color:var(--faint)}.wizard-icon-button{display:inline-grid;place-items:center;width:32px;height:32px;padding:0;border:0;border-radius:8px;background:transparent;color:var(--faint);cursor:pointer}.wizard-icon-button:hover{color:var(--bad);background:var(--bad-soft)}.wizard-source-add{display:flex;align-items:center;gap:12px;width:100%;padding:14px 20px;border:0;border-top:1px dashed var(--strong-border);background:#fff;color:var(--brand);font:inherit;font-size:14px;font-weight:500;text-align:left;cursor:pointer}.wizard-source-add:first-child{border-top:0}.wizard-source-add:hover{background:var(--brand-soft);color:var(--brand-dark)}.source-added-success{position:fixed;right:24px;bottom:24px;z-index:90;display:flex;align-items:center;gap:12px;padding:12px 14px;border-radius:12px;background:#fff;box-shadow:var(--pop)}.source-added-success>span{display:inline-grid;place-items:center;width:28px;height:28px;border-radius:50%;color:var(--good);background:var(--good-soft)}.source-added-success>div{display:grid;gap:1px}.source-added-success strong{color:var(--ink);font-size:13.5px;font-weight:600}.source-added-success small{color:var(--muted);font-size:12.5px}.source-added-success>button{display:inline-grid;place-items:center;width:26px;height:26px;padding:0;border:0;border-radius:6px;background:transparent;color:var(--faint);cursor:pointer}.source-added-success>button:hover{color:var(--ink);background:var(--hover)}.setup-wizard .sources-modal-scrim{position:fixed;inset:0;z-index:100;display:grid;place-items:center;padding:24px;background:#0f1f3d47;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.setup-wizard .sources-reference-dialog,.setup-wizard .sources-reference-dialog.openapi,.setup-wizard .sources-reference-dialog.docs-site{width:min(560px,100%);max-height:calc(100vh - 48px);display:flex;flex-direction:column;overflow:hidden;border:0;border-radius:16px;background:#fff;box-shadow:var(--float);animation:none}.setup-wizard .sources-reference-dialog>header{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:20px 28px;border-bottom:1px solid var(--border)}.setup-wizard .sources-reference-dialog h2{margin:0;color:var(--ink);font-family:var(--font-ui);font-size:18px;line-height:1.3;font-weight:600;letter-spacing:-.01em}.setup-wizard .sources-reference-dialog>header>button{display:inline-grid;place-items:center;width:32px;height:32px;padding:0;border:0;border-radius:8px;background:transparent;color:var(--muted);cursor:pointer}.setup-wizard .sources-reference-dialog>header>button:hover{color:var(--ink);background:var(--hover)}.setup-wizard .sources-dialog-body{display:grid;gap:22px;padding:24px 28px;overflow-y:auto}.setup-wizard .sources-reference-dialog .field{gap:8px}.setup-wizard .sources-reference-dialog .field-label{color:var(--ink);font-size:13px;font-weight:500}.setup-wizard .sources-reference-dialog .input{min-height:40px;font-size:14px}.setup-wizard .sources-reference-dialog .input.mono-input{font-size:13px}.setup-wizard .sources-reference-dialog>footer{display:flex;justify-content:flex-end;gap:8px;padding:16px 28px;border-top:1px solid var(--border);background:var(--subtle)}.setup-wizard .sources-reference-dialog>footer .btn{min-width:0;min-height:0}.setup-wizard .sources-reference-dialog>footer .btn.primary{border-color:var(--brand)}.setup-wizard .repository-connect-button{width:40px;min-height:40px;display:inline-grid;place-items:center;flex:0 0 auto;margin:0;border:0;border-radius:8px;color:var(--brand);background:#fff;box-shadow:0 0 0 1px var(--strong-border),var(--lift);cursor:pointer}.setup-wizard .repository-connect-button:hover:not(:disabled){color:var(--brand-dark);background:var(--brand-soft)}.setup-wizard .repository-connect-button:disabled{cursor:not-allowed;opacity:.5}.setup-wizard .repository-connect-button.connected,.setup-wizard .repository-connect-button.connected:disabled{color:#fff;background:var(--good);box-shadow:none;opacity:1;cursor:default}.setup-wizard .repository-connect-spinner{width:16px;height:16px;border:2px solid rgb(11 127 123 / 30%);border-top-color:var(--brand);border-radius:50%;animation:spin .7s linear infinite}.setup-wizard .openapi-dropzone{min-height:0;display:grid;justify-items:center;gap:10px;padding:24px;border:1px dashed var(--strong-border);border-radius:10px;background:var(--subtle)}.setup-wizard .openapi-dropzone input{display:none}.setup-wizard .openapi-dropzone>span{width:36px;height:36px;display:grid;place-items:center;border-radius:10px;color:var(--brand);background:var(--brand-soft)}.setup-wizard .openapi-dropzone strong{color:var(--ink);font-size:14px;font-weight:500;text-align:center}.setup-wizard .openapi-dropzone .btn{min-width:0;color:var(--ink);border-color:transparent}.setup-wizard .openapi-dropzone.has-file{border-style:solid;border-color:var(--good);background:var(--good-soft)}.setup-wizard .docs-site-fields{display:grid;gap:16px}.setup-wizard .docs-site-url-input{display:flex;align-items:center;gap:8px}.setup-wizard .docs-site-url-input .input{flex:1 1 auto;min-width:0}.wizard-inline-alert{display:grid;gap:10px}.wizard-inline-actions{display:flex;flex-wrap:wrap;gap:8px}.setup-wizard .agent-install-progress{display:flex;align-items:center;gap:8px;padding:12px 14px;border-radius:10px;background:var(--subtle);color:var(--text);font-size:13.5px}.setup-wizard .agent-install-progress.good{color:var(--good);background:var(--good-soft)}.setup-wizard .agent-install-progress.bad{color:var(--bad);background:var(--bad-soft)}.wizard-box{display:grid;border:1px solid var(--strong-border);border-radius:10px;background:#fff;overflow:hidden}.wizard-box-row{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 16px}.wizard-box-title{color:var(--ink);font-size:14px;font-weight:500}.wizard-box-row .toggle{gap:0}.wizard-box-row .toggle-text{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}.wizard-box-body{display:grid;gap:16px;padding:16px;border-top:1px solid var(--border)}.wizard-readiness{display:flex;align-items:center;flex-wrap:wrap;gap:8px 10px;color:var(--muted);font-size:13px;line-height:18px}.wizard-readiness.bad{color:var(--bad)}.setup-signin-skipped{color:var(--muted);font-size:12.5px;line-height:17px}.setup-capture-signin-actions{display:grid;gap:10px}.wizard-panel{border:1px solid var(--border);border-radius:12px;background:#fff;overflow:hidden}.wizard-summary .vrow{display:flex;align-items:center;gap:16px;padding:14px 20px;border-top:1px solid var(--border)}.wizard-summary .vrow:first-child{border-top:0}.wizard-summary .vrow-label{flex:1 1 auto;min-width:0;display:grid;gap:2px;color:var(--ink);font-size:14px;font-weight:500}.wizard-summary .vrow-label small{color:var(--muted);font-size:14px;font-weight:400;line-height:1.4;overflow-wrap:anywhere}.wizard-summary .vrow-value{display:flex;align-items:center;gap:12px}.setup.setup-wizard .wizard-summary .btn.link{height:auto;padding:0;color:var(--brand);font-size:14px}.wizard-callout{display:flex;align-items:center;gap:14px;padding:16px 18px;border:1px solid var(--brand-tint);border-radius:12px;background:var(--brand-soft)}.wizard-callout-icon{width:36px;height:36px;flex:0 0 auto;display:inline-grid;place-items:center;border-radius:10px;background:#fff;color:var(--brand)}.wizard-callout>div{display:grid;gap:2px}.wizard-callout strong{color:var(--brand-ink);font-size:14px;font-weight:600}.wizard-callout small{color:var(--brand-ink);font-size:13px;line-height:1.45}.wizard-footer{display:flex;align-items:center;justify-content:space-between;gap:16px;padding-top:8px}.wizard-back .icon{transform:rotate(180deg)}.setup.setup-wizard .wizard-create.btn.md{height:42px;padding-inline:18px;font-size:15px}.setup-existing-hint{color:var(--muted);font-size:13.5px}.setup-draft-note{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 12px 10px 14px;border-radius:10px;background:var(--info-soft);color:var(--info);font-size:13.5px}.setup-draft-note>span:last-child{display:flex;gap:6px}.setup-wizard .setup-import-existing{padding:20px}.setup-wizard .setup-import-existing .tabs{margin-bottom:16px}.mintlify-import-fields{border:0;padding:0;margin:0;display:grid;gap:16px;min-width:0}.mintlify-import-panel{overflow-wrap:anywhere}.mintlify-conversion-warnings{display:grid;gap:12px;max-height:320px;overflow:auto}.mintlify-import-panel details summary{cursor:pointer;margin-bottom:12px}@media(max-width:1100px){.wizard-bar{gap:16px;padding:0 20px}.wizard-stepper{justify-content:center;gap:8px;overflow-x:auto}.wizard-step-label{display:none}.wizard-step.current .wizard-step-label{display:inline}.wizard-connector{width:16px}.wizard-context,.wizard-bar-divider{display:none}}@media(max-width:640px){.wizard-body{padding:32px 16px 48px}.wizard-heading h1{font-size:26px}.wizard-footer{flex-wrap:wrap}}.text-editor{margin:16px 0;border:1px solid #dce2eb;border-radius:12px;background:var(--panel,#fff);color:var(--text,#17213a)}.text-editor summary{cursor:pointer;padding:16px;font-weight:650}.text-editor summary small{font-weight:400;margin-left:12px;color:#627086}.text-editor-body{display:grid;gap:12px;padding:0 16px 16px}.text-editor-body label{display:block;line-height:1.6}.text-editor-label textarea{display:block;width:100%;min-height:320px;box-sizing:border-box;padding:14px;border:1px solid #aebbc9;border-radius:8px;font:14px/1.6 ui-monospace,monospace;background:var(--panel,#fff);color:inherit;resize:vertical;tab-size:2}.text-editor-actions{display:flex;flex-wrap:wrap;gap:8px}.text-editor button{padding:8px 12px;border:1px solid #bfcbd8;border-radius:7px;cursor:pointer;background:var(--panel,#fff);color:inherit}.text-editor button:disabled{opacity:.5;cursor:default}.text-editor button:focus-visible,.text-editor textarea:focus-visible{outline:3px solid #289ca6;outline-offset:2px}.text-editor iframe{width:100%;height:440px;border:1px solid #dce2eb;background:#fff;border-radius:8px}.text-editor-error{color:#b42318}.text-editor-hint{font-size:13px;color:#627086}.text-editor-compare pre{white-space:pre-wrap;max-height:360px;overflow:auto;padding:12px;background:#f2f4f8;color:#17213a}.text-editor-compare button{margin:4px}.page-tools input:not([type=checkbox]),.page-tools select{display:block;margin-top:5px;padding:9px;width:min(100%,520px);box-sizing:border-box;border:1px solid #aebbc9;border-radius:6px;background:var(--panel,#fff);color:inherit}.page-tools ul{padding-left:20px}.page-tools li{margin:9px 0}.batch-limits-control summary{cursor:pointer;font-size:13px;color:var(--text-secondary);padding:8px 0}.batch-limits-fields{display:grid;grid-template-columns:1.2fr repeat(3,1fr);gap:12px;align-items:end;padding:12px 0}@media(max-width:700px){.batch-limits-fields{grid-template-columns:1fr 1fr}}.authoring-request .batch-limits-control{margin-top:-10px;margin-bottom:-10px}.authoring-request .batch-limits-control summary{padding:2px 0}.authoring-request .text-editor-hint{margin:0 0 8px;font-size:12px;line-height:1.4}.text-editor-body label>input:not([type=checkbox]),.text-editor-body label>select,.text-editor-body label>textarea{display:block;padding:8px;margin-top:4px;border:1px solid var(--border,#bfcbd8);border-radius:6px;background:var(--panel,#fff);color:inherit;font:inherit}.text-editor-body label>textarea{width:100%;min-height:90px}.text-editor-body .text-editor-label>textarea{min-height:320px;font-family:ui-monospace,monospace}.page-list-panel>label:first-child:has(select){padding:12px}.page-list-panel select{display:block;min-height:36px;width:100%;background:var(--panel,#fff);color:inherit;border:1px solid var(--border,#bfcbd8);border-radius:6px}.shell.pages-shell:has(.reference-sidebar-nav) .main{padding:20px}.shell.pages-shell:has(.reference-sidebar-nav) .page{max-width:none;width:100%}.preview-first-pages .page-header{margin-bottom:18px}.preview-first-pages .pages-view-actions{display:flex;align-items:center;flex-wrap:wrap;gap:12px}.preview-first-pages .pages-workspace-tools{padding:0 16px 12px;margin-bottom:16px;border:1px solid var(--border);border-radius:9px;background:var(--panel, #fff)}.preview-first-pages .pages-workbench{grid-template-columns:218px minmax(0,1fr);gap:0;border:1px solid var(--border);border-radius:10px;overflow:clip;background:#fff}.preview-first-pages .page-list-panel{position:static;border:0;border-right:1px solid var(--border);border-radius:0;box-shadow:none}.preview-first-pages .page-list{max-height:calc(100vh - 275px);min-height:450px}.preview-first-pages .page-search{margin:14px 10px 8px}.preview-first-pages .page-list-summary{padding-inline:12px;flex-wrap:wrap}.preview-first-pages .page-list-hint{display:none}.preview-first-pages .page-list-row{grid-template-columns:16px minmax(0,1fr);gap:7px;padding:9px 6px;border:0}.preview-first-pages .page-list-row.active{background:var(--brand-soft)}.preview-first-pages .page-list-row.active:before{display:none}.preview-first-pages .page-list-copy strong{white-space:normal;font-size:13px;line-height:19px}.preview-first-pages .page-list-copy code,.preview-first-pages .page-list-copy small{display:none}.preview-first-pages .page-list-check input{width:13px;height:13px}.preview-first-pages .page-detail-pane{display:block;border:0;border-radius:0;box-shadow:none;overflow:visible;min-width:0}.preview-first-pages .page-detail-header{padding:13px 18px;gap:12px;align-items:center;flex-wrap:wrap;min-height:63px}.preview-first-pages .page-detail-copy{display:flex;gap:9px;flex:1;align-items:center;min-width:140px}.preview-first-pages .page-detail-copy>.icon{flex-shrink:0;color:var(--muted)}.preview-first-pages .page-detail-copy h2{font-weight:600;font-family:inherit;font-size:14px;line-height:20px;overflow-wrap:anywhere}.preview-first-pages .page-detail-actions{display:flex;align-items:center;gap:7px}.preview-first-pages .page-detail-actions>button{display:inline-flex;align-items:center;justify-content:center;gap:8px;border:1px solid var(--border);border-radius:7px;min-height:35px;padding:7px 10px;background:#fff;color:var(--text);font:500 12.5px/18px var(--font-body, sans-serif);cursor:pointer}.preview-first-pages .page-detail-actions>button:hover{background:var(--subtle)}.preview-first-pages .page-detail-actions>button.active{background:var(--brand-soft);color:var(--brand-dark);border-color:var(--brand)}.preview-first-pages .page-detail-actions>button:disabled{opacity:.5;cursor:default}.preview-first-pages .page-mode-switch{position:relative;width:27px;height:16px;background:#9aa5b5;border-radius:10px}.preview-first-pages .page-mode-switch:after{content:"";position:absolute;top:2px;left:2px;width:12px;height:12px;border-radius:50%;background:#fff}.preview-first-pages .active .page-mode-switch{background:var(--brand)}.preview-first-pages .active .page-mode-switch:after{left:13px}.preview-first-pages .page-agent-toggle{position:relative}.preview-first-pages .page-agent-toggle>i{position:absolute;right:4px;top:4px;width:6px;height:6px;border-radius:50%;background:var(--brand)}.preview-first-pages .page-outline-toggle{display:none}.preview-first-pages .page-editor-layout{display:grid;grid-template-columns:minmax(0,1fr);min-height:600px}.preview-first-pages.agent-panel-open .page-editor-layout{grid-template-columns:minmax(0,1fr) 330px}.preview-first-pages .page-editor-canvas{min-width:0}.preview-first-pages .current-page-preview{display:block;height:max(610px,calc(100vh - 255px));margin:0;border:0;border-radius:0;box-shadow:none}.preview-first-pages .current-page-preview iframe{display:block;width:100%;height:100%}.preview-first-pages .preview-placeholder{min-height:420px}.preview-first-pages .page-agent-panel{min-width:0;border-left:1px solid var(--border);background:#f8fafb;padding:18px}.preview-first-pages .page-agent-panel-header{display:flex;align-items:center;gap:9px;margin-bottom:20px}.preview-first-pages .page-agent-panel-header h2{flex:1;font:600 14px/21px var(--font-body, sans-serif);margin:0}.preview-first-pages .page-agent-panel-header button{display:grid;place-items:center;min-width:30px;min-height:30px;border:0;background:transparent;color:var(--muted);cursor:pointer;border-radius:5px}.preview-first-pages .page-agent-scope{display:flex;align-items:center;gap:8px;padding:10px 12px;border:1px solid var(--border);border-radius:7px;background:#fff;font-size:12.5px;margin-bottom:20px}.preview-first-pages .page-agent-scope .icon{flex-shrink:0}.preview-first-pages .page-agent-scope span{overflow-wrap:anywhere}.preview-first-pages .page-edit-composer,.preview-first-pages .page-edit-running{border:0;background:transparent;margin:0;padding:0}.preview-first-pages .composer-head{display:none}.preview-first-pages .composer-body,.preview-first-pages .composer-foot{padding:0;border:0;background:transparent}.preview-first-pages .composer-body{display:grid;gap:16px}.preview-first-pages .composer-textarea textarea{min-height:145px;font-size:13.5px;line-height:21px;background:#fff}.preview-first-pages .composer-field .field-label{font-size:13px}.preview-first-pages .page-intent-chips{gap:6px}.preview-first-pages .page-intent-chips>span{display:none}.preview-first-pages .page-intent-chips button{font-size:12px;padding:5px 8px}.preview-first-pages .page-agent-advanced{border-top:1px solid var(--border);padding-top:14px}.preview-first-pages .page-agent-advanced summary{font-size:12.5px;cursor:pointer}.preview-first-pages .page-edit-options{grid-template-columns:minmax(0,1fr);margin-top:14px}.preview-first-pages .page-option-card{background:transparent;padding:0;border:0}.preview-first-pages .page-agent-options{grid-template-columns:minmax(0,1fr);padding:12px 0}.preview-first-pages .agent-config-summary{flex-wrap:wrap;gap:7px;margin-top:16px;padding:10px}.preview-first-pages .agent-config-summary>span{overflow-wrap:anywhere}.preview-first-pages .composer-foot{display:flex;flex-direction:column;align-items:stretch;gap:10px;margin-top:24px}.preview-first-pages .composer-foot .btn{justify-content:center}.preview-first-pages .composer-foot small{font-size:12px;line-height:18px}.preview-first-pages .page-options-panel{padding:14px 18px;background:var(--subtle)}.preview-first-pages .page-options-actions{display:flex;align-items:center;flex-wrap:wrap;gap:10px}.preview-first-pages .page-options-actions code{font-size:12px;overflow-wrap:anywhere}.preview-first-pages .page-canvas-status{display:flex;align-items:center;flex-wrap:wrap;gap:8px;padding:10px 18px;color:var(--muted);font-size:12px;border-top:1px solid var(--border)}.preview-first-pages .page-canvas-status code{margin-left:auto;overflow-wrap:anywhere;font-size:11.5px}.preview-first-pages .page-review-head{padding:0;display:block}.preview-first-pages .page-review-head h2{font-size:17px;line-height:24px;margin:5px 0 8px}.preview-first-pages .page-review-head p{font-size:13px;line-height:20px}.preview-first-pages .page-review-instruction{margin:16px 0;padding:10px;font-size:12px;background:#fff}.preview-first-pages .page-review-toolbar{padding:18px;gap:10px}.preview-first-pages .page-review-controls{flex-wrap:wrap;justify-content:flex-start}.preview-first-pages .page-review-body{padding:0 18px 18px}.preview-first-pages .page-agent-review .page-review-actions{display:flex;flex-wrap:wrap;padding:16px 0 0;margin:16px 0 0;gap:8px}.preview-first-pages .page-agent-review .page-review-actions small{flex-basis:100%}.preview-first-pages .page-agent-review .note{margin:12px 0}.preview-first-pages .page-agent-review .page-refine,.preview-first-pages .page-related-changes{margin:16px 0;padding:12px 0}.preview-first-pages .page-refine-actions{flex-wrap:wrap}.preview-first-pages .page-edit-running>header{display:block;padding:0}.preview-first-pages .page-edit-running h2{font-size:16px}.preview-first-pages .page-edit-running blockquote{margin:12px 0;overflow-wrap:anywhere}.preview-first-pages .page-edit-running pre{white-space:pre-wrap;overflow-wrap:anywhere}.preview-first-pages .page-edit-review>.text-editor{margin:12px 18px}.page-content-editor{min-width:0}.page-content-editor>iframe{display:block;width:100%;height:max(610px,calc(100vh - 325px));border:0;background:#fff}.page-editor-toolbar{display:flex;align-items:center;flex-wrap:wrap;gap:8px;padding:10px 18px;border-bottom:1px solid var(--border);background:var(--brand-soft)}.page-editor-toolbar>span{flex:1;font-size:12px;color:var(--muted)}.page-editor-hint{display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;padding:10px 18px;font-size:12px;line-height:18px;color:var(--muted);border-bottom:1px solid var(--border)}.page-editor-hint summary{cursor:pointer}.page-editor-hint details label{display:block;padding-top:8px}.page-editor-hint details small{display:block;padding-top:4px}.page-source-editor{display:block;width:100%;min-height:580px;resize:vertical;padding:24px;border:0;color:var(--text);background:#fff;font:14px/1.75 ui-monospace,SFMono-Regular,monospace;tab-size:2}.page-editor-notice{display:flex;align-items:center;flex-wrap:wrap;gap:8px;padding:12px 18px;font-size:13px;background:var(--brand-soft);border-bottom:1px solid var(--border)}.page-editor-notice>span{flex:1}.page-editor-notice.error{background:#fff4f1;color:#9a3028}.page-editor-conflict{padding:16px 18px}.page-editor-conflict pre{max-height:300px;overflow:auto;white-space:pre-wrap;font-size:12px;padding:12px;background:var(--subtle)}.page-editor-conflict .btn{margin:4px}@media(max-width:1450px){.preview-first-pages.agent-panel-open .pages-workbench{grid-template-columns:minmax(0,1fr)}.preview-first-pages.agent-panel-open .page-list-panel{display:none}.preview-first-pages.agent-panel-open .page-outline-toggle{display:inline-flex}.preview-first-pages.agent-panel-open.page-list-open .page-list-panel{display:grid;border-bottom:1px solid var(--border)}.preview-first-pages.page-list-open .page-list{min-height:0;max-height:280px}}@media(max-width:1050px){.preview-first-pages .pages-workbench{grid-template-columns:minmax(0,1fr)}.preview-first-pages .page-list-panel{display:none}.preview-first-pages .page-outline-toggle{display:inline-flex}.preview-first-pages.page-list-open .page-list-panel{display:grid}.preview-first-pages.agent-panel-open .page-editor-layout{grid-template-columns:minmax(0,1fr) 300px}}@media(max-width:760px){.shell.pages-shell:has(.reference-sidebar-nav) .main{padding:12px}.preview-first-pages.agent-panel-open .page-editor-layout{grid-template-columns:minmax(0,1fr)}.preview-first-pages .page-agent-panel{grid-row:1;border-left:0;border-bottom:1px solid var(--border)}.preview-first-pages .page-detail-header{padding:12px}.preview-first-pages .page-detail-actions{flex-wrap:wrap}.preview-first-pages .page-canvas-status code{width:100%;margin-left:0}}@media(pointer:coarse){.preview-first-pages .page-detail-actions>button,.preview-first-pages .page-agent-panel-header button{min-height:44px;min-width:44px}.page-source-editor,.preview-first-pages .composer-textarea textarea{font-size:16px}}.preview-first-pages.navigation-open .pages-workbench{grid-template-columns:280px minmax(0,1fr)}.preview-first-pages.navigation-open .page-list-panel{display:block;min-width:0;background:#fafbfc}.preview-first-pages .navigation-view-embedded{display:block;margin:0}.preview-first-pages .navigation-view-embedded .navigation-editor-pane{display:block;border:0;border-radius:0;box-shadow:none;padding:0;background:transparent}.preview-first-pages .explorer-header{display:flex;align-items:center;gap:2px;padding:6px 10px;min-height:38px}.preview-first-pages .explorer-header h2{margin:0;font:600 11px/18px var(--font-body);letter-spacing:.8px;text-transform:uppercase}.preview-first-pages .explorer-save-state{margin-left:auto;margin-right:4px;font-size:10.5px;color:var(--muted)}.preview-first-pages .explorer-header .btn{padding:4px;min-width:25px;min-height:25px;border:0;box-shadow:none;background:transparent}.preview-first-pages .navigation-spaces{padding:2px 10px 6px;gap:4px;flex-wrap:wrap}.preview-first-pages .navigation-spaces button{padding:3px 7px;font-size:11px;border-radius:4px}.navigation-explorer{position:relative;padding-bottom:12px;max-height:max(610px,calc(100vh - 330px));overflow:auto}.explorer-tools{display:flex;align-items:center;gap:4px;padding:2px 10px 6px;font-size:10.5px;color:var(--muted)}.explorer-tools>span{flex:1}.explorer-add,.explorer-more,.explorer-chevron,.explorer-icon{display:inline-flex;align-items:center;justify-content:center;flex-shrink:0;padding:0;border:0;background:transparent;color:var(--muted);cursor:pointer}.explorer-add{width:24px;height:24px;border-radius:4px}.explorer-add:hover,button.explorer-icon:hover,.explorer-more:hover{background:var(--brand-soft);color:var(--brand-dark)}.explorer-row{display:flex;align-items:center;gap:4px;position:relative;height:29px;padding:0 6px;border:1px solid transparent;cursor:default;font:12.5px/20px var(--font-body, sans-serif);color:var(--text)}.explorer-row:hover{background:#edf1f5}.explorer-row.current,.explorer-row[aria-selected=true]{background:#e4eeee}.explorer-row:focus-visible,.explorer-row:focus-within{outline:1px solid var(--brand);outline-offset:-1px}.explorer-row.is-hidden .explorer-label{opacity:.5}.explorer-row.drop-before{border-top:2px solid var(--brand)}.explorer-row.drop-after{border-bottom:2px solid var(--brand)}.explorer-row.drop-into{outline:2px solid var(--brand);outline-offset:-2px;background:var(--brand-soft)}.explorer-chevron{width:12px;height:24px}.explorer-icon{width:22px;height:24px;border-radius:4px;color:#657f88}.navigation-emoji{font-size:15px;line-height:20px}.explorer-label{min-width:0;flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.explorer-more{width:22px;height:24px;font-size:19px;opacity:0;border-radius:4px}.explorer-select{width:12px;height:12px;min-width:12px;margin:0;opacity:0;accent-color:var(--brand)}.explorer-row:hover .explorer-more,.explorer-row:focus-within .explorer-more,.explorer-row:hover .explorer-select,.explorer-row:focus-within .explorer-select,.explorer-select:checked{opacity:1}.explorer-rename{width:0;min-width:0;flex:1;height:24px;padding:1px 4px;border:1px solid var(--brand);border-radius:2px;font:inherit;background:#fff}.explorer-popover{position:relative;z-index:3;margin:3px 8px 6px 22px;padding:5px;border:1px solid var(--border);border-radius:6px;background:#fff;box-shadow:0 4px 14px #152c3d14}.explorer-popover>input{width:100%;min-width:0;padding:6px 8px;font-size:12px;border:1px solid var(--border);border-radius:4px}.explorer-popover>button{display:flex;justify-content:space-between;align-items:center;gap:8px;width:100%;border:0;background:transparent;border-radius:3px;padding:6px 8px;text-align:left;font:12px/18px var(--font-body, sans-serif);color:var(--text);cursor:pointer}.explorer-popover button:hover,.explorer-popover button:focus-visible{background:var(--brand-soft)}.explorer-popover button span{color:var(--muted);font-size:10px}.explorer-icon-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:3px;padding:6px 0;max-height:180px;overflow:auto}.explorer-icon-grid button{display:grid;place-items:center;height:29px;border:1px solid transparent;border-radius:4px;background:#fff;color:var(--text);cursor:pointer}.explorer-icon-grid button[aria-pressed=true]{background:var(--brand-soft);border-color:var(--brand)}.explorer-empty{padding:10px;font-size:12px;color:var(--muted)}.explorer-unlisted{border-top:1px solid var(--border);margin-top:8px;padding:8px}.explorer-unlisted>span{display:block;padding:4px;font-size:10px;color:var(--muted);text-transform:uppercase}.explorer-unlisted>button{display:flex;align-items:center;gap:8px;padding:5px;background:transparent;border:0;color:var(--text);font-size:12px;text-align:left}@media(max-width:1450px){.preview-first-pages.navigation-open.agent-panel-open .page-editor-layout{grid-template-columns:minmax(0,1fr)}.preview-first-pages.navigation-open .page-agent-panel{border-left:0;border-top:1px solid var(--border)}}@media(max-width:1050px){.preview-first-pages.navigation-open .pages-workbench{grid-template-columns:minmax(0,1fr)}.preview-first-pages.navigation-open .page-list-panel{display:none;border-right:0;border-bottom:1px solid var(--border)}.preview-first-pages.navigation-open.page-list-open .page-list-panel{display:block}.navigation-explorer{max-height:300px}}@media(pointer:coarse){.explorer-row{height:36px}.explorer-more{opacity:1}}.shell:has(.reference-sidebar-nav){--heading: #102a56;--text: #29415f;--muted: #637089;--faint: #8993a5;--canvas: #f4f6f3;--subtle: #f7f8f6;--hover: #f1f4f0;--border: #e1e5df;--divider: #ecefeb;--strong-border: #cfd6cd;--radius: 9px;grid-template-columns:252px minmax(0,1fr);grid-template-rows:68px minmax(0,1fr);gap:0 10px;min-height:100vh;color:var(--text);background:var(--canvas);font-size:14px;line-height:20px}.proposal-lifecycle-notice{min-height:40px;display:flex;align-items:center;gap:8px;padding:9px 18px;border-top:1px solid #ead9aa;border-bottom:1px solid #ead9aa;color:#76520a;background:#fffaf0;font-size:12px}.proposal-screenshot-result{display:flex;align-items:center;gap:10px;padding:10px 14px;border-bottom:1px solid var(--divider);background:#f8f6ff}.proposal-screenshot-result>span:nth-child(2){min-width:0;display:grid;gap:2px;flex:1}.proposal-screenshot-result strong{color:var(--heading);font-size:11.5px}.proposal-screenshot-result small{color:var(--muted);font-size:10.5px}.proposal-screenshot-result.verified .screenshot-camera{color:var(--good);background:var(--good-soft)}.proposal-screenshot-result.failed .screenshot-camera{color:var(--bad);background:var(--bad-soft)}.proposal-screenshot-result.ignored{background:#fffaeb}.proposal-screenshot-result.ignored .screenshot-camera{color:var(--warn);background:#fdf1cf}.proposal-usage{display:flex;align-items:center;gap:8px;padding:6px 14px;border-bottom:1px solid var(--divider);color:var(--muted);font-size:11.5px}.proposal-usage svg{flex:none}.proposal-lifecycle-notice.failed{align-items:flex-start;color:var(--bad);border-color:#fecdca;background:var(--bad-soft)}.proposal-lifecycle-notice.failed .proposal-failed-copy{flex:1;min-width:0;display:grid;gap:3px}.proposal-lifecycle-notice.failed .proposal-failed-copy strong{color:var(--bad)}.proposal-lifecycle-notice.failed .proposal-failed-copy small{color:var(--text);white-space:pre-wrap;overflow-wrap:anywhere}.proposal-lifecycle-notice.failed .proposal-failed-actions{display:flex;flex-wrap:wrap;gap:8px}.proposal-index-tools{min-height:48px;display:flex;align-items:center;justify-content:flex-end;gap:8px;padding:8px 14px;border-bottom:1px solid var(--divider);background:var(--subtle)}.proposal-lifecycle-notice.advisory{color:var(--warn);border-color:#f6e3b4;background:#fffaeb}.proposal-lifecycle-notice.superseded,.proposal-lifecycle-notice.undone{color:var(--muted);border-color:var(--divider);background:var(--subtle)}.proposal-drawer-scrim{position:fixed;inset:0;z-index:120;background:#0f172a57;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.proposal-rationale-drawer{position:absolute;inset:0 0 0 auto;width:min(480px,100%);display:grid;grid-template-rows:auto minmax(0,1fr);color:var(--text);background:#fff;box-shadow:-16px 0 48px #0f172a29}.proposal-rationale-drawer>header,.proposal-revision-dialog>header,.proposal-edit-dialog>header{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;padding:20px 22px;border-bottom:1px solid var(--divider)}.proposal-rationale-drawer>header>span,.proposal-revision-dialog>header>span,.proposal-edit-dialog>header>span{min-width:0;display:grid;gap:4px}.proposal-rationale-drawer header small,.proposal-revision-dialog header small,.proposal-edit-dialog header small{color:var(--brand-dark);font-size:10px;font-weight:750;letter-spacing:.08em;text-transform:uppercase}.proposal-rationale-drawer h2,.proposal-revision-dialog h2,.proposal-edit-dialog h2{margin:0;color:var(--heading);font-size:18px;line-height:24px}.proposal-rationale-drawer header code,.proposal-edit-dialog header code{overflow:hidden;color:var(--muted);font-size:11px;text-overflow:ellipsis}.proposal-rationale-drawer header button,.proposal-revision-dialog header button,.proposal-edit-dialog header button{width:30px;height:30px;display:grid;flex:0 0 auto;place-items:center;border-radius:7px;color:var(--muted)}.proposal-rationale-drawer header button:hover,.proposal-revision-dialog header button:hover,.proposal-edit-dialog header button:hover{color:var(--heading);background:var(--subtle)}.proposal-drawer-body{overflow-y:auto;padding:20px 22px 32px}.proposal-drawer-body section+section,.proposal-drawer-body section+details{margin-top:24px}.proposal-drawer-body h3{margin:0 0 9px;color:var(--heading);font-size:12px}.rationale-lead{padding:14px;border:1px solid var(--divider);border-radius:10px;background:var(--subtle)}.rationale-lead p{margin:9px 0 0;color:var(--heading);font-size:13px;line-height:20px}.rationale-evidence-list{display:grid;gap:7px}.rationale-evidence-list article{min-width:0;display:flex;gap:9px;padding:10px;border:1px solid var(--divider);border-radius:8px}.rationale-evidence-list article.unavailable{border-color:#ead9aa;background:#fffaf0}.rationale-evidence-list article>.icon{flex:0 0 auto;margin-top:2px;color:var(--brand)}.rationale-evidence-list article span{min-width:0;display:grid;gap:2px}.rationale-evidence-list strong,.rationale-evidence-list code,.rationale-evidence-list small{overflow-wrap:anywhere}.rationale-evidence-list strong{color:var(--heading);font-size:11.5px}.rationale-evidence-list code,.rationale-evidence-list small{color:var(--muted);font-size:10px}.rationale-tags{display:flex;flex-wrap:wrap;gap:6px}.rationale-tags span{padding:4px 7px;border-radius:5px;color:var(--heading);background:var(--subtle);font-size:10.5px}.rationale-validation{padding:12px 14px;border-left:3px solid var(--brand);background:var(--brand-soft)}.rationale-validation p{display:flex;align-items:center;gap:6px;margin:0 0 4px;color:var(--heading);font-size:12px}.rationale-validation small,.muted-copy{color:var(--muted);font-size:11px}.proposal-revision-dialog,.proposal-edit-dialog{width:min(680px,calc(100vw - 32px));max-height:calc(100vh - 48px);overflow-y:auto;border:1px solid var(--strong-border);border-radius:13px;background:#fff;box-shadow:0 24px 70px #0f172a38}.proposal-revision-dialog>header p{margin:0;color:var(--muted);font-size:12px}.proposal-revision-dialog>.field{padding:0 22px 20px}.revision-scope-tabs{display:grid;grid-template-columns:repeat(3,1fr);gap:6px;margin:18px 22px;padding:4px;border:1px solid var(--divider);border-radius:9px;background:var(--subtle)}.revision-scope-tabs button{min-height:34px;border-radius:6px;color:var(--muted);font-size:11.5px;font-weight:650}.revision-scope-tabs button.active{color:var(--heading);background:#fff;box-shadow:0 1px 3px #0f172a17}.proposal-revision-dialog>.note{margin:0 22px 18px}.revision-file-list{max-height:210px;overflow-y:auto;margin:0 22px 18px;border:1px solid var(--divider);border-radius:9px}.revision-file-list label{min-height:48px;display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:10px;padding:8px 11px;border-bottom:1px solid var(--divider)}.revision-file-list label:last-child{border-bottom:0}.revision-file-list label>span{min-width:0;display:grid}.revision-file-list strong,.revision-file-list code{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.revision-file-list strong{color:var(--heading);font-size:11.5px}.revision-file-list code{color:var(--muted);font-size:10px}.proposal-revision-dialog>footer,.proposal-edit-dialog>footer{min-height:64px;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 22px;border-top:1px solid var(--divider);background:var(--subtle)}.proposal-revision-dialog>footer>small{color:var(--muted)}.proposal-revision-dialog>footer>span,.proposal-edit-dialog>footer{display:flex;gap:8px}.proposal-edit-dialog{width:min(900px,calc(100vw - 32px))}.proposal-code-editor{width:calc(100% - 44px);margin:18px 22px 12px;resize:vertical;font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;font-size:12px;line-height:19px}.evidence-disposition{display:flex;align-items:center;justify-content:space-between;gap:18px;margin:0 22px 18px;padding:12px 14px;border:1px solid var(--divider);border-radius:9px;background:var(--subtle)}.evidence-disposition>span{display:grid;gap:2px}.evidence-disposition strong{color:var(--heading);font-size:11.5px}.evidence-disposition small{color:var(--muted);font-size:10.5px}.evidence-disposition select{min-width:180px;height:34px;padding:0 28px 0 9px;border:1px solid var(--border);border-radius:7px;color:var(--heading);background:#fff}.hunk-actions{display:flex;gap:6px}.review-device{width:100%;min-height:500px;margin-inline:auto;overflow:hidden;background:#fff}.review-device .review-frame{width:100%;display:block;border:0}@media(max-width:720px){.proposal-revision-dialog>footer,.evidence-disposition{align-items:stretch;flex-direction:column}.evidence-disposition select{width:100%}}.shell:has(.reference-sidebar-nav).proposal-shell{grid-template-columns:252px minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .sidebar{grid-column:1;grid-row:2;top:68px;height:calc(100vh - 80px);gap:0;margin:0 0 12px 12px;padding:18px 14px 16px;overflow:hidden;background:#ffffffd1;border:1px solid var(--border);border-radius:15px}.shell:has(.reference-sidebar-nav) .sidebar-section-label{display:block;margin:0 10px 8px;color:var(--faint);font-size:10px;line-height:16px;font-weight:700;letter-spacing:.09em;text-transform:uppercase}.shell:has(.reference-sidebar-nav) .sidebar-section-label.settings-label{margin-top:24px}.shell:has(.reference-sidebar-nav) .reference-sidebar-nav{gap:3px!important;margin-top:0;padding:0;border-top:0;border-bottom:0}.shell:has(.reference-sidebar-nav) .reference-sidebar-nav button{min-height:42px;gap:11px;padding:0 11px;border:0;border-radius:var(--radius);color:var(--text);font-size:14px;font-weight:500}.shell:has(.reference-sidebar-nav) .reference-sidebar-nav button .icon{color:var(--muted)}.shell:has(.reference-sidebar-nav) .reference-sidebar-nav button:hover{color:var(--heading);background:var(--hover)}.shell:has(.reference-sidebar-nav) .reference-sidebar-nav button.active{color:var(--brand-dark);background:var(--brand-soft);box-shadow:inset 0 0 0 1px #15afaa1a}.shell:has(.reference-sidebar-nav) .reference-sidebar-nav button.active .icon{color:var(--brand-dark)}.shell:has(.reference-sidebar-nav) .reference-sidebar-nav button>span{min-width:0;flex:1}.shell:has(.reference-sidebar-nav) .nav-count{min-width:20px;height:20px;padding:0 6px;border-radius:10px;color:#fff;background:var(--brand-dark);font-size:11px;line-height:20px;font-weight:600;text-align:center}.shell:has(.reference-sidebar-nav) .sidebar-collapse-button{min-height:38px;display:flex;align-items:center;gap:10px;margin-top:auto;padding:0 11px;border:1px solid var(--border);border-radius:var(--radius);color:var(--muted);background:#fff;font-size:12px;font-weight:600}.shell:has(.reference-sidebar-nav) .sidebar-collapse-button:hover{color:var(--heading);border-color:var(--strong-border);background:var(--hover)}.shell:has(.reference-sidebar-nav) .sidebar-collapse-button .icon{flex:0 0 auto;transform:rotate(180deg);transition:transform .18s ease}@media(min-width:901px){.shell:has(.reference-sidebar-nav),.shell:has(.reference-sidebar-nav).proposal-shell{transition:grid-template-columns .18s ease}.shell:has(.reference-sidebar-nav).sidebar-collapsed,.shell:has(.reference-sidebar-nav).proposal-shell.sidebar-collapsed{grid-template-columns:76px minmax(0,1fr)}.shell:has(.reference-sidebar-nav).sidebar-collapsed .sidebar{padding-inline:10px}.shell:has(.reference-sidebar-nav).sidebar-collapsed .sidebar-section-label,.shell:has(.reference-sidebar-nav).sidebar-collapsed .reference-sidebar-nav button>span,.shell:has(.reference-sidebar-nav).sidebar-collapsed .sidebar-collapse-button>span{display:none}.shell:has(.reference-sidebar-nav).sidebar-collapsed .sidebar-section-label.settings-label{display:block;height:1px;margin:18px 4px 10px;overflow:hidden;background:var(--divider);color:transparent}.shell:has(.reference-sidebar-nav).sidebar-collapsed .reference-sidebar-nav button,.shell:has(.reference-sidebar-nav).sidebar-collapsed .sidebar-collapse-button{width:42px;justify-content:center;padding:0}.shell:has(.reference-sidebar-nav).sidebar-collapsed .reference-sidebar-nav button{position:relative}.shell:has(.reference-sidebar-nav).sidebar-collapsed .nav-count{position:absolute;top:1px;right:1px;min-width:16px;height:16px;padding:0 4px;font-size:9px;line-height:16px}.shell:has(.reference-sidebar-nav).sidebar-collapsed .sidebar-collapse-button .icon{transform:none}.shell:has(.reference-sidebar-nav).sidebar-collapsed .loading-bar{left:86px}}.shell:has(.reference-sidebar-nav) .main{grid-column:2;grid-row:2;min-height:calc(100vh - 80px);margin:0 12px 12px 0;overflow:hidden;background:#fff;border:1px solid var(--border);border-radius:15px}.shell:has(.reference-sidebar-nav) .workspace-navbar{position:sticky;z-index:40;top:0;grid-column:1 / -1;grid-row:1;min-height:68px;display:flex;align-items:center;justify-content:space-between;padding:0 16px;border-bottom:0;background:#f4f6f3eb;-webkit-backdrop-filter:saturate(150%) blur(12px);backdrop-filter:saturate(150%) blur(12px)}.workspace-navbar-left{display:flex;align-items:center;gap:18px}.workspace-brand{width:112px;height:38px;display:grid;place-items:center;cursor:default}.workspace-brand img{width:112px;height:auto;display:block;object-fit:contain}.workspace-identity{min-width:196px;height:42px;display:flex;align-items:center;gap:10px;padding:0 12px 0 8px;border:1px solid var(--border);border-radius:9px;background:#fffc}.workspace-identity-mark{width:27px;height:27px;display:grid;flex:0 0 auto;place-items:center;border:1px solid #b9e4e1;border-radius:6px;color:var(--brand-dark);background:var(--brand-soft);font-size:13px;font-weight:700}.workspace-identity-copy{min-width:0;display:grid;line-height:15px}.workspace-identity-copy strong,.workspace-identity-copy small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.workspace-identity-copy strong{max-width:190px;color:var(--heading);font-size:12.5px;font-weight:650}.workspace-identity-copy small{color:var(--faint);font-size:10.5px}.workspace-navbar-actions{display:flex;align-items:center;gap:8px}.workspace-support-link{display:inline-flex;align-items:center;gap:6px;padding:7px 8px;border-radius:7px;color:var(--muted);font-size:12.5px;font-weight:500}.workspace-support-link:hover{color:var(--heading);background:#ffffffb8}.shell:has(.reference-sidebar-nav) .navbar-mode-flag{width:auto;height:auto;min-height:24px;margin:0;padding:0 10px;border:1px solid var(--border);border-radius:999px;color:var(--muted);background:#ffffffb8;font-size:12px;font-weight:500}.shell:has(.reference-sidebar-nav) .navbar-mode-flag i{width:6px;height:6px}.shell:has(.reference-sidebar-nav) .navbar-mode-flag:after{content:none}.shell:has(.reference-sidebar-nav) .workspace-preview-primary{height:36px;display:inline-flex;align-items:center;gap:7px;padding:0 10px 0 6px;border:1px solid #455148;border-radius:8px;color:#fff;background:#4c5a51;box-shadow:none;transition:background .15s ease,border-color .15s ease}.shell:has(.reference-sidebar-nav) .workspace-preview-primary>span{width:24px;height:24px;display:grid;place-items:center;border-radius:6px;color:#e5f4ee;background:#ffffff14}.shell:has(.reference-sidebar-nav) .workspace-preview-primary strong{font-size:12px;font-weight:600}.shell:has(.reference-sidebar-nav) .workspace-preview-primary>.icon:last-child{color:#aeb9b2}.shell:has(.reference-sidebar-nav) .workspace-preview-primary:hover{border-color:#354139;background:#3f4c44}.shell:has(.reference-sidebar-nav) .loading-bar{top:68px;left:262px}.proposal-ready-scrim{position:fixed;z-index:120;inset:0;display:grid;place-items:center;padding:20px;background:#17203361;-webkit-backdrop-filter:blur(3px);backdrop-filter:blur(3px)}.proposal-ready-dialog{position:relative;width:min(500px,100%);display:grid;grid-template-columns:44px minmax(0,1fr);gap:16px;padding:24px;border:1px solid var(--border);border-radius:12px;background:#fff;box-shadow:0 20px 55px #17203333}.proposal-ready-close{position:absolute;top:14px;right:14px;width:30px;height:30px;display:grid;place-items:center;border-radius:6px;color:var(--muted)}.proposal-ready-close:hover{color:var(--heading);background:var(--hover)}.proposal-ready-icon{width:44px;height:44px;display:grid;place-items:center;border-radius:9px;color:var(--brand-dark);background:var(--brand-soft)}.proposal-ready-icon.applied{color:#16794b;background:#e9f8f0}.proposal-ready-dialog h2{padding-right:28px;color:var(--heading);font-size:18px;line-height:24px;font-weight:700}.proposal-ready-dialog p{margin-top:5px;color:var(--muted);font-size:14px;line-height:20px}.proposal-ready-summary{grid-column:1 / -1;display:grid;gap:3px;padding:13px 14px;border:1px solid var(--border);border-radius:8px;background:var(--subtle)}.proposal-ready-summary strong{color:var(--heading);font-size:13px;font-weight:600}.proposal-ready-summary span{color:var(--muted);font-size:12px}.proposal-ready-dialog footer{grid-column:1 / -1;display:flex;justify-content:flex-end;gap:8px;padding-top:2px}.shell:has(.reference-sidebar-nav) .page,.shell:has(.reference-sidebar-nav).sources-shell .page,.shell:has(.reference-sidebar-nav).proposal-shell .page{width:min(1200px,100%);max-width:1200px;gap:26px;margin:0 auto;padding:36px clamp(24px,3.4vw,48px) 72px;background:transparent}.shell:has(.reference-sidebar-nav).proposal-shell .page{width:min(1360px,100%);max-width:1360px}.shell:has(.reference-sidebar-nav) .page-head,.shell:has(.reference-sidebar-nav) .sources-page-header{min-height:48px;align-items:flex-start;gap:20px;margin:0}.shell:has(.reference-sidebar-nav) .page-head h1,.shell:has(.reference-sidebar-nav) .sources-page-header h1,.shell:has(.reference-sidebar-nav).proposal-shell .page-head h1{color:var(--heading);font-size:27px;line-height:34px;font-weight:720;letter-spacing:-.55px}.shell:has(.reference-sidebar-nav) .page-head p,.shell:has(.reference-sidebar-nav) .sources-page-header p,.shell:has(.reference-sidebar-nav).proposal-shell .page-head p{max-width:68ch;margin-top:5px;color:var(--muted);font-size:14px;line-height:21px}.shell:has(.reference-sidebar-nav) .page-head-actions{padding-top:2px}.shell:has(.reference-sidebar-nav) .btn{font-weight:600}.shell:has(.reference-sidebar-nav) .btn.md{height:38px;padding-inline:14px;border-radius:7px;font-size:14px}.shell:has(.reference-sidebar-nav) .btn.sm{height:32px;padding-inline:11px;border-radius:6px;font-size:13px}.shell:has(.reference-sidebar-nav) .panel,.shell:has(.reference-sidebar-nav) .authoring-action-card,.shell:has(.reference-sidebar-nav) .sources-data-panel{border:1px solid var(--border);border-radius:12px;background:#fff;box-shadow:0 1px 2px #20251f05}.shell:has(.reference-sidebar-nav) .panel-head{min-height:60px;gap:12px;padding:15px 20px;border-bottom-color:var(--divider)}.shell:has(.reference-sidebar-nav) .panel-head h2{color:var(--heading);font-size:14px;line-height:20px;font-weight:650}.shell:has(.reference-sidebar-nav) .panel-head p{color:var(--muted);font-size:13px;line-height:19px}.shell:has(.reference-sidebar-nav) .input{min-height:38px;padding:8px 11px;border-radius:7px;color:var(--text);font-size:14px}.shell:has(.reference-sidebar-nav) .field{gap:6px}.shell:has(.reference-sidebar-nav) .field-label,.shell:has(.reference-sidebar-nav) .authoring-request .field-label,.shell:has(.reference-sidebar-nav) .screenshot-option>strong{color:var(--heading);font-size:14px;font-weight:620}.shell:has(.reference-sidebar-nav) .field small,.shell:has(.reference-sidebar-nav) .toggle-text{color:var(--muted);font-size:13px}.shell:has(.reference-sidebar-nav) .badge{font-size:12px;font-weight:600}.shell:has(.reference-sidebar-nav) .banner{border:1px solid currentColor;border-radius:var(--radius)}.shell:has(.reference-sidebar-nav) .sources-reference-page{display:grid;gap:26px}.shell:has(.reference-sidebar-nav) .sources-add-wrap{width:175px}.shell:has(.reference-sidebar-nav) .sources-add-dropdown-button{width:100%;height:40px;padding:0 13px;border:1px solid var(--brand-dark);border-radius:7px;color:#fff;background:var(--brand);font-size:12.5px;font-weight:590;box-shadow:0 2px 5px #0b7f7b33}.shell:has(.reference-sidebar-nav) .sources-add-menu{width:100%;margin-top:5px;padding:6px;border-radius:8px}.shell:has(.reference-sidebar-nav) .sources-library{overflow:hidden;border:1px solid var(--border);border-radius:12px;background:#fff;box-shadow:0 1px 2px #20251f05}.shell:has(.reference-sidebar-nav) .sources-library-header{min-height:76px;display:flex;align-items:center;justify-content:space-between;gap:24px;padding:16px 20px;border-bottom:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .sources-library-header h2{color:var(--heading);font-size:14px;line-height:20px;font-weight:670}.shell:has(.reference-sidebar-nav) .sources-library-header p{margin-top:2px;color:var(--muted);font-size:11.5px;line-height:17px}.shell:has(.reference-sidebar-nav) .sources-library-summary{display:flex;flex:0 0 auto;align-items:center;gap:10px;color:var(--muted);font-size:11.5px}.shell:has(.reference-sidebar-nav) .sources-library-summary span{display:inline-flex;align-items:baseline;gap:4px}.shell:has(.reference-sidebar-nav) .sources-library-summary strong{color:var(--heading);font-size:13px;font-weight:680}.shell:has(.reference-sidebar-nav) .sources-library-summary>i{width:3px;height:3px;border-radius:50%;background:var(--strong-border)}.shell:has(.reference-sidebar-nav) .sources-card-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:12px;padding:16px;background:var(--subtle)}.shell:has(.reference-sidebar-nav) .source-card,.shell:has(.reference-sidebar-nav) .sources-add-card{min-width:0;min-height:176px;border:1px solid var(--border);border-radius:10px;background:#fff}.shell:has(.reference-sidebar-nav) .source-card{display:grid;grid-template-rows:auto 1fr auto;padding:16px}.shell:has(.reference-sidebar-nav) .source-card-top,.shell:has(.reference-sidebar-nav) .source-card footer{display:flex;align-items:center;justify-content:space-between;gap:12px}.shell:has(.reference-sidebar-nav) .source-card-copy{min-width:0;display:grid;align-content:center;gap:4px;padding:14px 0}.shell:has(.reference-sidebar-nav) .source-card-copy strong,.shell:has(.reference-sidebar-nav) .source-card-copy small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .source-card-copy .source-scope,.shell:has(.reference-sidebar-nav) .source-card-copy .source-api-summary{width:max-content;max-width:100%;overflow:hidden;color:#52677f;font-size:10.5px;line-height:16px;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .source-card-copy .source-scope{padding:2px 7px;border-radius:999px;color:#087c78;background:#e8f7f5;font-weight:650}.shell:has(.reference-sidebar-nav) .source-card-copy .source-health-error{color:#b42318;font-size:11px;line-height:1.4}.shell:has(.reference-sidebar-nav) .source-card-copy strong{color:var(--heading);font-size:14px;font-weight:670}.shell:has(.reference-sidebar-nav) .source-card-copy small{color:var(--muted);font-size:11.5px}.shell:has(.reference-sidebar-nav) .source-card footer{min-height:34px;padding-top:10px;border-top:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .source-connection-status{display:inline-flex;align-items:center;gap:6px;color:var(--muted);font-size:11px;font-weight:550}.shell:has(.reference-sidebar-nav) .source-connection-status i{width:6px;height:6px;border-radius:50%;background:#22a06b;box-shadow:0 0 0 3px #e6f6ef}.shell:has(.reference-sidebar-nav) .source-connection-status.error i{background:#cf3a43;box-shadow:0 0 0 3px #fdebed}.shell:has(.reference-sidebar-nav) .source-connection-status.warning i{background:#c98709;box-shadow:0 0 0 3px #fff5db}.shell:has(.reference-sidebar-nav) .source-intelligence-panel{overflow:hidden;border:1px solid var(--border);border-radius:12px;background:#fff}.shell:has(.reference-sidebar-nav) .source-intelligence-panel>header{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:16px 20px;border-bottom:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .source-intelligence-panel h2{color:var(--heading);font-size:14px;font-weight:670}.shell:has(.reference-sidebar-nav) .source-intelligence-panel header p,.shell:has(.reference-sidebar-nav) .source-coverage-disclaimer{margin-top:3px;color:var(--muted);font-size:11px;line-height:17px}.shell:has(.reference-sidebar-nav) .source-intelligence-panel header>span{flex:0 0 auto;padding:4px 8px;border-radius:999px;color:#52677f;background:var(--subtle);font-size:10.5px;font-weight:650}.shell:has(.reference-sidebar-nav) .source-coverage-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 24px;padding:18px 20px 12px}.shell:has(.reference-sidebar-nav) .source-coverage-row{display:grid;grid-template-columns:minmax(110px,1fr) minmax(80px,1.2fr) 38px 40px;align-items:center;gap:9px;color:#344760;font-size:11px}.shell:has(.reference-sidebar-nav) .source-coverage-row>div{height:5px;overflow:hidden;border-radius:999px;background:#e8eef2}.shell:has(.reference-sidebar-nav) .source-coverage-row>div i{display:block;height:100%;border-radius:inherit;background:#0fa39e}.shell:has(.reference-sidebar-nav) .source-coverage-row strong,.shell:has(.reference-sidebar-nav) .source-coverage-row small{text-align:right;font-size:10.5px}.shell:has(.reference-sidebar-nav) .source-coverage-row small{color:var(--muted)}.shell:has(.reference-sidebar-nav) .source-coverage-row.unknown>div{background:repeating-linear-gradient(135deg,#e8eef2,#e8eef2 5px,#f7f9fb 5px 10px)}.shell:has(.reference-sidebar-nav) .source-coverage-row.unknown strong,.shell:has(.reference-sidebar-nav) .source-coverage-row.unknown small{color:var(--muted)}.shell:has(.reference-sidebar-nav) .source-coverage-disclaimer{margin:0;padding:0 20px 16px}.shell:has(.reference-sidebar-nav) .source-evidence-notes{border-top:1px solid var(--divider);padding:0 20px}.shell:has(.reference-sidebar-nav) .source-evidence-notes summary{padding:13px 0;color:var(--heading);cursor:pointer;font-size:11.5px;font-weight:650}.shell:has(.reference-sidebar-nav) .source-evidence-notes>div{padding:10px 0;border-top:1px solid var(--divider);font-size:11px}.shell:has(.reference-sidebar-nav) .source-evidence-notes p{margin:3px 0;color:#425570}.shell:has(.reference-sidebar-nav) .source-evidence-notes small{color:var(--muted)}.shell:has(.reference-sidebar-nav) .source-scope-fields{margin:0 24px 16px;border:1px solid var(--divider);border-radius:8px}.shell:has(.reference-sidebar-nav) .source-scope-fields summary{padding:11px 13px;color:#344760;cursor:pointer;font-size:11.5px;font-weight:650}.shell:has(.reference-sidebar-nav) .source-scope-fields>div{display:grid;grid-template-columns:1fr 1fr;gap:12px;padding:0 13px 13px}.shell:has(.reference-sidebar-nav) .source-card .source-row-menu button{width:28px;height:28px;display:grid;place-items:center;padding:0}.shell:has(.reference-sidebar-nav) .sources-add-card{display:grid;place-content:center;justify-items:center;gap:5px;padding:20px;border-style:dashed;color:var(--muted);text-align:center}.shell:has(.reference-sidebar-nav) .sources-add-card>span{width:34px;height:34px;display:grid;place-items:center;margin-bottom:4px;border-radius:8px;color:var(--brand-dark);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .sources-add-card strong{color:var(--heading);font-size:12.5px;font-weight:650}.shell:has(.reference-sidebar-nav) .sources-add-card small{font-size:11px;line-height:16px}.shell:has(.reference-sidebar-nav) .sources-add-card:hover{border-color:#9bcfca;background:#fcfffe}.shell:has(.reference-sidebar-nav) .sources-data-panel>header{height:60px;min-height:60px;gap:8px;padding:0 20px;border-bottom-color:var(--divider);color:var(--heading);font-size:14px;font-weight:600}.shell:has(.reference-sidebar-nav) .sources-table-head,.shell:has(.reference-sidebar-nav) .sources-data-row{grid-template-columns:minmax(260px,1fr) 140px 88px;padding-inline:20px}.shell:has(.reference-sidebar-nav) .sources-table-head{height:40px;min-height:40px;color:var(--muted);background:var(--subtle);font-size:12px;font-weight:600}.shell:has(.reference-sidebar-nav) .sources-table-head>:last-child{text-align:right}.shell:has(.reference-sidebar-nav) .sources-data-row{min-height:70px;border-bottom-color:var(--divider)}.shell:has(.reference-sidebar-nav) .sources-data-row:last-child{border-bottom:0}.shell:has(.reference-sidebar-nav) .sources-data-row:hover{background:var(--subtle)}.shell:has(.reference-sidebar-nav) .source-service-icon{width:38px;height:38px;border-radius:8px;color:var(--brand-dark);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .source-service-icon .icon{width:20px;height:20px}.shell:has(.reference-sidebar-nav) .sources-name-cell strong{color:var(--heading);font-size:13px;font-weight:600}.shell:has(.reference-sidebar-nav) .sources-name-cell small{color:var(--muted);font-size:11.5px}.shell:has(.reference-sidebar-nav) .source-type-pill{color:var(--brand-dark);background:var(--brand-soft);font-size:11px}.shell:has(.reference-sidebar-nav) .page:has(.authoring-page),.shell:has(.reference-sidebar-nav) .authoring-page{min-height:0}.shell:has(.reference-sidebar-nav) .authoring-page{gap:22px}.shell:has(.reference-sidebar-nav) .authoring-workbench{display:grid;grid-template-columns:minmax(0,1fr);align-items:stretch;gap:0}.shell:has(.reference-sidebar-nav) .authoring-request{min-width:0;overflow:hidden;border-radius:12px!important;background:#fff!important;box-shadow:0 1px 2px #20251f05!important}.shell:has(.reference-sidebar-nav) .authoring-request .panel-body{height:auto;min-height:0;gap:0;padding:0}.shell:has(.reference-sidebar-nav) .authoring-fields{height:auto;min-height:270px;gap:0;padding:24px}.shell:has(.reference-sidebar-nav) .authoring-prompt-block{height:100%;display:grid;grid-template-rows:auto minmax(120px,1fr);gap:16px}.shell:has(.reference-sidebar-nav) .authoring-prompt-title{align-items:flex-start;gap:12px}.shell:has(.reference-sidebar-nav) .authoring-prompt-title>span{width:36px;height:36px;flex:0 0 auto;border-radius:8px;color:var(--brand-dark);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .authoring-prompt-title>div{min-width:0;display:grid;gap:2px}.shell:has(.reference-sidebar-nav) .authoring-prompt-title h2{color:var(--heading);font-size:15px;line-height:20px;font-weight:670}.shell:has(.reference-sidebar-nav) .authoring-prompt-title p{color:var(--muted);font-size:11.5px;line-height:17px}.shell:has(.reference-sidebar-nav) .authoring-request .textarea{height:100%;min-height:140px;padding:14px 15px;border-radius:9px;font-size:13px;line-height:21px;resize:none}.shell:has(.reference-sidebar-nav) .authoring-textarea-wrap{height:100%}.shell:has(.reference-sidebar-nav) .authoring-prompt-foot{min-height:22px;display:flex;align-items:center;justify-content:space-between;gap:16px;color:var(--muted);font-size:11px}.shell:has(.reference-sidebar-nav) .authoring-prompt-foot>span{display:inline-flex;align-items:center;gap:6px}.shell:has(.reference-sidebar-nav) .authoring-prompt-foot small{flex:0 0 auto;color:var(--faint);font-size:11.5px;font-variant-numeric:tabular-nums}.shell:has(.reference-sidebar-nav) .authoring-run-config{min-width:0;display:grid;grid-template-rows:auto auto;overflow:hidden;border:0;border-top:1px solid var(--divider);border-radius:0;background:#fff;box-shadow:none}.shell:has(.reference-sidebar-nav) .authoring-run-config>header{min-height:68px;display:flex;align-items:center;gap:11px;padding:14px 16px;border-bottom:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .authoring-run-config>header>span{width:32px;height:32px;display:grid;flex:0 0 auto;place-items:center;border-radius:7px;color:var(--brand-dark);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .authoring-run-config>header h2{color:var(--heading);font-size:13.5px;line-height:18px;font-weight:670}.shell:has(.reference-sidebar-nav) .authoring-run-config>header p{margin-top:1px;color:var(--muted);font-size:10.5px;line-height:15px}.shell:has(.reference-sidebar-nav) .authoring-run-config .authoring-options{grid-template-columns:repeat(4,minmax(0,1fr));align-content:start;gap:0;margin:0;padding:18px;border:0}.shell:has(.reference-sidebar-nav) .authoring-run-config .authoring-options>*{min-width:0;padding:0 16px;border:0}.shell:has(.reference-sidebar-nav) .authoring-run-config .authoring-options>:first-child{padding-left:0}.shell:has(.reference-sidebar-nav) .authoring-run-config .authoring-options>:last-child{padding-right:0}.shell:has(.reference-sidebar-nav) .authoring-run-config .authoring-options>*+*{border-left:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .authoring-options .field,.shell:has(.reference-sidebar-nav) .screenshot-option{gap:7px}.shell:has(.reference-sidebar-nav) .screenshot-run-choice{display:grid;grid-template-columns:34px minmax(0,1fr) minmax(180px,230px);align-items:center;gap:10px 12px;padding:12px;border:1px solid var(--border);border-radius:9px;background:linear-gradient(135deg,#fff,var(--brand-soft))}.shell:has(.reference-sidebar-nav) .screenshot-run-choice>div{display:grid;gap:2px}.shell:has(.reference-sidebar-nav) .screenshot-run-choice>div strong{color:var(--heading);font-size:12.5px}.shell:has(.reference-sidebar-nav) .screenshot-run-choice>div small{color:var(--muted);font-size:10.5px;line-height:15px}.shell:has(.reference-sidebar-nav) .screenshot-run-choice .screenshot-camera{width:34px;height:34px}.shell:has(.reference-sidebar-nav) .capture-readiness{grid-column:2 / -1;display:flex;align-items:center;gap:5px;font-size:10.5px}.shell:has(.reference-sidebar-nav) .capture-readiness.ready{color:var(--good)}.shell:has(.reference-sidebar-nav) .capture-readiness.missing{color:var(--warn)}.shell:has(.reference-sidebar-nav) .capture-readiness button{padding:0;border:0;color:var(--brand);background:none;font:inherit;cursor:pointer;text-decoration:underline}@media(max-width:720px){.shell:has(.reference-sidebar-nav) .screenshot-run-choice{grid-template-columns:34px minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .screenshot-run-choice>select{grid-column:1 / -1}.shell:has(.reference-sidebar-nav) .capture-readiness{grid-column:1 / -1}}.shell:has(.reference-sidebar-nav) .authoring-control-icon:before{left:5px;width:28px;height:28px;border-radius:6px;background:var(--subtle)}.shell:has(.reference-sidebar-nav) .authoring-control-icon.model:before,.shell:has(.reference-sidebar-nav) .authoring-control-icon.reasoning:before{background:var(--subtle)}.shell:has(.reference-sidebar-nav) .authoring-control-icon>.icon,.shell:has(.reference-sidebar-nav) .authoring-control-icon.agent>.icon,.shell:has(.reference-sidebar-nav) .authoring-control-icon.model>.icon,.shell:has(.reference-sidebar-nav) .authoring-control-icon.reasoning>.icon{left:11px;width:15px;height:15px;color:var(--brand-dark)}.shell:has(.reference-sidebar-nav) .authoring-control-icon .input{min-height:38px;padding-left:42px;font-size:13px}.shell:has(.reference-sidebar-nav) .screenshot-option>div{min-height:56px;display:grid;grid-template-columns:32px minmax(0,1fr) auto;gap:10px;padding:9px 10px;border:1px solid var(--divider);border-radius:8px;background:var(--subtle)}.shell:has(.reference-sidebar-nav) .screenshot-camera{width:32px;height:32px;border-radius:7px;color:var(--brand-dark);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .screenshot-option>div>span:nth-child(2){min-width:0;display:grid;gap:1px}.shell:has(.reference-sidebar-nav) .screenshot-option>div strong{color:var(--heading);font-size:11.5px;line-height:16px;font-weight:650}.shell:has(.reference-sidebar-nav) .screenshot-option>div small{color:var(--muted);font-size:10px;line-height:14px}.shell:has(.reference-sidebar-nav) .screenshot-option .toggle{align-self:center;justify-content:center}.shell:has(.reference-sidebar-nav) .screenshot-option .toggle-track{width:38px;height:22px}.shell:has(.reference-sidebar-nav) .screenshot-option .toggle-track:after{top:3px;left:3px;width:16px;height:16px}.shell:has(.reference-sidebar-nav) .screenshot-option .toggle input:checked+.toggle-track:after{transform:translate(16px)}.shell:has(.reference-sidebar-nav) .authoring-run-config>footer{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:14px 18px;border-top:1px solid var(--divider);background:var(--subtle)}.shell:has(.reference-sidebar-nav) .authoring-run-config>footer .btn{width:auto;min-width:220px;height:40px;font-size:12.5px}.shell:has(.reference-sidebar-nav) .authoring-run-config>footer>small{order:-1;color:var(--muted);font-size:10px;line-height:14px;text-align:left}.shell:has(.reference-sidebar-nav) .authoring-action-card{overflow:hidden}.shell:has(.reference-sidebar-nav) .authoring-action-card-head{min-height:64px;gap:12px;padding:12px 16px;border:0}.shell:has(.reference-sidebar-nav) .live-activity-card .authoring-action-card-head{border-bottom:0}.shell:has(.reference-sidebar-nav) .live-activity-card.open .authoring-action-card-head{border-bottom:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .action-card-icon{width:34px;height:34px;border-radius:7px;color:var(--brand-dark);background:var(--brand-soft)!important}.shell:has(.reference-sidebar-nav) .action-card-copy strong{color:var(--heading);font-size:14px;font-weight:650}.shell:has(.reference-sidebar-nav) .action-card-copy small{color:var(--muted);font-size:12px}.shell:has(.reference-sidebar-nav) .authoring-activity-row strong{color:var(--heading);font-size:14px;font-weight:600}.shell:has(.reference-sidebar-nav) .authoring-activity-row time{color:var(--muted);font-size:12px}.shell:has(.reference-sidebar-nav) .activity-status-icon.ready{border-color:var(--warn);color:var(--warn)}.shell:has(.reference-sidebar-nav) .authoring-live-log{display:grid;gap:10px;padding:12px 16px 16px}.shell:has(.reference-sidebar-nav) .workflow-stages{display:flex;align-items:center;gap:8px;overflow-x:auto;padding:2px 0 4px;list-style:none}.shell:has(.reference-sidebar-nav) .workflow-stages li{flex:0 0 auto;display:flex;align-items:center;gap:6px;color:var(--muted);font-size:10.5px}.shell:has(.reference-sidebar-nav) .workflow-stages li+li:before{width:18px;height:1px;margin-right:2px;background:var(--border);content:""}.shell:has(.reference-sidebar-nav) .workflow-stages li>span{width:18px;height:18px;display:grid;place-items:center;border:1px solid var(--border);border-radius:50%;background:#fff}.shell:has(.reference-sidebar-nav) .workflow-stages li.running{color:var(--brand-dark)}.shell:has(.reference-sidebar-nav) .workflow-stages li.running>span{border-color:var(--brand);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .workflow-stages li.running i{width:7px;height:7px;border-radius:50%;background:var(--brand);animation:pulse 1.2s infinite}.shell:has(.reference-sidebar-nav) .workflow-stages li.completed{color:var(--good)}.shell:has(.reference-sidebar-nav) .workflow-stages li.completed>span{border-color:#9dd9b7;background:var(--good-soft)}.shell:has(.reference-sidebar-nav) .workflow-stages li.failed{color:var(--bad)}.shell:has(.reference-sidebar-nav) .workflow-stages li.failed>span{border-color:#efb3b3;background:var(--bad-soft)}.shell:has(.reference-sidebar-nav) .workflow-stages strong{font-weight:620}.shell:has(.reference-sidebar-nav) .authoring-live-log .live-job-meta{min-height:32px;padding:0;border:0}.shell:has(.reference-sidebar-nav) .authoring-live-actions{margin-left:auto;gap:12px}.shell:has(.reference-sidebar-nav) .authoring-live-actions .btn{min-height:30px}.shell:has(.reference-sidebar-nav) .authoring-live-log .live-terminal{min-height:190px;max-height:360px;border:1px solid var(--divider);border-radius:8px}.shell:has(.reference-sidebar-nav) .authoring-live-empty{padding:20px 16px;color:var(--muted);font-size:13px}.shell:has(.reference-sidebar-nav) .plan-scope-section{display:grid;gap:14px;padding:20px 24px 22px;border-top:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .plan-scope-section>header,.shell:has(.reference-sidebar-nav) .plan-scope-section>header>div{min-width:0;display:flex;align-items:center;gap:10px}.shell:has(.reference-sidebar-nav) .plan-scope-section>header>div{display:grid;gap:1px}.shell:has(.reference-sidebar-nav) .plan-scope-section>header>span{width:32px;height:32px;display:grid;flex:0 0 auto;place-items:center;border-radius:7px;color:var(--brand-dark);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .plan-scope-section h2{color:var(--heading);font-size:13px;font-weight:670}.shell:has(.reference-sidebar-nav) .plan-scope-section p{color:var(--muted);font-size:11px}.shell:has(.reference-sidebar-nav) .plan-scope-options{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.shell:has(.reference-sidebar-nav) .plan-scope-options>button{min-width:0;min-height:82px;display:flex;align-items:flex-start;justify-content:space-between;gap:8px;padding:12px;border:1px solid var(--border);border-radius:9px;color:var(--text);background:#fff;text-align:left}.shell:has(.reference-sidebar-nav) .plan-scope-options>button:hover{border-color:var(--strong-border);background:var(--subtle)}.shell:has(.reference-sidebar-nav) .plan-scope-options>button.active{border-color:var(--brand);background:var(--brand-soft);box-shadow:0 0 0 1px var(--brand)}.shell:has(.reference-sidebar-nav) .plan-scope-options span{min-width:0;display:grid;gap:4px}.shell:has(.reference-sidebar-nav) .plan-scope-options strong{color:var(--heading);font-size:12.5px;font-weight:670}.shell:has(.reference-sidebar-nav) .plan-scope-options small{color:var(--muted);font-size:10.5px;line-height:15px}.shell:has(.reference-sidebar-nav) .plan-scope-options b{flex:0 0 auto;padding:2px 6px;border-radius:5px;color:var(--brand-dark);background:#ffffffbf;font-size:8.5px;font-weight:700;letter-spacing:.03em;text-transform:uppercase}.shell:has(.reference-sidebar-nav) .plan-scope-evidence{color:var(--muted);font-size:10.5px}.shell:has(.reference-sidebar-nav) .documentation-plan-review{display:grid;gap:16px}.shell:has(.reference-sidebar-nav) .plan-review-header{min-height:108px;display:flex;align-items:center;justify-content:space-between;gap:24px;padding:18px 20px;border:1px solid var(--border);border-radius:12px;background:linear-gradient(135deg,#fff 50%,var(--brand-soft));box-shadow:0 1px 2px #20251f08}.shell:has(.reference-sidebar-nav) .plan-review-header small{color:var(--brand-dark);font-size:9.5px;font-weight:700;letter-spacing:.05em;text-transform:uppercase}.shell:has(.reference-sidebar-nav) .plan-review-header h2{color:var(--heading);font-family:var(--display);font-size:20px;line-height:26px;font-weight:650}.shell:has(.reference-sidebar-nav) .plan-review-header p{color:var(--muted);font-size:11.5px;line-height:17px}.shell:has(.reference-sidebar-nav) .plan-progress-panel .panel-body{padding:18px}.shell:has(.reference-sidebar-nav) .plan-progress{display:flex;align-items:center;gap:14px}.shell:has(.reference-sidebar-nav) .plan-progress .spinner{width:22px;height:22px;color:var(--brand)}.shell:has(.reference-sidebar-nav) .plan-progress div{display:grid;gap:2px}.shell:has(.reference-sidebar-nav) .plan-progress strong{color:var(--heading);font-size:13px}.shell:has(.reference-sidebar-nav) .plan-progress p{color:var(--muted);font-size:11px}.shell:has(.reference-sidebar-nav) .plan-questions .panel-body{gap:0;padding:0}.shell:has(.reference-sidebar-nav) .plan-questions article{display:grid;grid-template-columns:28px minmax(0,1fr) auto;align-items:center;gap:10px;padding:13px 16px;border-top:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .plan-questions article:first-child{border-top:0}.shell:has(.reference-sidebar-nav) .plan-questions article>span{width:28px;height:28px;display:grid;place-items:center;border-radius:50%;color:#976a00;background:#fff6d8}.shell:has(.reference-sidebar-nav) .plan-questions article>div{min-width:0;display:grid;gap:6px}.shell:has(.reference-sidebar-nav) .plan-questions article .input{margin-top:3px}.shell:has(.reference-sidebar-nav) .plan-questions footer{display:flex;justify-content:flex-end;gap:8px;padding:12px 16px;border-top:1px solid var(--divider);background:var(--subtle)}.shell:has(.reference-sidebar-nav) .plan-questions strong{color:var(--heading);font-size:12px}.shell:has(.reference-sidebar-nav) .plan-questions p,.shell:has(.reference-sidebar-nav) .plan-questions small{color:var(--muted);font-size:10.5px;line-height:15px}.shell:has(.reference-sidebar-nav) .plan-questions small{color:#765711}.shell:has(.reference-sidebar-nav) .plan-brief-panel .panel-body{gap:14px}.shell:has(.reference-sidebar-nav) .plan-brief-panel .textarea{resize:vertical}.shell:has(.reference-sidebar-nav) .plan-brief-summary{display:grid;gap:4px;padding:12px 13px;border:1px solid var(--divider);border-radius:7px;background:var(--subtle)}.shell:has(.reference-sidebar-nav) .plan-coverage-summary,.shell:has(.reference-sidebar-nav) .plan-version-summary{display:grid;gap:9px;padding:12px 13px;border:1px solid var(--divider);border-radius:7px;background:#fff}.shell:has(.reference-sidebar-nav) .plan-coverage-summary header,.shell:has(.reference-sidebar-nav) .plan-version-summary header,.shell:has(.reference-sidebar-nav) .plan-coverage-summary header>div{display:flex;align-items:center;justify-content:space-between;gap:10px}.shell:has(.reference-sidebar-nav) .plan-coverage-summary header>div{align-items:flex-start;flex-direction:column;gap:1px}.shell:has(.reference-sidebar-nav) .plan-coverage-summary header span,.shell:has(.reference-sidebar-nav) .plan-version-summary header small,.shell:has(.reference-sidebar-nav) .plan-version-summary>div span{color:var(--muted);font-size:10px}.shell:has(.reference-sidebar-nav) .plan-coverage-summary ul,.shell:has(.reference-sidebar-nav) .plan-version-summary ul{display:grid;gap:5px;margin:0;padding:0;list-style:none}.shell:has(.reference-sidebar-nav) .plan-coverage-summary li,.shell:has(.reference-sidebar-nav) .plan-version-summary li{display:flex;align-items:center;justify-content:space-between;gap:10px;color:var(--text);font-size:10.5px}.shell:has(.reference-sidebar-nav) .plan-coverage-summary li span{min-width:0;display:flex;align-items:baseline;gap:6px}.shell:has(.reference-sidebar-nav) .plan-coverage-summary em{flex:0 0 auto;color:var(--muted);font-size:9px;font-style:normal;text-transform:capitalize}.shell:has(.reference-sidebar-nav) .plan-coverage-summary li>select,.shell:has(.reference-sidebar-nav) .plan-coverage-summary li>.select{width:auto;min-width:132px;min-height:28px;padding-block:3px;font-size:10px}.shell:has(.reference-sidebar-nav) .plan-coverage-summary em.needs-human,.shell:has(.reference-sidebar-nav) .plan-coverage-summary em.excluded,.shell:has(.reference-sidebar-nav) .plan-version-summary .remove{color:#a13a4c}.shell:has(.reference-sidebar-nav) .plan-version-summary>div{display:flex;flex-wrap:wrap;gap:12px}.shell:has(.reference-sidebar-nav) .plan-version-summary .create{color:#16794b}.shell:has(.reference-sidebar-nav) .plan-version-summary .update{color:#286cc4}.shell:has(.reference-sidebar-nav) .plan-version-summary summary{width:fit-content;cursor:pointer;color:var(--brand-dark);font-size:10px;font-weight:650}.shell:has(.reference-sidebar-nav) .plan-brief-summary strong{color:var(--heading);font-size:10.5px}.shell:has(.reference-sidebar-nav) .plan-brief-summary p{color:var(--muted);font-size:10.5px;line-height:16px}.shell:has(.reference-sidebar-nav) .plan-pages-panel .panel-body{padding:0}.shell:has(.reference-sidebar-nav) .plan-page-list{display:grid}.shell:has(.reference-sidebar-nav) .plan-page-card{position:relative;display:grid;grid-template-columns:38px minmax(0,1fr) 30px;gap:12px;padding:16px;border-top:1px solid var(--divider);box-shadow:inset 3px 0 0 transparent}.shell:has(.reference-sidebar-nav) .plan-page-card:first-child{border-top:0}.shell:has(.reference-sidebar-nav) .plan-page-card.must-have{box-shadow:inset 3px 0 0 var(--brand)}.shell:has(.reference-sidebar-nav) .plan-page-card.later{background:var(--subtle)}.shell:has(.reference-sidebar-nav) .plan-page-order{display:grid;align-content:start;justify-items:center;gap:2px}.shell:has(.reference-sidebar-nav) .plan-page-order strong{width:28px;height:28px;display:grid;place-items:center;border-radius:7px;color:var(--brand-dark);background:var(--brand-soft);font-size:11px}.shell:has(.reference-sidebar-nav) .plan-page-order button,.shell:has(.reference-sidebar-nav) .plan-page-remove{width:27px;height:25px;display:grid;place-items:center;border-radius:5px;color:var(--muted)}.shell:has(.reference-sidebar-nav) .plan-page-order button:first-of-type .icon{transform:rotate(180deg)}.shell:has(.reference-sidebar-nav) .plan-page-order button:hover:not(:disabled),.shell:has(.reference-sidebar-nav) .plan-page-remove:hover{color:var(--heading);background:var(--subtle)}.shell:has(.reference-sidebar-nav) .plan-page-order button:disabled{opacity:.25}.shell:has(.reference-sidebar-nav) .plan-page-fields{min-width:0;display:grid;gap:9px}.shell:has(.reference-sidebar-nav) .plan-page-title-row{display:grid;grid-template-columns:minmax(180px,.8fr) minmax(220px,1.2fr);gap:9px}.shell:has(.reference-sidebar-nav) .plan-page-title-row .input:first-child{color:var(--heading);font-weight:650}.shell:has(.reference-sidebar-nav) .plan-page-selects{display:grid;grid-template-columns:140px 150px minmax(160px,1fr);gap:9px}.shell:has(.reference-sidebar-nav) .plan-page-fields .textarea{min-height:62px;resize:vertical}.shell:has(.reference-sidebar-nav) .plan-page-fields details{color:var(--muted);font-size:10.5px}.shell:has(.reference-sidebar-nav) .plan-page-fields summary{width:fit-content;cursor:pointer;color:var(--brand-dark);font-weight:650}.shell:has(.reference-sidebar-nav) .plan-page-fields details p,.shell:has(.reference-sidebar-nav) .plan-page-fields details ul{margin-top:7px}.shell:has(.reference-sidebar-nav) .plan-page-fields details ul{display:grid;gap:3px;padding-left:18px}.shell:has(.reference-sidebar-nav) .plan-page-fields details code{overflow-wrap:anywhere;font-size:10px}.shell:has(.reference-sidebar-nav) .plan-page-remove{color:#b4233f}.shell:has(.reference-sidebar-nav) .plan-revision-panel .panel-body{gap:10px}.shell:has(.reference-sidebar-nav) .plan-revision-panel .textarea{resize:vertical}.shell:has(.reference-sidebar-nav) .plan-revision-panel .form-actions{margin:0;padding:0}.shell:has(.reference-sidebar-nav) .plan-approval-bar{position:sticky;bottom:12px;z-index:8;min-height:66px;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 14px;border:1px solid var(--strong-border);border-radius:11px;background:#fffffff5;box-shadow:0 10px 30px #1a22351f;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px)}.shell:has(.reference-sidebar-nav) .plan-approval-bar>span,.shell:has(.reference-sidebar-nav) .plan-approval-bar>div{display:flex;align-items:center;gap:9px}.shell:has(.reference-sidebar-nav) .plan-approval-bar>span{color:var(--brand-dark)}.shell:has(.reference-sidebar-nav) .plan-approval-bar small{color:var(--muted);font-size:10.5px}.shell:has(.reference-sidebar-nav) .plan-complete-panel .panel-body{gap:18px;padding:22px}.shell:has(.reference-sidebar-nav) .plan-complete,.shell:has(.reference-sidebar-nav) .plan-complete-actions{display:flex;align-items:center;gap:14px}.shell:has(.reference-sidebar-nav) .plan-complete>span{width:46px;height:46px;display:grid;flex:0 0 auto;place-items:center;border-radius:50%;color:#14845a;background:#e7f7ef}.shell:has(.reference-sidebar-nav) .plan-complete h2{color:var(--heading);font-family:var(--display);font-size:20px}.shell:has(.reference-sidebar-nav) .plan-complete p{margin-top:3px;color:var(--muted);font-size:11.5px;line-height:17px}.shell:has(.reference-sidebar-nav) .plan-complete-actions{justify-content:flex-end;padding-top:16px;border-top:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .plan-review-header{min-height:0;display:flex;align-items:center;justify-content:space-between;gap:18px;padding:15px 17px;background:#fff}.shell:has(.reference-sidebar-nav) .plan-review-header>.plan-review-heading{min-width:0;display:flex;align-items:center;gap:11px}.shell:has(.reference-sidebar-nav) .plan-review-summary-icon{width:36px;height:36px;display:grid;flex:0 0 auto;place-items:center;border-radius:8px;color:var(--brand-dark);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .plan-review-heading-copy{min-width:0;display:grid;gap:1px}.shell:has(.reference-sidebar-nav) .plan-review-heading-copy h2{color:var(--heading);font-family:var(--display);font-size:16px;line-height:21px;font-weight:660}.shell:has(.reference-sidebar-nav) .plan-review-change-summary{display:flex;flex-wrap:wrap;align-items:center;gap:5px 13px;margin-top:2px}.shell:has(.reference-sidebar-nav) .plan-review-change-summary .visual{color:#6a2bd1}.shell:has(.reference-sidebar-nav) .plan-review-change-summary .visual svg{margin-right:3px;vertical-align:-2px}.shell:has(.reference-sidebar-nav) .plan-screenshot-panel .panel-body{gap:12px}.shell:has(.reference-sidebar-nav) .plan-screenshot-summary{display:grid;grid-template-columns:36px minmax(0,1fr) minmax(150px,210px);align-items:center;gap:12px}.shell:has(.reference-sidebar-nav) .plan-screenshot-summary>div{display:grid;gap:3px}.shell:has(.reference-sidebar-nav) .plan-screenshot-summary strong{color:var(--heading);font-size:13px}.shell:has(.reference-sidebar-nav) .plan-screenshot-summary small{color:var(--muted);font-size:11px;line-height:16px}.shell:has(.reference-sidebar-nav) .plan-capture-readiness{display:flex;align-items:center;gap:9px;padding:9px 11px;border-radius:7px;background:var(--subtle)}.shell:has(.reference-sidebar-nav) .plan-capture-readiness.ready{color:var(--good)}.shell:has(.reference-sidebar-nav) .plan-capture-readiness.missing{color:var(--warn)}.shell:has(.reference-sidebar-nav) .plan-capture-readiness>span{min-width:0;display:grid;gap:1px;flex:1}.shell:has(.reference-sidebar-nav) .plan-capture-readiness strong{font-size:11.5px}.shell:has(.reference-sidebar-nav) .plan-capture-readiness small{color:var(--muted);font-size:10.5px}.shell:has(.reference-sidebar-nav) .plan-screenshot-pages{display:grid;gap:1px;margin:0;padding:0;border:1px solid var(--border);border-radius:7px;list-style:none;overflow:hidden}.shell:has(.reference-sidebar-nav) .plan-screenshot-pages li{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:9px 11px;background:#fff}.shell:has(.reference-sidebar-nav) .plan-screenshot-pages span{min-width:0;display:grid;gap:2px}.shell:has(.reference-sidebar-nav) .plan-screenshot-pages strong{color:var(--heading);font-size:11.5px}.shell:has(.reference-sidebar-nav) .plan-screenshot-pages small{color:var(--muted);font-size:10.5px;overflow-wrap:anywhere}.shell:has(.reference-sidebar-nav) .plan-screenshot-pages b{flex:0 0 auto;color:#6a2bd1;font-size:10.5px}.shell:has(.reference-sidebar-nav) .plan-page-visuals{display:grid;gap:9px;padding:11px;border:1px solid var(--border);border-radius:8px;background:#fbf9ff}.shell:has(.reference-sidebar-nav) .plan-page-visuals h3{color:var(--heading);font-size:11.5px}@media(max-width:720px){.shell:has(.reference-sidebar-nav) .plan-screenshot-summary{grid-template-columns:36px minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .plan-screenshot-summary>select{grid-column:1 / -1}}.shell:has(.reference-sidebar-nav) .plan-review-change-summary span{display:inline-flex;align-items:center;gap:5px;color:var(--muted);font-size:9.5px;font-weight:600}.shell:has(.reference-sidebar-nav) .plan-review-change-summary i{width:6px;height:6px;border-radius:50%;background:#9aa5b8}.shell:has(.reference-sidebar-nav) .plan-review-change-summary .create i{background:#18a478}.shell:has(.reference-sidebar-nav) .plan-review-change-summary .update i{background:#3a7bd5}.shell:has(.reference-sidebar-nav) .plan-review-change-summary .remove i{background:#d24a68}.shell:has(.reference-sidebar-nav) .plan-review-actions{display:flex;flex:0 0 auto;align-items:center;gap:7px}.shell:has(.reference-sidebar-nav) .plan-pages-panel .panel-head{align-items:center}.shell:has(.reference-sidebar-nav) .plan-page-filters{display:flex;align-items:center;gap:18px;overflow-x:auto;padding:0 17px;border-bottom:1px solid var(--divider);background:#fff}.shell:has(.reference-sidebar-nav) .plan-page-filters button{min-height:40px;display:inline-flex;flex:0 0 auto;align-items:center;padding:0 1px;border-radius:0;color:var(--muted);font-size:10.5px;font-weight:620}.shell:has(.reference-sidebar-nav) .plan-page-filters button:hover{color:var(--heading)}.shell:has(.reference-sidebar-nav) .plan-page-filters button.active{color:var(--brand-dark);box-shadow:inset 0 -2px 0 var(--brand)}.shell:has(.reference-sidebar-nav) .plan-page-outline{display:grid;gap:0;padding:5px 18px 18px;background:#fff}.shell:has(.reference-sidebar-nav) .plan-tree-folder,.shell:has(.reference-sidebar-nav) .plan-tree-file{display:grid;flex:0 0 auto;place-items:center;color:var(--brand-dark)}.shell:has(.reference-sidebar-nav) .plan-tree-section>header>div{min-width:0;display:flex;align-items:center;gap:7px}.shell:has(.reference-sidebar-nav) .plan-tree-section>header strong{color:var(--heading);font-size:11.5px;font-weight:680}.shell:has(.reference-sidebar-nav) .plan-tree-section>header small{display:inline-flex;align-items:center;gap:7px;color:var(--muted);font-size:9.5px}.shell:has(.reference-sidebar-nav) .plan-tree-section>header small:before{content:"";width:2px;height:2px;border-radius:50%;background:var(--faint)}.shell:has(.reference-sidebar-nav) .plan-tree-sections{display:grid;margin:0;padding:0;border-left:0}.shell:has(.reference-sidebar-nav) .plan-tree-section{position:relative;display:grid;padding-top:12px}.shell:has(.reference-sidebar-nav) .plan-tree-section>header{position:relative;min-height:34px;display:flex;align-items:center;gap:9px}.shell:has(.reference-sidebar-nav) .plan-tree-section>header:before{display:none}.shell:has(.reference-sidebar-nav) .plan-tree-folder{width:28px;height:28px;border:1px solid #d9e9e6;border-radius:6px;background:#f1faf8}.shell:has(.reference-sidebar-nav) .plan-tree-pages{display:grid;margin:4px 0 0 13px;padding-left:20px;border-left:1px solid #dfe4df}.shell:has(.reference-sidebar-nav) .plan-tree-page{position:relative;min-width:0;min-height:46px;display:grid;grid-template-columns:27px minmax(0,1fr) 18px;align-items:center;gap:10px;padding:8px 10px;border:1px solid transparent;border-bottom-color:var(--divider);border-radius:7px;color:var(--text);background:#fff;text-align:left}.shell:has(.reference-sidebar-nav) .plan-tree-page:before{content:"";position:absolute;top:22px;left:-22px;width:20px;border-top:1px solid #dfe4df}.shell:has(.reference-sidebar-nav) .plan-tree-page:hover{border-color:var(--border);background:var(--subtle);box-shadow:0 2px 7px #1d283c0d}.shell:has(.reference-sidebar-nav) .plan-tree-page:focus-visible{z-index:1;outline:2px solid var(--brand);outline-offset:1px}.shell:has(.reference-sidebar-nav) .plan-tree-file{width:27px;height:27px;border-radius:6px;color:var(--muted);background:#f1f3f6}.shell:has(.reference-sidebar-nav) .plan-tree-page.create .plan-tree-file{color:#087252;background:#e6f7ef}.shell:has(.reference-sidebar-nav) .plan-tree-page.update .plan-tree-file{color:#1759a8;background:#e8f1ff}.shell:has(.reference-sidebar-nav) .plan-tree-page.remove .plan-tree-file{color:#a31f3b;background:#fff0f3}.shell:has(.reference-sidebar-nav) .plan-page-copy{min-width:0;display:grid;gap:2px}.shell:has(.reference-sidebar-nav) .plan-page-title-line{min-width:0;display:flex;align-items:center;gap:7px}.shell:has(.reference-sidebar-nav) .plan-page-copy strong,.shell:has(.reference-sidebar-nav) .plan-page-copy small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .plan-page-copy strong{color:var(--heading);font-size:11.5px;font-weight:650}.shell:has(.reference-sidebar-nav) .plan-page-copy small{color:var(--muted);font-size:10px}.shell:has(.reference-sidebar-nav) .plan-page-action{display:inline-flex;flex:0 0 auto;align-items:center;justify-content:center;padding:2px 5px;border-radius:4px;color:#40506b;background:#edf0f4;font-size:7.5px;line-height:12px;font-weight:720;letter-spacing:.045em;text-transform:uppercase;white-space:nowrap}.shell:has(.reference-sidebar-nav) .plan-page-action.create{color:#087252;background:#e6f7ef}.shell:has(.reference-sidebar-nav) .plan-page-action.update{color:#1759a8;background:#e8f1ff}.shell:has(.reference-sidebar-nav) .plan-page-action.remove{color:#a31f3b;background:#fff0f3}.shell:has(.reference-sidebar-nav) .plan-tree-page>.icon{color:var(--muted)}.shell:has(.reference-sidebar-nav) .plan-page-empty{min-height:150px;display:grid;place-items:center;align-content:center;gap:4px;padding:24px;color:var(--muted);text-align:center}.shell:has(.reference-sidebar-nav) .plan-page-empty strong{color:var(--heading);font-size:12px}.shell:has(.reference-sidebar-nav) .plan-page-empty p{font-size:10.5px}.shell:has(.reference-sidebar-nav) .plan-revision-actions{display:flex;align-items:center;justify-content:space-between;gap:12px}.shell:has(.reference-sidebar-nav) .plan-revision-actions small{color:#976a00;font-size:10px}.shell:has(.reference-sidebar-nav) .plan-page-drawer-backdrop{position:fixed;z-index:500;inset:0;display:flex;justify-content:flex-end;background:#141b2c52;-webkit-backdrop-filter:blur(1px);backdrop-filter:blur(1px)}.shell:has(.reference-sidebar-nav) .plan-page-drawer{width:min(520px,92vw);height:100%;display:grid;grid-template-rows:auto minmax(0,1fr) auto;color:var(--text);background:#fff;box-shadow:-18px 0 48px #141b2c2e;animation:plan-drawer-in .16s ease-out}@keyframes plan-drawer-in{0%{transform:translate(24px);opacity:.6}to{transform:translate(0);opacity:1}}.shell:has(.reference-sidebar-nav) .plan-page-drawer>header,.shell:has(.reference-sidebar-nav) .plan-page-drawer>footer{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:15px 18px;border-bottom:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .plan-page-drawer>header>div{display:grid;gap:2px}.shell:has(.reference-sidebar-nav) .plan-page-drawer>header small{color:var(--muted);font-size:9.5px}.shell:has(.reference-sidebar-nav) .plan-page-drawer>header h2{color:var(--heading);font-family:var(--display);font-size:18px}.shell:has(.reference-sidebar-nav) .plan-page-drawer>header>button{width:32px;height:32px;display:grid;place-items:center;border-radius:6px;color:var(--muted)}.shell:has(.reference-sidebar-nav) .plan-page-drawer>header>button:hover{color:var(--heading);background:var(--subtle)}.shell:has(.reference-sidebar-nav) .plan-page-drawer-body{min-height:0;display:grid;align-content:start;gap:17px;overflow-y:auto;padding:18px}.shell:has(.reference-sidebar-nav) .plan-page-drawer-name{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:10px}.shell:has(.reference-sidebar-nav) .plan-page-drawer-name .input{color:var(--heading);font-size:15px;font-weight:650}.shell:has(.reference-sidebar-nav) .plan-page-drawer-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.shell:has(.reference-sidebar-nav) .plan-page-reason{display:grid;gap:6px;padding:13px;border:1px solid var(--divider);border-radius:8px;background:var(--subtle)}.shell:has(.reference-sidebar-nav) .plan-page-reason h3{color:var(--heading);font-size:11px}.shell:has(.reference-sidebar-nav) .plan-page-reason p,.shell:has(.reference-sidebar-nav) .plan-page-reason summary,.shell:has(.reference-sidebar-nav) .plan-page-reason li,.shell:has(.reference-sidebar-nav) .plan-page-advanced small{color:var(--muted);font-size:10.5px;line-height:16px}.shell:has(.reference-sidebar-nav) .plan-page-reason summary,.shell:has(.reference-sidebar-nav) .plan-page-advanced summary{width:fit-content;cursor:pointer;color:var(--brand-dark);font-weight:650}.shell:has(.reference-sidebar-nav) .plan-page-reason ul{display:grid;gap:4px;padding:7px 0 0 18px}.shell:has(.reference-sidebar-nav) .plan-page-reason code{overflow-wrap:anywhere;font-size:9.5px}.shell:has(.reference-sidebar-nav) .plan-evidence-list{display:grid;gap:6px;padding-top:8px}.shell:has(.reference-sidebar-nav) .plan-evidence-list article{display:grid;grid-template-columns:auto minmax(0,1fr);align-items:start;gap:8px;padding:7px 8px;border:1px solid var(--divider);border-radius:6px;background:#fff}.shell:has(.reference-sidebar-nav) .plan-evidence-list article>span{padding:1px 5px;border-radius:4px;color:var(--brand-dark);background:var(--brand-soft);font-size:9px;font-weight:700}.shell:has(.reference-sidebar-nav) .plan-evidence-list article>div{min-width:0;display:grid;gap:2px}.shell:has(.reference-sidebar-nav) .plan-page-advanced{padding-top:2px}.shell:has(.reference-sidebar-nav) .plan-page-advanced>div{display:grid;gap:6px;padding-top:12px}.shell:has(.reference-sidebar-nav) .plan-page-drawer>footer{justify-content:flex-end;border-top:1px solid var(--divider);border-bottom:0}.shell:has(.reference-sidebar-nav) .plan-page-move{display:flex;gap:6px;margin-right:auto}.shell:has(.reference-sidebar-nav) .review-detail-heading{display:grid;gap:8px}.shell:has(.reference-sidebar-nav) .review-back-button{width:fit-content;display:inline-flex;align-items:center;gap:5px;padding:3px 5px 3px 1px;border-radius:5px;color:var(--muted);font-size:11.5px;font-weight:600}.shell:has(.reference-sidebar-nav) .review-back-button .icon{transform:rotate(180deg)}.shell:has(.reference-sidebar-nav) .review-back-button:hover{color:var(--heading)}.shell:has(.reference-sidebar-nav) .proposal-index-panel{overflow:hidden;border-radius:12px;box-shadow:0 1px 2px #20251f08}.shell:has(.reference-sidebar-nav) .proposal-index-table{border:0;border-radius:0}.shell:has(.reference-sidebar-nav) .proposal-index-table th{height:40px;padding:0 16px;color:var(--muted);background:var(--subtle);font-size:10.5px;font-weight:650;letter-spacing:.03em;text-transform:uppercase}.shell:has(.reference-sidebar-nav) .proposal-index-table td{height:72px;padding:10px 16px;border-bottom-color:var(--divider);color:var(--muted);font-size:11.5px}.shell:has(.reference-sidebar-nav) .proposal-index-table th:first-child{width:42%}.shell:has(.reference-sidebar-nav) .proposal-index-table th:last-child,.shell:has(.reference-sidebar-nav) .proposal-index-table td:last-child{width:38px;padding-left:4px;color:var(--faint)}.shell:has(.reference-sidebar-nav) .proposal-index-row{cursor:pointer;outline:none}.shell:has(.reference-sidebar-nav) .proposal-index-row:hover td,.shell:has(.reference-sidebar-nav) .proposal-index-row:focus-visible td{background:var(--subtle)}.shell:has(.reference-sidebar-nav) .proposal-index-row:focus-visible td:first-child{box-shadow:inset 3px 0 0 var(--brand)}.shell:has(.reference-sidebar-nav) .proposal-index-name{min-width:0;display:flex;align-items:center;gap:11px}.shell:has(.reference-sidebar-nav) .proposal-index-name>span:first-child{width:34px;height:34px;display:grid;flex:0 0 auto;place-items:center;border-radius:7px;color:var(--brand-dark);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .proposal-index-name>span:last-child{min-width:0;display:grid;gap:2px}.shell:has(.reference-sidebar-nav) .proposal-index-name strong,.shell:has(.reference-sidebar-nav) .proposal-index-name small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .proposal-index-name strong{color:var(--heading);font-size:12.5px;line-height:17px;font-weight:650}.shell:has(.reference-sidebar-nav) .proposal-index-name small{color:var(--muted);font-size:10.5px}.shell:has(.reference-sidebar-nav) .proposal-index-counts{display:flex;align-items:center;gap:8px;white-space:nowrap}.shell:has(.reference-sidebar-nav) .proposal-index-counts b{font-size:10.5px;font-weight:650}.shell:has(.reference-sidebar-nav) .proposal-index-counts .added{color:#16794b}.shell:has(.reference-sidebar-nav) .proposal-index-counts .modified{color:var(--muted)}.shell:has(.reference-sidebar-nav) .proposal-index-counts .deleted{color:#b4233f}.shell:has(.reference-sidebar-nav) .proposal-index-files{display:inline-flex;align-items:center;gap:6px;color:var(--text);font-variant-numeric:tabular-nums}.shell:has(.reference-sidebar-nav) .proposal-index-row time{white-space:nowrap}.shell:has(.reference-sidebar-nav) .sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.shell:has(.reference-sidebar-nav) .review{display:block}.shell:has(.reference-sidebar-nav) .review-main{min-width:0}.shell:has(.reference-sidebar-nav) .proposal-card{overflow:hidden;border:1px solid var(--border);border-radius:12px;background:#fff;box-shadow:0 1px 2px #20251f08}.shell:has(.reference-sidebar-nav) .review-proposal-bar{min-height:54px;display:flex;align-items:center;justify-content:space-between;gap:18px;padding:9px 16px;border-bottom:1px solid var(--divider);background:var(--subtle)}.shell:has(.reference-sidebar-nav) .review-proposal-picker,.shell:has(.reference-sidebar-nav) .review-proposal-meta,.shell:has(.reference-sidebar-nav) .review-proposal-meta>span{display:flex;align-items:center}.shell:has(.reference-sidebar-nav) .review-proposal-picker{min-width:0;flex:1;gap:10px}.shell:has(.reference-sidebar-nav) .review-proposal-picker>span{flex:0 0 auto;color:var(--muted);font-size:11.5px;font-weight:600}.shell:has(.reference-sidebar-nav) .review-proposal-picker .select-wrap{width:min(520px,100%)}.shell:has(.reference-sidebar-nav) .review-proposal-picker .custom-select-trigger{height:34px;min-height:34px;background:#fff;font-size:12px}.shell:has(.reference-sidebar-nav) .review-proposal-meta{flex:0 0 auto;gap:12px}.shell:has(.reference-sidebar-nav) .review-proposal-meta>span{gap:6px;color:var(--muted);font-size:11.5px}.shell:has(.reference-sidebar-nav) .proposal-summary{min-height:94px;grid-template-columns:42px minmax(0,1fr) auto;align-items:center;gap:14px;padding:14px 20px}.shell:has(.reference-sidebar-nav) .proposal-summary-icon{width:42px;height:42px;border:0;border-radius:9px;color:var(--brand-dark);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .proposal-summary-copy{padding-top:0}.shell:has(.reference-sidebar-nav) .proposal-summary-line{gap:8px 14px}.shell:has(.reference-sidebar-nav) .proposal-summary-line h2{color:var(--heading);font-size:15px;line-height:20px;font-weight:680}.shell:has(.reference-sidebar-nav) .change-counts{gap:8px;font-size:11.5px}.shell:has(.reference-sidebar-nav) .change-counts span i{width:12px;height:12px}.shell:has(.reference-sidebar-nav) .change-counts>b{height:14px}.shell:has(.reference-sidebar-nav) .source-count{margin-top:4px;font-size:11.5px}.shell:has(.reference-sidebar-nav) .proposal-summary-side{min-width:0;gap:10px}.shell:has(.reference-sidebar-nav) .proposal-actions .btn{min-width:94px;height:34px}.shell:has(.reference-sidebar-nav) .proposal-actions .btn.primary{box-shadow:none}.shell:has(.reference-sidebar-nav) .proposal-meta{font-size:10.5px}.shell:has(.reference-sidebar-nav) .review-workspace{min-height:560px;display:block;border-top:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .review-file-copy{min-width:0;display:grid}.shell:has(.reference-sidebar-nav) .review-file-tree,.shell:has(.reference-sidebar-nav) .review-tree-children{display:grid}.shell:has(.reference-sidebar-nav) .review-file-tree{padding:7px 7px 12px}.shell:has(.reference-sidebar-nav) .review-tree-folder>summary{min-height:34px;display:flex;align-items:center;gap:6px;padding:5px 7px 5px calc(7px + var(--tree-depth) * 14px);border-radius:6px;color:var(--muted);cursor:pointer;list-style:none}.shell:has(.reference-sidebar-nav) .review-tree-folder>summary::-webkit-details-marker{display:none}.shell:has(.reference-sidebar-nav) .review-tree-folder>summary:hover{color:var(--heading);background:#ffffffb8}.shell:has(.reference-sidebar-nav) .review-tree-folder>summary>.icon:first-child{transition:transform .15s ease}.shell:has(.reference-sidebar-nav) .review-tree-folder[open]>summary>.icon:first-child{transform:rotate(90deg)}.shell:has(.reference-sidebar-nav) .review-tree-folder>summary strong{min-width:0;overflow:hidden;color:inherit;font-size:11.5px;line-height:16px;font-weight:650;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .review-tree-file{min-width:0;min-height:38px;display:grid;grid-template-columns:28px minmax(0,1fr) auto;align-items:center;gap:7px;padding:5px 7px 5px calc(7px + var(--tree-depth) * 14px);border-radius:7px;text-align:left}.shell:has(.reference-sidebar-nav) .review-tree-file:hover{background:#fff}.shell:has(.reference-sidebar-nav) .review-tree-file.active{background:#fff;box-shadow:inset 0 0 0 1px var(--strong-border),0 1px 2px #20251f0a}.shell:has(.reference-sidebar-nav) .review-file-icon{width:28px;height:28px;display:grid;place-items:center;border-radius:6px;color:var(--muted);background:#fff;border:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .review-tree-file.active .review-file-icon{color:var(--brand-dark);background:var(--brand-soft);border-color:#cde8e5}.shell:has(.reference-sidebar-nav) .review-file-copy strong,.shell:has(.reference-sidebar-nav) .review-file-copy small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .review-file-copy strong{color:var(--heading);font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:11.5px;line-height:16px;font-weight:600}.shell:has(.reference-sidebar-nav) .review-file-copy small{color:var(--muted);font-size:9.5px;line-height:14px}.shell:has(.reference-sidebar-nav) .review-tree-file .badge{padding-inline:5px;font-size:9px;text-transform:capitalize}.shell:has(.reference-sidebar-nav) .review-diff-panel{min-width:0;background:#fff}.shell:has(.reference-sidebar-nav) .review-file-head{position:relative;z-index:3;min-height:62px;display:flex;align-items:center;justify-content:space-between;gap:14px;padding:10px 16px;border-bottom:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .review-file-head>div{min-width:0;display:flex;align-items:center;gap:10px}.shell:has(.reference-sidebar-nav) .review-file-head-main{flex:1}.shell:has(.reference-sidebar-nav) .review-file-head-icon{width:30px;height:30px;display:grid;flex:0 0 auto;place-items:center;border-radius:6px;color:var(--brand-dark);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .review-file-head small{color:var(--muted);font-size:9.5px;line-height:13px;font-weight:650;letter-spacing:.04em;text-transform:uppercase}.shell:has(.reference-sidebar-nav) .review-file-head strong{overflow:hidden;color:var(--heading);font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:12px;line-height:17px;font-weight:600;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .review-file-picker{position:relative;flex:0 0 auto}.shell:has(.reference-sidebar-nav) .review-file-picker-trigger{width:clamp(280px,32vw,380px);max-width:calc(100vw - 180px);min-height:34px;display:inline-flex;align-items:center;gap:7px;padding:0 10px;border:1px solid var(--border);border-radius:7px;color:var(--heading);background:#fff;box-shadow:0 1px 2px #20251f0a;font-size:11.5px}.shell:has(.reference-sidebar-nav) .review-file-picker-trigger:hover,.shell:has(.reference-sidebar-nav) .review-file-picker-trigger.open{border-color:var(--strong-border);background:var(--subtle)}.shell:has(.reference-sidebar-nav) .review-file-picker-trigger>.icon:first-child{color:var(--brand-dark)}.shell:has(.reference-sidebar-nav) .review-file-picker-trigger>strong{font-family:inherit;font-size:inherit;font-weight:650}.shell:has(.reference-sidebar-nav) .review-file-picker-name{min-width:0;max-width:280px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .review-file-picker-status{min-height:19px;display:inline-flex;align-items:center;padding:1px 6px;border-radius:5px;color:var(--brand-dark);background:var(--brand-soft);font-size:9px;font-weight:650;text-transform:capitalize}.shell:has(.reference-sidebar-nav) .review-file-picker-status.added{color:#14845a;background:#e7f7ef}.shell:has(.reference-sidebar-nav) .review-file-picker-status.modified{color:#2d61c8;background:#eaf2ff}.shell:has(.reference-sidebar-nav) .review-file-picker-status.deleted{color:#b62d4e;background:#fff0f3}.shell:has(.reference-sidebar-nav) .review-file-picker-trigger>.icon:last-child{margin-left:auto;color:var(--muted);transform:rotate(90deg);transition:transform .15s ease}.shell:has(.reference-sidebar-nav) .review-file-picker-trigger.open>.icon:last-child{transform:rotate(-90deg)}.shell:has(.reference-sidebar-nav) .review-file-picker-menu{position:absolute;top:calc(100% + 8px);left:0;z-index:20;width:min(680px,calc(100vw - 76px));overflow:hidden;border:1px solid var(--strong-border);border-radius:10px;background:#fff;box-shadow:0 14px 36px #1a22352e,0 3px 9px #1a223514}.shell:has(.reference-sidebar-nav) .review-file-picker-menu>header{min-height:54px;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:9px 11px 8px 13px;border-bottom:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .review-file-picker-menu>header>span{min-width:0;display:grid;gap:1px}.shell:has(.reference-sidebar-nav) .review-file-picker-menu>header strong{font-family:inherit;font-size:12.5px;line-height:17px;font-weight:670}.shell:has(.reference-sidebar-nav) .review-file-picker-menu>header small{color:var(--muted);font-size:10.5px;line-height:14px;letter-spacing:0;text-transform:none}.shell:has(.reference-sidebar-nav) .review-file-picker-menu>header button{width:28px;height:28px;display:grid;flex:0 0 auto;place-items:center;border-radius:6px;color:var(--muted)}.shell:has(.reference-sidebar-nav) .review-file-picker-menu>header button:hover{color:var(--heading);background:var(--subtle)}.shell:has(.reference-sidebar-nav) .review-file-search{position:relative;display:block;margin:10px 10px 4px}.shell:has(.reference-sidebar-nav) .review-file-search>.icon{position:absolute;top:50%;left:10px;z-index:1;color:var(--muted);pointer-events:none;transform:translateY(-50%)}.shell:has(.reference-sidebar-nav) .review-file-search .input{width:100%;height:36px;padding:0 10px 0 32px;border-radius:7px;background:var(--subtle);font-size:11.5px}.shell:has(.reference-sidebar-nav) .review-file-picker-tree{max-height:min(390px,52vh);overflow-y:auto;overscroll-behavior:contain}.shell:has(.reference-sidebar-nav) .review-file-picker-menu .review-file-tree{padding:5px 7px 9px}.shell:has(.reference-sidebar-nav) .review-file-search-empty{min-height:142px;display:grid;align-content:center;justify-items:center;gap:4px;padding:18px;color:var(--muted);text-align:center}.shell:has(.reference-sidebar-nav) .review-file-search-empty strong{margin-top:4px;color:var(--heading);font-family:inherit;font-size:12px;font-weight:650}.shell:has(.reference-sidebar-nav) .review-file-search-empty small{font-size:10.5px}.shell:has(.reference-sidebar-nav) .review-file-picker-menu>footer{min-height:34px;display:flex;align-items:center;padding:7px 12px;border-top:1px solid var(--divider);color:var(--muted);background:var(--subtle);font-size:10.5px}.shell:has(.reference-sidebar-nav) .file-position{flex:0 0 auto;color:var(--muted);font-size:10.5px}.shell:has(.reference-sidebar-nav) .review-toolbar{min-height:58px;padding:9px 12px;border-bottom:1px solid var(--divider);background:#fff}.shell:has(.reference-sidebar-nav) .review-view-control,.shell:has(.reference-sidebar-nav) .review-layout-control{display:flex;align-items:center;gap:7px}.shell:has(.reference-sidebar-nav) .review-toolbar .row-actions{flex-wrap:wrap;gap:8px}.shell:has(.reference-sidebar-nav) .review-toolbar .segmented{padding:2px;border:1px solid var(--border);border-radius:7px;background:var(--subtle)}.shell:has(.reference-sidebar-nav) .review-toolbar .segmented button{height:28px;padding:0 10px;color:var(--muted);font-size:11.5px}.shell:has(.reference-sidebar-nav) .review-toolbar .segmented button.active{color:var(--heading);background:#fff;box-shadow:0 0 0 1px var(--border),0 1px 2px #20251f0d}.shell:has(.reference-sidebar-nav) .review-toolbar .btn{height:32px}.shell:has(.reference-sidebar-nav) .review-toolbar .btn.active-filter{color:var(--brand-dark);border-color:#b9dedb;background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .review-diff-body{min-height:500px;background:var(--subtle)}.shell:has(.reference-sidebar-nav) .review-frame{height:min(68vh,740px);min-height:500px}.shell:has(.reference-sidebar-nav) .publish-page{display:grid;gap:16px}.shell:has(.reference-sidebar-nav) .deploy-target-picker{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}.shell:has(.reference-sidebar-nav) .deploy-target-picker button{min-width:0;display:grid;gap:4px;padding:14px;border:1px solid var(--border);border-radius:10px;color:var(--heading);background:#fff;text-align:left;cursor:pointer}.shell:has(.reference-sidebar-nav) .deploy-target-picker button.selected{border-color:var(--brand);background:var(--brand-soft);box-shadow:0 0 0 1px rgb(var(--primary-rgb) / 12%)}.shell:has(.reference-sidebar-nav) .deploy-target-picker strong{font-size:13px}.shell:has(.reference-sidebar-nav) .deploy-target-picker small{color:var(--muted);font-size:10.5px;line-height:15px}.shell:has(.reference-sidebar-nav) .publish-card{display:grid;gap:16px;padding:20px;border:1px solid var(--border);border-radius:12px;background:#fff}.shell:has(.reference-sidebar-nav) .publish-card-head{display:flex;align-items:center;gap:13px}.shell:has(.reference-sidebar-nav) .publish-card-icon{width:38px;height:38px;display:grid;flex:none;place-items:center;border-radius:9px;color:var(--brand-dark);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .publish-card-head>div{flex:1;min-width:0;display:grid;gap:3px}.shell:has(.reference-sidebar-nav) .publish-card-head h2{margin:0;color:var(--heading);font-size:16px;font-weight:660}.shell:has(.reference-sidebar-nav) .publish-card-head p{margin:0;color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .publish-account-row{display:grid;grid-template-columns:38px minmax(0,1fr) auto;align-items:center;gap:12px;padding:12px 14px;border:1px solid var(--divider);border-radius:10px;background:var(--subtle)}.shell:has(.reference-sidebar-nav) .publish-account-row .avatar{width:38px;height:38px}.shell:has(.reference-sidebar-nav) .publish-account-identity{min-width:0;display:grid;gap:2px}.shell:has(.reference-sidebar-nav) .publish-account-identity strong{color:var(--heading);font-size:13.5px;font-weight:650}.shell:has(.reference-sidebar-nav) .publish-account-identity small{overflow:hidden;color:var(--muted);font-size:11.5px;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .publish-signin-required{display:grid;grid-template-columns:16px minmax(0,1fr);align-items:center;gap:12px;padding:13px 15px;border:1px solid #f0d38a;border-radius:10px;background:#fdf7e6}.shell:has(.reference-sidebar-nav) .publish-signin-required>.icon{color:#a9761b}.shell:has(.reference-sidebar-nav) .publish-signin-required>span{min-width:0;display:grid;gap:3px}.shell:has(.reference-sidebar-nav) .publish-signin-required strong{color:#7a5510;font-size:13px;font-weight:650}.shell:has(.reference-sidebar-nav) .publish-signin-required small{color:#8a6520;font-size:11.5px}.shell:has(.reference-sidebar-nav) .publish-destination{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:14px 20px;margin:0;padding:14px;border:1px solid var(--divider);border-radius:10px;background:var(--subtle)}.shell:has(.reference-sidebar-nav) .publish-destination>div{min-width:0;display:grid;gap:4px}.shell:has(.reference-sidebar-nav) .publish-destination dt{color:var(--faint);font-size:10.5px;font-weight:650;letter-spacing:.05em;text-transform:uppercase}.shell:has(.reference-sidebar-nav) .publish-destination dd{margin:0;min-width:0;overflow:hidden;color:var(--heading);font-size:13px;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .publish-destination dd .input{width:100%;min-height:36px}.shell:has(.reference-sidebar-nav) .deploy-config-actions{display:flex;justify-content:flex-end}.shell:has(.reference-sidebar-nav) .deploy-token-row{display:grid;grid-template-columns:minmax(240px,1fr) auto;align-items:end;gap:8px 10px;padding:12px 14px;border:1px solid var(--divider);border-radius:10px;background:var(--subtle)}.shell:has(.reference-sidebar-nav) .deploy-token-row label{display:grid;gap:6px;color:var(--heading);font-size:11px;font-weight:650}.shell:has(.reference-sidebar-nav) .deploy-token-row small{grid-column:1 / -1;color:var(--muted);font-size:10.5px}@media(max-width:900px){.shell:has(.reference-sidebar-nav) .deploy-target-picker{grid-template-columns:repeat(2,minmax(0,1fr))}}.shell:has(.reference-sidebar-nav) .publish-destination-visibility dd{display:flex;align-items:center;gap:10px;white-space:normal}.shell:has(.reference-sidebar-nav) .publish-destination-visibility small{color:var(--muted);font-size:11px}.shell:has(.reference-sidebar-nav) .visibility-pill{display:inline-flex;align-items:center;gap:5px;padding:3px 9px;border-radius:999px;font-size:12px;font-weight:620}.shell:has(.reference-sidebar-nav) .visibility-pill.private{color:#7754a5;background:#f3edfa}.shell:has(.reference-sidebar-nav) .visibility-pill.public{color:var(--brand-dark);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .publish-link-button{padding:0;border:0;color:var(--brand-dark);font-size:12px;font-weight:600;background:none;text-decoration:underline;cursor:pointer}.shell:has(.reference-sidebar-nav) .publish-card-actions{display:flex;flex-wrap:wrap;align-items:center;gap:10px;padding-top:16px;border-top:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .publish-deploy-button{min-height:40px;padding:0 20px;font-size:13.5px}.shell:has(.reference-sidebar-nav) .publish-card-actions>small{flex:1;min-width:200px;color:var(--muted);font-size:11.5px}.shell:has(.reference-sidebar-nav) .deploy-progress{display:grid;gap:14px;padding:16px 18px 18px;border:1px solid var(--border);border-radius:12px;background:#fff}.shell:has(.reference-sidebar-nav) .deploy-progress.running{border-color:#7bc7c1;box-shadow:0 0 0 1px #15afaa1f}.shell:has(.reference-sidebar-nav) .deploy-progress.failed{border-color:#e6b4b4}.shell:has(.reference-sidebar-nav) .deploy-progress-head{display:flex;align-items:center;gap:12px}.shell:has(.reference-sidebar-nav) .deploy-progress-icon{width:34px;height:34px;display:grid;place-items:center;border-radius:8px;color:var(--brand-dark);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .deploy-progress-icon.failed,.shell:has(.reference-sidebar-nav) .deploy-progress-icon.cancelled{color:#b3261e;background:#fdecea}.shell:has(.reference-sidebar-nav) .deploy-progress-title{flex:1;min-width:0;display:grid;gap:2px}.shell:has(.reference-sidebar-nav) .deploy-progress-title strong{color:var(--heading);font-size:14px;font-weight:650}.shell:has(.reference-sidebar-nav) .deploy-progress-title small{color:var(--muted);font-size:12px}.shell:has(.reference-sidebar-nav) .deploy-progress-bar{display:flex;align-items:center;gap:12px}.shell:has(.reference-sidebar-nav) .deploy-progress-track{position:relative;flex:1;height:6px;overflow:hidden;border-radius:999px;background:var(--divider)}.shell:has(.reference-sidebar-nav) .deploy-progress-track i{display:block;height:100%;border-radius:999px;background:var(--brand-dark);transition:width .4s ease}.shell:has(.reference-sidebar-nav) .deploy-progress-track.running i{background:linear-gradient(90deg,var(--brand-dark),#6fd0c9,var(--brand-dark));background-size:200% 100%;animation:deploy-progress-shimmer 1.6s linear infinite}@keyframes deploy-progress-shimmer{0%{background-position:200% 0}to{background-position:0 0}}.shell:has(.reference-sidebar-nav) .deploy-progress-bar>span{min-width:36px;color:var(--muted);font-size:12px;font-variant-numeric:tabular-nums;text-align:right}.shell:has(.reference-sidebar-nav) .deploy-progress-steps{display:grid;gap:8px;margin:0;padding:0;list-style:none}.shell:has(.reference-sidebar-nav) .deploy-progress-steps li{display:grid;grid-template-columns:18px minmax(0,1fr);align-items:center;gap:10px}.shell:has(.reference-sidebar-nav) .deploy-step-mark{width:18px;height:18px;display:grid;place-items:center;border:1px solid var(--border);border-radius:50%;color:transparent;background:#fff}.shell:has(.reference-sidebar-nav) .deploy-progress-steps li.done .deploy-step-mark{border-color:var(--brand-dark);color:#fff;background:var(--brand-dark)}.shell:has(.reference-sidebar-nav) .deploy-progress-steps li.failed .deploy-step-mark{border-color:#b3261e;color:#fff;background:#b3261e}.shell:has(.reference-sidebar-nav) .deploy-progress-steps li.running .deploy-step-mark{border-color:var(--brand-dark);border-top-color:transparent;animation:deploy-step-spin .8s linear infinite}@keyframes deploy-step-spin{to{transform:rotate(360deg)}}.shell:has(.reference-sidebar-nav) .deploy-step-copy{min-width:0;display:flex;flex-wrap:wrap;align-items:baseline;gap:8px}.shell:has(.reference-sidebar-nav) .deploy-step-copy strong{color:var(--heading);font-size:13px;font-weight:600}.shell:has(.reference-sidebar-nav) .deploy-step-copy small{color:var(--muted);font-size:11.5px}.shell:has(.reference-sidebar-nav) .deploy-progress-log{display:grid;gap:10px;padding-top:12px;border-top:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .deploy-progress-log .live-job-meta{min-height:0;padding:0;border:0}.shell:has(.reference-sidebar-nav) .deploy-log-toggle{display:inline-flex;align-items:center;gap:6px;padding:0;border:0;color:var(--brand-dark);font-size:12px;font-weight:600;background:none;cursor:pointer}.shell:has(.reference-sidebar-nav) .deploy-log-toggle[aria-expanded=false] .icon{transform:rotate(-90deg)}.shell:has(.reference-sidebar-nav) .deploy-progress-log .live-terminal{min-height:160px;max-height:320px;border:1px solid var(--divider);border-radius:8px}.shell:has(.reference-sidebar-nav) .visibility-dialog{width:min(620px,100%)}.shell:has(.reference-sidebar-nav) .visibility-dialog .visibility-card-grid{grid-column:1 / -1}.shell:has(.reference-sidebar-nav) .visibility-card-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.shell:has(.reference-sidebar-nav) .visibility-card{position:relative;min-height:112px;display:grid;grid-template-columns:40px minmax(0,1fr) 20px;align-items:start;gap:12px;padding:16px;border:1px solid var(--border);border-radius:10px;background:#fff;text-align:left;transition:border-color .15s ease,background .15s ease,box-shadow .15s ease}.shell:has(.reference-sidebar-nav) .visibility-card:hover{border-color:var(--strong-border);background:var(--subtle)}.shell:has(.reference-sidebar-nav) .visibility-card.selected{border-color:#7bc7c1;background:#f7fffe;box-shadow:0 0 0 1px #15afaa1f}.shell:has(.reference-sidebar-nav) .visibility-card-icon{width:40px;height:40px;display:grid;place-items:center;border-radius:9px}.shell:has(.reference-sidebar-nav) .visibility-card-icon.private{color:#7754a5;background:#f3edfa}.shell:has(.reference-sidebar-nav) .visibility-card-icon.public{color:var(--brand-dark);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .visibility-card>span:nth-child(2){min-width:0;display:grid;gap:4px}.shell:has(.reference-sidebar-nav) .visibility-card strong{color:var(--heading);font-size:13.5px;line-height:18px;font-weight:670}.shell:has(.reference-sidebar-nav) .visibility-card small{color:var(--muted);font-size:11px;line-height:16px}.shell:has(.reference-sidebar-nav) .visibility-radio{width:18px;height:18px;display:grid;place-items:center;border:1px solid var(--strong-border);border-radius:50%;color:transparent;background:#fff}.shell:has(.reference-sidebar-nav) .visibility-card.selected .visibility-radio{border-color:var(--brand-dark);color:#fff;background:var(--brand-dark)}@media(max-width:1100px){.shell:has(.reference-sidebar-nav) .authoring-options{grid-template-columns:repeat(2,minmax(0,1fr))}.shell:has(.reference-sidebar-nav) .authoring-run-config .authoring-options{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px 0}.shell:has(.reference-sidebar-nav) .authoring-run-config .authoring-options>:nth-child(3){padding-left:0;border-left:0}.shell:has(.reference-sidebar-nav) .plan-page-selects{grid-template-columns:repeat(2,minmax(0,1fr))}.shell:has(.reference-sidebar-nav) .plan-page-selects>:last-child{grid-column:1 / -1}}@media(max-width:900px){.shell:has(.reference-sidebar-nav),.shell:has(.reference-sidebar-nav).proposal-shell{grid-template-columns:minmax(0,1fr);grid-template-rows:68px minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .page,.shell:has(.reference-sidebar-nav).sources-shell .page,.shell:has(.reference-sidebar-nav).proposal-shell .page{width:100%;padding:24px 18px 48px}.shell:has(.reference-sidebar-nav) .main{grid-column:1;grid-row:2;min-height:calc(100vh - 80px);margin:0;border-right:0;border-left:0;border-radius:0}.shell:has(.reference-sidebar-nav) .sidebar{position:fixed;top:68px;width:248px;height:calc(100vh - 80px);margin-left:0}.shell:has(.reference-sidebar-nav) .sidebar-collapse-button{display:none}.shell:has(.reference-sidebar-nav) .workspace-brand{cursor:pointer}.shell:has(.reference-sidebar-nav) .loading-bar{left:0}.shell:has(.reference-sidebar-nav) .sources-table-head,.shell:has(.reference-sidebar-nav) .sources-data-row,.shell:has(.reference-sidebar-nav) .sources-data-panel>header,.shell:has(.reference-sidebar-nav) .sources-table-body{min-width:0}.shell:has(.reference-sidebar-nav) .sources-data-panel{overflow:hidden}.shell:has(.reference-sidebar-nav) .sources-library-header{align-items:flex-start;flex-direction:column;gap:10px}.shell:has(.reference-sidebar-nav) .proposal-summary{grid-template-columns:38px minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .proposal-summary-side{grid-column:1 / -1;width:100%;align-items:center;display:flex;justify-content:space-between}.shell:has(.reference-sidebar-nav) .review-toolbar,.shell:has(.reference-sidebar-nav) .review-toolbar .row-actions{align-items:flex-start}}@media(max-width:640px){.shell:has(.reference-sidebar-nav) .source-coverage-list,.shell:has(.reference-sidebar-nav) .source-scope-fields>div{grid-template-columns:1fr}.shell:has(.reference-sidebar-nav) .source-coverage-row{grid-template-columns:minmax(100px,1fr) minmax(70px,1fr) 34px 34px}.shell:has(.reference-sidebar-nav) .workspace-navbar{padding-inline:12px}.shell:has(.reference-sidebar-nav) .workspace-brand,.shell:has(.reference-sidebar-nav) .workspace-brand img{width:102px}.shell:has(.reference-sidebar-nav) .workspace-navbar-left{gap:10px}.shell:has(.reference-sidebar-nav) .navbar-mode-flag{display:none}.shell:has(.reference-sidebar-nav) .workspace-identity{min-width:0;width:40px;padding:0 6px}.shell:has(.reference-sidebar-nav) .workspace-identity-copy,.shell:has(.reference-sidebar-nav) .workspace-support-link{display:none}.shell:has(.reference-sidebar-nav) .main{border-right:0;border-bottom:0;border-left:0;border-radius:0}.shell:has(.reference-sidebar-nav) .sidebar{margin-left:0;border-left:0;border-radius:0 15px 15px 0}.proposal-ready-dialog{grid-template-columns:36px minmax(0,1fr);gap:12px;padding:20px}.proposal-ready-icon{width:36px;height:36px}.proposal-ready-dialog footer{align-items:stretch;flex-direction:column-reverse}.proposal-ready-dialog footer .btn{width:100%}.shell:has(.reference-sidebar-nav) .page-head{display:grid;gap:14px}.shell:has(.reference-sidebar-nav) .page-head-actions{width:100%}.shell:has(.reference-sidebar-nav) .sources-add-wrap,.shell:has(.reference-sidebar-nav) .sources-add-dropdown-button{width:100%}.shell:has(.reference-sidebar-nav) .sources-library-summary{width:100%;justify-content:space-between}.shell:has(.reference-sidebar-nav) .review-proposal-bar,.shell:has(.reference-sidebar-nav) .review-toolbar,.shell:has(.reference-sidebar-nav) .review-toolbar .row-actions{align-items:stretch;flex-direction:column}.shell:has(.reference-sidebar-nav) .review-proposal-picker{align-items:stretch;flex-direction:column;gap:5px}.shell:has(.reference-sidebar-nav) .review-proposal-picker .select-wrap,.shell:has(.reference-sidebar-nav) .review-toolbar .btn{width:100%}.shell:has(.reference-sidebar-nav) .review-layout-control,.shell:has(.reference-sidebar-nav) .review-view-control{justify-content:space-between}.shell:has(.reference-sidebar-nav) .review-file-tree{grid-template-columns:minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .sources-card-grid{grid-template-columns:minmax(0,1fr);padding:12px}.shell:has(.reference-sidebar-nav) .authoring-workbench{grid-template-columns:minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .authoring-run-config .authoring-options{grid-template-columns:minmax(0,1fr);gap:14px}.shell:has(.reference-sidebar-nav) .authoring-run-config .authoring-options>*{padding:0;border-left:0}.shell:has(.reference-sidebar-nav) .authoring-run-config>footer{align-items:stretch;flex-direction:column}.shell:has(.reference-sidebar-nav) .authoring-run-config>footer .btn{width:100%;min-width:0}.shell:has(.reference-sidebar-nav) .authoring-request .panel-body{min-height:0;padding:0}.shell:has(.reference-sidebar-nav) .authoring-fields{min-height:330px;padding:18px}.shell:has(.reference-sidebar-nav) .authoring-prompt-block{grid-template-rows:auto minmax(160px,1fr)}.shell:has(.reference-sidebar-nav) .authoring-prompt-foot>span{display:none}.shell:has(.reference-sidebar-nav) .authoring-prompt-foot{justify-content:flex-end}.shell:has(.reference-sidebar-nav) .plan-scope-section{padding:18px}.shell:has(.reference-sidebar-nav) .plan-scope-options,.shell:has(.reference-sidebar-nav) .plan-page-title-row,.shell:has(.reference-sidebar-nav) .plan-page-selects{grid-template-columns:minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .plan-page-selects>:last-child{grid-column:auto}.shell:has(.reference-sidebar-nav) .plan-review-header,.shell:has(.reference-sidebar-nav) .plan-approval-bar{align-items:stretch;flex-direction:column}.shell:has(.reference-sidebar-nav) .plan-review-meta{justify-items:start}.shell:has(.reference-sidebar-nav) .plan-page-card{grid-template-columns:30px minmax(0,1fr) 28px;gap:8px;padding:13px 10px}.shell:has(.reference-sidebar-nav) .plan-questions article{grid-template-columns:28px minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .plan-questions article .btn{grid-column:2;width:fit-content}.shell:has(.reference-sidebar-nav) .plan-approval-bar>div,.shell:has(.reference-sidebar-nav) .plan-approval-bar .btn,.shell:has(.reference-sidebar-nav) .plan-complete-actions,.shell:has(.reference-sidebar-nav) .plan-complete-actions .btn{width:100%}.shell:has(.reference-sidebar-nav) .plan-complete-actions{align-items:stretch;flex-direction:column}.shell:has(.reference-sidebar-nav) .visibility-card-grid{grid-template-columns:minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .publish-account-row{grid-template-columns:38px minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .publish-account-row>.btn{grid-column:1 / -1;width:100%}.shell:has(.reference-sidebar-nav) .publish-card{padding:16px}.shell:has(.reference-sidebar-nav) .sources-table-head{display:none}.shell:has(.reference-sidebar-nav) .sources-data-row{min-height:0;grid-template-columns:minmax(0,1fr) auto;gap:12px;padding:16px}.shell:has(.reference-sidebar-nav) .sources-data-row>:nth-child(2){grid-column:1;padding-left:50px}.shell:has(.reference-sidebar-nav) .source-row-menu{grid-column:2;grid-row:1 / 3;align-self:center}.shell:has(.reference-sidebar-nav) .authoring-options{grid-template-columns:minmax(0,1fr);gap:16px}.shell:has(.reference-sidebar-nav) .authoring-request .panel-inline-foot{align-items:stretch}.shell:has(.reference-sidebar-nav) .authoring-request .panel-inline-foot .row-actions,.shell:has(.reference-sidebar-nav) .authoring-request .panel-inline-foot .btn{width:100%;min-width:0}}.workspace-not-found{min-height:55vh;display:grid;place-content:center;justify-items:center;gap:9px;text-align:center}.workspace-not-found>span{width:48px;height:48px;display:grid;place-items:center;border-radius:12px;color:#9b6200;background:#fff3d5}.workspace-not-found h1{color:var(--heading);font-size:20px}.workspace-not-found p{margin-bottom:6px;color:var(--muted);font-size:11.5px}@media(max-width:900px){.shell:has(.reference-sidebar-nav) .plan-review-actions{justify-content:space-between}}@media(max-width:640px){.shell:has(.reference-sidebar-nav) .plan-review-header{padding:17px}.shell:has(.reference-sidebar-nav) .plan-page-outline{padding:14px 12px 19px}.shell:has(.reference-sidebar-nav) .plan-tree-sections{margin:0;padding:0}.shell:has(.reference-sidebar-nav) .plan-tree-pages{margin-left:11px;padding-left:13px}.shell:has(.reference-sidebar-nav) .plan-tree-page{grid-template-columns:27px minmax(0,1fr) 16px;gap:8px;padding:10px 9px}.shell:has(.reference-sidebar-nav) .plan-tree-page:before{left:-14px;width:12px}.shell:has(.reference-sidebar-nav) .plan-revision-actions{align-items:stretch;flex-direction:column}.shell:has(.reference-sidebar-nav) .plan-page-drawer{width:100%}.shell:has(.reference-sidebar-nav) .plan-page-drawer-grid{grid-template-columns:minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .plan-page-drawer>footer{flex-wrap:wrap}.shell:has(.reference-sidebar-nav) .plan-page-move{width:100%}}.shell:has(.reference-sidebar-nav) .sources-reference-page{gap:24px}.shell:has(.reference-sidebar-nav) .sources-library,.shell:has(.reference-sidebar-nav) .source-intelligence-panel{border-color:var(--border);border-radius:12px;box-shadow:0 1px 2px #102a5608}.shell:has(.reference-sidebar-nav) .sources-library-header,.shell:has(.reference-sidebar-nav) .source-intelligence-panel>header{min-height:78px;padding:16px 20px}.shell:has(.reference-sidebar-nav) .sources-library-header h2,.shell:has(.reference-sidebar-nav) .source-intelligence-panel h2{color:var(--heading);font-size:16px;line-height:22px;font-weight:680}.shell:has(.reference-sidebar-nav) .sources-library-header p,.shell:has(.reference-sidebar-nav) .source-intelligence-panel header p{margin-top:3px;color:var(--muted);font-size:13px;line-height:19px}.shell:has(.reference-sidebar-nav) .sources-library-summary{gap:12px;color:var(--muted);font-size:13px}.shell:has(.reference-sidebar-nav) .sources-library-summary strong{color:var(--heading);font-size:14px;font-weight:680}.shell:has(.reference-sidebar-nav) .sources-add-dropdown-button{height:40px;font-size:14px;font-weight:620}.shell:has(.reference-sidebar-nav) .sources-library-table{width:100%;overflow-x:auto}.shell:has(.reference-sidebar-nav) .sources-library-table-head,.shell:has(.reference-sidebar-nav) .sources-library-row{min-width:860px;display:grid;grid-template-columns:minmax(250px,2fr) minmax(90px,.65fr) minmax(220px,1.45fr) minmax(150px,.9fr) 124px;align-items:center;column-gap:18px;padding-inline:20px}.shell:has(.reference-sidebar-nav) .sources-library-table-head{min-height:42px;color:var(--muted);background:#f8fafc;border-bottom:1px solid var(--divider);font-size:12px;line-height:16px;font-weight:650;letter-spacing:.025em;text-transform:uppercase}.shell:has(.reference-sidebar-nav) .sources-library-row{min-height:78px;color:var(--text);border-bottom:1px solid var(--divider);font-size:14px;transition:background-color .14s ease}.shell:has(.reference-sidebar-nav) .sources-library-row:last-child{border-bottom:0}.shell:has(.reference-sidebar-nav) .sources-library-row:hover{background:#fbfdfd}.shell:has(.reference-sidebar-nav) .sources-library-name{min-width:0;display:flex;align-items:center;gap:12px}.shell:has(.reference-sidebar-nav) .sources-library-name>span:last-child,.shell:has(.reference-sidebar-nav) .sources-library-detail,.shell:has(.reference-sidebar-nav) .sources-library-status{min-width:0;display:grid;gap:3px}.shell:has(.reference-sidebar-nav) .sources-library-name strong,.shell:has(.reference-sidebar-nav) .sources-library-detail strong{overflow:hidden;color:var(--heading);font-size:14px;line-height:20px;font-weight:650;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .sources-library-name small,.shell:has(.reference-sidebar-nav) .sources-library-detail small,.shell:has(.reference-sidebar-nav) .sources-library-status>small{overflow:hidden;color:var(--muted);font-size:13px;line-height:18px;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .sources-library-detail .source-health-error{color:var(--bad)}.shell:has(.reference-sidebar-nav) .sources-library-row .source-service-icon{width:40px;height:40px;border-radius:9px}.shell:has(.reference-sidebar-nav) .sources-library-row .source-service-icon .icon{width:22px;height:22px}.shell:has(.reference-sidebar-nav) .sources-library-row .source-type-pill{padding:4px 9px;border-radius:999px;font-size:12px;line-height:16px;font-weight:620}.shell:has(.reference-sidebar-nav) .sources-library-row .source-connection-status{color:var(--text);font-size:13px;line-height:18px;font-weight:620}.shell:has(.reference-sidebar-nav) .sources-library-row .source-row-menu{gap:4px}.shell:has(.reference-sidebar-nav) .sources-library-row .source-row-menu button{width:34px;height:34px;display:grid;place-items:center;padding:0;color:var(--muted)}.shell:has(.reference-sidebar-nav) .source-intelligence-panel>header>span{padding:5px 10px;border-radius:999px;color:#285f55;background:#e7f7f2;font-size:12px;line-height:18px;font-weight:650}.shell:has(.reference-sidebar-nav) .source-intelligence-panel>header>span.attention{color:#8a4d00;background:#fff5db}.shell:has(.reference-sidebar-nav) .coverage-overview{display:grid;grid-template-columns:minmax(260px,.72fr) minmax(420px,1.45fr);min-height:420px}.shell:has(.reference-sidebar-nav) .coverage-summary-card{display:grid;align-content:start;justify-items:center;gap:16px;padding:28px 26px 24px;background:linear-gradient(160deg,#f6fbfa,#fbfdfc 62%,#f8fafc);border-right:1px solid var(--divider);text-align:center}.shell:has(.reference-sidebar-nav) .coverage-score{width:132px;height:132px;display:grid;place-items:center;border-radius:50%;background:conic-gradient(var(--brand) var(--coverage),#dfe9e8 var(--coverage));box-shadow:inset 0 0 0 1px #102a560a}.shell:has(.reference-sidebar-nav) .coverage-score:before{content:"";grid-area:1 / 1;width:104px;height:104px;border-radius:50%;background:#fff;box-shadow:0 1px 3px #102a5614}.shell:has(.reference-sidebar-nav) .coverage-score>span{z-index:1;grid-area:1 / 1;display:grid;gap:0}.shell:has(.reference-sidebar-nav) .coverage-score strong{color:var(--heading);font-size:28px;line-height:34px;font-weight:720;letter-spacing:-.5px}.shell:has(.reference-sidebar-nav) .coverage-score small{color:var(--muted);font-size:12px;line-height:16px}.shell:has(.reference-sidebar-nav) .coverage-summary-copy{display:grid;justify-items:center;gap:7px}.shell:has(.reference-sidebar-nav) .coverage-assessment{padding:3px 8px;border-radius:999px;color:#087252;background:#e5f6ee;font-size:12px;line-height:17px;font-weight:680}.shell:has(.reference-sidebar-nav) .coverage-assessment.attention{color:#8a4d00;background:#fff3d5}.shell:has(.reference-sidebar-nav) .coverage-summary-copy h3{max-width:28ch;color:var(--heading);font-size:16px;line-height:23px;font-weight:680}.shell:has(.reference-sidebar-nav) .coverage-summary-copy p{max-width:34ch;color:var(--muted);font-size:13px;line-height:19px}.shell:has(.reference-sidebar-nav) .coverage-summary-stats{width:100%;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));margin:2px 0 0;padding:14px 0;border-top:1px solid var(--divider);border-bottom:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .coverage-summary-stats>div{min-width:0;display:flex;flex-direction:column-reverse;gap:2px;padding:0 8px}.shell:has(.reference-sidebar-nav) .coverage-summary-stats>div+div{border-left:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .coverage-summary-stats dt{color:var(--muted);font-size:12px;line-height:16px}.shell:has(.reference-sidebar-nav) .coverage-summary-stats dd{margin:0;color:var(--heading);font-size:18px;line-height:23px;font-weight:700}.shell:has(.reference-sidebar-nav) .coverage-summary-card .source-coverage-disclaimer{margin:0;padding:0;color:var(--muted);font-size:12px;line-height:18px}.shell:has(.reference-sidebar-nav) .coverage-breakdown{min-width:0;padding:24px 26px 28px}.shell:has(.reference-sidebar-nav) .coverage-breakdown-heading{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;padding-bottom:16px;border-bottom:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .coverage-breakdown-heading h3{color:var(--heading);font-size:14px;line-height:20px;font-weight:680}.shell:has(.reference-sidebar-nav) .coverage-breakdown-heading p{margin-top:2px;color:var(--muted);font-size:13px;line-height:18px}.shell:has(.reference-sidebar-nav) .coverage-breakdown-heading>span{flex:0 0 auto;color:var(--muted);font-size:12px;line-height:18px}.shell:has(.reference-sidebar-nav) .source-coverage-list{display:grid;grid-template-columns:minmax(0,1fr);gap:0;padding:0}.shell:has(.reference-sidebar-nav) .source-coverage-row{display:grid;grid-template-columns:minmax(0,1fr);gap:9px;padding:14px 0;border-bottom:1px solid var(--divider);color:var(--text);font-size:14px}.shell:has(.reference-sidebar-nav) .source-coverage-row:last-child{border-bottom:0}.shell:has(.reference-sidebar-nav) .source-coverage-row-heading{min-width:0;display:flex;align-items:center;justify-content:space-between;gap:16px}.shell:has(.reference-sidebar-nav) .source-coverage-row-heading>span:first-child{overflow:hidden;color:var(--heading);font-size:14px;line-height:19px;font-weight:620;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .source-coverage-row-heading>span:last-child{display:flex;flex:0 0 auto;align-items:baseline;gap:8px}.shell:has(.reference-sidebar-nav) .source-coverage-row-heading strong{color:var(--heading);font-size:13px;line-height:18px;font-weight:700}.shell:has(.reference-sidebar-nav) .source-coverage-row-heading small{min-width:48px;color:var(--muted);font-size:12px;line-height:17px;text-align:right}.shell:has(.reference-sidebar-nav) .source-coverage-row-heading em{flex:0 0 auto;padding:2px 7px;border-radius:999px;color:var(--muted);background:#f2f4f7;font-size:12px;line-height:18px;font-style:normal;font-weight:600}.shell:has(.reference-sidebar-nav) .source-coverage-track{width:100%;height:8px;overflow:hidden;border-radius:999px;background:#e5ebef}.shell:has(.reference-sidebar-nav) .source-coverage-track i{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#0d938f,var(--brand))}.shell:has(.reference-sidebar-nav) .source-coverage-row.unknown .source-coverage-track{background:repeating-linear-gradient(135deg,#e7ebef,#e7ebef 6px,#f7f9fb 6px 12px)}.shell:has(.reference-sidebar-nav) .source-evidence-notes{padding-inline:20px}.shell:has(.reference-sidebar-nav) .source-evidence-notes summary{padding:15px 0;font-size:13px}.shell:has(.reference-sidebar-nav) .source-evidence-notes>div{font-size:13px;line-height:19px}@media(max-width:1050px){.shell:has(.reference-sidebar-nav) .coverage-overview{grid-template-columns:minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .coverage-summary-card{border-right:0;border-bottom:1px solid var(--divider)}}@media(max-width:700px){.shell:has(.reference-sidebar-nav) .sources-library-header,.shell:has(.reference-sidebar-nav) .source-intelligence-panel>header,.shell:has(.reference-sidebar-nav) .coverage-breakdown-heading{align-items:flex-start;flex-direction:column;gap:10px}.shell:has(.reference-sidebar-nav) .sources-library-summary{flex-wrap:wrap}.shell:has(.reference-sidebar-nav) .coverage-summary-card,.shell:has(.reference-sidebar-nav) .coverage-breakdown{padding:22px 18px}.shell:has(.reference-sidebar-nav) .coverage-summary-stats{grid-template-columns:minmax(0,1fr);gap:10px}.shell:has(.reference-sidebar-nav) .coverage-summary-stats>div{flex-direction:row;justify-content:space-between}.shell:has(.reference-sidebar-nav) .coverage-summary-stats>div+div{padding-top:10px;border-top:1px solid var(--divider);border-left:0}}html:has(.shell .reference-sidebar-nav),body:has(.shell .reference-sidebar-nav){height:100%;overflow:hidden;background:#f4f6f8}.shell:has(.reference-sidebar-nav),.shell:has(.reference-sidebar-nav).proposal-shell,.shell:has(.reference-sidebar-nav).sources-shell{width:100%;height:100vh;min-height:720px;display:flex;overflow:hidden;color:#33445f;background:#f4f6f8;font-family:Instrument Sans,system-ui,sans-serif;font-size:14px;line-height:20px;-webkit-font-smoothing:antialiased}.shell:has(.reference-sidebar-nav) .sidebar{position:relative;inset:auto;z-index:50;width:236px;height:100vh;min-height:720px;display:flex;flex:0 0 236px;flex-direction:column;gap:0;margin:0;padding:0;overflow:hidden;background:#fff;border:0;border-right:1px solid #e6ebf0;border-radius:0;box-shadow:none}.shell:has(.reference-sidebar-nav) .workspace-brand{width:168px;height:auto;display:block;margin:0;padding:20px 20px 14px;cursor:pointer}.shell:has(.reference-sidebar-nav) .workspace-brand img{width:128px;height:auto;display:block}.shell:has(.reference-sidebar-nav) .workspace-identity{width:auto;min-width:0;height:auto;min-height:52px;display:flex;align-items:center;gap:10px;margin:4px 14px 16px;padding:10px 12px;border:1px solid #e8eef1;border-radius:12px;background:#f6f9fa}.shell:has(.reference-sidebar-nav) .workspace-identity-mark{width:30px;height:30px;display:grid;flex:0 0 auto;place-items:center;border:0;border-radius:9px;color:#fff;background:linear-gradient(135deg,#15afaa,#0b7f7b);font-family:Sora,sans-serif;font-size:14px;font-weight:700}.shell:has(.reference-sidebar-nav) .workspace-identity-copy{min-width:0;display:flex;flex-direction:column;line-height:normal}.shell:has(.reference-sidebar-nav) .workspace-identity-copy strong{max-width:152px;color:#142a5e;font-size:13px;line-height:18px;font-weight:600}.shell:has(.reference-sidebar-nav) .workspace-identity-copy small{color:#7a8699;font-size:11.5px;line-height:16px}.shell:has(.reference-sidebar-nav) .reference-sidebar-nav{display:flex!important;flex-direction:column;gap:2px!important;margin:0;padding:0 12px;border:0}.shell:has(.reference-sidebar-nav) .reference-sidebar-nav button{width:100%;min-height:38px;display:flex;align-items:center;gap:11px;padding:9px 12px;border:0;border-radius:10px;color:#4c5d76;background:transparent;font:inherit;font-size:13.5px;line-height:20px;font-weight:600;text-align:left;box-shadow:none}.shell:has(.reference-sidebar-nav) .reference-sidebar-nav button .icon{color:#8a95a6}.shell:has(.reference-sidebar-nav) .reference-sidebar-nav button:hover{color:#33445f;background:#eef4f4}.shell:has(.reference-sidebar-nav) .reference-sidebar-nav button.active{color:#0b7f7b;background:#e8f7f6;box-shadow:none}.shell:has(.reference-sidebar-nav) .reference-sidebar-nav button.active .icon{color:#15afaa}.shell:has(.reference-sidebar-nav) .nav-count{min-width:18px;height:18px;display:grid;place-items:center;padding:0 5px;border-radius:9px;color:#fff;background:#15afaa;font-size:11px;line-height:18px;font-weight:700}.shell:has(.reference-sidebar-nav) .new-project-button{width:calc(100% - 28px);min-height:58px;display:flex;align-items:center;gap:10px;margin:auto 14px 14px;padding:11px 12px;border:1px dashed #cfdadf;border-radius:12px;color:#0b7f7b;background:#fbfdfd;font:inherit;text-align:left}.shell:has(.reference-sidebar-nav) .new-project-button:hover{border-color:#15afaa;background:#f2fafa}.shell:has(.reference-sidebar-nav) .new-project-button>.icon{flex:0 0 auto}.shell:has(.reference-sidebar-nav) .new-project-button>span{min-width:0;display:flex;flex-direction:column}.shell:has(.reference-sidebar-nav) .new-project-button strong{color:#142a5e;font-size:12.5px;line-height:17px;font-weight:600}.shell:has(.reference-sidebar-nav) .new-project-button small{color:#7a8699;font-size:11px;line-height:15px}.shell:has(.reference-sidebar-nav) .workspace-main{min-width:0;min-height:720px;display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.shell:has(.reference-sidebar-nav) .workspace-navbar{position:relative;inset:auto;z-index:40;width:100%;height:58px;min-height:58px;display:flex;align-items:center;justify-content:flex-start;gap:12px;padding:0 26px;border:0;border-bottom:1px solid #e6ebf0;background:#fff;-webkit-backdrop-filter:none;backdrop-filter:none}.shell:has(.reference-sidebar-nav) .workspace-navbar .workspace-screen-title{margin:0;color:#142a5e;font-family:Sora,sans-serif;font-size:15px;line-height:20px;font-weight:600;letter-spacing:-.2px}.shell:has(.reference-sidebar-nav) .workspace-navbar-spacer{flex:1}.shell:has(.reference-sidebar-nav) .workspace-mobile-menu{display:none}.shell:has(.reference-sidebar-nav) .navbar-mode-flag{min-height:24px;display:inline-flex;align-items:center;gap:6px;margin:0;padding:3px 10px;border:1px solid #e2e9ec;border-radius:999px;color:#5b6a80;background:#f7fafa;font-size:11.5px;line-height:16px;font-weight:600}.shell:has(.reference-sidebar-nav) .navbar-mode-flag i{width:6px;height:6px;background:#15afaa}.shell:has(.reference-sidebar-nav) .workspace-support-link{display:inline-flex;align-items:center;gap:7px;padding:8px 12px;border-radius:9px;color:#33445f;font-size:13px;line-height:20px;font-weight:600}.shell:has(.reference-sidebar-nav) .workspace-support-link:hover{color:#142a5e;background:#f2f5f7}.shell:has(.reference-sidebar-nav) .workspace-preview-primary{height:auto;min-height:34px;display:inline-flex;align-items:center;gap:8px;padding:9px 16px;border:0;border-radius:10px;color:#fff;background:#142a5e;box-shadow:0 1px 2px #142a5e40}.shell:has(.reference-sidebar-nav) .workspace-preview-primary strong{font-size:13px;line-height:16px;font-weight:600}.shell:has(.reference-sidebar-nav) .workspace-preview-primary>.icon:last-child{color:currentColor;opacity:.7}.shell:has(.reference-sidebar-nav) .workspace-preview-primary:hover{background:#1d3b7e}.shell:has(.reference-sidebar-nav) .main{width:100%;min-width:0;min-height:0;display:block;flex:1 1 auto;margin:0;overflow-x:hidden;overflow-y:auto;background:#f4f6f8;border:0;border-radius:0}.shell:has(.reference-sidebar-nav) .page,.shell:has(.reference-sidebar-nav).sources-shell .page,.shell:has(.reference-sidebar-nav).proposal-shell .page{width:100%;max-width:1060px;min-height:100%;display:grid;align-content:start;gap:20px;margin:0 auto;padding:30px 32px 60px;background:transparent}.shell:has(.reference-sidebar-nav) .page:has(.authoring-page),.shell:has(.reference-sidebar-nav) .page:has(.publish-page){max-width:860px;padding-top:30px;padding-bottom:60px}.shell:has(.reference-sidebar-nav) .page:has(.settings){max-width:960px}.shell:has(.reference-sidebar-nav).proposal-shell .page{max-width:1120px;padding-top:26px}.shell:has(.reference-sidebar-nav) .page h1,.shell:has(.reference-sidebar-nav) .page h2,.shell:has(.reference-sidebar-nav) .page h3{font-family:Sora,sans-serif}.shell:has(.reference-sidebar-nav) .page-head h1,.shell:has(.reference-sidebar-nav) .sources-page-header h1,.shell:has(.reference-sidebar-nav).proposal-shell .page-head h1{color:#142a5e;font-family:Sora,sans-serif;font-size:24px;line-height:30px;font-weight:600;letter-spacing:-.4px}.shell:has(.reference-sidebar-nav) .page-head p,.shell:has(.reference-sidebar-nav) .sources-page-header p,.shell:has(.reference-sidebar-nav).proposal-shell .page-head p{margin-top:4px;color:#64748b;font-size:14px;line-height:20px}.shell:has(.reference-sidebar-nav) .panel,.shell:has(.reference-sidebar-nav) .authoring-action-card,.shell:has(.reference-sidebar-nav) .sources-data-panel,.shell:has(.reference-sidebar-nav) .sources-library,.shell:has(.reference-sidebar-nav) .source-intelligence-panel,.shell:has(.reference-sidebar-nav) .publish-card{border-color:#e6ebf0;border-radius:16px;background:#fff;box-shadow:0 1px 3px #142a5e0d}.shell:has(.reference-sidebar-nav) .btn.primary,.shell:has(.reference-sidebar-nav) button.primary{border-color:#15afaa;background:#15afaa;box-shadow:0 2px 6px #15afaa4d}.shell:has(.reference-sidebar-nav) .btn.primary:hover,.shell:has(.reference-sidebar-nav) button.primary:hover{border-color:#0e9691;background:#0e9691}.shell:has(.reference-sidebar-nav) .loading-bar{top:58px;left:236px}@keyframes pulse{0%,to{opacity:1}50%{opacity:.35}}@media(max-width:760px){html:has(.shell .reference-sidebar-nav),body:has(.shell .reference-sidebar-nav){overflow:auto}.shell:has(.reference-sidebar-nav),.shell:has(.reference-sidebar-nav).proposal-shell,.shell:has(.reference-sidebar-nav).sources-shell{min-height:100vh;height:auto;overflow:visible}.shell:has(.reference-sidebar-nav) .sidebar{position:fixed;inset:0 auto 0 0;width:min(286px,86vw);height:100vh;min-height:0;transform:translate(-102%);transition:transform .2s ease;box-shadow:16px 0 48px #142a5e2e}.shell:has(.reference-sidebar-nav) .sidebar.open{transform:none}.shell:has(.reference-sidebar-nav) .nav-scrim{position:fixed;z-index:45;inset:0;display:block;background:#142a5e4d}.shell:has(.reference-sidebar-nav) .workspace-main{min-height:100vh}.shell:has(.reference-sidebar-nav) .workspace-navbar{position:sticky;top:0;padding:0 16px}.shell:has(.reference-sidebar-nav) .workspace-mobile-menu{width:32px;height:32px;display:grid;place-items:center;border-radius:8px;color:#33445f;background:#f4f6f8}.shell:has(.reference-sidebar-nav) .workspace-support-link{display:none}.shell:has(.reference-sidebar-nav) .workspace-preview-primary{padding-inline:11px}.shell:has(.reference-sidebar-nav) .workspace-preview-primary strong,.shell:has(.reference-sidebar-nav) .workspace-preview-primary>.icon:last-child{display:none}.shell:has(.reference-sidebar-nav) .main{overflow:visible}.shell:has(.reference-sidebar-nav) .page,.shell:has(.reference-sidebar-nav).sources-shell .page,.shell:has(.reference-sidebar-nav).proposal-shell .page{padding:24px 18px 48px}.shell:has(.reference-sidebar-nav) .loading-bar{left:0}}.shell:has(.reference-sidebar-nav) .authoring-page{gap:20px;min-height:0}.shell:has(.reference-sidebar-nav) .authoring-workbench{max-width:none}.shell:has(.reference-sidebar-nav) .authoring-request{overflow:visible;border:1px solid #e6ebf0!important;border-radius:18px!important;background:#fff!important;box-shadow:0 1px 3px #142a5e0d!important}.shell:has(.reference-sidebar-nav) .authoring-request .panel-body{padding:22px 22px 0}.shell:has(.reference-sidebar-nav) .authoring-prompt-title>span{display:none}.shell:has(.reference-sidebar-nav) .authoring-prompt-title h2{font-size:14px;font-weight:650}.shell:has(.reference-sidebar-nav) .authoring-prompt-title p{display:none}.shell:has(.reference-sidebar-nav) .authoring-request .textarea{min-height:118px;padding:13px 15px;border-color:#dde5ea;border-radius:12px;background:#fbfdfd;font-size:14px}.shell:has(.reference-sidebar-nav) .authoring-request .textarea:focus{border-color:#15afaa;background:#fff;box-shadow:0 0 0 3px #15afaa26}.shell:has(.reference-sidebar-nav) .plan-scope-section{margin-top:18px;padding:0 22px;border:0}.shell:has(.reference-sidebar-nav) .plan-scope-section>header{margin-bottom:9px}.shell:has(.reference-sidebar-nav) .plan-scope-section>header>span{display:none}.shell:has(.reference-sidebar-nav) .plan-scope-section>header h2{font-size:13px}.shell:has(.reference-sidebar-nav) .plan-scope-section>header p{display:none}.shell:has(.reference-sidebar-nav) .plan-scope-options{grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.shell:has(.reference-sidebar-nav) .plan-scope-options>button{min-height:112px;padding:14px 15px;border:1.5px solid #e2e9ec;border-radius:12px}.shell:has(.reference-sidebar-nav) .plan-scope-options>button.active{border-color:#15afaa;background:#f2fafa;box-shadow:none}.shell:has(.reference-sidebar-nav) .plan-scope-options strong{font-size:13.5px}.shell:has(.reference-sidebar-nav) .plan-scope-options small{font-size:12px;line-height:16px}.shell:has(.reference-sidebar-nav) .plan-scope-options b{color:#0b7f7b;font-size:12px}.shell:has(.reference-sidebar-nav) .plan-scope-evidence{margin-top:8px;color:#8a95a6;font-size:12px}.shell:has(.reference-sidebar-nav) .authoring-run-config{gap:12px;margin-top:18px;padding:0 22px 18px;border:0;background:transparent}.shell:has(.reference-sidebar-nav) .agent-config-summary{width:100%;min-height:44px;display:flex;align-items:center;gap:10px;padding:12px 14px;border:1px solid #e8eef1;border-radius:12px;color:#0b7f7b;background:#f7fafa;font:inherit;text-align:left}.shell:has(.reference-sidebar-nav) .agent-config-summary>.icon{flex:0 0 auto}.shell:has(.reference-sidebar-nav) .agent-config-summary span{flex:1;color:#33445f;font-size:13px}.shell:has(.reference-sidebar-nav) .agent-config-summary span b{color:#142a5e;font-weight:600}.shell:has(.reference-sidebar-nav) .agent-config-summary>strong{color:#0b7f7b;font-size:12.5px;font-weight:600}.shell:has(.reference-sidebar-nav) .authoring-run-config .authoring-options{padding:2px 2px 4px}.shell:has(.reference-sidebar-nav) .authoring-run-config>footer{min-height:0;gap:14px;padding:4px 0 0;border:0}.shell:has(.reference-sidebar-nav) .authoring-run-config>footer .btn{min-width:0;height:42px;padding-inline:22px;border-radius:11px;font-size:14px}.shell:has(.reference-sidebar-nav) .authoring-run-config>footer>small{max-width:340px;color:#8a95a6;font-size:12.5px}.shell:has(.reference-sidebar-nav) .source-intelligence-panel{overflow:visible;border:0;background:transparent;box-shadow:none}.shell:has(.reference-sidebar-nav) .source-intelligence-panel>header{display:none}.shell:has(.reference-sidebar-nav) .coverage-overview{grid-template-columns:300px minmax(0,1fr);gap:16px;min-height:0}.shell:has(.reference-sidebar-nav) .coverage-breakdown{padding:20px 22px;border:1px solid #e6ebf0;border-radius:16px;background:#fff}.shell:has(.reference-sidebar-nav) .coverage-breakdown-heading{align-items:baseline;padding:0;border:0}.shell:has(.reference-sidebar-nav) .coverage-breakdown-heading p{display:none}.shell:has(.reference-sidebar-nav) .source-coverage-row{gap:6px;padding:7px 0;border:0}.shell:has(.reference-sidebar-nav) .source-coverage-track{height:7px;border-radius:4px;background:#eef2f5}.shell:has(.reference-sidebar-nav) .source-coverage-track i{background:linear-gradient(90deg,#15afaa,#0b7f7b)}.shell:has(.reference-sidebar-nav) .publish-account-row:not(.signed-out){display:none}@media(max-width:700px){.shell:has(.reference-sidebar-nav) .plan-scope-options,.shell:has(.reference-sidebar-nav) .authoring-run-config .authoring-options{grid-template-columns:minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .authoring-run-config>footer{align-items:stretch;flex-direction:column}.shell:has(.reference-sidebar-nav) .authoring-run-config>footer .btn{width:100%}}.shell:has(.reference-sidebar-nav) .page,.shell:has(.reference-sidebar-nav).sources-shell .page,.shell:has(.reference-sidebar-nav).proposal-shell .page,.shell:has(.reference-sidebar-nav) .page:has(.authoring-page),.shell:has(.reference-sidebar-nav) .page:has(.publish-page),.shell:has(.reference-sidebar-nav) .page:has(.settings){width:92%;max-width:none;margin-inline:auto;padding:clamp(26px,2.5vw,40px) 0 clamp(48px,5vw,76px)}.shell:has(.reference-sidebar-nav) .page :where(h1,h2,h3,h4,h5,h6,legend),.shell:has(.reference-sidebar-nav) .page .field-label,.shell:has(.reference-sidebar-nav) .page .screenshot-option strong,.shell:has(.reference-sidebar-nav) .page .source-coverage-row-heading strong{color:#142a5e}.shell:has(.reference-sidebar-nav) .page :where(input,textarea,select){color:#33445f}.shell:has(.reference-sidebar-nav) .page button{min-width:24px;min-height:24px}.shell:has(.reference-sidebar-nav) .authoring-request .panel-body{min-height:0!important;display:flex;flex-direction:column;gap:0;padding:22px 22px 0}.shell:has(.reference-sidebar-nav) .authoring-fields{height:auto;min-height:0;padding:0}.shell:has(.reference-sidebar-nav) .authoring-prompt-block{height:auto;display:grid;grid-template-rows:auto auto;gap:10px}.shell:has(.reference-sidebar-nav) .authoring-textarea-wrap{height:auto}.shell:has(.reference-sidebar-nav) .authoring-run-config{margin-top:18px}.shell:has(.reference-sidebar-nav) .authoring-run-config .authoring-options{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(190px,100%),1fr));align-items:start;gap:16px;margin:0;padding:4px 0 6px}.shell:has(.reference-sidebar-nav) .authoring-run-config .authoring-options>*{min-width:0;padding:0;border:0}.shell:has(.reference-sidebar-nav) .authoring-run-config .authoring-options>*+*{border-left:0}.shell:has(.reference-sidebar-nav) .authoring-options .field,.shell:has(.reference-sidebar-nav) .authoring-options .screenshot-option,.shell:has(.reference-sidebar-nav) .authoring-options .screenshot-option>div{width:100%;min-width:0}.shell:has(.reference-sidebar-nav) .authoring-options .screenshot-option>div{min-height:42px}.shell:has(.reference-sidebar-nav) .authoring-run-config>footer{min-height:0;display:flex;align-items:center;flex-wrap:wrap;justify-content:space-between;gap:14px 24px;margin:0;padding:6px 0 0;background:transparent}.shell:has(.reference-sidebar-nav) .authoring-run-config>footer>small{order:0;max-width:none;flex:1 1 360px;color:#7a8699;font-size:12.5px;line-height:18px}.shell:has(.reference-sidebar-nav) .authoring-run-config>footer>.btn{flex:0 0 auto;margin-left:auto}.shell:has(.reference-sidebar-nav) .coverage-overview{grid-template-columns:minmax(0,3fr) minmax(0,7fr);gap:clamp(14px,1.5vw,22px)}.shell:has(.reference-sidebar-nav) .source-coverage-list{max-height:none;overflow:visible}.shell:has(.reference-sidebar-nav) .source-coverage-row{gap:8px;padding:9px 0}.shell:has(.reference-sidebar-nav) .source-coverage-row>.source-coverage-row-heading{height:auto;min-height:20px;overflow:visible;border-radius:0;background:transparent}.shell:has(.reference-sidebar-nav) .source-coverage-row>.source-coverage-track{height:7px;overflow:hidden;border-radius:4px;background:#eef2f5}.shell:has(.reference-sidebar-nav) .source-coverage-row.unknown>.source-coverage-row-heading{background:transparent}.shell:has(.reference-sidebar-nav) .coverage-review-action{justify-self:end;padding:2px 0;border:0;color:#087d78;background:transparent;font:inherit;font-size:12px;font-weight:700;cursor:pointer}.coverage-resolution-scrim{z-index:80}.coverage-resolution-dialog{width:min(780px,calc(100vw - 32px));max-height:min(820px,calc(100vh - 48px));display:flex;flex-direction:column;overflow:hidden;border:1px solid #dce5e8;border-radius:16px;background:#fff;box-shadow:0 24px 70px #11294433}.coverage-resolution-dialog>header,.coverage-resolution-dialog>footer{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:20px 24px}.coverage-resolution-dialog>header{border-bottom:1px solid #e6ecef}.coverage-resolution-dialog>header h2{margin:2px 0 0;color:#142a5e;font-size:20px}.coverage-resolution-dialog>header p{margin:4px 0 0;color:#66758a;font-size:13px}.coverage-resolution-dialog>header>button{padding:6px;border:0;background:transparent;cursor:pointer}.coverage-dialog-eyebrow{color:#087d78;font-size:11px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.coverage-resolution-dialog>footer{border-top:1px solid #e6ecef;background:#fbfcfd;color:#66758a;font-size:12px}.coverage-resolution-dialog>footer>div:last-child{display:flex;align-items:center;gap:8px}.coverage-selection-toolbar{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 24px;border-bottom:1px solid #e6ecef;background:#f7fafb}.coverage-selection-toolbar label{display:flex;align-items:center;gap:9px;color:#263d65;font-size:13px;font-weight:700;cursor:pointer}.coverage-selection-toolbar input,.coverage-update-choice input{width:16px;height:16px;margin:0;accent-color:#0c9b92;cursor:pointer}.coverage-selection-toolbar strong{padding:4px 9px;border-radius:999px;color:#087d78;background:#e9f7f5;font-size:11px}.coverage-resolution-list{min-height:0;display:grid;gap:14px;overflow:auto;padding:18px 24px 22px}.coverage-gap-section{display:grid;gap:10px}.coverage-list-heading{display:flex;align-items:baseline;justify-content:space-between;gap:16px;padding:0 2px}.coverage-list-heading strong{color:#263d65;font-size:12px}.coverage-list-heading small{color:#7a8799;font-size:11.5px}.coverage-resolution-item{display:grid;gap:12px;padding:15px 16px;border:1px solid #dde6e9;border-radius:12px;background:#fff;transition:border-color .16s ease,background .16s ease,box-shadow .16s ease}.coverage-resolution-item.uncovered,.coverage-resolution-item.needs-human{border-color:#dce5e8;background:#fff}.coverage-resolution-item.selected{border-color:#5fc3bc;background:#f4fbfa;box-shadow:0 0 0 1px #0c9b9214}.coverage-resolution-item-heading{display:flex;align-items:flex-start;justify-content:space-between;gap:16px}.coverage-resolution-item-heading>span{min-width:0;display:grid;gap:3px}.coverage-resolution-item-heading strong{overflow-wrap:anywhere;color:#142a5e;font-size:13.5px}.coverage-resolution-item-heading small{overflow-wrap:anywhere;color:#718096;font-size:11.5px;line-height:1.45}.coverage-update-choice{flex:0 0 auto;display:flex;align-items:center;gap:7px;min-height:30px;padding:0 10px;border:1px solid #cbdadd;border-radius:8px;color:#31516b;background:#fff;font-size:12px;font-weight:750;cursor:pointer}.coverage-resolution-item.selected .coverage-update-choice{border-color:#0c9b92;color:#087d78;background:#e5f6f4}.coverage-resolution-controls{display:grid;gap:9px;padding-top:10px;border-top:1px solid #e8edef}.coverage-alternative-actions{display:flex;align-items:center;justify-content:space-between;gap:12px}.coverage-alternative-actions>small{color:#7a8799;font-size:10.5px;font-weight:700;text-transform:uppercase;letter-spacing:.035em}.coverage-alternative-actions>span{display:flex;align-items:center;flex-wrap:wrap;justify-content:flex-end;gap:4px 14px}.coverage-alternative-actions button{min-height:28px;padding:2px 0;border:0;color:#53687f;background:transparent;font:inherit;font-size:11.5px;font-weight:650;cursor:pointer}.coverage-alternative-actions button:hover{color:#087d78;text-decoration:underline}.coverage-alternative-actions button:disabled{opacity:.55;cursor:default}.coverage-inline-resolution{display:grid;grid-template-columns:minmax(0,1fr) auto 28px;gap:8px;padding:10px;border:1px solid #dce5e8;border-radius:9px;background:#f8fafb}.coverage-inline-resolution>button:last-child{display:grid;width:28px;height:28px;place-items:center;align-self:center;padding:0;border:0;border-radius:6px;color:#66758a;background:transparent;cursor:pointer}.coverage-inline-resolution>button:last-child:hover{background:#e9eef1}.coverage-resolution-actions{display:flex;align-items:center;flex-wrap:wrap;gap:8px}.coverage-resolution-actions .input{min-width:180px;flex:1 1 220px}.coverage-resolution-actions>small{flex:1 1 auto;color:#66758a}.coverage-plan-summary{min-width:0;display:grid;gap:2px}.coverage-plan-summary strong{color:#263d65;font-size:12.5px}.coverage-plan-summary small{color:#718096;font-size:11.5px}.coverage-resolved-items{border-top:1px solid #e6ecef;padding-top:12px}.coverage-resolved-items>summary{width:max-content;color:#66758a;font-size:12px;font-weight:700;cursor:pointer}.coverage-resolved-items>div{display:grid;gap:8px;padding-top:10px}.coverage-gaps-empty{display:grid;justify-items:center;gap:5px;padding:34px 20px;color:#087d78;text-align:center}.coverage-gaps-empty strong{color:#263d65;font-size:14px}.coverage-gaps-empty small{color:#718096;font-size:12px}@media(max-width:640px){.coverage-resolution-dialog{width:calc(100vw - 20px);max-height:calc(100vh - 20px)}.coverage-resolution-dialog>header,.coverage-resolution-dialog>footer{padding:16px}.coverage-resolution-dialog>footer{align-items:stretch;flex-direction:column}.coverage-resolution-dialog>footer>div:last-child{display:grid;grid-template-columns:auto minmax(0,1fr)}.coverage-selection-toolbar{padding:11px 16px}.coverage-resolution-list{padding:16px}.coverage-list-heading,.coverage-alternative-actions{align-items:flex-start;flex-direction:column}.coverage-alternative-actions>span{justify-content:flex-start}.coverage-inline-resolution{grid-template-columns:minmax(0,1fr) auto}.coverage-inline-resolution>button:last-child{display:none}.coverage-resolution-actions>.btn{flex:1 1 auto}}@media(max-width:1100px){.shell:has(.reference-sidebar-nav) .page,.shell:has(.reference-sidebar-nav).sources-shell .page,.shell:has(.reference-sidebar-nav).proposal-shell .page,.shell:has(.reference-sidebar-nav) .page:has(.authoring-page),.shell:has(.reference-sidebar-nav) .page:has(.publish-page),.shell:has(.reference-sidebar-nav) .page:has(.settings){width:94%}}@media(max-width:900px){.shell:has(.reference-sidebar-nav) .coverage-overview{grid-template-columns:minmax(0,1fr)}}@media(max-width:760px){.shell:has(.reference-sidebar-nav) .page,.shell:has(.reference-sidebar-nav).sources-shell .page,.shell:has(.reference-sidebar-nav).proposal-shell .page,.shell:has(.reference-sidebar-nav) .page:has(.authoring-page),.shell:has(.reference-sidebar-nav) .page:has(.publish-page),.shell:has(.reference-sidebar-nav) .page:has(.settings){width:100%;padding:24px 18px 48px}.shell:has(.reference-sidebar-nav) .authoring-request .panel-body{padding:18px 18px 0}.shell:has(.reference-sidebar-nav) .authoring-run-config>footer>.btn{margin-left:0}}.live-log-tabs{margin:12px 0 10px}.capture-gallery{display:flex;flex-direction:column;gap:12px}.capture-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:14px}.capture-tile{margin:0;display:flex;flex-direction:column;gap:8px;border:1px solid var(--line);border-radius:10px;padding:8px;background:var(--surface);min-width:0}.capture-tile.duplicate{border-color:var(--bad-line, #f2b8b5);background:var(--bad-soft, #fdf3f2)}.capture-tile img{width:100%;height:auto;display:block;border-radius:6px;border:1px solid var(--line)}.capture-tile figcaption{display:flex;flex-direction:column;gap:3px;min-width:0}.capture-tile figcaption strong{font-size:12px;overflow-wrap:anywhere}.capture-tile figcaption small{font-size:11px;color:var(--muted);overflow-wrap:anywhere}.plan-target-pages{margin-top:14px;max-width:420px}.plan-stale-panel .plan-stale-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}.plan-recovery-panel .plan-recovery-options{list-style:none;margin:0;padding:0;display:grid;gap:8px}.plan-recovery-panel .plan-recovery-options li{display:grid;gap:2px;padding:10px 12px;border:1px solid var(--divider);border-radius:8px;background:var(--subtle)}.plan-recovery-panel .plan-recovery-options strong{color:var(--heading);font-size:12px}.plan-recovery-panel .plan-recovery-options span{color:var(--muted);font-size:11.5px;line-height:1.45}.plan-recovery-panel .plan-recovery-captures{margin-top:14px}.plan-recovery-panel .plan-recovery-captures h3{margin:0 0 2px;font-size:12.5px;color:var(--heading)}.plan-recovery-panel .plan-recovery-captures p{margin:0 0 10px;font-size:11.5px;color:var(--muted)}.plan-recovery-panel .plan-recovery-actions{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin-top:12px}.plan-recovery-panel .plan-recovery-actions small{color:var(--muted);font-size:11px}.pages-page{--pages-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;position:relative}.pages-workbench{display:grid;grid-template-columns:340px minmax(0,1fr);gap:20px;align-items:start;margin-top:4px}.page-list-panel{position:sticky;top:72px;display:grid;grid-template-rows:auto auto minmax(0,1fr);overflow:hidden;border:1px solid var(--border);border-radius:12px;background:#fff;box-shadow:0 1px 2px #20251f05}.page-search{position:relative;display:block;margin:14px 14px 10px}.page-search>.icon{position:absolute;top:50%;left:12px;transform:translateY(-50%);color:var(--faint);pointer-events:none}.shell:has(.reference-sidebar-nav) .page-search .input{width:100%;min-height:38px;padding:8px 11px 8px 36px;font-size:13.5px}.page-search .input::-webkit-search-cancel-button{cursor:pointer}.page-list-summary{display:flex;align-items:center;justify-content:space-between;gap:8px;min-height:30px;padding:0 16px 8px;border-bottom:1px solid var(--divider);color:var(--muted);font-size:12.5px}.page-list-summary>span:first-child{font-weight:600;color:var(--text)}.page-list-hint{color:var(--faint);font-size:12px}.page-list-clear{padding:2px 8px;border:0;border-radius:999px;background:var(--brand-soft);color:var(--brand-dark);font:inherit;font-size:12px;font-weight:600;cursor:pointer}.page-list-clear:hover{background:var(--brand-tint)}.page-list{max-height:calc(100vh - 230px);overflow:auto;padding:4px 8px 12px;overscroll-behavior:contain}.page-list-group h2{position:sticky;top:0;z-index:1;margin:0;padding:12px 10px 6px;background:linear-gradient(#fff 80%,#fff0);color:var(--faint);font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase}.page-list-row{position:relative;display:grid;grid-template-columns:22px minmax(0,1fr);gap:10px;align-items:start;width:100%;padding:10px 10px 10px 12px;border:1px solid transparent;border-radius:9px;background:transparent;color:var(--text);text-align:left;cursor:pointer;transition:background .12s ease,border-color .12s ease}.page-list-row+.page-list-row{margin-top:2px}.page-list-row:hover{background:var(--hover)}.page-list-row:focus-visible{outline:none;box-shadow:var(--ring)}.page-list-row.selected{background:color-mix(in srgb,var(--brand-soft) 60%,#fff)}.page-list-row.active{border-color:color-mix(in srgb,var(--brand) 45%,var(--border));background:var(--brand-soft)}.page-list-row.active:before{content:"";position:absolute;top:10px;bottom:10px;left:-1px;width:3px;border-radius:0 3px 3px 0;background:var(--brand)}.page-list-check{display:grid;place-items:center;height:20px;margin-top:1px}.page-list-check input{width:16px;height:16px;margin:0;accent-color:var(--brand);cursor:pointer}.page-list-copy{display:grid;gap:3px;min-width:0}.page-list-copy strong{overflow:hidden;color:var(--heading);font-size:13.5px;font-weight:620;line-height:19px;text-overflow:ellipsis;white-space:nowrap}.page-list-row.active .page-list-copy strong{color:var(--brand-ink)}.page-list-copy code{overflow:hidden;color:var(--muted);font:12px/17px var(--pages-mono);text-overflow:ellipsis;white-space:nowrap}.page-list-copy small{display:flex;align-items:center;gap:5px;min-width:0;color:var(--muted);font-size:12px;line-height:17px;white-space:nowrap}.page-list-copy small i{color:var(--faint);font-style:normal}.evidence-dot{display:inline-block;width:8px;height:8px;border-radius:50%;background:#c3c9d3}.evidence-dot.good{background:#17a36b}.evidence-dot.warn{background:#e0a100}.page-list-empty{display:grid;justify-items:center;gap:10px;padding:36px 16px;color:var(--muted);font-size:13px;text-align:center}.page-detail-pane{display:grid;gap:0;min-width:0;overflow:hidden;border:1px solid var(--border);border-radius:12px;background:#fff;box-shadow:0 1px 2px #20251f05}.page-detail-pane>*+*{border-top:1px solid var(--divider)}.page-detail-empty{padding:40px 20px}.page-detail-header{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;padding:20px 24px 18px}.page-detail-copy{display:grid;gap:4px;min-width:0}.page-detail-copy>small{color:var(--brand-dark);font-size:11.5px;font-weight:700;letter-spacing:.06em;text-transform:uppercase}.page-detail-copy h2{margin:0;color:var(--heading);font-size:21px;font-weight:700;letter-spacing:-.2px;line-height:28px}.page-detail-meta{display:flex;flex-wrap:wrap;align-items:center;gap:10px;margin-top:2px}.page-detail-meta code{color:var(--muted);font:12.5px/18px var(--pages-mono);overflow-wrap:anywhere}.page-detail-meta small{color:var(--muted);font-size:12.5px}.page-detail-actions{display:flex;flex:0 0 auto;gap:8px}.page-detail-actions .btn.active-filter{background:var(--brand-soft);color:var(--brand-dark);box-shadow:0 0 0 1px var(--brand-tint)}.selected-pages-strip{display:flex;flex-wrap:wrap;align-items:center;gap:8px;padding:12px 24px;background:var(--subtle)}.selected-pages-strip>strong{display:inline-flex;align-items:center;gap:6px;margin-right:4px;color:var(--heading);font-size:12.5px;font-weight:650}.selected-page-chip{display:inline-flex;overflow:hidden;border:1px solid var(--border);border-radius:999px;background:#fff}.selected-page-chip.active{border-color:var(--brand);box-shadow:0 0 0 1px var(--brand)}.selected-page-chip button{display:inline-flex;align-items:center;min-height:28px;border:0;background:transparent;color:var(--text);font:inherit;font-size:12.5px;cursor:pointer}.selected-page-chip button:first-child{max-width:220px;padding:0 8px 0 12px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.selected-page-chip button:last-child{width:28px;justify-content:center;padding:0;border-left:1px solid var(--divider);color:var(--muted)}.selected-page-chip button:last-child:hover{background:var(--bad-soft);color:var(--bad)}.selected-page-chip.active button:first-child{color:var(--brand-dark);font-weight:650}.page-pending-strip,.page-inline-notice{display:flex;align-items:center;gap:10px;padding:12px 24px;color:var(--text);font-size:13.5px}.page-pending-strip{background:var(--info-soft);color:#143d6b}.page-pending-strip>.icon{color:var(--info);flex:0 0 auto}.page-pending-strip>span,.page-inline-notice>span:not(.notice-icon){flex:1}.page-inline-notice{background:var(--subtle)}.page-inline-notice>.icon{flex:0 0 auto;color:var(--info)}.notice-icon{display:grid;place-items:center;flex:0 0 auto;width:22px;height:22px;border-radius:50%;background:var(--brand-soft)}.notice-icon i{width:8px;height:8px;border-radius:50%;background:var(--brand);animation:pulse 1.2s infinite}.page-history-panel{display:grid;gap:0;background:var(--subtle)}.page-history-panel>header{display:flex;align-items:center;justify-content:space-between;padding:12px 24px 8px}.page-history-panel>header strong{display:inline-flex;align-items:center;gap:7px;color:var(--heading);font-size:13px;font-weight:650}.page-history-panel>header button{display:grid;place-items:center;width:26px;height:26px;border:0;border-radius:6px;background:transparent;color:var(--muted);cursor:pointer}.page-history-panel>header button:hover{background:#fff;color:var(--text)}.page-history-row{display:flex;align-items:flex-start;gap:12px;padding:9px 24px;border-top:1px solid var(--divider)}.page-history-row>.badge{flex:0 0 auto;margin-top:1px}.page-history-row>span{display:grid;flex:1;gap:2px;min-width:0}.page-history-row strong{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2;color:var(--heading);font-size:13px;font-weight:600;line-height:19px}.page-history-row small{color:var(--muted);font-size:12px}.page-history-empty{margin:0;padding:4px 24px 14px;color:var(--muted);font-size:13px}.current-page-preview{display:grid;grid-template-rows:auto minmax(0,1fr);height:520px;margin:20px 24px;overflow:hidden;border:1px solid var(--border);border-radius:10px;background:#fff;box-shadow:var(--lift)}.page-detail-pane>.current-page-preview{border-top:1px solid var(--border)}.preview-chrome{display:flex;align-items:center;gap:12px;height:34px;padding:0 12px;border-bottom:1px solid var(--divider);background:var(--subtle)}.preview-dots{display:inline-flex;gap:5px}.preview-dots i{width:9px;height:9px;border-radius:50%;background:#d7dce4}.preview-chrome code{flex:1;overflow:hidden;padding:3px 10px;border-radius:6px;background:#fff;box-shadow:var(--hairline);color:var(--muted);font:12px/18px var(--pages-mono);text-overflow:ellipsis;white-space:nowrap}.current-page-preview iframe{width:100%;height:100%;border:0;background:#fff}.preview-placeholder{display:grid;place-content:center;justify-items:center;gap:10px;height:100%;color:var(--muted);font-size:13.5px}.preview-placeholder strong{color:var(--text);font-weight:600}.preview-placeholder .spinner{width:20px;height:20px;border-width:2px;border-color:var(--brand-tint);border-top-color:var(--brand)}.page-edit-composer{display:grid;gap:0}.composer-head{display:flex;align-items:flex-start;gap:12px;padding:20px 24px 0}.composer-icon{display:grid;place-items:center;flex:0 0 auto;width:36px;height:36px;border-radius:9px;background:var(--brand-soft);color:var(--brand-dark)}.composer-head h2{margin:0;color:var(--heading);font-size:15px;font-weight:670;line-height:20px}.composer-head p{margin:3px 0 0;color:var(--muted);font-size:13px;line-height:19px;max-width:70ch}.composer-body{display:grid;gap:16px;padding:18px 24px 4px}.composer-field{display:grid;gap:6px}.composer-field .field-label{color:var(--heading);font-size:14px;font-weight:620}.composer-textarea{position:relative}.composer-textarea .textarea{width:100%;min-height:128px;padding:12px 14px 30px;border-radius:9px;font-size:14px;line-height:22px;resize:vertical}.composer-textarea>small{position:absolute;right:12px;bottom:10px;color:var(--faint);font-size:12px;pointer-events:none}.composer-textarea>small.warn{color:var(--warn)}.page-intent-chips{display:flex;flex-wrap:wrap;align-items:center;gap:7px}.page-intent-chips>span{margin-right:2px;color:var(--muted);font-size:12.5px;font-weight:600}.page-intent-chips button{min-height:30px;padding:4px 12px;border:1px solid var(--border);border-radius:999px;background:#fff;color:var(--text);font:inherit;font-size:12.5px;font-weight:500;cursor:pointer;transition:border-color .12s ease,color .12s ease,background .12s ease}.page-intent-chips button:hover:not(:disabled){border-color:var(--brand);background:var(--brand-soft);color:var(--brand-dark)}.page-intent-chips button:focus-visible{outline:none;box-shadow:var(--ring)}.page-intent-chips button:disabled{opacity:.5;cursor:not-allowed}.page-edit-options{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:10px}.page-option-card{display:grid;gap:4px;padding:12px 14px;border:1px solid var(--border);border-radius:10px;background:#fff;transition:border-color .12s ease,background .12s ease}.page-option-card.on{border-color:var(--brand-tint);background:color-mix(in srgb,var(--brand-soft) 55%,#fff)}.page-option-card .toggle-text{color:var(--heading);font-size:13.5px;font-weight:620}.page-option-card>small{padding-left:45px;color:var(--muted);font-size:12.5px;line-height:18px}.pages-page .agent-config-summary{min-height:44px}.page-agent-options{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;padding:14px;border:1px solid var(--divider);border-radius:10px;background:var(--subtle)}.composer-foot{display:flex;flex-wrap:wrap;align-items:center;gap:14px;margin-top:18px;padding:16px 24px;border-top:1px solid var(--divider);background:var(--subtle)}.composer-foot .btn{height:40px;padding-inline:20px;border-radius:9px;font-size:14px}.composer-foot small{color:var(--muted);font-size:12.5px}.page-edit-running{display:grid;gap:0}.page-edit-running>header{display:flex;align-items:flex-start;gap:12px;padding:18px 24px;background:linear-gradient(180deg,var(--brand-soft),#fff)}.page-edit-running>header>div{flex:1;min-width:0}.running-pulse{display:grid;place-items:center;flex:0 0 auto;width:36px;height:36px;border-radius:9px;background:#fff;box-shadow:var(--hairline)}.running-pulse i{width:10px;height:10px;border-radius:50%;background:var(--brand);animation:pulse 1.2s infinite}.page-edit-running h2{margin:0 0 6px;color:var(--heading);font-size:16px;font-weight:670;line-height:22px}.page-edit-running blockquote{margin:0;padding:8px 12px;border-left:3px solid var(--brand);border-radius:0 6px 6px 0;background:#fff;color:var(--text);font-size:13.5px;line-height:20px}.page-edit-running .authoring-live-log{padding:8px 24px 20px}.page-edit-review{display:grid;gap:0}.page-review-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;padding:20px 24px 12px}.page-review-head>div{display:grid;gap:3px;min-width:0}.page-review-head small{color:var(--brand-dark);font-size:11.5px;font-weight:700;letter-spacing:.06em;text-transform:uppercase}.page-review-head h2{margin:0;color:var(--heading);font-size:20px;font-weight:700;line-height:26px}.page-review-head p{margin:0;color:var(--muted);font-size:13.5px;line-height:20px}.page-review-instruction{display:flex;align-items:flex-start;gap:8px;margin:0 24px 16px;padding:10px 14px;border-radius:8px;background:var(--subtle);color:var(--text);font-size:13.5px;line-height:20px}.page-review-instruction>.icon{flex:0 0 auto;margin-top:3px;color:var(--faint)}.page-edit-review>.note{margin:0 24px 14px}.note-body{display:grid;gap:8px}.note-issues{margin:0;padding-left:18px;display:grid;gap:3px;font-size:12.5px}.note-issues code{margin-right:6px;font:12px var(--pages-mono)}.note-actions{display:flex;flex-wrap:wrap;gap:8px}.page-review-toolbar{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:10px 14px;padding:12px 24px;border-top:1px solid var(--divider);border-bottom:1px solid var(--divider);background:var(--subtle)}.page-review-toolbar .select-wrap{min-width:260px}.page-review-path{color:var(--muted);font:12.5px/18px var(--pages-mono)}.page-review-controls{display:flex;flex-wrap:wrap;align-items:center;gap:8px}.page-review-controls .btn.active-filter{background:var(--brand-soft);color:var(--brand-dark);box-shadow:0 0 0 1px var(--brand-tint)}.page-review-body{min-height:320px;background:var(--subtle)}.page-review-body .review-device{min-height:360px}.page-review-body .review-frame{height:min(58vh,640px);min-height:360px}.page-review-body .source-diff{padding:16px 24px}.page-related-changes{padding:0 24px;border-top:1px solid var(--divider)}.page-related-changes summary{display:flex;align-items:center;gap:8px;padding:12px 0;color:var(--heading);font-size:13px;font-weight:650;cursor:pointer;list-style:none}.page-related-changes summary::-webkit-details-marker{display:none}.page-related-changes summary:before{content:"";width:6px;height:6px;border-right:1.5px solid var(--muted);border-bottom:1.5px solid var(--muted);transform:rotate(-45deg);transition:transform .12s ease}.page-related-changes[open] summary:before{transform:rotate(45deg)}.page-related-changes summary span{padding:1px 7px;border-radius:999px;background:#e6e9ee;color:#4a5262;font-size:11.5px}.page-related-changes>div{display:flex;align-items:center;gap:10px;padding:8px 0 8px 14px;border-top:1px solid var(--divider)}.page-related-changes>div>.icon{color:var(--faint)}.page-related-changes>div>span{display:grid;flex:1;gap:1px;min-width:0}.page-related-changes>div strong{color:var(--heading);font-size:13px;font-weight:600}.page-related-changes>div code{color:var(--muted);font:12px var(--pages-mono);overflow-wrap:anywhere}.page-related-changes>div:last-child{padding-bottom:14px}.page-refine{display:grid;gap:12px;padding:16px 24px;border-top:1px solid var(--divider);background:color-mix(in srgb,var(--brand-soft) 45%,#fff)}.page-refine .textarea{background:#fff}.page-refine-actions{display:flex;gap:8px}.page-review-actions{display:flex;flex-wrap:wrap;align-items:center;gap:8px;padding:14px 24px;border-top:1px solid var(--divider);background:#fff}.page-review-actions .btn{height:38px;padding-inline:18px;border-radius:9px;font-size:14px}.page-review-actions .btn.active-filter{background:var(--brand-soft);color:var(--brand-dark);box-shadow:0 0 0 1px var(--brand-tint)}.page-review-actions small{margin-left:auto;color:var(--muted);font-size:12.5px}.page-edit-failure{display:flex;align-items:flex-start;gap:12px;margin:0 24px 20px;padding:14px 16px;border:1px solid #fecdca;border-radius:10px;background:var(--bad-soft)}.failure-icon{display:grid;place-items:center;flex:0 0 auto;width:30px;height:30px;border-radius:8px;background:#fff;color:var(--bad);box-shadow:0 0 0 1px #fecdca}.page-edit-failure>div{display:grid;gap:6px;min-width:0}.page-edit-failure strong{color:#912018;font-size:13.5px;font-weight:650}.page-edit-failure p{margin:0;color:#7a271a;font-size:13px;line-height:19px;overflow-wrap:anywhere}.page-edit-failure .note-actions{margin-top:4px}.page-updated-toast{position:fixed;right:24px;bottom:24px;z-index:40;display:flex;align-items:center;gap:12px;max-width:min(460px,calc(100vw - 48px));padding:12px 12px 12px 14px;border:1px solid var(--border);border-radius:12px;background:#fff;box-shadow:var(--pop);animation:page-toast-in .18s ease-out}.toast-icon{display:grid;place-items:center;flex:0 0 auto;width:28px;height:28px;border-radius:50%;background:var(--good-soft);color:var(--good)}.toast-copy{display:grid;flex:1;gap:1px;min-width:0}.toast-copy strong{color:var(--heading);font-size:13.5px;font-weight:650}.toast-copy small{overflow:hidden;color:var(--muted);font-size:12px;text-overflow:ellipsis;white-space:nowrap}.toast-close{display:grid;place-items:center;width:28px;height:28px;border:0;border-radius:6px;background:transparent;color:var(--muted);cursor:pointer}.toast-close:hover{background:var(--hover);color:var(--text)}@keyframes page-toast-in{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}.history-row.clickable{cursor:pointer}.history-row.clickable:hover td{background:var(--hover)}@media(max-width:1100px){.pages-workbench{grid-template-columns:300px minmax(0,1fr);gap:16px}.page-agent-options{grid-template-columns:1fr}}@media(max-width:900px){.pages-workbench{grid-template-columns:1fr}.page-list-panel{position:static}.page-list{max-height:360px}.page-detail-header{flex-direction:column}.page-detail-actions{flex-wrap:wrap}.current-page-preview{height:420px;margin:16px}.composer-head,.composer-body,.composer-foot,.page-review-head,.page-review-toolbar,.page-review-actions,.page-edit-running>header,.page-edit-running .authoring-live-log,.page-related-changes,.page-refine,.selected-pages-strip,.page-pending-strip,.page-inline-notice,.page-detail-header{padding-inline:16px}.page-review-instruction,.page-edit-review>.note,.page-edit-failure{margin-inline:16px}.page-review-body .source-diff{padding:12px 16px}.page-review-actions small{margin-left:0;width:100%}.page-updated-toast{right:12px;bottom:12px;left:12px;max-width:none}}.workflow-stages li.pending{color:var(--muted);opacity:.75}.workflow-stages li.pending>span{border-style:dashed}.workflow-stages li small{margin-left:4px;padding:1px 6px;border-radius:999px;background:var(--brand-soft);color:var(--brand-dark);font-size:10px;font-weight:600}.workflow-stages li.completed small{background:var(--good-soft);color:var(--good)}.shell:has(.reference-sidebar-nav) .workflow-stages li.pending{color:var(--muted)}.shell:has(.reference-sidebar-nav) .workflow-stages li.pending>span{border-style:dashed}.proposal-revision-live{display:grid;gap:10px;padding:12px 18px;border-bottom:1px solid var(--divider);background:#f7fbfb}.proposal-revision-live>header{display:flex;align-items:center;gap:8px;color:var(--heading);font-size:12px}.proposal-revision-live>header small{color:var(--muted);font-size:11px}.proposal-lifecycle-notice.failed .proposal-failed-actions .btn{text-decoration:none}.publish-signin-pending{display:flex;align-items:flex-start;gap:10px;margin:0 20px 14px;padding:12px 14px;border:1px solid #b7dfe0;border-radius:10px;color:#0b5f5c;background:#eaf7f6;font-size:12.5px}.publish-signin-pending>span{flex:1;display:grid;gap:3px}.publish-signin-pending strong{color:#0b5f5c}.publish-signin-pending small{color:var(--text)}.publish-signin-pending a{color:#0b5f5c;font-size:12px}.publish-signin-required .btn{margin-left:auto}.error-boundary .panel-body{display:grid;justify-items:start;gap:10px;padding:26px 28px}.error-boundary-icon{width:40px;height:40px;display:grid;place-items:center;border-radius:12px;color:var(--bad);background:var(--bad-soft)}.error-boundary h2{margin:4px 0 0;color:var(--heading);font-size:18px}.error-boundary p{margin:0;max-width:60ch;color:var(--muted);font-size:13.5px;line-height:20px}.error-boundary-detail{max-width:100%;margin:4px 0;padding:10px 12px;border-radius:8px;background:var(--subtle);color:var(--text);font-size:12px;line-height:17px;white-space:pre-wrap;overflow-wrap:anywhere}.source-freshness{display:grid;gap:12px;padding:16px 20px;border:1px solid var(--border);border-radius:14px;background:#fff}.source-freshness>header{display:flex;align-items:center;gap:12px}.source-freshness>header>span{width:34px;height:34px;display:grid;flex:0 0 auto;place-items:center;border-radius:10px;color:var(--muted);background:var(--subtle)}.source-freshness.current>header>span{color:var(--good);background:var(--good-soft)}.source-freshness.stale>header>span{color:var(--warn);background:var(--warn-soft)}.source-freshness.stale{border-color:#f6e3b4;background:#fffdf5}.source-freshness>header>div{flex:1;min-width:0}.source-freshness h2{margin:0;color:var(--heading);font-size:14px;line-height:20px}.source-freshness p{margin:2px 0 0;color:var(--muted);font-size:12.5px;line-height:18px}.source-freshness p strong{color:var(--text);font-weight:600}.source-freshness-pages{margin:0;padding:0;list-style:none;display:grid;gap:6px}.source-freshness-pages li{display:flex;flex-wrap:wrap;gap:4px 12px;align-items:baseline;font-size:12px;color:var(--muted)}.source-freshness-pages li code{color:var(--text);font-size:12px}.source-freshness-pages li.more{color:var(--faint)}.source-freshness-sources{font-size:11.5px;color:var(--faint)}.stale-form-notice{display:flex;flex-wrap:wrap;align-items:center;gap:10px;margin-bottom:14px;padding:9px 12px;border-radius:10px;color:var(--info);background:var(--info-soft);font-size:12.5px}.stale-form-notice span{flex:1;min-width:200px}.plan-pending-refresh{display:flex;flex-wrap:wrap;align-items:center;gap:10px;padding:10px 14px;border:1px solid #cfe0f8;border-radius:12px;color:var(--info);background:var(--info-soft);font-size:12.5px}.plan-pending-refresh>span:nth-child(2){flex:1;min-width:240px}.plan-pending-refresh strong{color:var(--heading)}.plan-pending-actions{display:flex;gap:8px}.history-pages{display:block;color:var(--muted);font-size:11.5px}.proposal-lifecycle-notice.concurrent{align-items:flex-start;color:var(--warn);border-color:#f6e3b4;background:#fffaeb}.proposal-lifecycle-notice.concurrent strong{color:var(--warn)}.proposal-concurrent-warning{display:grid;gap:6px;width:100%;padding:12px 14px;border:1px solid #f6e3b4;border-radius:12px;background:#fffaeb;text-align:left}.proposal-concurrent-warning strong{display:flex;align-items:center;gap:6px;color:var(--warn);font-size:13px}.proposal-concurrent-warning p{margin:0;color:var(--text);font-size:12.5px;line-height:18px}.proposal-concurrent-warning ul{margin:0;padding-left:18px;color:var(--text);font-size:12px}.proposal-concurrent-warning code{font-size:12px}.shell:has(.reference-sidebar-nav) .review-file-picker-status.concurrent{color:var(--warn);background:var(--warn-soft)}.shell:has(.reference-sidebar-nav) .review-file-group+.review-file-group{border-top:1px solid var(--divider)}.shell:has(.reference-sidebar-nav) .review-file-group>header{display:flex;align-items:baseline;gap:8px;padding:10px 14px 2px}.shell:has(.reference-sidebar-nav) .review-file-group>header strong{color:var(--heading);font-size:11px;font-weight:700;letter-spacing:.4px;text-transform:uppercase}.shell:has(.reference-sidebar-nav) .review-file-group>header small{color:var(--faint);font-size:11px}.shell:has(.reference-sidebar-nav) .review-file-group.warn>header strong{color:var(--warn)}.shell:has(.reference-sidebar-nav) .review-file-group-toggle{display:flex;align-items:center;gap:6px;width:100%;padding:9px 14px 11px;border:0;border-top:1px solid var(--divider);color:var(--brand-dark);background:transparent;font:inherit;font-size:12px;font-weight:600;text-align:left;cursor:pointer}.shell:has(.reference-sidebar-nav) .review-file-group-toggle:hover{background:var(--hover)}.shell:has(.reference-sidebar-nav) .review-file-group-toggle[aria-expanded=true] .icon{transform:rotate(90deg)}.project-switcher{position:relative}.project-switcher-toggle{width:100%;cursor:pointer;font:inherit;text-align:left}.project-switcher-toggle>.icon{flex:0 0 auto;margin-left:auto;color:var(--faint)}.project-switcher-toggle:hover{border-color:#b9c3cc;background:#fff}.project-switcher-toggle[aria-expanded=true]{border-color:var(--brand);box-shadow:0 0 0 2px var(--brand-soft)}.project-switcher-menu{position:fixed;z-index:60;width:min(360px,calc(100vw - 32px));max-height:calc(100vh - 90px);overflow:auto;display:grid;gap:4px;padding:8px;border:1px solid var(--border);border-radius:12px;background:#fff;box-shadow:0 16px 40px #1720332e}.project-switcher-current{display:grid;gap:2px;padding:8px 10px 10px;border-bottom:1px solid var(--border)}.project-switcher-current small,.project-switcher-section>small{color:var(--faint);font-size:10.5px;font-weight:650;letter-spacing:.04em;text-transform:uppercase}.project-switcher-current strong{color:var(--heading);font-size:13px}.project-switcher-current span{overflow:hidden;color:var(--muted);font-size:11px;text-overflow:ellipsis;white-space:nowrap}.project-switcher-section{display:grid;gap:2px;padding:8px 4px 4px}.project-switcher-section>small{padding:0 6px 4px}.project-switcher-empty{padding:4px 6px 6px;color:var(--muted);font-size:12px}.project-recent-row{display:flex;align-items:stretch;gap:2px}.project-recent-row>button:first-child{min-width:0;flex:1 1 auto;display:flex;align-items:center;gap:10px;padding:7px 8px;border-radius:8px;font:inherit;text-align:left}.project-recent-row>button:first-child:hover:not(:disabled){background:var(--hover, #f3f6f8)}.project-recent-row.missing>button:first-child{opacity:.6}.project-recent-mark{width:26px;height:26px;display:grid;flex:0 0 auto;place-items:center;border:1px solid #b9e4e1;border-radius:6px;color:var(--brand-dark);background:var(--brand-soft);font-size:12px;font-weight:700}.project-recent-copy{min-width:0;display:grid;line-height:15px}.project-recent-copy strong{overflow:hidden;color:var(--heading);font-size:12.5px;font-weight:600;text-overflow:ellipsis;white-space:nowrap}.project-recent-copy small{overflow:hidden;color:var(--faint);font-size:11px;text-overflow:ellipsis;white-space:nowrap}.project-recent-forget{width:28px;display:grid;flex:0 0 auto;place-items:center;border-radius:8px;color:var(--faint)}.project-recent-forget:hover{color:var(--heading);background:var(--hover, #f3f6f8)}.project-switcher-actions{display:grid;gap:2px;padding:6px 4px 2px;border-top:1px solid var(--border)}.project-switcher-actions>button{display:flex;align-items:center;gap:10px;padding:8px;border-radius:8px;color:var(--brand-dark);font:inherit;text-align:left}.project-switcher-actions>button:hover:not(:disabled){background:#f2fafa}.project-switcher-actions>button>span{min-width:0;display:grid;line-height:15px}.project-switcher-actions strong{color:var(--heading);font-size:12.5px;font-weight:600}.project-switcher-actions small{color:var(--faint);font-size:11px}.project-switcher-menu .spinner{margin-left:auto}.project-dialog{position:relative;width:min(640px,100%);max-height:calc(100vh - 40px);display:grid;gap:18px;padding:24px;overflow:auto;border:1px solid var(--border);border-radius:12px;background:#fff;box-shadow:0 20px 55px #17203333}.project-dialog>header{display:grid;grid-template-columns:44px minmax(0,1fr);gap:16px}.project-dialog h2{padding-right:28px;color:var(--heading);font-size:18px;line-height:24px;font-weight:700}.project-dialog>header p{margin-top:5px;color:var(--muted);font-size:13px;line-height:19px}.import-existing-panel{display:grid;gap:14px}.import-existing-panel .source-folder-input{display:flex;gap:8px}.import-existing-panel .source-folder-input .input{flex:1 1 auto;min-width:0}.import-existing-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.import-inspection{display:flex;align-items:flex-start;gap:10px;padding:10px 12px;border:1px solid var(--border);border-radius:9px;background:#f8fafb}.import-inspection>span{width:26px;height:26px;display:grid;flex:0 0 auto;place-items:center;border-radius:50%}.import-inspection.ok>span{color:#16794b;background:#e9f8f0}.import-inspection.warn>span{color:#a15c00;background:#fff0de}.import-inspection.bad>span{color:var(--bad, #b42318);background:#fdecea}.import-inspection>div{display:grid;gap:2px}.import-inspection strong{color:var(--heading);font-size:13px;font-weight:650}.import-inspection small{color:var(--muted);font-size:12px;line-height:17px}.import-page-sample{display:grid;gap:6px}.import-page-sample>small{color:var(--faint);font-size:11px;font-weight:650;letter-spacing:.04em;text-transform:uppercase}.import-page-sample ul{max-height:140px;margin:0;padding:8px 10px;overflow:auto;list-style:none;border:1px solid var(--border);border-radius:8px;background:#fbfcfd}.import-page-sample li{padding:2px 0;font-size:12px}.import-page-sample code{font:12px var(--pages-mono, ui-monospace, monospace);color:var(--heading)}.import-install-choice{display:flex;align-items:flex-start;gap:10px;padding:10px 12px;border:1px solid #f2dcb8;border-radius:9px;background:#fff8ee;cursor:pointer}.import-install-choice input{margin-top:3px}.import-install-choice>span{display:grid;gap:2px}.import-install-choice strong{color:var(--heading);font-size:12.5px;font-weight:600}.import-install-choice small{color:var(--muted);font-size:12px;line-height:17px}.import-existing-actions{display:flex;justify-content:flex-end;gap:8px;padding-top:4px}@media(max-width:720px){.import-existing-grid{grid-template-columns:minmax(0,1fr)}.project-switcher-menu{left:16px!important}}.capture-signin{display:grid;gap:14px}.capture-signin-block{display:grid;gap:12px;padding:14px 16px;border:1px solid var(--border);border-radius:10px;background:var(--subtle)}.capture-signin-block>header{display:grid;gap:3px}.capture-signin-block>header strong{font-size:13px}.capture-signin-block>header small{color:var(--muted);font-size:11.5px;line-height:16px}.capture-signin-block .plan-capture-readiness{background:#fff}.capture-signin-block .form-actions.start{justify-content:flex-start}.page-text-matches{max-height:260px;overflow:auto;padding:0 12px;list-style:none}.page-text-matches button{display:grid;gap:4px;text-align:left;width:100%;padding:8px;background:transparent;color:inherit;border:0;cursor:pointer}.page-text-matches small{white-space:normal;overflow-wrap:anywhere}.text-editor-body select,.text-editor-body input,.text-editor-body textarea{max-width:100%}.text-editor-body article{padding:12px 0;border-bottom:1px solid var(--border)}.plan-failed-panel{border-color:#f3c7c3}.plan-failed-head{display:flex;gap:12px;align-items:flex-start}.plan-failed-icon{width:36px;height:36px;flex:none;display:grid;place-items:center;border-radius:10px;color:var(--bad);background:var(--bad-soft)}.plan-failed-head h2{margin:0 0 4px;color:var(--heading);font-size:16px;line-height:22px;font-weight:650}.plan-failed-head p{margin:0;color:var(--text);font-size:13.5px;line-height:20px}.plan-failed-error{margin:14px 0 0;max-height:180px;overflow:auto;padding:10px 12px;border:1px solid var(--divider);border-radius:8px;background:var(--subtle);color:var(--text);font:12px/18px var(--font-mono);white-space:pre-wrap;overflow-wrap:anywhere}.plan-retry-row{display:flex;flex-wrap:wrap;align-items:flex-end;gap:12px;margin-top:14px}.plan-retry-row .field{flex:1 1 260px;max-width:360px;margin:0}.plan-failed-panel .note{margin-top:12px}.plan-coverage-warning{display:flex;flex-wrap:wrap;align-items:center;gap:12px 14px;margin:0 0 12px;padding:14px 16px;border:1px solid #f1d49a;border-radius:11px;background:#fffaeb}.plan-coverage-warning-icon{width:34px;height:34px;flex:none;display:grid;place-items:center;border-radius:9px;color:var(--warn);background:var(--warn-soft)}.plan-coverage-warning>div:nth-child(2){flex:1 1 280px;min-width:0}.plan-coverage-warning strong{display:block;color:var(--heading);font-size:14px;line-height:20px}.plan-coverage-warning p{margin:2px 0 0;color:var(--text);font-size:13px;line-height:19px}.plan-coverage-warning-actions{display:flex;flex-wrap:wrap;gap:8px}.run-estimate{display:flex;align-items:flex-start;gap:8px;margin:0 0 12px;color:var(--muted);font-size:12.5px;line-height:18px}.run-estimate .icon{flex:none;margin-top:2px}.batch-limits-control .run-estimate{margin:10px 0 0}.proposal-screenshot-result.thin{background:#fffaeb}.proposal-screenshot-result.thin .screenshot-camera{color:var(--warn);background:#fdf1cf}.preview-notice-toast .toast-copy a{color:var(--info);font-weight:600;overflow-wrap:anywhere}.proposal-applied-dialog footer{flex-wrap:wrap}.pages-view-switch{display:inline-flex}.navigation-view{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,42%);gap:20px;align-items:start;margin-top:4px}.navigation-editor-pane{display:grid;gap:14px;min-width:0;padding:18px 20px 20px;border:1px solid var(--border);border-radius:12px;background:#fff;box-shadow:0 1px 2px #20251f05}.navigation-editor-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px}.navigation-editor-head h2{margin:0;color:var(--heading);font-size:17px;font-weight:700;letter-spacing:-.15px}.navigation-editor-head p{margin:4px 0 0;color:var(--muted);font-size:13px;line-height:19px}.navigation-editor-head code{font:12px var(--pages-mono);color:var(--text)}.navigation-editor-actions{display:flex;flex:0 0 auto;gap:8px}.navigation-spaces{display:flex;gap:6px}.navigation-spaces button{padding:5px 12px;border:1px solid var(--border);border-radius:999px;background:#fff;color:var(--muted);font:inherit;font-size:12.5px;font-weight:600;cursor:pointer}.navigation-spaces button.active{border-color:var(--brand);background:var(--brand-soft);color:var(--brand-ink)}.navigation-preview-pane{position:sticky;top:72px;display:grid;grid-template-rows:auto minmax(0,1fr) auto;overflow:hidden;height:min(78vh,860px);border:1px solid var(--border);border-radius:12px;background:#fff;box-shadow:0 1px 2px #20251f05}.navigation-preview-pane iframe{width:100%;height:100%;border:0;background:#fff}.navigation-preview-note{display:flex;align-items:center;gap:6px;padding:8px 12px;border-top:1px solid var(--divider);background:var(--subtle);color:var(--muted);font-size:12px}.nav-tree-editor{display:grid;gap:12px}.nav-tree-toolbar{display:flex;flex-wrap:wrap;align-items:center;gap:8px}.nav-tree-toolbar small{flex-basis:100%;color:var(--faint);font-size:12px}.nav-tree-toolbar .btn.active-filter{background:var(--brand-soft);color:var(--brand-dark);box-shadow:0 0 0 1px var(--brand-tint)}.nav-tree-orphans{display:grid;gap:4px;padding:8px;border:1px dashed var(--strong-border);border-radius:10px;background:var(--subtle)}.nav-tree-orphans button{display:grid;grid-template-columns:18px minmax(0,1fr) auto;gap:10px;align-items:center;width:100%;padding:8px 10px;border:1px solid transparent;border-radius:8px;background:#fff;color:var(--text);font:inherit;text-align:left;cursor:pointer}.nav-tree-orphans button:hover{border-color:var(--brand)}.nav-tree-orphans span{display:grid;min-width:0}.nav-tree-orphans strong{font-size:13px;color:var(--heading)}.nav-tree-orphans code{overflow:hidden;color:var(--muted);font:11.5px var(--pages-mono);text-overflow:ellipsis;white-space:nowrap}.nav-tree-orphans b{color:var(--brand-dark);font-size:12.5px}.nav-tree{display:grid;gap:2px;min-height:120px;padding:6px;border:1px solid var(--border);border-radius:10px;background:#fff}.nav-tree-empty{padding:28px 16px;color:var(--muted);font-size:13px;text-align:center}.nav-tree-branch{display:grid;gap:2px}.nav-tree-children{display:grid;gap:2px;margin-left:22px;padding-left:8px;border-left:1px solid var(--divider)}.nav-tree-children:empty{min-height:6px}.nav-tree-row{position:relative;display:grid;grid-template-columns:16px 18px minmax(0,1fr) auto auto;gap:8px;align-items:center;min-height:38px;padding:5px 8px 5px 6px;border:1px solid transparent;border-radius:8px;background:#fff;color:var(--text);cursor:grab;transition:background .12s ease,border-color .12s ease}.nav-tree-row:hover{background:var(--hover)}.nav-tree-row:focus-visible{outline:none;box-shadow:var(--ring)}.nav-tree-row.active{border-color:color-mix(in srgb,var(--brand) 45%,var(--border));background:var(--brand-soft)}.nav-tree-row.dragging{opacity:.45}.nav-tree-row.drop-before:before,.nav-tree-row.drop-after:after{content:"";position:absolute;left:6px;right:6px;height:3px;border-radius:3px;background:var(--brand)}.nav-tree-row.drop-before:before{top:-3px}.nav-tree-row.drop-after:after{bottom:-3px}.nav-tree-row.drop-into{box-shadow:inset 0 0 0 2px var(--brand);background:var(--brand-soft)}.nav-tree-row.type-divider,.nav-tree-row.type-label{color:var(--muted)}.nav-tree-row.type-group>.nav-tree-label strong{font-weight:700}.nav-tree-handle{display:grid;place-items:center;color:var(--faint)}.nav-tree-icon{display:grid;place-items:center;color:var(--muted)}.nav-tree-row.type-group .nav-tree-icon{color:var(--brand-dark)}.nav-tree-label{display:flex;flex-wrap:wrap;align-items:baseline;gap:2px 10px;min-width:0}.nav-tree-label strong{color:var(--heading);font-size:13.5px;font-weight:600;line-height:18px}.nav-tree-label code{overflow:hidden;max-width:100%;color:var(--muted);font:11.5px/16px var(--pages-mono);text-overflow:ellipsis;white-space:nowrap}.nav-tree-label small{color:var(--faint);font-size:12px}.nav-tree-flag{padding:2px 7px;border-radius:999px;background:var(--warn-soft);color:var(--warn);font-size:11px;font-weight:650}.nav-tree-actions{display:inline-flex;gap:2px;opacity:0;transition:opacity .12s ease}.nav-tree-row:hover .nav-tree-actions,.nav-tree-row:focus-within .nav-tree-actions,.nav-tree-row.active .nav-tree-actions{opacity:1}.nav-tree-actions button{display:grid;place-items:center;width:26px;height:26px;border:0;border-radius:6px;background:transparent;color:var(--muted);cursor:pointer}.nav-tree-actions button:hover:not(:disabled){background:#fff;color:var(--heading);box-shadow:var(--hairline)}.nav-tree-actions button.danger:hover:not(:disabled){background:var(--bad-soft);color:var(--bad)}.nav-tree-actions button:disabled{opacity:.3;cursor:not-allowed}.nav-tree-details{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px;margin:0 0 6px 40px;padding:12px 14px;border:1px solid var(--border);border-radius:10px;background:var(--subtle)}.nav-tree-details .field small{color:var(--muted)}.nav-tree-hidden{display:grid;gap:4px;align-content:end}.nav-tree-hidden small{color:var(--muted);font-size:12px}.plan-navigation-panel .nav-tree{background:#fff}.asset-library{display:grid;gap:16px;padding:18px 20px 20px;border:1px solid var(--border);border-radius:12px;background:#fff;box-shadow:0 1px 2px #20251f05}.asset-library-head{display:flex;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;gap:14px}.asset-library-head h2{margin:0;color:var(--heading);font-size:17px;font-weight:700;letter-spacing:-.15px}.asset-library-head p{margin:4px 0 0;color:var(--muted);font-size:13px;line-height:19px}.asset-library-head code{font:12px var(--pages-mono);color:var(--text)}.asset-library-actions{display:flex;align-items:center;gap:10px}.asset-search{margin:0;min-width:220px}.asset-search .input{width:100%;min-height:36px;padding:8px 11px 8px 36px;font-size:13.5px}.asset-library-body{display:grid;gap:18px;align-items:start}.asset-library-body.with-detail{grid-template-columns:minmax(0,1fr) 320px}.asset-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:12px;min-height:140px}.asset-grid.picker{grid-template-columns:repeat(auto-fill,minmax(130px,1fr));max-height:50vh;overflow:auto}.asset-tile{display:grid;gap:8px;padding:8px;border:1px solid var(--border);border-radius:10px;background:#fff;color:var(--text);font:inherit;text-align:left;cursor:pointer;transition:border-color .12s ease,box-shadow .12s ease}.asset-tile:hover{border-color:var(--strong-border);box-shadow:var(--lift)}.asset-tile.active{border-color:var(--brand);box-shadow:0 0 0 1px var(--brand)}.asset-thumb{display:grid;place-items:center;aspect-ratio:4 / 3;overflow:hidden;border-radius:6px;background:repeating-conic-gradient(#f1f3f6 0% 25%,#fff 0% 50%) 0 0 / 16px 16px;color:var(--faint)}.asset-thumb img{max-width:100%;max-height:100%;object-fit:contain}.asset-tile-copy{display:grid;gap:2px;min-width:0}.asset-tile-copy strong{overflow:hidden;color:var(--heading);font-size:12.5px;font-weight:600;text-overflow:ellipsis;white-space:nowrap}.asset-tile-copy small{overflow:hidden;color:var(--muted);font-size:11.5px;text-overflow:ellipsis;white-space:nowrap}.asset-detail{position:sticky;top:72px;display:grid;gap:14px;padding:14px;border:1px solid var(--border);border-radius:10px;background:var(--subtle)}.asset-detail>header{display:flex;align-items:center;justify-content:space-between;gap:10px}.asset-detail>header strong{overflow:hidden;color:var(--heading);font-size:14px;text-overflow:ellipsis;white-space:nowrap}.asset-detail>header button{display:grid;place-items:center;width:26px;height:26px;border:0;border-radius:6px;background:transparent;color:var(--muted);cursor:pointer}.asset-detail>header button:hover{background:#fff;color:var(--heading)}.asset-detail-preview{display:grid;place-items:center;overflow:hidden;border-radius:8px;background:repeating-conic-gradient(#f1f3f6 0% 25%,#fff 0% 50%) 0 0 / 16px 16px}.asset-detail-preview img{max-width:100%;max-height:220px;object-fit:contain}.asset-detail-facts{display:grid;grid-template-columns:auto minmax(0,1fr);gap:6px 10px;margin:0;font-size:12.5px}.asset-detail-facts dt{color:var(--faint);font-weight:600}.asset-detail-facts dd{display:flex;align-items:center;gap:6px;min-width:0;margin:0}.asset-detail-facts code{overflow:hidden;color:var(--text);font:12px var(--pages-mono);text-overflow:ellipsis;white-space:nowrap}.asset-detail-facts button{display:grid;place-items:center;width:22px;height:22px;border:0;border-radius:5px;background:transparent;color:var(--muted);cursor:pointer}.asset-detail-facts button:hover{background:#fff;color:var(--heading)}.asset-alt{display:grid;gap:8px}.asset-references strong{display:block;margin-bottom:6px;color:var(--heading);font-size:12.5px}.asset-references ul{display:grid;gap:4px;margin:0;padding:0;list-style:none}.asset-references li{display:grid;gap:1px;font-size:12px}.asset-references code{font:11.5px var(--pages-mono);color:var(--text)}.asset-references small{color:var(--muted)}.asset-references small.warn{color:var(--warn)}.asset-detail>footer{display:flex;justify-content:space-between;gap:8px}.asset-picker .sources-dialog-body{display:grid;gap:12px}.asset-field{display:flex;align-items:center;gap:8px}.asset-field .input{flex:1;min-width:0}.asset-field-thumb{width:34px;height:34px;object-fit:contain;border-radius:6px;background:repeating-conic-gradient(#f1f3f6 0% 25%,#fff 0% 50%) 0 0 / 10px 10px}.capture-replace{display:inline-flex;align-items:center;gap:4px;margin-top:6px;padding:3px 8px;border:1px solid var(--border);border-radius:999px;background:#fff;color:var(--muted);font:inherit;font-size:11.5px;font-weight:600;cursor:pointer}.capture-replace:hover{border-color:var(--brand);color:var(--brand-dark)}.branding-grid{display:grid;gap:22px}.branding-section h3{margin:0 0 10px;color:var(--heading);font-size:13px;font-weight:700;letter-spacing:.04em;text-transform:uppercase}.color-field{display:flex;align-items:center;gap:8px}.color-field input[type=color]{width:38px;height:34px;padding:2px;border:1px solid var(--border);border-radius:8px;background:#fff;cursor:pointer}.color-field .input{flex:1;min-width:0;font-family:var(--pages-mono)}.color-clear{display:grid;place-items:center;width:26px;height:26px;border:0;border-radius:6px;background:transparent;color:var(--muted);cursor:pointer}.color-clear:hover{background:var(--hover);color:var(--heading)}.branding-config-hint{margin:0;color:var(--faint);font-size:12px}.branding-config-hint code{font:12px var(--pages-mono);color:var(--text)}.branding-preview{height:min(70vh,720px)}.branding-preview iframe{width:100%;height:100%;border:0}.page-metadata{padding:0 24px}.page-metadata-toggle{display:grid;grid-template-columns:auto auto minmax(0,1fr) auto;gap:10px;align-items:center;width:100%;padding:12px 0;border:0;background:transparent;color:var(--text);font:inherit;text-align:left;cursor:pointer}.page-metadata-toggle>span{color:var(--heading);font-size:13.5px;font-weight:650}.page-metadata-toggle>small{overflow:hidden;color:var(--faint);font-size:12px;text-overflow:ellipsis;white-space:nowrap}.page-metadata-body{display:grid;gap:12px;padding:4px 0 18px}.page-metadata-other{color:var(--faint);font-size:12px}.terms-editor{display:grid;gap:8px}.terms-empty{margin:0;color:var(--muted);font-size:13px}.terms-row{display:grid;grid-template-columns:minmax(120px,1fr) minmax(0,2fr) 28px;gap:8px;align-items:center}.terms-row button{display:grid;place-items:center;width:28px;height:28px;border:0;border-radius:6px;background:transparent;color:var(--muted);cursor:pointer}.terms-row button:hover:not(:disabled){background:var(--bad-soft);color:var(--bad)}.glossary-panel{display:grid;gap:14px}.glossary-status{display:flex;align-items:center;gap:12px}.glossary-status strong{display:block;color:var(--heading);font-size:14px}.glossary-status small{color:var(--muted);font-size:12.5px}.glossary-mark{display:grid;place-items:center;width:40px;height:40px;border-radius:10px;background:var(--subtle);color:var(--muted)}.glossary-mark.ready{background:var(--brand-soft);color:var(--brand-dark)}.authoring-content-type{display:flex;flex-wrap:wrap;align-items:center;gap:10px 14px;margin-bottom:14px}.authoring-content-type>strong{color:var(--heading);font-size:13.5px;font-weight:650}.release-template{display:grid;gap:14px;margin-top:14px;padding:16px 18px;border:1px solid var(--border);border-radius:12px;background:var(--subtle)}.release-template>header{display:flex;align-items:flex-start;gap:12px}.release-template>header>span{display:grid;place-items:center;width:34px;height:34px;border-radius:9px;background:#fff;color:var(--brand-dark);box-shadow:var(--hairline)}.release-template h2{margin:0;color:var(--heading);font-size:15px;font-weight:700}.release-template p{margin:3px 0 0;color:var(--muted);font-size:13px;line-height:19px}.release-refs-hint{color:var(--faint);font-size:12px}.plan-page-diagram{display:grid;gap:6px;padding:12px 0 0;border-top:1px solid var(--divider)}.plan-page-diagram small{color:var(--muted);font-size:12px}@media(max-width:1100px){.navigation-view{grid-template-columns:1fr}.navigation-preview-pane{position:static;height:480px}.asset-library-body.with-detail{grid-template-columns:1fr}.asset-detail{position:static}}:root{--brand: #0b7f7b;--brand-dark: #086663;--brand-soft: #e6f6f5;--brand-tint: #cbebe8;--brand-ink: #063b3a;--ink: #0f1f3d;--heading: #0f1f3d;--text: #2b3b57;--muted: #64718a;--faint: #8a95a8;--canvas: #ffffff;--app-canvas: #f6f7f9;--subtle: #f8fafc;--hover: #f1f4f8;--border: #e6e9ef;--divider: #edf0f5;--strong-border: #d2d9e3;--good: #127a52;--good-soft: #e3f5ea;--warn: #8a5300;--warn-soft: #fff1d6;--warn-dot: #d97706;--bad: #b42318;--bad-soft: #fdecea;--info: #2557a7;--info-soft: #e7effb;--font-ui: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;--font-display: Sora, "Instrument Sans", "Avenir Next", sans-serif;--font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;--radius: 8px;--radius-md: 10px;--radius-lg: 12px;--radius-xl: 14px;--ring: 0 0 0 3px rgb(11 127 123 / 20%);--hairline: 0 0 0 1px var(--border);--lift: 0 1px 1px rgb(15 31 61 / 4%);--pop: 0 12px 32px rgb(15 31 61 / 14%), 0 2px 6px rgb(15 31 61 / 8%);--float: 0 24px 64px rgb(15 31 61 / 22%), 0 2px 8px rgb(15 31 61 / 10%);--sidebar-width: 240px;--navbar-height: 56px;--page-width: 1040px;font-family:var(--font-ui);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.shell:has(.reference-sidebar-nav),.shell:has(.reference-sidebar-nav).proposal-shell,.shell:has(.reference-sidebar-nav).sources-shell{--heading: var(--ink);--text: #2b3b57;--muted: #64718a;--faint: #8a95a8;--border: #e6e9ef;--divider: #edf0f5;--strong-border: #d2d9e3;color:var(--text);background:var(--app-canvas);font-family:var(--font-ui);font-size:14px}.shell:has(.reference-sidebar-nav) .page h1,.shell:has(.reference-sidebar-nav) .page h2,.shell:has(.reference-sidebar-nav) .page h3{font-family:var(--font-ui);color:var(--heading);letter-spacing:-.01em}.shell:has(.reference-sidebar-nav) .page code,.shell:has(.reference-sidebar-nav) .page .mono,.shell:has(.reference-sidebar-nav) .page pre{font-family:var(--font-mono)}.shell:has(.reference-sidebar-nav) .page code:not(pre code){font-size:12.5px}.shell:has(.reference-sidebar-nav) :is(button,a,input,select,textarea):focus-visible{outline:2px solid var(--brand);outline-offset:2px}.kicker{display:block;color:var(--muted);font-family:var(--font-mono);font-size:11px;line-height:16px;font-weight:500;letter-spacing:.08em;text-transform:uppercase}.kicker.brand{color:var(--brand)}.shell:has(.reference-sidebar-nav){grid-template-columns:var(--sidebar-width) minmax(0,1fr)}.shell:has(.reference-sidebar-nav).proposal-shell{grid-template-columns:var(--sidebar-width) minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .sidebar{width:var(--sidebar-width);flex:0 0 var(--sidebar-width);gap:14px;padding:16px 12px;background:#fff;border-right:1px solid var(--border)}.sidebar-brand-row{display:flex;align-items:center;justify-content:space-between;padding:2px 6px 0}.shell:has(.reference-sidebar-nav) .workspace-brand{width:auto;padding:0;margin:0;display:inline-flex;align-items:center;gap:10px}.shell:has(.reference-sidebar-nav) .workspace-brand img{display:none}.brand-mark{width:28px;height:28px;display:grid;place-items:center;flex:0 0 auto;border-radius:8px;color:#fff;background:var(--brand);font-family:var(--font-display);font-size:17px;font-weight:700;line-height:1}.brand-word{color:var(--ink);font-family:var(--font-display);font-size:16px;font-weight:600;letter-spacing:-.01em}.sidebar-close{display:none;width:32px;height:32px;place-items:center;border-radius:8px;color:var(--muted)}.sidebar-close:hover{background:var(--hover);color:var(--heading)}.shell:has(.reference-sidebar-nav) .workspace-identity{min-height:44px;gap:10px;margin:0;padding:6px 10px;border:1px solid var(--border);border-radius:10px;background:var(--subtle);box-shadow:none;transition:border-color .12s ease,background-color .12s ease}.shell:has(.reference-sidebar-nav) .workspace-identity:hover{border-color:var(--strong-border);background:#fff}.shell:has(.reference-sidebar-nav) .workspace-identity[aria-expanded=true]{border-color:var(--brand);box-shadow:var(--ring)}.shell:has(.reference-sidebar-nav) .workspace-identity-mark{width:26px;height:26px;border-radius:50%;background:#1f2a44;color:#fff;font-family:var(--font-ui);font-size:10.5px;font-weight:600}.shell:has(.reference-sidebar-nav) .workspace-identity-copy strong{max-width:150px;color:var(--ink);font-size:13.5px;line-height:17px;font-weight:600}.shell:has(.reference-sidebar-nav) .workspace-identity-copy small{color:var(--muted);font-size:11.5px;line-height:15px}.shell:has(.reference-sidebar-nav) .reference-sidebar-nav{display:flex!important;flex-direction:column;gap:2px!important;padding:0;overflow-y:auto}.nav-divider{height:1px;margin:8px 10px;background:var(--border)}.shell:has(.reference-sidebar-nav) .reference-sidebar-nav .nav-item{width:100%;min-height:36px;display:grid;grid-template-columns:20px minmax(0,1fr) auto;align-items:center;column-gap:10px;padding:0 10px;border:0;border-radius:8px;color:var(--text);background:transparent;font:inherit;font-size:14px;line-height:18px;font-weight:500;text-align:left;box-shadow:none;transition:background-color .12s ease,color .12s ease}.shell:has(.reference-sidebar-nav) .reference-sidebar-nav .nav-item:hover{color:var(--ink);background:var(--hover)}.shell:has(.reference-sidebar-nav) .reference-sidebar-nav .nav-item.active{color:var(--brand-ink);background:var(--brand-soft);box-shadow:none}.shell:has(.reference-sidebar-nav) .reference-sidebar-nav .nav-item.active .nav-glyph{color:var(--brand)}.nav-glyph{width:20px;height:20px;display:grid;place-items:center;color:var(--muted)}.nav-copy{min-width:0;display:grid}.nav-copy>span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.nav-copy small{display:none}.shell:has(.reference-sidebar-nav) .nav-count{min-width:20px;height:20px;padding:0 6px;border-radius:10px;color:#fff;background:var(--brand);font-size:11.5px;line-height:20px;font-weight:600;text-align:center}.sidebar-foot{display:flex;flex-direction:column;gap:2px;margin-top:auto}.shell:has(.reference-sidebar-nav) .new-project-button,.shell:has(.reference-sidebar-nav) .sidebar-foot-link{width:100%;min-height:36px;display:grid;grid-template-columns:20px minmax(0,1fr);align-items:center;column-gap:10px;margin:0;padding:0 10px;border:0;border-radius:8px;color:var(--text);background:transparent;font:inherit;font-size:14px;font-weight:500;text-align:left;text-decoration:none;transition:background-color .12s ease,color .12s ease}.shell:has(.reference-sidebar-nav) .new-project-button:hover,.shell:has(.reference-sidebar-nav) .sidebar-foot-link:hover{color:var(--ink);background:var(--hover)}.shell:has(.reference-sidebar-nav) .new-project-button .nav-glyph,.shell:has(.reference-sidebar-nav) .sidebar-foot-link .nav-glyph{color:var(--muted);border:0;background:transparent}.shell:has(.reference-sidebar-nav) .new-project-button strong{color:inherit;font-size:14px;line-height:18px;font-weight:500}.shell:has(.reference-sidebar-nav) .new-project-button small{display:none}.shell:has(.reference-sidebar-nav) .workspace-navbar{height:var(--navbar-height);min-height:var(--navbar-height);gap:10px;padding:0 32px;border-bottom:1px solid var(--border);background:#f6f7f9eb;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}.workspace-crumbs{display:flex;align-items:center;gap:8px;min-width:0;color:var(--faint)}.workspace-crumb{padding:4px 6px;margin-left:-6px;border-radius:6px;color:var(--muted);font-size:14px;font-weight:400;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:260px}.workspace-crumb:hover{color:var(--heading);background:var(--hover)}.shell:has(.reference-sidebar-nav) .workspace-navbar .workspace-screen-title{color:var(--ink);font-family:var(--font-ui);font-size:14px;line-height:20px;font-weight:500;letter-spacing:0;white-space:nowrap}.workspace-back-link{display:inline-flex;align-items:center;gap:8px;padding:4px 8px;margin-left:-8px;border-radius:6px;color:var(--muted);font-size:14px;font-weight:500}.workspace-back-link:hover{color:var(--ink);background:var(--hover)}.workspace-activity-chip{display:inline-flex;align-items:center;gap:8px;height:30px;padding:0 10px 0 8px;border:0;border-radius:999px;color:var(--info);background:var(--info-soft);font-size:13px;font-weight:500}.workspace-activity-chip i{width:13px;height:13px;border-radius:50%;border:2px solid var(--info);border-right-color:transparent;background:transparent;animation:spin .8s linear infinite}@keyframes chip-pulse{0%,to{opacity:1}50%{opacity:.35}}@keyframes spin{to{transform:rotate(360deg)}}.workspace-search-button{display:inline-flex;align-items:center;gap:10px;height:34px;padding:0 10px 0 12px;border:1px solid var(--strong-border);border-radius:8px;color:var(--muted);background:#fff;font:inherit;font-size:13.5px;cursor:pointer;white-space:nowrap;transition:border-color .12s ease,color .12s ease}.workspace-search-button:hover{color:var(--ink);border-color:#bcc5d2}.workspace-search-button kbd{margin-left:8px;padding:2px 6px;border:1px solid var(--border);border-radius:5px;color:var(--faint);font-family:var(--font-mono);font-size:11px}.shell:has(.reference-sidebar-nav) .workspace-support-link{display:none}.shell:has(.reference-sidebar-nav) .workspace-preview-primary{min-height:36px;height:36px;gap:8px;padding:0 14px;border:1px solid var(--strong-border);border-radius:8px;color:var(--ink);background:#fff;box-shadow:var(--lift);transition:background-color .12s ease,border-color .12s ease}.shell:has(.reference-sidebar-nav) .workspace-preview-primary:hover{background:var(--subtle);border-color:#bcc5d2}.shell:has(.reference-sidebar-nav) .workspace-preview-primary strong{font-size:14px;font-weight:500}.shell:has(.reference-sidebar-nav) .workspace-preview-primary .icon:first-child{color:var(--muted)}.shell:has(.reference-sidebar-nav) .loading-bar{top:var(--navbar-height);left:var(--sidebar-width)}.shell:has(.reference-sidebar-nav) .main{background:var(--app-canvas)}.shell:has(.reference-sidebar-nav) .page,.shell:has(.reference-sidebar-nav).sources-shell .page,.shell:has(.reference-sidebar-nav).proposal-shell .page{max-width:var(--page-width);margin:0 auto;gap:24px;padding:32px 40px 64px;background:transparent}.shell:has(.reference-sidebar-nav).pages-shell .page,.shell:has(.reference-sidebar-nav).proposal-shell .page{max-width:1360px}.shell:has(.reference-sidebar-nav) .page:has(.settings){max-width:1120px}.shell:has(.reference-sidebar-nav) .authoring-page,.shell:has(.reference-sidebar-nav) .publish-page{width:100%;max-width:none;margin:0 auto}.shell:has(.reference-sidebar-nav) .page-head,.shell:has(.reference-sidebar-nav) .sources-page-header{min-height:0;align-items:flex-end;gap:16px 24px}.shell:has(.reference-sidebar-nav) .page-head-copy{display:grid;gap:8px}.shell:has(.reference-sidebar-nav) .page-head-copy:before{content:attr(data-kicker);display:block;color:var(--muted);font-family:var(--font-mono);font-size:11px;line-height:16px;font-weight:500;letter-spacing:.08em;text-transform:uppercase}.shell:has(.reference-sidebar-nav) .page-head-copy:not([data-kicker]):before{display:none}.shell:has(.reference-sidebar-nav) .page-head h1,.shell:has(.reference-sidebar-nav) .sources-page-header h1,.shell:has(.reference-sidebar-nav).proposal-shell .page-head h1{color:var(--ink);font-family:var(--font-display);font-size:28px;line-height:32px;font-weight:600;letter-spacing:-.02em}.shell:has(.reference-sidebar-nav) .page-head p,.shell:has(.reference-sidebar-nav) .sources-page-header p,.shell:has(.reference-sidebar-nav).proposal-shell .page-head p{margin-top:0;color:var(--muted);font-size:15px;line-height:22px;max-width:64ch}.shell:has(.reference-sidebar-nav) .page-head-actions{padding:0;gap:8px}.shell:has(.reference-sidebar-nav) .page-head-icon{display:none}.shell:has(.reference-sidebar-nav) .panel,.shell:has(.reference-sidebar-nav) .authoring-action-card,.shell:has(.reference-sidebar-nav) .sources-data-panel,.shell:has(.reference-sidebar-nav) .sources-library,.shell:has(.reference-sidebar-nav) .source-intelligence-panel,.shell:has(.reference-sidebar-nav) .publish-card{border:1px solid var(--border);border-radius:var(--radius-lg);background:#fff;box-shadow:none}.shell:has(.reference-sidebar-nav) .source-intelligence-panel{border:0;background:transparent;box-shadow:none}.shell:has(.reference-sidebar-nav) .panel-head{min-height:0;align-items:center;gap:14px;padding:16px 20px;border-bottom:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .panel-head h2{color:var(--ink);font-size:15px;line-height:20px;font-weight:600;letter-spacing:-.01em}.shell:has(.reference-sidebar-nav) .panel-head p{margin-top:2px;color:var(--muted);font-size:13px;line-height:18px}.shell:has(.reference-sidebar-nav) .panel-icon{width:20px;height:20px;border-radius:0;color:var(--muted);background:transparent}.shell:has(.reference-sidebar-nav) .panel-body{gap:20px;padding:20px}.shell:has(.reference-sidebar-nav) .panel-body.flush{padding:0;gap:0}.shell:has(.reference-sidebar-nav) .panel-foot{padding:12px 20px;background:var(--subtle);border-top:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .btn,.setup .btn,.command-palette .btn{gap:8px;border-radius:8px;font-family:var(--font-ui);font-weight:500;letter-spacing:0;transition:background-color .12s ease,border-color .12s ease,color .12s ease,box-shadow .12s ease}.shell:has(.reference-sidebar-nav) .btn.md,.setup .btn.md{height:36px;padding-inline:14px;border-radius:8px;font-size:14px}.shell:has(.reference-sidebar-nav) .btn.sm,.setup .btn.sm{height:30px;padding-inline:10px;border-radius:7px;font-size:13px}.shell:has(.reference-sidebar-nav) .btn.secondary,.setup .btn.secondary{color:var(--ink);background:#fff;box-shadow:0 0 0 1px var(--strong-border),var(--lift)}.shell:has(.reference-sidebar-nav) .btn.secondary:hover:not(:disabled),.setup .btn.secondary:hover:not(:disabled){background:var(--subtle);box-shadow:0 0 0 1px #bcc5d2,var(--lift)}.shell:has(.reference-sidebar-nav) .btn.primary,.shell:has(.reference-sidebar-nav) button.primary,.setup .btn.primary{color:#fff;border-color:var(--brand);background:var(--brand);box-shadow:0 1px 2px #063b3a2e}.shell:has(.reference-sidebar-nav) .btn.primary:hover:not(:disabled),.shell:has(.reference-sidebar-nav) button.primary:hover:not(:disabled),.setup .btn.primary:hover:not(:disabled){border-color:var(--brand-dark);background:var(--brand-dark)}.shell:has(.reference-sidebar-nav) .btn.danger,.setup .btn.danger{color:var(--bad);background:#fff;box-shadow:0 0 0 1px #f0c2bd}.shell:has(.reference-sidebar-nav) .btn.danger:hover:not(:disabled),.setup .btn.danger:hover:not(:disabled){background:var(--bad-soft)}.shell:has(.reference-sidebar-nav) .btn.ghost,.setup .btn.ghost{color:var(--text);box-shadow:none}.shell:has(.reference-sidebar-nav) .btn.ghost:hover:not(:disabled),.setup .btn.ghost:hover:not(:disabled){color:var(--ink);background:var(--hover)}.shell:has(.reference-sidebar-nav) .btn.link,.setup .btn.link{color:var(--brand);height:auto;padding:0;font-weight:500}.shell:has(.reference-sidebar-nav) .btn.link:hover:not(:disabled){color:var(--brand-dark);text-decoration:underline}.shell:has(.reference-sidebar-nav) .btn:disabled,.setup .btn:disabled{opacity:.5}.shell:has(.reference-sidebar-nav) .input,.setup .input{min-height:40px;padding:8px 12px;border:0;border-radius:8px;color:var(--ink);background:#fff;box-shadow:0 0 0 1px var(--strong-border);font-family:var(--font-ui);font-size:14px;transition:box-shadow .12s ease}.shell:has(.reference-sidebar-nav) .input::placeholder,.setup .input::placeholder{color:var(--faint)}.shell:has(.reference-sidebar-nav) .input:hover,.setup .input:hover{box-shadow:0 0 0 1px #bcc5d2}.shell:has(.reference-sidebar-nav) .input:focus,.setup .input:focus,.shell:has(.reference-sidebar-nav) .input:focus-within,.setup .input:focus-within{box-shadow:0 0 0 1px var(--brand),var(--ring);outline:none}.shell:has(.reference-sidebar-nav) .input.mono-input,.setup .input.mono-input{font-family:var(--font-mono);font-size:13px}.shell:has(.reference-sidebar-nav) .textarea,.setup .textarea{min-height:96px;line-height:21px;resize:vertical}.shell:has(.reference-sidebar-nav) .field,.setup .field{gap:8px}.shell:has(.reference-sidebar-nav) .field-label,.setup .field-label{color:var(--ink);font-size:13px;font-weight:500}.shell:has(.reference-sidebar-nav) .field small,.setup .field small{color:var(--muted);font-size:12.5px;line-height:17px}.shell:has(.reference-sidebar-nav) .field-error,.setup .field-error{color:var(--bad)}.shell:has(.reference-sidebar-nav) .custom-select-trigger,.setup .custom-select-trigger{display:flex;align-items:center;justify-content:space-between;gap:10px;text-align:left}.shell:has(.reference-sidebar-nav) .custom-select-menu,.shell:has(.reference-sidebar-nav) .editable-select-menu,.custom-select-menu,.editable-select-menu{border:1px solid var(--border);border-radius:10px;background:#fff;box-shadow:var(--pop)}.custom-select-menu button,.editable-select-menu button{font-family:var(--font-ui);font-size:14px}.custom-select-menu button.highlighted,.editable-select-menu button.highlighted{background:var(--hover)}.custom-select-menu button.selected,.editable-select-menu button.selected{color:var(--brand-ink);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .keyvalues{border:1px solid var(--border);border-radius:10px;box-shadow:none}.shell:has(.reference-sidebar-nav) .keyvalues dt{font-size:12.5px;color:var(--muted)}.shell:has(.reference-sidebar-nav) .keyvalues dd{font-size:14px}.shell:has(.reference-sidebar-nav) .keyvalues code{padding:1px 6px;border-radius:5px;background:var(--subtle);box-shadow:var(--hairline)}.shell:has(.reference-sidebar-nav) .form-grid,.setup .form-grid,.sources-dialog-body .form-grid,.setup-capture-grid{grid-template-columns:minmax(0,1fr);gap:20px}.shell:has(.reference-sidebar-nav) .form-grid .field.wide,.setup .form-grid .field.wide{grid-column:auto}.shell:has(.reference-sidebar-nav) .badge,.setup .badge,.badge{display:inline-flex;align-items:center;gap:6px;height:22px;padding:0 8px;border-radius:999px;background:var(--hover);color:var(--text);box-shadow:none;font-family:var(--font-ui);font-size:12px;line-height:1;font-weight:500;white-space:nowrap;text-transform:none}.badge:before{content:"";width:6px;height:6px;border-radius:50%;background:var(--faint);flex:0 0 auto}.badge.no-dot:before,.badge:has(.icon):before{display:none}.shell:has(.reference-sidebar-nav) .badge.good,.badge.good{background:var(--good-soft);color:var(--good)}.badge.good:before{background:var(--good)}.shell:has(.reference-sidebar-nav) .badge.warn,.badge.warn{background:var(--warn-soft);color:var(--warn)}.badge.warn:before{background:var(--warn-dot)}.shell:has(.reference-sidebar-nav) .badge.bad,.badge.bad{background:var(--bad-soft);color:var(--bad)}.badge.bad:before{background:var(--bad)}.shell:has(.reference-sidebar-nav) .badge.info,.badge.info{background:var(--info-soft);color:var(--info)}.badge.info:before{background:var(--info)}.shell:has(.reference-sidebar-nav) .badge.teal,.badge.teal{background:var(--brand-soft);color:var(--brand-ink)}.badge.teal:before{background:var(--brand)}.chip{display:inline-flex;align-items:center;gap:6px;height:30px;padding:0 12px;border:1px solid var(--strong-border);border-radius:999px;color:var(--text);background:#fff;font-family:var(--font-ui);font-size:13px;font-weight:500;white-space:nowrap;cursor:pointer;transition:background-color .12s ease,border-color .12s ease,color .12s ease}.chip:hover{border-color:#bcc5d2}.chip.on,.chip[aria-pressed=true],.chip[aria-checked=true]{color:var(--brand-ink);background:var(--brand-soft);border-color:var(--brand-tint)}.radio-rows{display:grid;border:1px solid var(--strong-border);border-radius:10px;background:#fff;overflow:hidden}.radio-rows>*{display:flex;align-items:center;gap:14px;width:100%;min-height:48px;padding:12px 16px;border:0;border-top:1px solid var(--border);border-radius:0;color:var(--ink);background:#fff;font:inherit;font-size:14px;text-align:left;cursor:pointer;transition:background-color .12s ease}.radio-rows>*:first-child{border-top:0}.radio-rows>*:hover{background:var(--subtle)}.radio-rows>*.selected,.radio-rows>*[aria-checked=true],.radio-rows>*[aria-pressed=true],.radio-rows>*.active{background:var(--brand-soft)}.radio-rows>*>.radio-mark,.radio-rows>*:before{content:"";width:18px;height:18px;flex:0 0 auto;box-sizing:border-box;border:1.5px solid var(--strong-border);border-radius:50%;background:#fff}.radio-rows>*.selected:before,.radio-rows>*[aria-checked=true]:before,.radio-rows>*[aria-pressed=true]:before,.radio-rows>*.active:before{border:5px solid var(--brand)}.radio-rows>*>span:not(.radio-mark):not(.badge){flex:1 1 auto;min-width:0;display:flex;align-items:baseline;gap:10px;flex-wrap:wrap}.radio-rows strong{color:var(--ink);font-size:14px;font-weight:500}.radio-rows small{color:var(--muted);font-size:13px}.radio-rows>*>b,.radio-rows>*>em{margin-left:auto;color:var(--muted);font-size:13px;font-style:normal;font-weight:500;white-space:nowrap}.radio-rows>*>.icon:first-child{display:none}.vrows{display:grid}.vrow{display:flex;align-items:center;gap:16px;padding:14px 20px;border-top:1px solid var(--border)}.vrow:first-child{border-top:0}.vrow>.vrow-label{flex:1 1 auto;min-width:0;display:grid;gap:2px;color:var(--ink);font-size:14px;font-weight:500}.vrow>.vrow-label small{color:var(--muted);font-size:12.5px;font-weight:400}.vrow>.vrow-value{display:flex;align-items:center;gap:12px;color:var(--muted);font-size:14px}.vrow>.vrow-value code{font-size:13px}.shell:has(.reference-sidebar-nav) .segmented,.setup .segmented{padding:3px;border-radius:8px;background:var(--hover);box-shadow:none}.shell:has(.reference-sidebar-nav) .segmented button,.setup .segmented button{height:28px;padding:0 12px;border-radius:6px;color:var(--muted);font-size:13px;font-weight:500}.shell:has(.reference-sidebar-nav) .segmented button.active,.setup .segmented button.active{color:var(--ink);background:#fff;box-shadow:0 1px 2px #0f1f3d1f}.shell:has(.reference-sidebar-nav) .tabs button{font-size:14px;font-weight:500;color:var(--muted)}.shell:has(.reference-sidebar-nav) .tabs button.active{color:var(--ink);font-weight:600}.shell:has(.reference-sidebar-nav) .tabs button.active:after{background:var(--brand);height:2px}.shell:has(.reference-sidebar-nav) .table th{padding:10px 20px;color:var(--muted);background:transparent;border-bottom:1px solid var(--border);font-size:12px;font-weight:500;letter-spacing:0;text-transform:none}.shell:has(.reference-sidebar-nav) .table td{padding:13px 20px;font-size:14px;border-bottom:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .table .muted-cell{color:var(--muted);font-size:13px;white-space:nowrap}.shell:has(.reference-sidebar-nav) .stat{gap:10px;padding:20px 22px;border:1px solid var(--border);border-radius:12px;background:#fff;box-shadow:none}.shell:has(.reference-sidebar-nav) .stat-label{color:var(--muted);font-family:var(--font-mono);font-size:11px;font-weight:500;letter-spacing:.08em;text-transform:uppercase}.shell:has(.reference-sidebar-nav) .stat-value{color:var(--ink);font-family:var(--font-display);font-size:28px;line-height:32px;font-weight:600;letter-spacing:-.02em}.shell:has(.reference-sidebar-nav) .stat small{color:var(--muted);font-size:13px}.shell:has(.reference-sidebar-nav) .stat-icon{color:var(--muted);background:transparent;box-shadow:none}.progress{width:100%;height:6px;border-radius:999px;background:var(--border);overflow:hidden}.progress>i{display:block;height:100%;border-radius:999px;background:var(--brand);transition:width .3s ease}.progress.good>i{background:var(--good)}.progress.info>i{background:var(--info)}.shell:has(.reference-sidebar-nav) .empty{gap:10px;padding:36px 24px;border:1px dashed var(--strong-border);border-radius:12px}.shell:has(.reference-sidebar-nav) .empty-icon{width:44px;height:44px;border-radius:12px;margin-bottom:2px;color:var(--brand);background:var(--brand-soft);box-shadow:none}.shell:has(.reference-sidebar-nav) .empty strong{font-size:15px;color:var(--ink)}.shell:has(.reference-sidebar-nav) .empty p{font-size:13px;line-height:19px;color:var(--muted)}.shell:has(.reference-sidebar-nav) .note,.setup .note{border:0;border-radius:10px;padding:12px 14px;font-size:13.5px;line-height:19px}.shell:has(.reference-sidebar-nav) .note.info,.setup .note.info{color:var(--info);background:var(--info-soft)}.shell:has(.reference-sidebar-nav) .note.warn,.setup .note.warn{color:var(--warn);background:var(--warn-soft)}.shell:has(.reference-sidebar-nav) .note.bad,.setup .note.bad{color:var(--bad);background:var(--bad-soft)}.shell:has(.reference-sidebar-nav) .banner{border-radius:12px;border:1px solid #f0c2bd;background:#fff}.shell:has(.reference-sidebar-nav) .toggle-track,.setup .toggle-track{width:36px;height:20px;border-radius:999px;background:var(--strong-border)}.shell:has(.reference-sidebar-nav) .toggle input:checked+.toggle-track,.setup .toggle input:checked+.toggle-track{background:var(--brand)}.shell:has(.reference-sidebar-nav) .toggle-track:after,.setup .toggle-track:after{width:16px;height:16px;top:2px;left:2px;box-shadow:0 1px 2px #0f1f3d40}.shell:has(.reference-sidebar-nav) .toggle input:checked+.toggle-track:after,.setup .toggle input:checked+.toggle-track:after{transform:translate(16px)}.shell:has(.reference-sidebar-nav) .toggle-text,.setup .toggle-text{font-size:14px;color:var(--ink)}.page-updated-toast{gap:12px;padding:12px 14px 12px 16px;border:0;border-radius:12px;color:#fff;background:var(--ink);box-shadow:0 12px 32px #0f1f3d40}.page-updated-toast .toast-icon{color:#5eead4;background:transparent;box-shadow:none}.page-updated-toast .toast-copy strong{color:#fff;font-size:14px;font-weight:500}.page-updated-toast .toast-copy small{color:#b7c3d6}.page-updated-toast .toast-copy a{color:#5eead4}.page-updated-toast .toast-close{color:#b7c3d6}.page-updated-toast .toast-close:hover{color:#fff;background:#ffffff1a}.page-updated-toast .btn.secondary{color:#fff;background:#ffffff1a;box-shadow:0 0 0 1px #fff3}.page-updated-toast.bad{background:#fff;color:var(--ink);box-shadow:0 0 0 1px #f0c2bd,0 12px 32px #0f1f3d1f}.page-updated-toast.bad .toast-icon{color:var(--bad)}.page-updated-toast.bad .toast-copy strong{color:var(--ink)}.page-updated-toast.bad .toast-copy small{color:var(--muted)}.proposal-ready-dialog,.sources-reference-dialog,.coverage-resolution-dialog,.proposal-revision-dialog,.monitoring-dialog,.import-existing-dialog{border:0;border-radius:16px;background:#fff;box-shadow:var(--float)}.proposal-ready-dialog{padding:28px;gap:12px}.proposal-ready-icon{width:44px;height:44px;border-radius:12px;color:var(--brand);background:var(--brand-soft);box-shadow:none}.proposal-ready-dialog h2{font-family:var(--font-ui);font-size:20px;font-weight:600;letter-spacing:-.01em;color:var(--ink)}.proposal-ready-dialog p{color:var(--muted);font-size:14.5px;line-height:1.6}.proposal-ready-summary{padding:12px 14px;border-radius:10px;background:var(--subtle);border:1px solid var(--border)}.proposal-ready-summary strong{color:var(--ink);font-weight:600}.proposal-ready-summary span{color:var(--muted)}.command-palette-scrim{position:fixed;inset:0;z-index:90;display:grid;align-content:start;justify-items:center;padding-top:14vh;background:#0f1f3d47;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.command-palette{width:min(640px,calc(100vw - 32px));max-height:70vh;display:flex;flex-direction:column;border-radius:16px;background:#fff;box-shadow:var(--float);overflow:hidden}.command-palette-input{display:flex;align-items:center;gap:12px;padding:16px 20px;border-bottom:1px solid var(--border);color:var(--muted)}.command-palette-input input{flex:1;min-width:0;border:0;outline:none;background:transparent;color:var(--ink);font-family:var(--font-ui);font-size:16px}.command-palette-input input::placeholder{color:var(--faint)}.command-palette-input kbd{padding:3px 6px;border:1px solid var(--border);border-radius:5px;color:var(--faint);font-family:var(--font-mono);font-size:11px}.command-palette-list{flex:1;min-height:0;overflow-y:auto;padding:4px 6px 8px}.command-palette-group{padding:12px 10px 6px}.command-palette-item{width:100%;display:flex;align-items:center;gap:12px;height:40px;padding:0 12px;border:0;border-radius:8px;color:var(--ink);background:transparent;font:inherit;font-size:14px;text-align:left;cursor:pointer}.command-palette-item .icon{color:var(--muted)}.command-palette-item.active{background:var(--brand-soft)}.command-palette-item.active .icon{color:var(--brand)}.command-palette-item>span{flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.command-palette-item>small{color:var(--faint);font-family:var(--font-mono);font-size:12px;white-space:nowrap}.command-palette-empty{padding:28px;color:var(--muted);font-size:14px;text-align:center}.command-palette-foot{display:flex;gap:16px;padding:10px 20px;border-top:1px solid var(--border);background:var(--subtle);color:var(--muted);font-family:var(--font-mono);font-size:11.5px}.overview-page{display:grid;gap:24px}.pipeline-card{position:relative;display:flex;align-items:center;gap:0;padding:22px 28px;border:1px solid var(--border);border-radius:14px;background:#fff;box-shadow:none}.pipeline-track{display:none}.shell:has(.reference-sidebar-nav) .page .pipeline-card button{position:relative;flex:1 1 0;display:flex;flex-direction:row;align-items:center;gap:12px;padding:0;color:var(--ink);background:none;border:0;border-radius:8px;font:inherit;text-align:left}.shell:has(.reference-sidebar-nav) .page .pipeline-card button{min-width:0}.shell:has(.reference-sidebar-nav) .page .pipeline-card button+button:before{content:"";flex:1 1 16px;min-width:12px;max-width:48px;order:-1;height:1px;margin:0 14px 0 0;background:var(--strong-border)}.shell:has(.reference-sidebar-nav) .page .pipeline-card button.done+button:before,.shell:has(.reference-sidebar-nav) .page .pipeline-card button.done+button.done:before{background:var(--brand)}.pipeline-card button>span{width:24px;height:24px;flex:0 0 auto;display:grid;place-items:center;margin:0;border:1px solid var(--strong-border);border-radius:50%;color:var(--faint);background:#fff;box-sizing:border-box;transition:border-color .12s ease,color .12s ease}.pipeline-card button>span .icon{display:none}.pipeline-card button:hover>span{border-color:var(--brand)}.pipeline-card button.done>span{color:#fff;border-color:var(--brand);background:var(--brand)}.pipeline-card button.done>span .icon{display:block}.pipeline-card button.active>span{border:2px solid var(--brand);background:#fff;animation:none}.pipeline-card button.active>span:after{content:"";width:8px;height:8px;border-radius:50%;background:var(--brand)}.pipeline-card button>strong,.pipeline-card button>small{display:block}.pipeline-card button strong{font-size:14px;line-height:18px;font-weight:600}.pipeline-card button small{color:var(--muted);font-size:12.5px;line-height:16px;font-weight:400}.pipeline-card button.idle strong{color:var(--muted)}.pipeline-card button.active small{color:var(--muted);font-weight:400}.pipeline-copy{display:grid;gap:2px;min-width:0;white-space:nowrap}.ov-hero{position:relative;display:grid;grid-template-columns:minmax(0,1fr);gap:20px;padding:32px 36px;border:1px solid var(--border);border-radius:16px;background:#fff;box-shadow:none;overflow:hidden}.ov-hero:before{content:"";position:absolute;right:-80px;top:-120px;width:360px;height:360px;border-radius:50%;background:radial-gradient(closest-side,var(--brand-soft),rgb(230 246 245 / 0));pointer-events:none}.ov-hero.attention:before,.ov-hero.current:before,.ov-hero.start:before{background:radial-gradient(closest-side,var(--brand-soft),rgb(230 246 245 / 0))}.ov-hero.attention{border-color:var(--border);box-shadow:none}.ov-hero-copy{position:relative;min-width:0;display:grid;gap:12px}.ov-eyebrow{display:inline-flex;align-items:center;gap:8px;color:var(--brand);font-family:var(--font-mono);font-size:11px;line-height:16px;font-weight:500;letter-spacing:.08em;text-transform:uppercase}.ov-hero.current .ov-eyebrow{color:var(--good)}.ov-eyebrow i{display:none}.shell:has(.reference-sidebar-nav) .page .ov-hero h2{margin:0;color:var(--ink);font-family:var(--font-display);font-size:30px;line-height:36px;font-weight:600;letter-spacing:-.02em;overflow-wrap:anywhere}.ov-hero p{max-width:64ch;color:var(--muted);font-size:15px;line-height:23px}.ov-hero-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:8px}.shell:has(.reference-sidebar-nav) .ov-hero-actions .btn.md{height:42px;padding-inline:18px;font-size:15px}.ov-hero-facts{position:relative;display:flex;flex-wrap:wrap;align-items:center;gap:12px 28px;margin:0;padding:18px 0 0;border-top:1px solid var(--border)}.ov-hero-facts>div{display:inline-flex;align-items:center;gap:8px;padding:0;border:0}.ov-hero-facts dt{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)}.ov-hero-facts dd{display:flex;align-items:center;gap:8px;margin:0;color:var(--muted);font-size:13px;line-height:18px;font-weight:400}.ov-hero-facts dd code{font-size:12.5px;color:var(--muted)}.ov-dot{width:8px;height:8px;flex:0 0 auto;border-radius:50%;background:var(--strong-border)}.ov-dot.good{background:var(--good)}.ov-dot.warn{background:var(--warn-dot)}.ov-dot.bad{background:var(--bad)}.ov-dot.info{background:var(--info);animation:chip-pulse 1.6s ease-in-out infinite}.ov-dot.neutral{background:var(--strong-border)}.ov-fact-link{margin-left:auto;padding:0;color:var(--brand);font-size:13px;font-weight:500}.ov-fact-link:hover{text-decoration:underline}.ov-metrics{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.shell:has(.reference-sidebar-nav) .page .ov-metric{display:grid;grid-template-columns:minmax(0,1fr) auto;grid-template-areas:"copy figure" "copy figure";align-items:center;column-gap:16px;min-height:0;padding:20px 22px;border:1px solid var(--border);border-radius:12px;background:#fff;box-shadow:none;font:inherit;text-align:left;transition:border-color .12s ease}.ov-metric:hover{border-color:#bcc5d2;box-shadow:none}.ov-metric-arrow{display:none}.ov-metric-copy{grid-area:copy;min-width:0;display:grid;gap:6px}.ov-metric-copy small{color:var(--muted);font-family:var(--font-mono);font-size:11px;line-height:16px;font-weight:500;letter-spacing:.08em;text-transform:uppercase}.ov-metric-copy strong{color:var(--ink);font-size:14px;line-height:20px;font-weight:600}.ov-metric-copy>span{color:var(--muted);font-size:13px;line-height:18px}.ov-metric-copy code{display:block;color:var(--muted);font-size:12.5px;line-height:17px;overflow-wrap:anywhere}.ov-metric.bad .ov-metric-copy strong{color:var(--bad)}.ov-metric.warn .ov-metric-copy strong{color:var(--warn)}.ov-donut{grid-area:figure;width:56px;height:56px;display:grid;place-items:center;border-radius:50%;background:conic-gradient(var(--good) var(--ov-coverage, 0%),var(--border) 0)}.ov-donut:before{content:"";grid-area:1 / 1;width:42px;height:42px;border-radius:50%;background:#fff}.ov-donut b{z-index:1;grid-area:1 / 1;color:var(--ink);font-family:var(--font-display);font-size:13px;font-weight:600;letter-spacing:-.02em}.ov-figure{grid-area:figure;min-width:0;color:var(--ink);font-family:var(--font-display);font-size:32px;line-height:36px;font-weight:600;letter-spacing:-.02em;font-variant-numeric:tabular-nums;text-align:right}.ov-metric.bad .ov-figure{color:var(--bad)}.ov-metric.warn .ov-figure{color:var(--warn)}.ov-metric-icon{grid-area:figure;width:40px;height:40px;display:grid;place-items:center;border-radius:10px;color:var(--muted);background:var(--subtle);box-shadow:inset 0 0 0 1px var(--border)}.ov-metric.good .ov-metric-icon{color:var(--good);background:var(--good-soft);box-shadow:none}.ov-issues ul{margin:0;padding:0;list-style:none}.ov-issues li{display:grid;grid-template-columns:auto auto minmax(0,1fr);align-items:center;gap:12px;padding:12px 20px;border-top:1px solid var(--border);font-size:14px;color:var(--text)}.ov-issues li:first-child{border-top:0}.ov-issues li code{color:var(--ink);font-size:12.5px}.ov-issues li.more{color:var(--faint);grid-template-columns:1fr}.ov-activity{margin:0;padding:0;list-style:none}.ov-activity li{display:grid;grid-template-columns:auto minmax(0,1fr) auto auto;align-items:center;gap:16px;min-height:56px;padding:12px 20px;border-top:1px solid var(--border)}.ov-activity li:first-child{border-top:0}.ov-activity li.empty{grid-template-columns:auto minmax(0,1fr);border:0}.ov-activity-icon{display:inline-flex;align-items:center;gap:6px;width:auto;height:22px;padding:0 8px;border-radius:999px;color:var(--text);background:var(--hover);box-shadow:none;font-size:12px;font-weight:500}.ov-activity-icon .icon{display:none}.ov-activity-icon:before{content:"";width:6px;height:6px;border-radius:50%;background:var(--faint)}.ov-activity-icon:after{content:"Done"}.ov-activity li.running .ov-activity-icon{color:var(--info);background:var(--info-soft)}.ov-activity li.running .ov-activity-icon:before{background:var(--info);animation:chip-pulse 1.6s ease-in-out infinite}.ov-activity li.running .ov-activity-icon:after{content:"Running"}.ov-activity li.succeeded .ov-activity-icon{color:var(--good);background:var(--good-soft)}.ov-activity li.succeeded .ov-activity-icon:before{background:var(--good)}.ov-activity li.succeeded .ov-activity-icon:after{content:"Completed"}.ov-activity li.failed .ov-activity-icon{color:var(--bad);background:var(--bad-soft)}.ov-activity li.failed .ov-activity-icon:before{background:var(--bad)}.ov-activity li.failed .ov-activity-icon:after{content:"Failed"}.ov-activity li.cancelled .ov-activity-icon:after{content:"Stopped"}.ov-activity li.empty .ov-activity-icon:after{content:"Ready"}.ov-activity li p{margin:0;min-width:0;color:var(--muted);font-size:14px;line-height:19px;overflow-wrap:anywhere}.ov-activity li p strong{color:var(--ink);font-weight:500}.ov-activity li time{color:var(--muted);font-size:13px;white-space:nowrap}.ov-activity-actions{display:flex;align-items:center;gap:6px}.ov-activity-actions .btn{min-width:0}.shell:has(.reference-sidebar-nav) .sources-library-header h2{font-size:15px;font-weight:600}.shell:has(.reference-sidebar-nav) .sources-library-summary strong{color:var(--ink);font-family:var(--font-display);font-weight:600}.shell:has(.reference-sidebar-nav) .source-freshness{gap:14px;padding:16px 20px;border:1px solid var(--border);border-radius:var(--radius-lg);background:#fff;box-shadow:none}.shell:has(.reference-sidebar-nav) .source-freshness.stale{border-color:#f3d9a4;background:#fffcf4}.shell:has(.reference-sidebar-nav) .source-freshness>header{align-items:center;gap:14px}.shell:has(.reference-sidebar-nav) .source-freshness>header>.badge{width:auto;height:22px;flex:0 0 auto;display:inline-flex;place-items:unset}.shell:has(.reference-sidebar-nav) .source-freshness>header>div{flex:1;min-width:0}.source-freshness-icon{width:36px;height:36px;display:grid;flex:0 0 auto;place-items:center;border-radius:10px;color:var(--muted);background:var(--subtle);box-shadow:inset 0 0 0 1px var(--border)}.source-freshness.current .source-freshness-icon{color:var(--good);background:var(--good-soft);box-shadow:none}.source-freshness.stale .source-freshness-icon{color:var(--warn);background:var(--warn-soft);box-shadow:none}.shell:has(.reference-sidebar-nav) .source-freshness h2{font-size:15px;line-height:20px;font-weight:600}.shell:has(.reference-sidebar-nav) .source-freshness p{margin-top:3px;color:var(--muted);font-size:13px;line-height:18px}.shell:has(.reference-sidebar-nav) .source-freshness p strong{color:var(--ink);font-weight:600}.shell:has(.reference-sidebar-nav) .source-freshness-pages{gap:6px}.shell:has(.reference-sidebar-nav) .source-freshness-pages li{align-items:center;gap:10px;font-size:13px}.shell:has(.reference-sidebar-nav) .source-freshness-pages li code{padding:2px 7px;border-radius:6px;background:#fff;box-shadow:var(--hairline);color:var(--ink);font-size:12px}.shell:has(.reference-sidebar-nav) .source-freshness-sources{display:flex;flex-wrap:wrap;gap:6px;margin:0;padding:0;list-style:none;font-size:12.5px}.shell:has(.reference-sidebar-nav) .source-freshness-sources li{display:inline-flex;align-items:center;gap:6px;padding:4px 10px 4px 8px;border-radius:999px;background:#fff;box-shadow:var(--hairline);color:var(--text)}.shell:has(.reference-sidebar-nav) .source-freshness-sources li .icon{color:var(--faint)}.shell:has(.reference-sidebar-nav) .source-freshness-sources li small{color:var(--faint);font-size:11.5px}.shell:has(.reference-sidebar-nav) .coverage-overview{grid-template-columns:minmax(0,1fr);gap:0;border:1px solid var(--border);border-radius:var(--radius-lg);background:#fff;overflow:hidden}.shell:has(.reference-sidebar-nav) .coverage-summary-card{display:flex;align-items:center;gap:20px;padding:20px 20px 8px;border:0;border-radius:0;color:var(--text);background:#fff;box-shadow:none;text-align:left}.shell:has(.reference-sidebar-nav) .coverage-summary-card:before{content:none}.shell:has(.reference-sidebar-nav) .coverage-score{width:auto;height:auto;display:block;border-radius:0;background:none;box-shadow:none}.shell:has(.reference-sidebar-nav) .coverage-score:before{content:none}.shell:has(.reference-sidebar-nav) .coverage-score>span{display:grid;justify-items:start}.shell:has(.reference-sidebar-nav) .coverage-score strong{color:var(--good);font-family:var(--font-display);font-size:36px;line-height:40px;font-weight:600;letter-spacing:-.02em}.shell:has(.reference-sidebar-nav) .coverage-score small{display:none}.shell:has(.reference-sidebar-nav) .coverage-summary-copy{display:grid;justify-items:start;gap:4px}.shell:has(.reference-sidebar-nav) .coverage-assessment{padding:0;border-radius:0;background:none;color:var(--ink);font-size:14px;line-height:20px;font-weight:600}.shell:has(.reference-sidebar-nav) .coverage-assessment.attention{background:none;color:var(--warn)}.shell:has(.reference-sidebar-nav) .coverage-summary-copy h3{color:var(--ink);font-family:var(--font-ui);font-size:14px;line-height:19px;font-weight:600}.shell:has(.reference-sidebar-nav) .coverage-summary-copy p{display:block;color:var(--muted);font-size:13px;line-height:18px}.shell:has(.reference-sidebar-nav) .coverage-summary-stats{display:flex;gap:20px;width:auto;margin:0 0 0 auto;padding:0;border:0}.shell:has(.reference-sidebar-nav) .coverage-summary-stats>div{display:grid;gap:2px;padding:0;border:0}.shell:has(.reference-sidebar-nav) .coverage-summary-stats dt{color:var(--muted);font-size:12px;line-height:14px;font-weight:500}.shell:has(.reference-sidebar-nav) .coverage-summary-stats dd{margin:0;color:var(--ink);font-family:var(--font-display);font-size:18px;line-height:22px;font-weight:600;letter-spacing:-.02em}.shell:has(.reference-sidebar-nav) .coverage-summary-card .source-coverage-disclaimer{display:none}.shell:has(.reference-sidebar-nav) .coverage-breakdown{padding:8px 20px 12px;border:0;border-radius:0;background:#fff;box-shadow:none}.shell:has(.reference-sidebar-nav) .coverage-breakdown-heading h3{font-size:13px;font-weight:500;color:var(--muted)}.shell:has(.reference-sidebar-nav) .source-coverage-row{padding:12px 0;border-top:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .source-coverage-row-heading span:first-child{font-size:14px;font-weight:500;color:var(--ink)}.shell:has(.reference-sidebar-nav) .source-coverage-row-heading strong{color:var(--text);font-family:var(--font-mono);font-size:13px;font-weight:500}.shell:has(.reference-sidebar-nav) .source-coverage-track{height:6px;border-radius:3px;background:var(--border)}.shell:has(.reference-sidebar-nav) .source-coverage-track i{background:var(--brand);border-radius:3px}.shell:has(.reference-sidebar-nav) .coverage-review-action{justify-self:end;color:var(--brand);font-size:13px;font-weight:500}.shell:has(.reference-sidebar-nav) .coverage-review-action:hover{text-decoration:underline}.shell:has(.reference-sidebar-nav) .plan-screenshot-pages{margin:0;padding:0;list-style:none;border:1px solid var(--border);border-radius:12px;overflow:hidden}.shell:has(.reference-sidebar-nav) .plan-screenshot-pages li{display:grid;grid-template-columns:28px minmax(0,1fr) auto;align-items:center;gap:12px;padding:10px 14px;border-top:1px solid var(--border);background:#fff}.shell:has(.reference-sidebar-nav) .plan-screenshot-pages li:first-child{border-top:0}.plan-screenshot-page-icon{width:28px;height:28px;display:grid;place-items:center;border-radius:8px;color:var(--muted);background:var(--subtle);box-shadow:inset 0 0 0 1px var(--border)}.shell:has(.reference-sidebar-nav) .plan-screenshot-pages li>span:nth-child(2){min-width:0;display:grid;gap:3px}.shell:has(.reference-sidebar-nav) .plan-screenshot-pages strong{color:var(--ink);font-size:14px;line-height:18px;font-weight:500}.shell:has(.reference-sidebar-nav) .plan-screenshot-pages small{display:block;color:var(--muted);font-size:12.5px;line-height:17px}.shell:has(.reference-sidebar-nav) .plan-screenshot-pages small code{padding:1px 6px;border-radius:5px;background:var(--subtle);box-shadow:var(--hairline);color:var(--ink);font-size:11.5px}.shell:has(.reference-sidebar-nav) .plan-screenshot-pages small em{color:var(--warn);font-style:normal;font-weight:600}.shell:has(.reference-sidebar-nav) .plan-screenshot-pages li>b{padding:2px 9px;border-radius:999px;background:var(--info-soft);color:var(--info);font-size:12px;line-height:18px;font-weight:500;white-space:nowrap}.shell:has(.reference-sidebar-nav) .history-table .history-action strong{display:inline-flex;padding:2px 9px;border-radius:999px;background:var(--hover);box-shadow:none;color:var(--ink);font-size:12px;line-height:18px;font-weight:500;white-space:nowrap}.shell:has(.reference-sidebar-nav) .history-request strong{font-size:14px;font-weight:500}.shell:has(.reference-sidebar-nav) .history-request small{font-size:12.5px}.shell:has(.reference-sidebar-nav) .history-result small{color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .settings{grid-template-columns:220px minmax(0,1fr);gap:32px}.shell:has(.reference-sidebar-nav) .settings-nav{gap:2px;top:0}.shell:has(.reference-sidebar-nav) .settings-nav button{align-items:center;gap:0;min-height:34px;padding:0 10px;border-radius:8px}.shell:has(.reference-sidebar-nav) .settings-nav button .icon{display:none}.shell:has(.reference-sidebar-nav) .settings-nav button.active{background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .settings-nav button.active strong{color:var(--brand-ink);font-weight:600}.shell:has(.reference-sidebar-nav) .settings-nav strong{font-size:14px;font-weight:500;color:var(--text)}.shell:has(.reference-sidebar-nav) .settings-nav small{display:none}@media(prefers-reduced-motion:reduce){.workspace-activity-chip i,.ov-dot.info{animation:none}}@media(max-width:1100px){.ov-hero{padding:24px}.shell:has(.reference-sidebar-nav) .settings{grid-template-columns:minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .settings-nav{flex-direction:row;flex-wrap:wrap}}@media(max-width:900px){.ov-metrics{grid-template-columns:minmax(0,1fr)}.pipeline-card{flex-direction:column;align-items:stretch;gap:12px;padding:18px}.shell:has(.reference-sidebar-nav) .page .pipeline-card button{display:flex;flex-direction:row;align-items:center;gap:12px}.shell:has(.reference-sidebar-nav) .page .pipeline-card button+button:before{display:none}.pipeline-card button>span:first-child{grid-row:auto;margin:0}.shell:has(.reference-sidebar-nav) .page-head h1{font-size:24px;line-height:28px}.shell:has(.reference-sidebar-nav) .coverage-overview{grid-template-columns:minmax(0,1fr)}.ov-activity li{grid-template-columns:auto minmax(0,1fr);row-gap:6px}.ov-activity li time{grid-column:2}.ov-activity-actions{grid-column:2}.workspace-search-button>span{display:none}.workspace-search-button kbd{display:none}}@media(max-width:760px){.shell:has(.reference-sidebar-nav) .sidebar{position:fixed;inset:0 auto 0 0;z-index:50;width:min(300px,88vw);flex:none;height:100vh;min-height:0;transform:translate(-102%);transition:transform .2s ease;box-shadow:16px 0 48px #0f1f3d2e}.shell:has(.reference-sidebar-nav) .sidebar.open{transform:none}.sidebar-close{display:grid}.shell:has(.reference-sidebar-nav) .workspace-mobile-menu{width:34px;height:34px;display:grid;place-items:center;border-radius:8px;color:var(--heading);background:var(--hover)}.shell:has(.reference-sidebar-nav) .workspace-navbar{padding:0 14px}.workspace-crumb,.workspace-crumbs>.icon{display:none}.workspace-activity-chip{padding:0 8px;font-size:0;gap:0}.shell:has(.reference-sidebar-nav) .page,.shell:has(.reference-sidebar-nav).sources-shell .page,.shell:has(.reference-sidebar-nav).proposal-shell .page{padding:20px 16px 48px}.ov-hero{padding:20px}.shell:has(.reference-sidebar-nav) .page .ov-hero h2{font-size:24px;line-height:30px}.ov-hero-facts{flex-direction:column;align-items:flex-start;gap:10px}.ov-fact-link{margin-left:0}.shell:has(.reference-sidebar-nav) .loading-bar{left:0}}.workspace-crumbs{flex:0 1 auto}.workspace-crumb{flex:0 1 auto;min-width:3.5em}.shell:has(.reference-sidebar-nav) .workspace-navbar .workspace-screen-title{flex:0 1 auto;min-width:0;overflow:hidden;text-overflow:ellipsis}.workspace-crumbs>.icon{flex:none}.workspace-activity-chip{flex:none;white-space:nowrap}.shell:has(.reference-sidebar-nav) .workspace-preview-primary{flex:none;white-space:nowrap}.shell:has(.reference-sidebar-nav) .workspace-preview-primary:disabled{opacity:.85;cursor:progress}.shell:has(.reference-sidebar-nav) .workspace-preview-primary .spinner{width:14px;height:14px}@media(max-width:1180px){.shell:has(.reference-sidebar-nav) .workspace-preview-primary>.icon:last-child{display:none}.workspace-crumb{max-width:180px}}.field-label{display:inline-flex;align-items:center;gap:6px}.field-hint{position:relative;display:inline-grid;place-items:center;width:16px;height:16px;border-radius:50%;color:var(--faint);cursor:help;outline:none}.field-hint:hover,.field-hint:focus-visible{color:var(--brand);background:var(--brand-soft)}.field-hint:after{content:attr(data-hint);position:absolute;z-index:60;left:50%;bottom:calc(100% + 6px);width:max-content;max-width:280px;padding:7px 9px;border-radius:7px;color:#fff;background:var(--ink);box-shadow:0 6px 18px #0f1f3d2e;font-size:12px;font-weight:400;line-height:1.45;letter-spacing:0;text-transform:none;white-space:normal;transform:translate(-50%);opacity:0;pointer-events:none;transition:opacity .12s ease}.field-hint:hover:after,.field-hint:focus-visible:after{opacity:1}.shell:has(.reference-sidebar-nav) .authoring-page.pl-page{gap:24px}.shell:has(.reference-sidebar-nav) .pl-page .authoring-workbench{display:block}.shell:has(.reference-sidebar-nav) .pl-chevron{transition:transform .15s ease}.shell:has(.reference-sidebar-nav) .pl-chevron.open{transform:rotate(180deg)}.shell:has(.reference-sidebar-nav) .authoring-request.pl-composer{display:flex;flex-direction:column;border:1px solid var(--border);border-radius:14px!important;background:#fff!important;box-shadow:none!important;overflow:visible}.shell:has(.reference-sidebar-nav) .pl-composer .authoring-fields.pl-composer-prompt{display:grid;gap:14px;min-height:0;margin:0;padding:20px 20px 0;border:0}.shell:has(.reference-sidebar-nav) .pl-composer-type{display:flex}.shell:has(.reference-sidebar-nav) .pl-composer-field{display:grid}.shell:has(.reference-sidebar-nav) .pl-composer .textarea{width:100%;min-height:92px;padding:12px;border-radius:8px;font-size:14px;line-height:1.5;resize:vertical}.shell:has(.reference-sidebar-nav) .pl-composer-row{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 20px}.shell:has(.reference-sidebar-nav) .pl-composer-chips{display:flex;flex-wrap:wrap;align-items:center;gap:8px}.shell:has(.reference-sidebar-nav) .pl-composer-chips .chip:disabled{opacity:.55;cursor:default}.shell:has(.reference-sidebar-nav) .pl-composer-chips .chip .icon:last-child{margin-left:1px}.shell:has(.reference-sidebar-nav) .pl-composer-row .btn.primary{flex:0 0 auto}.shell:has(.reference-sidebar-nav) .pl-composer-expand{display:grid;gap:14px;margin:0;padding:16px 20px 20px;border:0;border-top:1px solid var(--border);background:#fff}.shell:has(.reference-sidebar-nav) .pl-composer-expand:last-child{border-radius:0 0 14px 14px}.shell:has(.reference-sidebar-nav) .pl-composer-expand .field{gap:8px}.shell:has(.reference-sidebar-nav) .pl-composer fieldset.authoring-options{grid-template-columns:minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .pl-composer fieldset.authoring-options>*{grid-column:auto;margin:0}.shell:has(.reference-sidebar-nav) .pl-composer-limits .field{max-width:360px}.shell:has(.reference-sidebar-nav) .pl-composer-expand .radio-rows>button:disabled{cursor:default}.shell:has(.reference-sidebar-nav) .pl-composer-hint{color:var(--muted);font-size:12.5px;line-height:18px}.shell:has(.reference-sidebar-nav) .pl-composer-capture{gap:8px}.shell:has(.reference-sidebar-nav) .pl-composer .capture-readiness{display:flex;align-items:center;gap:8px;color:var(--muted);font-size:13px;line-height:18px}.shell:has(.reference-sidebar-nav) .pl-composer .capture-readiness.ready{color:var(--good)}.shell:has(.reference-sidebar-nav) .pl-composer .capture-readiness.missing{color:var(--warn)}.shell:has(.reference-sidebar-nav) .pl-composer .capture-readiness button{padding:0;border:0;color:var(--brand);background:none;font:inherit;font-weight:500;cursor:pointer;text-decoration:none}.shell:has(.reference-sidebar-nav) .pl-composer .capture-readiness button:hover{text-decoration:underline}.shell:has(.reference-sidebar-nav) .pl-composer-expand input[type=range]{width:100%;accent-color:var(--brand)}.shell:has(.reference-sidebar-nav) .pl-composer-limit-foot{display:flex;align-items:center;justify-content:space-between;gap:12px}.shell:has(.reference-sidebar-nav) .pl-composer-limit-foot .run-estimate{margin:0;color:var(--muted);font-size:13px}.shell:has(.reference-sidebar-nav) .pl-live{overflow:hidden}.shell:has(.reference-sidebar-nav) .pl-live-head{padding:12px 20px 12px 12px;border-bottom:0}.shell:has(.reference-sidebar-nav) .pl-live.open .pl-live-head{border-bottom:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .pl-live-toggle{flex:1 1 auto;min-width:0;display:flex;align-items:center;gap:10px;padding:4px 8px;border:0;border-radius:8px;background:transparent;color:var(--muted);font:inherit;text-align:left;cursor:pointer}.shell:has(.reference-sidebar-nav) .pl-live-toggle:hover{background:var(--hover)}.shell:has(.reference-sidebar-nav) .pl-live-title{flex:1 1 auto;min-width:0;display:grid;gap:2px}.shell:has(.reference-sidebar-nav) .pl-live-title strong{color:var(--ink);font-size:15px;line-height:20px;font-weight:600;letter-spacing:-.01em}.shell:has(.reference-sidebar-nav) .pl-live-title small{color:var(--muted);font-size:13px;line-height:18px}.shell:has(.reference-sidebar-nav) .pl-live .panel-actions{display:flex;align-items:center;gap:8px}.shell:has(.reference-sidebar-nav) .pl-live .authoring-live-empty{padding:16px 20px;color:var(--muted);font-size:13px;border-top:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .authoring-live-log.pl-livelog{display:grid;gap:0;padding:0}.shell:has(.reference-sidebar-nav) .pl-live-progress{display:flex;align-items:center;gap:16px;padding:16px 20px 12px}.shell:has(.reference-sidebar-nav) .pl-live-progress .progress{flex:1 1 auto}.shell:has(.reference-sidebar-nav) .pl-live-progress>span{color:var(--muted);font-family:var(--font-mono);font-size:13px}.shell:has(.reference-sidebar-nav) .pl-live-progress.failed .progress>i,.shell:has(.reference-sidebar-nav) .pl-live-progress.cancelled .progress>i{background:var(--faint)}.shell:has(.reference-sidebar-nav) .pl-live-progress.failed .progress>i{background:var(--bad)}.shell:has(.reference-sidebar-nav) .workflow-stages.pl-stages{display:grid;gap:0;margin:0;padding:0;overflow:visible;list-style:none}.shell:has(.reference-sidebar-nav) .pl-stages li{display:flex;align-items:center;gap:14px;padding:12px 20px;border-top:1px solid var(--border);color:var(--muted);font-size:14px}.shell:has(.reference-sidebar-nav) .pl-stages li:before{display:none}.shell:has(.reference-sidebar-nav) .pl-stages li>.pl-stage-mark{width:22px;height:22px;display:grid;flex:0 0 auto;place-items:center;box-sizing:border-box;border:1px solid var(--strong-border);border-radius:50%;background:#fff;color:var(--muted)}.shell:has(.reference-sidebar-nav) .pl-stages li>strong{flex:1 1 auto;min-width:0;color:var(--muted);font-size:14px;font-weight:500}.shell:has(.reference-sidebar-nav) .pl-stages li>small{padding:0;border:0;border-radius:0;background:transparent;color:var(--muted);font-size:13px;font-weight:400;white-space:nowrap}.shell:has(.reference-sidebar-nav) .pl-stages li.completed{color:var(--ink)}.shell:has(.reference-sidebar-nav) .pl-stages li.completed>strong{color:var(--ink)}.shell:has(.reference-sidebar-nav) .pl-stages li.completed>.pl-stage-mark{border-color:var(--good-soft);background:var(--good-soft);color:var(--good)}.shell:has(.reference-sidebar-nav) .pl-stages li.running>strong{color:var(--ink);font-weight:600}.shell:has(.reference-sidebar-nav) .pl-stages li.running>.pl-stage-mark{border-color:var(--info-soft);background:var(--info-soft)}.shell:has(.reference-sidebar-nav) .pl-stages li.running>.pl-stage-mark i{width:12px;height:12px;border-radius:50%;border:2px solid var(--info);border-right-color:transparent;background:transparent;animation:spin .8s linear infinite}.shell:has(.reference-sidebar-nav) .pl-stages li.failed>strong{color:var(--ink)}.shell:has(.reference-sidebar-nav) .pl-stages li.failed>.pl-stage-mark{border-color:var(--bad-soft);background:var(--bad-soft);color:var(--bad)}.shell:has(.reference-sidebar-nav) .pl-log{display:grid;gap:8px;margin:12px 20px 20px;padding:12px 16px;border:1px solid var(--border);border-radius:10px;background:var(--subtle)}.shell:has(.reference-sidebar-nav) .pl-live-progress+.pl-log,.shell:has(.reference-sidebar-nav) .pl-stages+.pl-log{margin-top:12px}.shell:has(.reference-sidebar-nav) .pl-livelog .live-job-meta.pl-log-meta{display:flex;flex-wrap:wrap;align-items:center;gap:6px 16px;min-height:0;padding:0;border:0;color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .pl-log-meta>span{display:inline-flex;align-items:center;gap:6px}.shell:has(.reference-sidebar-nav) .pl-log-meta .authoring-live-actions{margin-left:auto;gap:8px}.shell:has(.reference-sidebar-nav) .pl-log-meta .segmented{padding:2px}.shell:has(.reference-sidebar-nav) .pl-log-meta .segmented button{height:24px;padding:0 10px;font-size:12px}.shell:has(.reference-sidebar-nav) .pl-livelog .live-terminal.pl-log-lines{min-height:120px;max-height:320px;margin:0;padding:4px 0 0;border:0;border-radius:0;background:transparent;box-shadow:none;color:var(--text);font-family:var(--font-mono);font-size:12.5px;line-height:20px;white-space:pre-wrap;overflow:auto}.shell:has(.reference-sidebar-nav) .pl-log-captures{padding-top:4px}.shell:has(.reference-sidebar-nav) .pl-log-foot{display:flex;justify-content:flex-end;padding-top:2px}.shell:has(.reference-sidebar-nav) .pl-log-foot .btn.link{display:inline-flex;align-items:center;gap:6px;font-size:14px;text-decoration:none}.shell:has(.reference-sidebar-nav) .pl-log-foot .btn.link:hover{text-decoration:underline}.shell:has(.reference-sidebar-nav) .pl-history .panel-body.flush .table-wrap{border:0;border-radius:0;box-shadow:none}.shell:has(.reference-sidebar-nav) .pl-history .table{width:100%}.shell:has(.reference-sidebar-nav) .pl-history .table tr:last-child td{border-bottom:0}.shell:has(.reference-sidebar-nav) .pl-history .history-request{display:grid;gap:2px;min-width:0}.shell:has(.reference-sidebar-nav) .pl-history .history-request strong{display:block;overflow:hidden;color:var(--ink);font-size:14px;font-weight:500;text-overflow:ellipsis;white-space:nowrap;max-width:52ch}.shell:has(.reference-sidebar-nav) .pl-history .history-request small{display:block;overflow:hidden;color:var(--muted);font-size:12.5px;text-overflow:ellipsis;white-space:nowrap;max-width:52ch}.shell:has(.reference-sidebar-nav) .pl-history .history-request .history-error{color:var(--bad);white-space:normal}.shell:has(.reference-sidebar-nav) .pl-history .history-request .history-pages{display:inline;color:inherit;font-size:inherit}.shell:has(.reference-sidebar-nav) .pl-history .history-result .badge,.shell:has(.reference-sidebar-nav) .pl-review-buttons .badge{text-transform:capitalize}.shell:has(.reference-sidebar-nav) .pl-history .history-result{white-space:nowrap}.shell:has(.reference-sidebar-nav) .pl-history .history-result small{display:block;margin-top:4px;color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .pl-history .history-cost{color:var(--muted);font-family:var(--font-mono);font-size:12.5px;white-space:nowrap}.shell:has(.reference-sidebar-nav) .pl-history .history-loading,.shell:has(.reference-sidebar-nav) .pl-history .history-unavailable{padding:20px;color:var(--muted);font-size:13px}.shell:has(.reference-sidebar-nav) .pl-history .empty{margin:20px}.shell:has(.reference-sidebar-nav) .pl-history .history-row.clickable:hover td{background:var(--subtle)}.shell:has(.reference-sidebar-nav).focus-mode .page:has(.pl-review){max-width:1040px;padding-top:36px}.shell:has(.reference-sidebar-nav) .documentation-plan-review.pl-review{display:grid;gap:24px}.shell:has(.reference-sidebar-nav) .pl-review-head{display:flex;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;gap:16px 24px}.shell:has(.reference-sidebar-nav) .pl-review-heading{display:grid;gap:8px;min-width:0}.shell:has(.reference-sidebar-nav) .pl-review-heading h1{margin:0;color:var(--ink);font-family:var(--font-display);font-size:30px;line-height:1.15;font-weight:600;letter-spacing:-.02em}.shell:has(.reference-sidebar-nav) .pl-review-actions{display:grid;justify-items:end;gap:8px;flex:0 0 auto;max-width:100%;padding-top:12px}.shell:has(.reference-sidebar-nav) .pl-review-buttons{display:flex;flex-wrap:nowrap;align-items:center;justify-content:flex-end;gap:8px}.shell:has(.reference-sidebar-nav) .pl-review-hint{display:inline-flex;align-items:flex-start;gap:6px;color:var(--muted);font-size:12.5px;line-height:17px;text-align:right}.shell:has(.reference-sidebar-nav) .pl-review-hint .icon{flex:0 0 auto;margin-top:2px}.shell:has(.reference-sidebar-nav) .pl-pending{display:flex;align-items:center;gap:12px;padding:12px 16px;border-radius:10px;color:var(--info);background:var(--info-soft);font-size:13.5px;line-height:19px}.shell:has(.reference-sidebar-nav) .pl-pending>span:first-of-type{flex:1 1 auto}.shell:has(.reference-sidebar-nav) .pl-pending .plan-pending-actions{display:flex;gap:8px;flex:0 0 auto}.shell:has(.reference-sidebar-nav) .pl-stale-copy{margin:0;color:var(--muted);font-size:13.5px}.shell:has(.reference-sidebar-nav) .pl-error{margin:0;padding:12px 14px;border-radius:8px;background:var(--subtle);color:var(--text);font-family:var(--font-mono);font-size:12px;line-height:18px;white-space:pre-wrap}.shell:has(.reference-sidebar-nav) .pl-inline-actions{display:flex;flex-wrap:wrap;align-items:center;gap:12px}.shell:has(.reference-sidebar-nav) .pl-inline-actions small{color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .pl-progress .plan-progress{display:flex;align-items:center;gap:14px}.shell:has(.reference-sidebar-nav) .pl-progress .plan-progress strong{color:var(--ink);font-size:15px;font-weight:600}.shell:has(.reference-sidebar-nav) .pl-progress .plan-progress p{margin:2px 0 0;color:var(--muted);font-size:13px}.shell:has(.reference-sidebar-nav) .pl-complete .panel-body{gap:18px;padding:24px}.shell:has(.reference-sidebar-nav) .pl-complete .plan-complete>span{width:40px;height:40px;border-radius:12px;color:var(--good);background:var(--good-soft);box-shadow:none}.shell:has(.reference-sidebar-nav) .pl-complete .plan-complete h2{color:var(--ink);font-family:var(--font-ui);font-size:18px;font-weight:600;letter-spacing:-.01em}.shell:has(.reference-sidebar-nav) .pl-complete .plan-complete p{color:var(--muted);font-size:14px;line-height:20px}.shell:has(.reference-sidebar-nav) .pl-brief .panel-body{gap:12px}.shell:has(.reference-sidebar-nav) .pl-brief-text{margin:0;color:var(--text);font-size:14.5px;line-height:1.65}.shell:has(.reference-sidebar-nav) .pl-brief-badges{display:flex;flex-wrap:wrap;gap:8px;padding-top:4px}.shell:has(.reference-sidebar-nav) .pl-brief-editor{display:grid;gap:16px;margin-top:8px;padding-top:20px;border-top:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .pl-coverage-summary{display:grid;gap:10px}.shell:has(.reference-sidebar-nav) .pl-coverage-summary>header{display:flex;align-items:center;justify-content:space-between;gap:12px}.shell:has(.reference-sidebar-nav) .pl-coverage-summary>header strong{color:var(--ink);font-size:14px;font-weight:600}.shell:has(.reference-sidebar-nav) .pl-coverage-summary>header small{display:block;color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .pl-coverage-summary>header>span{color:var(--muted);font-size:13px}.shell:has(.reference-sidebar-nav) .pl-coverage-summary ul{display:grid;margin:0;padding:0;border:1px solid var(--border);border-radius:10px;list-style:none;overflow:hidden}.shell:has(.reference-sidebar-nav) .pl-coverage-summary li{display:flex;align-items:center;gap:12px;padding:10px 14px;border-top:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .pl-coverage-summary li:first-child{border-top:0}.shell:has(.reference-sidebar-nav) .pl-coverage-summary li>span{flex:1 1 auto;min-width:0;display:grid;gap:1px}.shell:has(.reference-sidebar-nav) .pl-coverage-summary li b{color:var(--ink);font-size:13.5px;font-weight:500}.shell:has(.reference-sidebar-nav) .pl-coverage-summary li small{color:var(--muted);font-size:12px}.shell:has(.reference-sidebar-nav) .pl-coverage-summary li .select-wrap{flex:0 0 220px}.shell:has(.reference-sidebar-nav) .pl-coverage-summary li em{color:var(--muted);font-size:12.5px;font-style:normal}.shell:has(.reference-sidebar-nav) .pl-coverage-summary p{margin:0;color:var(--muted);font-size:13px}.shell:has(.reference-sidebar-nav) .pl-questions .panel-body{gap:0;padding:0}.shell:has(.reference-sidebar-nav) .pl-question{display:grid;gap:14px;padding:20px;border-top:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .pl-question:first-child{border-top:0}.shell:has(.reference-sidebar-nav) .pl-question>strong{color:var(--ink);font-size:14.5px;font-weight:500;line-height:1.5}.shell:has(.reference-sidebar-nav) .pl-question>p{margin:-6px 0 0;color:var(--muted);font-size:13.5px;line-height:19px}.shell:has(.reference-sidebar-nav) .pl-recommendation{display:flex;align-items:flex-start;gap:12px;padding:14px 16px;border-radius:10px;color:var(--brand-ink);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .pl-recommendation>.icon{flex:0 0 auto;margin-top:1px;color:var(--brand)}.shell:has(.reference-sidebar-nav) .pl-recommendation>div{display:grid;gap:4px;font-size:13.5px;line-height:19px}.shell:has(.reference-sidebar-nav) .pl-recommendation strong{font-weight:600}.shell:has(.reference-sidebar-nav) .pl-question-actions{display:flex;flex-wrap:wrap;gap:8px}.shell:has(.reference-sidebar-nav) .pl-question-foot{display:flex;justify-content:flex-end;gap:8px;padding:12px 20px;border-top:1px solid var(--border);background:var(--subtle)}.shell:has(.reference-sidebar-nav) .pl-structure{display:grid;grid-template-columns:minmax(0,1fr) auto auto;align-items:center;gap:12px}.shell:has(.reference-sidebar-nav) .pl-structure>h2{grid-column:1;margin:0;color:var(--ink);font-size:16px;line-height:20px;font-weight:600;letter-spacing:-.01em}.shell:has(.reference-sidebar-nav) .pl-structure-tools{grid-column:2;display:flex;align-items:center;gap:8px}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-editor{display:contents}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-toolbar{grid-column:3;display:flex;flex-wrap:nowrap;gap:8px}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-toolbar small{display:none}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-orphans{grid-column:1 / -1}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree{grid-column:1 / -1;display:grid;gap:12px;min-height:0;padding:0;border:0;border-radius:0;background:transparent}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-empty{padding:28px 16px;border:1px dashed var(--strong-border);border-radius:12px;color:var(--muted);font-size:13px;text-align:center}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-branch{gap:0}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-branch.depth-0{border:1px solid var(--border);border-radius:12px;background:#fff;overflow:hidden}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-children{gap:0;margin:0;padding:0;border:0}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-children:empty{min-height:0}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-children .nav-tree-branch{border:0;border-radius:0}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-row{display:flex;align-items:center;gap:12px;min-height:0;padding:10px 16px 10px 12px;border:0;border-top:1px solid var(--border);border-radius:0;background:#fff;color:var(--text)}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-row:hover{background:var(--subtle)}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-row.active{background:var(--brand-soft);box-shadow:none}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-row.type-group{padding:12px 16px;background:var(--subtle);border-top:0}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-row.type-group.active{background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-row.type-group .nav-tree-handle{display:none}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-row.type-group .nav-tree-icon{color:var(--muted)}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-row.type-page .nav-tree-icon{display:none}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-handle{color:var(--faint);cursor:grab}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-label{flex:0 0 auto;min-width:0;max-width:58%;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-row.type-group .nav-tree-label{flex:1 1 auto;max-width:none;display:flex;align-items:baseline;gap:10px}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-label strong{color:var(--ink);font-size:14px;font-weight:500;white-space:nowrap}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-row.type-group .nav-tree-label strong{font-weight:600}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-label code{display:none}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-label small{color:var(--muted);font-size:13px}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-row.type-page .nav-tree-label small{display:none}.shell:has(.reference-sidebar-nav) .pl-structure .pl-page-purpose{flex:1 1 auto;min-width:0;overflow:hidden;color:var(--muted);font-size:13px;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .pl-page-camera{display:inline-flex;flex:0 0 auto;color:var(--strong-border)}.shell:has(.reference-sidebar-nav) .pl-page-camera.on{color:var(--brand)}.shell:has(.reference-sidebar-nav) .pl-icon-btn{display:inline-flex;flex:0 0 auto;align-items:center;justify-content:center;width:28px;height:28px;padding:0;border:1px solid transparent;border-radius:8px;background:transparent;color:var(--muted);cursor:pointer}.shell:has(.reference-sidebar-nav) .pl-icon-btn:hover{color:var(--ink);background:var(--hover)}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-add-page{margin-left:4px;font-size:14px}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-actions{flex:0 0 auto}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-actions button{width:24px;height:24px}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-row.pl-filtered-out{display:none}.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-details{grid-template-columns:minmax(0,1fr);margin:0;padding:12px 16px;border:0;border-top:1px solid var(--border);border-radius:0}.shell:has(.reference-sidebar-nav) .pl-structure .nav-open-page{margin:8px 16px}.shell:has(.reference-sidebar-nav) .pl-removed{grid-column:1 / -1;display:grid;border:1px solid var(--border);border-radius:12px;background:#fff;overflow:hidden}.shell:has(.reference-sidebar-nav) .pl-removed>header{display:flex;align-items:center;gap:10px;padding:12px 16px;background:var(--subtle);color:var(--muted)}.shell:has(.reference-sidebar-nav) .pl-removed>header strong{flex:1 1 auto;color:var(--ink);font-size:14px;font-weight:600}.shell:has(.reference-sidebar-nav) .pl-removed>header span{font-size:13px}.shell:has(.reference-sidebar-nav) .pl-removed-row{display:flex;align-items:center;gap:12px;padding:10px 16px;border-top:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .pl-removed-title{padding:0;border:0;background:none;color:var(--ink);font:inherit;font-size:14px;font-weight:500;text-align:left;cursor:pointer}.shell:has(.reference-sidebar-nav) .pl-removed-title strong{font-weight:500;text-decoration:line-through;text-decoration-color:var(--faint)}.shell:has(.reference-sidebar-nav) .pl-structure-hint{grid-column:1 / -1;color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .pl-facts .vrow .select-wrap{min-width:200px}.shell:has(.reference-sidebar-nav) .pl-facts .vrow-value{color:var(--muted)}.shell:has(.reference-sidebar-nav) .pl-fact-detail{display:grid;gap:12px;padding:0 20px 16px}.shell:has(.reference-sidebar-nav) .pl-fact-detail .field{max-width:320px}.shell:has(.reference-sidebar-nav) .pl-fact-detail .btn.link{justify-self:start;font-size:13.5px}.shell:has(.reference-sidebar-nav) .pl-readiness{display:flex;align-items:center;gap:10px;padding:10px 14px;border-radius:10px;background:var(--subtle);color:var(--muted)}.shell:has(.reference-sidebar-nav) .pl-readiness.ready{color:var(--good)}.shell:has(.reference-sidebar-nav) .pl-readiness.missing{color:var(--warn)}.shell:has(.reference-sidebar-nav) .pl-readiness>span{flex:1 1 auto;min-width:0;display:grid;gap:1px}.shell:has(.reference-sidebar-nav) .pl-readiness strong{font-size:13.5px;font-weight:500}.shell:has(.reference-sidebar-nav) .pl-readiness small{color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .pl-facts .run-estimate{display:inline-flex;align-items:center;gap:6px;margin:0;color:var(--muted);font-size:14px}.shell:has(.reference-sidebar-nav) .pl-facts .run-estimate .icon{display:none}.shell:has(.reference-sidebar-nav) .pl-facts .plan-screenshot-pages li>b{background:var(--hover);color:var(--text)}.shell:has(.reference-sidebar-nav) .pl-version .panel-body{gap:12px}.shell:has(.reference-sidebar-nav) .pl-version-details summary{width:fit-content;color:var(--brand);font-size:13.5px;font-weight:500;cursor:pointer}.shell:has(.reference-sidebar-nav) .pl-version-details ul{margin:8px 0 0;padding-left:18px;color:var(--text);font-size:13.5px;line-height:20px}.shell:has(.reference-sidebar-nav) .pl-coverage-warning{display:flex;align-items:flex-start;gap:14px;padding:16px 20px;border:1px solid var(--border);border-radius:12px;background:#fff}.shell:has(.reference-sidebar-nav) .pl-coverage-warning>.plan-coverage-warning-icon{display:grid;flex:0 0 auto;place-items:center;width:36px;height:36px;border-radius:10px;color:var(--warn);background:var(--warn-soft)}.shell:has(.reference-sidebar-nav) .pl-coverage-warning>div{flex:1 1 auto;min-width:0}.shell:has(.reference-sidebar-nav) .pl-coverage-warning strong{display:block;color:var(--ink);font-size:14px;font-weight:600}.shell:has(.reference-sidebar-nav) .pl-coverage-warning p{margin:4px 0 0;color:var(--muted);font-size:13.5px;line-height:19px}.shell:has(.reference-sidebar-nav) .pl-coverage-warning .plan-coverage-warning-actions{display:flex;flex:0 0 auto;gap:8px}.shell:has(.reference-sidebar-nav) .plan-revision-panel.pl-revise{position:relative;display:flex;align-items:center;gap:10px;padding:14px 16px;border:1px solid var(--border);border-radius:14px;background:#fff}.shell:has(.reference-sidebar-nav) .pl-revise-icon{position:absolute;left:28px;top:50%;transform:translateY(-50%);display:inline-flex;color:var(--faint);pointer-events:none}.shell:has(.reference-sidebar-nav) .pl-revise .textarea{flex:1 1 auto;min-height:40px;height:40px;padding:9px 12px 9px 40px;line-height:20px;resize:none;overflow:hidden;field-sizing:content;max-height:160px}.shell:has(.reference-sidebar-nav) .pl-revise .textarea:focus{overflow:auto}.shell:has(.reference-sidebar-nav) .pl-revise-hint{margin-top:-16px;color:var(--warn);font-size:12.5px}.shell:has(.reference-sidebar-nav) .plan-page-drawer-backdrop{background:#0f1f3d52;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.shell:has(.reference-sidebar-nav) .plan-page-drawer.pl-drawer{width:min(560px,94vw);border-radius:16px 0 0 16px;box-shadow:var(--float)}.shell:has(.reference-sidebar-nav) .pl-drawer>header{padding:18px 20px;border-bottom:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .pl-drawer>header>div{gap:6px}.shell:has(.reference-sidebar-nav) .pl-drawer>header h2{color:var(--ink);font-family:var(--font-ui);font-size:18px;font-weight:600;letter-spacing:-.01em}.shell:has(.reference-sidebar-nav) .pl-drawer>header>button{width:32px;height:32px;border-radius:8px;color:var(--muted)}.shell:has(.reference-sidebar-nav) .pl-drawer>header>button:hover{color:var(--ink);background:var(--hover)}.shell:has(.reference-sidebar-nav) .pl-drawer .plan-page-drawer-body{gap:16px;padding:20px}.shell:has(.reference-sidebar-nav) .pl-drawer .plan-page-drawer-name{grid-template-columns:minmax(0,1fr) auto;gap:10px}.shell:has(.reference-sidebar-nav) .pl-drawer .plan-page-drawer-name .input{color:var(--ink);font-size:15px;font-weight:600}.shell:has(.reference-sidebar-nav) .pl-drawer .field{gap:8px}.shell:has(.reference-sidebar-nav) .pl-drawer-section{display:grid;gap:14px;padding:16px 0 0;border:0;border-top:1px solid var(--border);border-radius:0;background:transparent}.shell:has(.reference-sidebar-nav) .pl-drawer-section h3{margin:0;color:var(--ink);font-size:13px;font-weight:600;letter-spacing:0;text-transform:none}.shell:has(.reference-sidebar-nav) .pl-drawer-reason{display:grid;gap:6px;padding:14px 16px;border:1px solid var(--border);border-radius:10px;background:var(--subtle)}.shell:has(.reference-sidebar-nav) .pl-drawer-reason h3{margin:0;color:var(--ink);font-size:13px;font-weight:600}.shell:has(.reference-sidebar-nav) .pl-drawer-reason p,.shell:has(.reference-sidebar-nav) .pl-drawer-reason summary,.shell:has(.reference-sidebar-nav) .pl-drawer-reason li{color:var(--muted);font-size:13px;line-height:19px}.shell:has(.reference-sidebar-nav) .pl-drawer-reason summary,.shell:has(.reference-sidebar-nav) .pl-drawer-advanced summary{color:var(--brand);font-size:13.5px;font-weight:500;cursor:pointer}.shell:has(.reference-sidebar-nav) .pl-drawer-reason .plan-evidence-list article>span{color:var(--brand-ink);background:var(--brand-soft);font-size:11px;font-weight:600}.shell:has(.reference-sidebar-nav) .pl-drawer-reason code{font-size:12px}.shell:has(.reference-sidebar-nav) .pl-drawer>footer{padding:14px 20px;border-top:1px solid var(--border);background:var(--subtle)}@media(max-width:820px){.shell:has(.reference-sidebar-nav) .pl-review-head{flex-direction:column;align-items:stretch}.shell:has(.reference-sidebar-nav) .pl-review-actions{justify-items:start;max-width:none;padding-top:0}.shell:has(.reference-sidebar-nav) .pl-review-hint{text-align:left}.shell:has(.reference-sidebar-nav) .pl-structure{grid-template-columns:minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .pl-structure>h2,.shell:has(.reference-sidebar-nav) .pl-structure-tools,.shell:has(.reference-sidebar-nav) .pl-structure .nav-tree-toolbar{grid-column:1}.shell:has(.reference-sidebar-nav) .pl-composer-row{flex-direction:column;align-items:stretch}.shell:has(.reference-sidebar-nav) .pl-structure .pl-page-purpose{display:none}}.shell:has(.reference-sidebar-nav).pages-shell .main{padding:0}.shell:has(.reference-sidebar-nav).pages-shell .page{width:auto;max-width:1120px;margin:0 auto;gap:24px;padding:32px 40px 64px}.shell:has(.reference-sidebar-nav).pages-shell .page-head{margin:0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .pages-view-actions{display:flex;align-items:center;gap:8px;flex-wrap:nowrap}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .pages-view-actions .btn[aria-pressed=true]{color:var(--brand-ink);background:var(--brand-soft);box-shadow:0 0 0 1px var(--brand-tint)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .pages-workspace-tools{margin:0;padding:4px 20px 12px;border:1px solid var(--border);border-radius:12px;background:#fff}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .pages-workbench,.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.navigation-open .pages-workbench{display:grid;grid-template-columns:280px minmax(0,1fr);gap:24px;align-items:start;margin:0;border:0;border-radius:0;background:transparent;overflow:visible}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-list-panel,.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.navigation-open .page-list-panel{position:sticky;top:16px;display:flex;flex-direction:column;gap:12px;min-width:0;border:0;border-radius:0;background:transparent;box-shadow:none;overflow:visible}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-search{position:relative;display:block;margin:0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-search>.icon{position:absolute;top:50%;left:12px;color:var(--faint);transform:translateY(-50%);pointer-events:none}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-search .input{width:100%;height:40px;min-height:40px;padding:0 12px 0 40px;font-size:14px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-list-panel>label:has(select){display:grid;gap:6px;padding:0;color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-list-panel select{min-height:36px;border:1px solid var(--strong-border);border-radius:8px;background:#fff;font:inherit;font-size:13.5px;color:var(--ink)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .navigation-view-embedded{margin:0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .navigation-view-embedded .navigation-editor-pane{display:block;padding:8px;border:1px solid var(--border);border-radius:12px;background:#fff;box-shadow:none}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-header{display:flex;align-items:center;gap:4px;min-height:30px;padding:2px 4px 4px 10px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-header h2{margin:0;color:var(--muted);font-family:var(--font-mono);font-size:11px;line-height:16px;font-weight:500;letter-spacing:.08em;text-transform:uppercase}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-save-state{margin:0 2px 0 auto;color:var(--faint);font-size:11.5px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-header .btn{width:26px;height:26px;min-width:0;min-height:0;padding:0;border:0;border-radius:6px;color:var(--muted);background:transparent;box-shadow:none}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-header .btn:hover:not(:disabled){color:var(--ink);background:var(--hover)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .navigation-spaces{padding:0 4px 6px;gap:4px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .navigation-spaces button{padding:3px 8px;border-radius:6px;font-size:12px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-tools{justify-content:flex-end;padding:0 2px 2px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-tools>span{display:none}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-add{width:26px;height:26px;border-radius:6px;color:var(--muted)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .navigation-explorer{max-height:calc(100vh - 300px);padding-bottom:2px;overflow:auto;overscroll-behavior:contain}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-row{height:32px;gap:6px;padding-right:6px;border:0;border-radius:7px;color:var(--text);font-family:var(--font-ui);font-size:13.5px;line-height:20px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-row:hover{background:var(--hover)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-row:focus-visible,.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-row:focus-within{outline:2px solid var(--brand);outline-offset:-2px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-row.current,.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-row[aria-selected=true]{color:var(--brand-ink);background:var(--brand-soft);font-weight:500}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-row:has(>button.explorer-chevron){color:var(--ink);font-weight:600}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-chevron{width:14px;color:var(--muted)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-icon{width:20px;color:var(--faint)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-row.current .explorer-icon{color:var(--brand)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-select{width:14px;height:14px;min-width:14px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-more{color:var(--faint);font-size:16px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-popover{border-radius:10px;box-shadow:var(--pop)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .explorer-unlisted>span{color:var(--muted);font-family:var(--font-mono);font-size:11px;letter-spacing:.08em}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-list-foot{display:flex;align-items:center;justify-content:space-between;gap:8px;padding:0 4px;color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-list-foot .btn.link{font-size:13px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-list-summary{display:flex;gap:8px;min-height:0;padding:0 4px;border:0;color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-list-summary>span:first-child{color:var(--muted);font-weight:500}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-list-hint{display:inline;color:var(--faint)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-list-clear{color:var(--brand-ink);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-list{min-height:0;max-height:calc(100vh - 320px);padding:8px;border:1px solid var(--border);border-radius:12px;background:#fff}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-list-group h2{padding:8px 8px 4px;background:#fff;color:var(--muted);font-family:var(--font-mono);font-size:11px;font-weight:500;letter-spacing:.08em}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-list-row{grid-template-columns:16px minmax(0,1fr);gap:8px;align-items:center;min-height:32px;padding:0 8px;border:0;border-radius:7px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-list-row.active{color:var(--brand-ink);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-list-copy strong{color:inherit;font-size:13.5px;font-weight:500}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-list-check input{width:14px;height:14px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-list-panel>details{padding:8px 12px;border:1px solid var(--border);border-radius:12px;background:#fff;font-size:13px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-list-panel>details summary{color:var(--muted);cursor:pointer}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-text-matches{margin:8px 0 0;padding:0;list-style:none;display:grid;gap:2px;max-height:240px;overflow:auto}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-text-matches button{width:100%;display:grid;gap:2px;padding:6px 8px;border:0;border-radius:7px;background:transparent;color:var(--text);font:inherit;font-size:12.5px;text-align:left;cursor:pointer}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-text-matches button:hover{background:var(--hover)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-text-matches strong{color:var(--ink);font-weight:500}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-text-matches small{color:var(--muted);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-list-empty{padding:24px 12px;color:var(--muted);font-size:13px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-pane{display:flex;flex-direction:column;min-width:0;border:1px solid var(--border);border-radius:14px;background:#fff;box-shadow:none;overflow:hidden}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-pane>*+*{border-top:0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-empty{padding:24px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-header{display:flex;flex-wrap:nowrap;align-items:flex-start;justify-content:space-between;gap:16px;min-height:0;padding:22px 28px 0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-copy{display:grid;flex:1 1 auto;gap:8px;min-width:0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-title{display:flex;align-items:center;gap:10px;min-width:0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-title h2{margin:0;color:var(--ink);font-family:var(--font-display);font-size:24px;line-height:28px;font-weight:600;letter-spacing:-.02em;overflow-wrap:anywhere}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-path{color:var(--muted);font-family:var(--font-mono);font-size:12.5px;line-height:16px;overflow-wrap:anywhere}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-actions{display:flex;flex:0 0 auto;align-items:center;gap:8px;padding-top:2px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-actions>.btn{min-height:0;border:0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-actions>.btn.ghost[aria-pressed=true]{color:var(--brand-ink);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-agent-toggle{position:relative;display:inline-flex;align-items:center;gap:8px;height:30px;min-height:0;padding:0 10px;border:0;border-radius:7px;color:var(--ink);background:#fff;box-shadow:0 0 0 1px var(--strong-border),var(--lift);font:inherit;font-size:13px;font-weight:500;cursor:pointer}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-agent-toggle:hover{background:var(--subtle)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-agent-toggle.active{color:var(--brand-ink);background:var(--brand-soft);box-shadow:0 0 0 1px var(--brand-tint)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-agent-toggle .icon{color:var(--brand)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-agent-toggle>i{position:absolute;top:-3px;right:-3px;width:8px;height:8px;border-radius:50%;background:var(--brand);box-shadow:0 0 0 2px #fff}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-options-toggle{display:grid;place-items:center;width:30px;height:30px;min-width:0;min-height:0;padding:0;border:0;border-radius:7px;color:var(--muted);background:#fff;box-shadow:0 0 0 1px var(--strong-border),var(--lift);cursor:pointer}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-options-toggle:hover{color:var(--ink);background:var(--subtle)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-options-toggle[aria-expanded=true]{color:var(--brand-ink);background:var(--brand-soft);box-shadow:0 0 0 1px var(--brand-tint)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-options-toggle:disabled{opacity:.5;cursor:default}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-outline-toggle{display:none}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-tabs{display:flex;align-items:flex-end;gap:24px;padding:14px 28px 0;border-bottom:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-tabs>[role=tab]{margin-bottom:-1px;padding:0 0 12px;border:0;border-bottom:2px solid transparent;border-radius:0;color:var(--muted);background:none;font:inherit;font-size:14px;font-weight:500;cursor:pointer}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-tabs>[role=tab]:hover:not(:disabled){color:var(--ink)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-tabs>[role=tab].active{color:var(--ink);border-bottom-color:var(--brand);font-weight:600}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-tabs>[role=tab]:disabled{opacity:.45;cursor:default}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-tabs-side{display:flex;align-items:center;gap:12px;margin-left:auto;padding-bottom:8px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-tabs-side small{color:var(--muted);font-size:12.5px;white-space:nowrap}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-content-toggle{display:inline-flex;align-items:center;gap:6px;height:28px;min-height:0;padding:0 10px;border:0;border-radius:7px;color:var(--ink);background:#fff;box-shadow:0 0 0 1px var(--strong-border);font:inherit;font-size:13px;font-weight:500;cursor:pointer}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-content-toggle:hover:not(:disabled){background:var(--subtle)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-content-toggle.active{color:var(--brand-ink);background:var(--brand-soft);box-shadow:0 0 0 1px var(--brand-tint)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-content-toggle:disabled{opacity:.45;cursor:default}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-mode-switch{display:none}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-options-panel{display:grid;gap:12px;padding:12px 28px 16px;border-bottom:1px solid var(--border);background:#fff}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .selected-pages-strip{padding:10px 28px;border-bottom:1px solid var(--border);background:var(--subtle)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .selected-pages-strip>strong{color:var(--ink);font-size:12.5px;font-weight:600}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .selected-page-chip{border-color:var(--strong-border)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .selected-page-chip.active{border-color:var(--brand-tint);background:var(--brand-soft);box-shadow:none}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .selected-page-chip.active button:first-child{color:var(--brand-ink);font-weight:500}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-pending-strip{margin:16px 28px 0;padding:10px 14px;border-radius:10px;color:var(--info);background:var(--info-soft);font-size:13.5px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-editor-layout,.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.agent-panel-open .page-editor-layout,.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.navigation-open.agent-panel-open .page-editor-layout{display:grid;grid-template-columns:minmax(0,1fr);min-height:0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-editor-canvas{min-width:0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .current-page-preview{height:clamp(480px,calc(100vh - 380px),900px);margin:0;border:0;border-radius:0;box-shadow:none}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .preview-placeholder{min-height:320px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-content-editor>iframe{height:clamp(480px,calc(100vh - 420px),900px)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-editor-toolbar{gap:10px;padding:10px 28px;border-bottom:1px solid var(--border);background:var(--subtle)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-editor-toolbar>.segmented{display:none}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-editor-toolbar>span{color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-editor-hint{padding:8px 28px;border-bottom:1px solid var(--border);color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-editor-notice{padding:10px 28px;border-bottom:1px solid var(--border);color:var(--brand-ink);background:var(--brand-soft);font-size:13px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-editor-notice.error{color:var(--bad);background:var(--bad-soft)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-editor-conflict{padding:16px 28px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-source-editor{min-height:480px;padding:24px 28px;color:var(--ink);font:13.5px/1.7 var(--font-mono)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-canvas-status{padding:10px 28px;border-top:1px solid var(--border);color:var(--muted);background:var(--subtle);font-size:12px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-canvas-status code{color:var(--faint);font-size:11.5px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-agent-panel,.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.navigation-open .page-agent-panel{min-width:0;margin:20px 28px 24px;padding:16px;border:1px solid var(--border);border-radius:14px;background:var(--subtle)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-agent-panel-header{display:flex;align-items:center;gap:12px;margin:0 0 12px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-agent-panel-header h2.kicker{flex:0 0 auto;margin:0;color:var(--muted);font-family:var(--font-mono);font-size:11px;line-height:16px;font-weight:500;letter-spacing:.08em;text-transform:uppercase}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-agent-scope{flex:1 1 auto;min-width:0;margin:0;padding:0;border:0;background:none;color:var(--faint);font-size:12.5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-agent-panel-header button{width:28px;height:28px;min-width:0;min-height:0;border-radius:7px;color:var(--muted)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-agent-panel-header button:hover{color:var(--ink);background:#fff}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-edit-composer{margin:0;padding:0;border:0;background:transparent}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .composer-body{display:grid;gap:12px;padding:0;border:0;background:transparent}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-intent-chips{display:flex;flex-wrap:wrap;align-items:center;gap:8px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-intent-chips .chip{height:30px;min-height:0;gap:6px;padding:0 12px;border:1px solid var(--strong-border);border-radius:999px;color:var(--text);background:#fff;font-size:13px;font-weight:500}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-intent-chips .chip:hover:not(:disabled){border-color:#bcc5d2;color:var(--ink);background:#fff}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .composer-line{display:flex;align-items:flex-start;gap:10px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .composer-field{display:block;flex:1 1 auto;min-width:0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .composer-textarea{position:relative}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .composer-textarea>.icon{position:absolute;top:12px;left:12px;color:var(--faint);pointer-events:none}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .composer-textarea .textarea{width:100%;min-height:40px;max-height:220px;padding:9px 64px 9px 40px;border-radius:8px;background:#fff;font-size:14px;line-height:22px;resize:none;field-sizing:content}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .composer-textarea>small{position:absolute;right:12px;bottom:11px;color:var(--faint);font-size:11.5px;pointer-events:none}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .composer-textarea>small.warn{color:var(--warn)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .composer-line>.btn{flex:0 0 auto;height:40px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .composer-options{display:flex;flex-wrap:wrap;align-items:center;gap:10px 20px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .composer-options .toggle{display:inline-flex;align-items:center;gap:8px;margin:0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .composer-options .toggle-text{color:var(--text);font-size:13px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-agent-advanced{margin-left:auto;padding:0;border:0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-agent-advanced[open]{flex-basis:100%;margin-left:0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-agent-advanced summary{color:var(--muted);font-size:13px;cursor:pointer}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-agent-advanced summary:hover{color:var(--ink)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .agent-config-summary{width:100%;display:flex;flex-wrap:wrap;align-items:center;gap:8px;min-height:40px;margin:10px 0 0;padding:8px 12px;border:1px solid var(--strong-border);border-radius:8px;background:#fff;font-size:13.5px;text-align:left;cursor:pointer}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .agent-config-summary>span{flex:1;min-width:0;color:var(--text);overflow-wrap:anywhere}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .agent-config-summary>strong{color:var(--brand);font-weight:500}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-agent-options{display:grid;grid-template-columns:minmax(0,1fr);gap:12px;padding:12px 0 0;border:0;background:transparent}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .composer-note{color:var(--warn);font-size:12.5px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-edit-failure{display:flex;gap:12px;margin:0 0 12px;padding:14px 16px;border-radius:12px;background:var(--bad-soft)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-edit-failure .failure-icon{display:grid;place-items:center;flex:0 0 auto;width:28px;height:28px;border-radius:8px;color:var(--bad);background:#fff}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-edit-failure strong{display:block;color:var(--ink);font-size:14px;font-weight:600}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-edit-failure p{margin:4px 0 10px;color:var(--text);font-size:13.5px;line-height:19px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.running .page-editor-layout{display:flex;flex-direction:column}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.running .page-agent-panel{order:-1;margin:0;padding:20px 28px;border:0;border-bottom:1px solid var(--border);border-radius:0;background:#fff}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-edit-running{margin:0;padding:0;border:0;background:transparent}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-edit-running>header{display:flex;align-items:flex-start;gap:12px;padding:0;background:none}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-edit-running>header>div{flex:1;min-width:0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .running-pulse{width:32px;height:32px;border-radius:8px;background:var(--brand-soft);box-shadow:none}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-edit-running h2{margin:0 0 6px;color:var(--ink);font-size:16px;line-height:22px;font-weight:600}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-edit-running blockquote{margin:0;padding:8px 12px;border-left:3px solid var(--brand);border-radius:0 6px 6px 0;background:var(--subtle);color:var(--text);font-size:13.5px;line-height:20px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-edit-running .authoring-live-log{padding:12px 0 0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-agent-other-run{display:flex;align-items:center;gap:12px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-agent-other-run p{margin:0;flex:1;color:var(--text);font-size:13.5px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.reviewing .page-editor-layout{display:flex;flex-direction:column}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.reviewing .page-agent-panel,.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.reviewing .page-agent-review{display:contents}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.reviewing .page-agent-panel-header{display:none}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.reviewing .page-review-head{order:1;display:flex;align-items:flex-start;justify-content:space-between;gap:16px;padding:20px 28px 12px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.reviewing .page-review-head>div{display:grid;gap:4px;min-width:0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.reviewing .page-review-head small{color:var(--muted);font-family:var(--font-mono);font-size:11px;line-height:16px;font-weight:500;letter-spacing:.08em;text-transform:uppercase}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.reviewing .page-review-head h2{margin:0;color:var(--ink);font-size:18px;line-height:24px;font-weight:600}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.reviewing .page-review-head p{margin:0;max-width:72ch;color:var(--muted);font-size:13.5px;line-height:20px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.reviewing .page-review-instruction{order:2;display:flex;gap:8px;margin:0 28px 12px;padding:10px 14px;border-radius:8px;background:var(--subtle);color:var(--text);font-size:13.5px;line-height:20px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.reviewing .page-agent-review>.note{order:3;margin:0 28px 12px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.reviewing .page-related-changes{order:4;margin:0 28px 12px;padding:0;border:0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.reviewing .page-refine{order:5;margin:0 28px 12px;padding:16px;border:1px solid var(--border);border-radius:12px;background:var(--subtle)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.reviewing .page-editor-canvas{order:6}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.reviewing .page-review-actions{position:sticky;bottom:0;z-index:2;order:7;display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin:0;padding:12px 28px;border-top:1px solid var(--border);background:#fffffff0;-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.reviewing .page-review-actions small{flex-basis:auto;margin-left:auto;color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-edit-review{margin:0;border-top:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-review-toolbar{padding:10px 28px;border-top:0;border-bottom:1px solid var(--border);background:var(--subtle)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-review-path{color:var(--muted);font-family:var(--font-mono);font-size:12.5px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-review-body{padding:0;background:#fff}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-review-body .source-diff{padding:12px 28px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-edit-review>.text-editor{margin:12px 28px}.shell:has(.reference-sidebar-nav) .page-history-scrim{z-index:120;background:#0f1f3d47;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.shell:has(.reference-sidebar-nav) .page-history-panel{position:absolute;inset:0 0 0 auto;width:min(440px,100%);display:flex;flex-direction:column;gap:0;border-left:1px solid var(--border);background:#fff;box-shadow:var(--float)}.shell:has(.reference-sidebar-nav) .page-history-panel>header{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;padding:24px 24px 16px;border-bottom:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .page-history-panel>header>span{display:grid;gap:6px;min-width:0}.shell:has(.reference-sidebar-nav) .page-history-panel>header strong{color:var(--ink);font-size:18px;line-height:24px;font-weight:600;letter-spacing:-.01em;overflow-wrap:anywhere}.shell:has(.reference-sidebar-nav) .page-history-panel>header button{display:grid;place-items:center;width:32px;height:32px;flex:0 0 auto;border:0;border-radius:8px;color:var(--muted);background:transparent;cursor:pointer}.shell:has(.reference-sidebar-nav) .page-history-panel>header button:hover{color:var(--ink);background:var(--hover)}.shell:has(.reference-sidebar-nav) .page-history-body{flex:1;min-height:0;overflow-y:auto;padding:8px 0 24px}.shell:has(.reference-sidebar-nav) .page-history-row{display:flex;align-items:flex-start;gap:12px;padding:12px 24px;border-top:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .page-history-row:first-child{border-top:0}.shell:has(.reference-sidebar-nav) .page-history-row>span{display:grid;flex:1;gap:3px;min-width:0}.shell:has(.reference-sidebar-nav) .page-history-row strong{color:var(--ink);font-size:14px;line-height:20px;font-weight:500}.shell:has(.reference-sidebar-nav) .page-history-row small{color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .page-history-empty{margin:0;padding:24px;color:var(--muted);font-size:14px}.shell:has(.reference-sidebar-nav) .text-editor{margin:0;border:1px solid var(--border);border-radius:12px;background:#fff;color:var(--text)}.shell:has(.reference-sidebar-nav) .text-editor>summary{padding:12px 16px;color:var(--ink);font-size:14px;font-weight:500}.shell:has(.reference-sidebar-nav) .text-editor>summary small{margin-left:8px;color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .text-editor-body{padding:4px 16px 16px;font-size:13.5px}.shell:has(.reference-sidebar-nav) .text-editor-body label{color:var(--ink);font-size:13px;font-weight:500}.shell:has(.reference-sidebar-nav) .text-editor-body label>input:not([type=checkbox]),.shell:has(.reference-sidebar-nav) .text-editor-body label>select,.shell:has(.reference-sidebar-nav) .text-editor-body label>textarea,.shell:has(.reference-sidebar-nav) .page-tools input:not([type=checkbox]),.shell:has(.reference-sidebar-nav) .page-tools select{min-height:40px;padding:8px 12px;border:1px solid var(--strong-border);border-radius:8px;color:var(--ink);background:#fff;font:inherit;font-size:14px;font-weight:400}.shell:has(.reference-sidebar-nav) .text-editor-label textarea{border-color:var(--strong-border);border-radius:8px;font:13.5px/1.7 var(--font-mono)}.shell:has(.reference-sidebar-nav) .text-editor button:not(.btn){min-height:30px;padding:0 10px;border:0;border-radius:7px;color:var(--ink);background:#fff;box-shadow:0 0 0 1px var(--strong-border),var(--lift);font:inherit;font-size:13px;font-weight:500}.shell:has(.reference-sidebar-nav) .text-editor button:not(.btn):hover:not(:disabled){background:var(--subtle)}.shell:has(.reference-sidebar-nav) .text-editor-hint{color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .text-editor p{color:var(--text);font-size:13px;line-height:19px}.shell:has(.reference-sidebar-nav) .pages-workspace-tools .text-editor{margin:12px 0 0}.shell:has(.reference-sidebar-nav) .pages-workspace-tools .text-editor+.text-editor{margin-top:8px}@media(max-width:1050px){.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .pages-workbench,.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.navigation-open .pages-workbench{grid-template-columns:minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-list-panel,.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.navigation-open .page-list-panel{display:none;position:static}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.page-list-open .page-list-panel,.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.navigation-open.page-list-open .page-list-panel{display:flex}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-outline-toggle{display:inline-flex}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .navigation-explorer{max-height:320px}}@media(max-width:760px){.shell:has(.reference-sidebar-nav).pages-shell .page{padding:20px 16px 48px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-header{flex-wrap:wrap;padding:18px 16px 0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-actions{flex-wrap:wrap}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-tabs{gap:16px;padding:12px 16px 0;overflow-x:auto}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-agent-panel{margin:16px;padding:12px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .composer-line{flex-direction:column;align-items:stretch}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-canvas-status,.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-options-panel,.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .selected-pages-strip{padding-inline:16px}}.shell:has(.reference-sidebar-nav).proposal-shell .page{width:auto;max-width:1040px}.shell:has(.reference-sidebar-nav).proposal-shell.focus-mode .page{max-width:1360px;padding-top:36px}.shell:has(.reference-sidebar-nav) .proposal-index-panel{overflow:hidden}.shell:has(.reference-sidebar-nav) .proposal-index-list{display:grid}.shell:has(.reference-sidebar-nav) .proposal-index-row{display:flex;align-items:center;gap:16px;width:100%;min-height:64px;padding:14px 20px;border:0;border-top:1px solid var(--border);border-radius:0;background:#fff;color:var(--text);font:inherit;text-align:left;cursor:pointer;transition:background-color .12s ease}.shell:has(.reference-sidebar-nav) .proposal-index-row:first-child{border-top:0}.shell:has(.reference-sidebar-nav) .proposal-index-row:hover{background:var(--subtle)}.shell:has(.reference-sidebar-nav) .proposal-index-row:focus-visible{outline:2px solid var(--brand);outline-offset:-2px}.shell:has(.reference-sidebar-nav) .proposal-index-copy{display:grid;flex:1 1 auto;gap:3px;min-width:0}.shell:has(.reference-sidebar-nav) .proposal-index-copy strong{color:var(--ink);font-size:14px;line-height:20px;font-weight:600;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .proposal-index-copy small{color:var(--muted);font-size:12.5px;line-height:17px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .proposal-index-row>.icon{flex:0 0 auto;color:var(--faint)}.shell:has(.reference-sidebar-nav) .proposal-index-panel .empty{margin:20px}.shell:has(.reference-sidebar-nav) .review-more{position:relative}.shell:has(.reference-sidebar-nav) .review-more-trigger{width:36px;padding:0;color:var(--muted)}.shell:has(.reference-sidebar-nav) .review-more-trigger[aria-expanded=true]{color:var(--ink);background:var(--subtle)}.shell:has(.reference-sidebar-nav) .review-more-menu{position:absolute;top:calc(100% + 6px);right:0;z-index:30;min-width:220px;display:grid;padding:6px;border:1px solid var(--border);border-radius:10px;background:#fff;box-shadow:var(--pop)}.shell:has(.reference-sidebar-nav) .review-more-menu>[role=menuitem]{display:block;width:100%;padding:8px 10px;border:0;border-radius:7px;color:var(--ink);background:transparent;font:inherit;font-size:14px;text-align:left;text-decoration:none;cursor:pointer}.shell:has(.reference-sidebar-nav) .review-more-menu>[role=menuitem]:hover,.shell:has(.reference-sidebar-nav) .review-more-menu>[role=menuitem]:focus-visible{background:var(--hover);outline:none}.shell:has(.reference-sidebar-nav) .review-more-menu:empty:before{content:"No other actions";display:block;padding:8px 10px;color:var(--faint);font-size:13px}.shell:has(.reference-sidebar-nav) .review{display:grid;grid-template-columns:minmax(0,1fr);gap:24px}.shell:has(.reference-sidebar-nav) .review-summary-bar{display:flex;flex-wrap:wrap;align-items:center;gap:12px 24px;padding:18px 24px;border:1px solid var(--border);border-radius:14px;background:#fff}.shell:has(.reference-sidebar-nav) .review-summary-copy{display:grid;flex:1 1 320px;gap:4px;min-width:0}.shell:has(.reference-sidebar-nav) .review-summary-copy strong{color:var(--ink);font-size:14px;line-height:20px;font-weight:600}.shell:has(.reference-sidebar-nav) .review-summary-copy small{color:var(--muted);font-size:13px;line-height:18px;overflow-wrap:anywhere}.shell:has(.reference-sidebar-nav) .review-summary-side{display:flex;flex-wrap:wrap;align-items:center;gap:8px}.shell:has(.reference-sidebar-nav) .review-notices{display:grid;gap:12px}.shell:has(.reference-sidebar-nav) .review-notices:empty{display:none}.shell:has(.reference-sidebar-nav) .review-notices .proposal-lifecycle-notice,.shell:has(.reference-sidebar-nav) .review-notices .proposal-screenshot-result,.shell:has(.reference-sidebar-nav) .review-notices .proposal-revision-live{min-height:0;display:flex;align-items:center;gap:14px;padding:14px 18px;border:1px solid var(--border);border-radius:12px;color:var(--text);background:#fff;font-size:13.5px;line-height:19px}.shell:has(.reference-sidebar-nav) .review-notices .proposal-lifecycle-notice>.icon,.shell:has(.reference-sidebar-nav) .review-notices .proposal-screenshot-result>.screenshot-camera{flex:0 0 auto;color:var(--muted)}.shell:has(.reference-sidebar-nav) .review-notices .proposal-lifecycle-notice.failed{align-items:center;border-color:#f0c2bd;background:var(--bad-soft)}.shell:has(.reference-sidebar-nav) .review-notices .proposal-lifecycle-notice.failed>.icon{color:var(--bad)}.shell:has(.reference-sidebar-nav) .review-notices .proposal-lifecycle-notice.advisory{border-color:#f3d9a4;background:var(--warn-soft)}.shell:has(.reference-sidebar-nav) .review-notices .proposal-lifecycle-notice.advisory>.icon{color:var(--warn)}.shell:has(.reference-sidebar-nav) .review-notices .proposal-lifecycle-notice.stale{border-color:#f3d9a4;background:var(--warn-soft)}.shell:has(.reference-sidebar-nav) .review-notices .proposal-failed-copy{display:grid;flex:1;gap:2px;min-width:0}.shell:has(.reference-sidebar-nav) .review-notices .proposal-failed-copy strong{color:var(--ink);font-size:14px;font-weight:600}.shell:has(.reference-sidebar-nav) .review-notices .proposal-failed-copy small{color:var(--text);font-size:13.5px;white-space:pre-wrap;overflow-wrap:anywhere}.shell:has(.reference-sidebar-nav) .review-notices .proposal-failed-actions{display:flex;flex-wrap:wrap;gap:8px}.shell:has(.reference-sidebar-nav) .review-notices .proposal-screenshot-result>span:nth-child(2){display:grid;flex:1;gap:2px;min-width:0}.shell:has(.reference-sidebar-nav) .review-notices .proposal-screenshot-result strong{color:var(--ink);font-size:14px;font-weight:600}.shell:has(.reference-sidebar-nav) .review-notices .proposal-screenshot-result small{color:var(--muted);font-size:13px}.shell:has(.reference-sidebar-nav) .review-notices .proposal-screenshot-result .screenshot-camera{width:32px;height:32px;display:grid;place-items:center;border-radius:8px;background:var(--subtle)}.shell:has(.reference-sidebar-nav) .review-notices .proposal-screenshot-result.verified .screenshot-camera{color:var(--good);background:var(--good-soft)}.shell:has(.reference-sidebar-nav) .review-notices .proposal-screenshot-result.failed .screenshot-camera{color:var(--bad);background:var(--bad-soft)}.shell:has(.reference-sidebar-nav) .review-notices .proposal-screenshot-result.ignored,.shell:has(.reference-sidebar-nav) .review-notices .proposal-screenshot-result.thin{border-color:#f3d9a4;background:var(--warn-soft)}.shell:has(.reference-sidebar-nav) .review-notices .proposal-screenshot-result.ignored .screenshot-camera,.shell:has(.reference-sidebar-nav) .review-notices .proposal-screenshot-result.thin .screenshot-camera{color:var(--warn);background:#fff}.shell:has(.reference-sidebar-nav) .review-notices .proposal-revision-live{display:grid;gap:12px}.shell:has(.reference-sidebar-nav) .review-notices .proposal-revision-live>header{display:flex;align-items:center;gap:10px}.shell:has(.reference-sidebar-nav) .review-notices .proposal-revision-live>header strong{color:var(--ink);font-weight:600}.shell:has(.reference-sidebar-nav) .review-notices .proposal-revision-live>header small{color:var(--muted);font-size:13px}.shell:has(.reference-sidebar-nav) .review-workspace{display:grid;grid-template-columns:320px minmax(0,1fr);gap:24px;align-items:start;min-height:0;border:0}.shell:has(.reference-sidebar-nav) .review-files{position:sticky;top:16px;display:grid;gap:12px;min-width:0}.shell:has(.reference-sidebar-nav) .review-files-card{display:grid;gap:10px;padding:16px;border:1px solid var(--border);border-radius:12px;background:#fff}.shell:has(.reference-sidebar-nav) .review-files-head{display:flex;align-items:baseline;justify-content:space-between;gap:10px}.shell:has(.reference-sidebar-nav) .review-files-head strong{color:var(--ink);font-size:14px;font-weight:600}.shell:has(.reference-sidebar-nav) .review-files-head small{color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .review-files-actions{display:flex;gap:8px}.shell:has(.reference-sidebar-nav) .review-files-actions .btn{flex:1 1 0}.shell:has(.reference-sidebar-nav) .review-file-list{display:grid;gap:1px;max-height:calc(100vh - 260px);padding:4px;border:1px solid var(--border);border-radius:12px;background:#fff;overflow-y:auto;overscroll-behavior:contain}.shell:has(.reference-sidebar-nav) .review-file-search{position:relative;display:block;margin:4px 4px 6px}.shell:has(.reference-sidebar-nav) .review-file-search>.icon{position:absolute;top:50%;left:10px;z-index:1;color:var(--faint);transform:translateY(-50%);pointer-events:none}.shell:has(.reference-sidebar-nav) .review-file-search .input{width:100%;height:34px;min-height:34px;padding:0 10px 0 32px;font-size:13px}.shell:has(.reference-sidebar-nav) .review-file-group{display:grid;gap:1px}.shell:has(.reference-sidebar-nav) .review-file-group>header{display:flex;align-items:center;justify-content:space-between;gap:8px;padding:12px 12px 6px}.shell:has(.reference-sidebar-nav) .review-file-group>header .kicker{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .review-file-group.warn>header .kicker{color:var(--warn)}.shell:has(.reference-sidebar-nav) .review-file-group>header small{color:var(--faint);font-size:12px}.shell:has(.reference-sidebar-nav) .review-file-row{display:flex;align-items:center;gap:10px;width:100%;height:32px;padding:0 12px;border:0;border-radius:7px;color:var(--text);background:transparent;font:inherit;text-align:left;cursor:pointer}.shell:has(.reference-sidebar-nav) .review-file-row:hover{background:var(--hover)}.shell:has(.reference-sidebar-nav) .review-file-row:focus-visible{outline:2px solid var(--brand);outline-offset:-2px}.shell:has(.reference-sidebar-nav) .review-file-row.active{color:var(--brand-ink);background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .review-file-kind{width:12px;flex:0 0 auto;color:var(--muted);font-family:var(--font-mono);font-size:11px;font-weight:600}.shell:has(.reference-sidebar-nav) .review-file-kind.added{color:var(--good)}.shell:has(.reference-sidebar-nav) .review-file-kind.modified{color:var(--warn)}.shell:has(.reference-sidebar-nav) .review-file-kind.deleted{color:var(--bad)}.shell:has(.reference-sidebar-nav) .review-file-path{flex:1 1 auto;min-width:0;font-family:var(--font-mono);font-size:12.5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.shell:has(.reference-sidebar-nav) .review-file-row>.icon{flex:0 0 auto}.shell:has(.reference-sidebar-nav) .review-file-row.accepted>.icon{color:var(--good)}.shell:has(.reference-sidebar-nav) .review-file-row.rejected>.icon{color:var(--bad)}.shell:has(.reference-sidebar-nav) .review-file-partial{width:8px;height:8px;flex:0 0 auto;border-radius:50%;background:var(--warn-dot)}.shell:has(.reference-sidebar-nav) .review-file-search-empty{display:grid;gap:2px;padding:20px 12px;text-align:center}.shell:has(.reference-sidebar-nav) .review-file-search-empty strong{color:var(--ink);font-size:13.5px;font-weight:600}.shell:has(.reference-sidebar-nav) .review-file-search-empty small{color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .review-file-group-toggle{display:inline-flex;align-items:center;gap:6px;margin:4px 0 2px;padding:6px 12px;border:0;border-radius:7px;color:var(--brand);background:transparent;font:inherit;font-size:13px;font-weight:500;cursor:pointer}.shell:has(.reference-sidebar-nav) .review-file-group-toggle:hover{background:var(--brand-soft)}.shell:has(.reference-sidebar-nav) .review-file-group-toggle[aria-expanded=true]>.icon{transform:rotate(90deg)}.shell:has(.reference-sidebar-nav) .review-folder-tools{margin:0}.shell:has(.reference-sidebar-nav) .review-folder-tools>summary{padding:10px 14px;font-size:13px}.shell:has(.reference-sidebar-nav) .review-folder-tools .text-editor-body{padding:0 14px 14px}.shell:has(.reference-sidebar-nav) .review-diff-panel{display:flex;flex-direction:column;min-width:0;min-height:560px;border:1px solid var(--border);border-radius:14px;background:#fff;overflow:hidden}.shell:has(.reference-sidebar-nav) .review-file-head{position:static;z-index:auto;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px 16px;min-height:0;padding:16px 20px;border-bottom:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .review-file-head>div.review-file-head-main{display:grid;flex:1 1 320px;align-items:start;gap:4px;min-width:0}.shell:has(.reference-sidebar-nav) .review-file-title{display:flex;flex-wrap:wrap;align-items:center;gap:10px;min-width:0}.shell:has(.reference-sidebar-nav) .review-file-title code{color:var(--ink);font-family:var(--font-mono);font-size:13.5px;overflow-wrap:anywhere}.shell:has(.reference-sidebar-nav) .review-file-head small{color:var(--muted);font-size:12.5px;line-height:17px;font-weight:400;letter-spacing:0;text-transform:none}.shell:has(.reference-sidebar-nav) .review-file-head>div.review-file-head-actions{display:flex;flex:0 0 auto;flex-wrap:wrap;align-items:center;gap:8px}.shell:has(.reference-sidebar-nav) .review-file-tools{display:flex;flex-wrap:wrap;align-items:center;gap:8px;padding:8px 20px;border-bottom:1px solid var(--border);background:var(--subtle)}.shell:has(.reference-sidebar-nav) .review-file-tools:empty{display:none}.shell:has(.reference-sidebar-nav) .review-file-tools .chip{height:28px}.shell:has(.reference-sidebar-nav) .review-diff-panel .proposal-lifecycle-notice.concurrent{display:flex;align-items:flex-start;gap:10px;min-height:0;margin:12px 20px 0;padding:12px 14px;border:1px solid #f3d9a4;border-radius:10px;color:var(--text);background:var(--warn-soft);font-size:13.5px;line-height:19px}.shell:has(.reference-sidebar-nav) .review-diff-panel .proposal-lifecycle-notice.concurrent>.icon{flex:0 0 auto;margin-top:2px;color:var(--warn)}.shell:has(.reference-sidebar-nav) .review-diff-panel .proposal-lifecycle-notice.concurrent strong{color:var(--ink);font-weight:600}.shell:has(.reference-sidebar-nav) .review-diff-body{flex:1 1 auto;min-height:0}.shell:has(.reference-sidebar-nav) .review-diff-body .review-device{min-height:480px}.shell:has(.reference-sidebar-nav) .review-diff-body .review-frame{height:min(70vh,820px);min-height:480px}.shell:has(.reference-sidebar-nav) .review-file-extras{display:grid;gap:12px;padding:12px 20px;border-top:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .review-file-extras:empty{display:none}.shell:has(.reference-sidebar-nav) .review-file-extras .text-editor{margin:0}.shell:has(.reference-sidebar-nav) .source-diff{display:grid;gap:14px;padding:12px 0 16px}.shell:has(.reference-sidebar-nav) .diff-summary{padding:0 20px;font-size:13px}.shell:has(.reference-sidebar-nav) .diff-summary .added{color:var(--good);font-family:var(--font-mono);font-weight:500}.shell:has(.reference-sidebar-nav) .diff-summary .removed{color:var(--bad);font-family:var(--font-mono);font-weight:500}.shell:has(.reference-sidebar-nav) .diff-summary small{color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .hunk{border-radius:0;box-shadow:none}.shell:has(.reference-sidebar-nav) .hunk>header{min-height:36px;padding:6px 20px;border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:var(--subtle)}.shell:has(.reference-sidebar-nav) .hunk>header strong{color:var(--muted);font-family:var(--font-mono);font-size:11px;font-weight:500;letter-spacing:.08em;text-transform:uppercase}.shell:has(.reference-sidebar-nav) .hunk>header small{color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .hunk.accepted>header{background:var(--good-soft)}.shell:has(.reference-sidebar-nav) .hunk.rejected>header{background:var(--bad-soft)}.shell:has(.reference-sidebar-nav) .hunk-actions{display:flex;gap:6px}.shell:has(.reference-sidebar-nav) .diff-lines{font-family:var(--font-mono);font-size:12.5px;line-height:26px}.shell:has(.reference-sidebar-nav) .diff-line{grid-template-columns:44px 44px 20px minmax(0,1fr);background:transparent}.shell:has(.reference-sidebar-nav) .diff-line>span{padding-right:8px;color:var(--faint);font-size:12px}.shell:has(.reference-sidebar-nav) .diff-line>span:nth-child(2){border-right:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .diff-line b{color:var(--faint);font-weight:500}.shell:has(.reference-sidebar-nav) .diff-line code{padding:0 20px 0 8px;color:var(--ink);font-family:var(--font-mono);font-size:12.5px}.shell:has(.reference-sidebar-nav) .diff-line.insert{background:var(--good-soft)}.shell:has(.reference-sidebar-nav) .diff-line.insert b{color:var(--good)}.shell:has(.reference-sidebar-nav) .diff-line.delete{background:var(--bad-soft)}.shell:has(.reference-sidebar-nav) .diff-line.delete b{color:var(--bad)}.shell:has(.reference-sidebar-nav) .diff-line.gap{background:var(--subtle);color:var(--faint)}.shell:has(.reference-sidebar-nav) .diff-line.gap code{color:var(--faint);font-style:italic}.shell:has(.reference-sidebar-nav) .diff-line mark{border-radius:2px;background:#bfe9cf;color:inherit}.shell:has(.reference-sidebar-nav) .diff-line.delete mark{background:#f8cfca}.shell:has(.reference-sidebar-nav) .diff-message{padding:40px 20px;color:var(--muted);font-size:14px}.shell:has(.reference-sidebar-nav) .review-revise-bar{display:flex;align-items:center;gap:10px;margin-top:auto;padding:14px 20px;border-top:1px solid var(--border);background:var(--subtle)}.shell:has(.reference-sidebar-nav) .review-revise-input{position:relative;flex:1 1 auto;min-width:0}.shell:has(.reference-sidebar-nav) .review-revise-input>.icon{position:absolute;top:50%;left:12px;color:var(--faint);transform:translateY(-50%);pointer-events:none}.shell:has(.reference-sidebar-nav) .review-revise-input .input{width:100%;height:40px;padding:0 12px 0 40px}.shell:has(.reference-sidebar-nav) .review-revise-scope{position:relative;display:inline-flex;align-items:center;flex:0 0 auto}.shell:has(.reference-sidebar-nav) .review-revise-scope select.chip{appearance:none;-webkit-appearance:none;height:30px;padding:0 28px 0 12px;border:1px solid var(--brand-tint);border-radius:999px;color:var(--brand-ink);background:var(--brand-soft);font-family:var(--font-ui);font-size:13px;font-weight:500;cursor:pointer}.shell:has(.reference-sidebar-nav) .review-revise-scope select.chip:disabled{opacity:.5;cursor:default}.shell:has(.reference-sidebar-nav) .review-revise-scope>.icon{position:absolute;right:10px;color:var(--brand-ink);pointer-events:none}.proposal-ready-scrim{background:#0f1f3d52;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.proposal-ready-dialog{width:min(520px,100%);display:flex;flex-direction:column;gap:12px;padding:28px;border:0;border-radius:16px;box-shadow:var(--float)}.proposal-ready-dialog>div{display:grid;gap:10px}.proposal-ready-dialog h2{padding-right:32px;font-size:20px;line-height:26px}.proposal-ready-dialog p{margin:0}.proposal-ready-close{top:18px;right:18px;border-radius:8px}.proposal-ready-summary{display:grid;gap:3px;margin:0;padding:12px 14px;border-radius:10px}.proposal-ready-summary strong{font-size:13.5px}.proposal-ready-summary span{font-size:12.5px}.proposal-ready-dialog code{display:block;padding:10px 12px;border-radius:8px;background:var(--ink);color:#e6edf7;font-family:var(--font-mono);font-size:12.5px;overflow-x:auto}.proposal-concurrent-warning{display:grid;gap:8px;padding:12px 14px;border:1px solid #f3d9a4;border-radius:10px;background:var(--warn-soft);font-size:13.5px}.proposal-concurrent-warning strong{display:inline-flex;align-items:center;gap:8px;color:var(--ink);font-weight:600}.proposal-concurrent-warning p{margin:0;color:var(--text)}.proposal-concurrent-warning ul{margin:0;padding-left:18px}.proposal-concurrent-warning code{font-family:var(--font-mono);font-size:12.5px}.proposal-ready-dialog footer{display:flex;justify-content:flex-end;gap:8px;margin-top:8px;padding:0}.proposal-ready-dialog footer .btn:not(.primary){color:var(--text);background:transparent;box-shadow:none}.proposal-ready-dialog footer .btn:not(.primary):hover:not(:disabled){color:var(--ink);background:var(--hover)}.proposal-ready-dialog footer .btn.primary{color:#fff;background:var(--brand);box-shadow:0 1px 2px #063b3a2e}.shell:has(.reference-sidebar-nav) .proposal-revision-dialog{width:min(520px,calc(100vw - 32px));border:0;border-radius:16px;box-shadow:var(--float)}.shell:has(.reference-sidebar-nav) .proposal-revision-dialog>header{padding:28px 28px 0;border:0}.shell:has(.reference-sidebar-nav) .proposal-revision-dialog>header>span{display:grid;gap:8px}.shell:has(.reference-sidebar-nav) .proposal-revision-dialog>header small{color:var(--muted);font-family:var(--font-mono);font-size:11px;line-height:16px;font-weight:500;letter-spacing:.08em;text-transform:uppercase}.shell:has(.reference-sidebar-nav) .proposal-revision-dialog h2{color:var(--ink);font-family:var(--font-ui);font-size:20px;line-height:26px;font-weight:600;letter-spacing:-.01em}.shell:has(.reference-sidebar-nav) .proposal-revision-dialog>header p{color:var(--muted);font-size:14.5px;line-height:1.6}.shell:has(.reference-sidebar-nav) .proposal-revision-dialog>header button{width:32px;height:32px;border-radius:8px;color:var(--muted)}.shell:has(.reference-sidebar-nav) .revision-scope-tabs{gap:2px;margin:20px 28px 16px;padding:3px;border:0;border-radius:8px;background:var(--hover)}.shell:has(.reference-sidebar-nav) .revision-scope-tabs button{min-height:28px;border-radius:6px;color:var(--muted);font-size:13px;font-weight:500}.shell:has(.reference-sidebar-nav) .revision-scope-tabs button.active{color:var(--ink);background:#fff;box-shadow:0 1px 2px #0f1f3d1f}.shell:has(.reference-sidebar-nav) .proposal-revision-dialog>.note{margin:0 28px 16px}.shell:has(.reference-sidebar-nav) .revision-file-list{margin:0 28px 16px;border:1px solid var(--strong-border);border-radius:10px}.shell:has(.reference-sidebar-nav) .revision-file-list label{min-height:44px;padding:8px 14px;border-bottom:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .revision-file-list strong{color:var(--ink);font-size:13.5px;font-weight:500}.shell:has(.reference-sidebar-nav) .revision-file-list code{color:var(--muted);font-family:var(--font-mono);font-size:12px}.shell:has(.reference-sidebar-nav) .revision-file-list input[type=checkbox]{width:16px;height:16px;accent-color:var(--brand)}.shell:has(.reference-sidebar-nav) .proposal-revision-dialog>.field{padding:0 28px 20px}.shell:has(.reference-sidebar-nav) .proposal-revision-dialog>footer{min-height:0;padding:0 28px 28px;border:0;background:transparent}.shell:has(.reference-sidebar-nav) .proposal-revision-dialog>footer>small{color:var(--muted);font-size:13px}.shell:has(.reference-sidebar-nav) .proposal-revision-dialog>footer .btn:not(.primary){color:var(--text);background:transparent;box-shadow:none}.shell:has(.reference-sidebar-nav) .proposal-revision-dialog>footer .btn:not(.primary):hover:not(:disabled){color:var(--ink);background:var(--hover)}.shell:has(.reference-sidebar-nav) .proposal-drawer-scrim{background:#0f1f3d47}.shell:has(.reference-sidebar-nav) .proposal-rationale-drawer{width:min(480px,100%);border-left:1px solid var(--border);box-shadow:var(--float)}.shell:has(.reference-sidebar-nav) .proposal-rationale-drawer>header{padding:24px 24px 16px;border-bottom:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .proposal-rationale-drawer>header small{color:var(--muted);font-family:var(--font-mono);font-size:11px;line-height:16px;font-weight:500;letter-spacing:.08em;text-transform:uppercase}.shell:has(.reference-sidebar-nav) .proposal-rationale-drawer h2{color:var(--ink);font-size:18px;line-height:24px;font-weight:600}.shell:has(.reference-sidebar-nav) .proposal-rationale-drawer header code{color:var(--muted);font-family:var(--font-mono);font-size:12.5px}.shell:has(.reference-sidebar-nav) .proposal-rationale-drawer header button{width:32px;height:32px;border-radius:8px;color:var(--muted)}.shell:has(.reference-sidebar-nav) .proposal-drawer-body{padding:20px 24px;font-size:14px}.shell:has(.reference-sidebar-nav) .proposal-drawer-body h3{color:var(--ink);font-size:14px;font-weight:600}.shell:has(.reference-sidebar-nav) .proposal-drawer-body p,.shell:has(.reference-sidebar-nav) .proposal-drawer-body li{color:var(--text);font-size:14px;line-height:21px}.shell:has(.reference-sidebar-nav) .proposal-drawer-body code{font-family:var(--font-mono);font-size:12.5px}.page-updated-toast .btn.secondary{height:auto;padding:0;color:#5eead4;background:transparent;box-shadow:none;font-size:14px}.page-updated-toast .btn.secondary:hover:not(:disabled){color:#fff;background:transparent;box-shadow:none;text-decoration:underline}.page-updated-toast .toast-copy small{overflow:hidden;text-overflow:ellipsis}@media(max-width:1100px){.shell:has(.reference-sidebar-nav) .review-workspace{grid-template-columns:minmax(0,1fr)}.shell:has(.reference-sidebar-nav) .review-files{position:static}.shell:has(.reference-sidebar-nav) .review-file-list{max-height:320px}}@media(max-width:760px){.shell:has(.reference-sidebar-nav) .review-summary-bar{padding:16px}.shell:has(.reference-sidebar-nav) .review-file-head,.shell:has(.reference-sidebar-nav) .review-file-tools,.shell:has(.reference-sidebar-nav) .review-file-extras{padding-inline:16px}.shell:has(.reference-sidebar-nav) .review-revise-bar{flex-wrap:wrap;padding:12px 16px}.shell:has(.reference-sidebar-nav) .review-revise-input{flex-basis:100%}}.sources-modal-scrim.ops-sheet-scrim,.sources-modal-scrim.ops-dialog-scrim{background:#0f1f3d47;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.sources-modal-scrim.ops-sheet-scrim{display:block;padding:0}.ops-sheet{position:absolute;inset:0 0 0 auto;width:min(560px,100vw);display:flex;flex-direction:column;background:#fff;box-shadow:-24px 0 64px #0f1f3d33;animation:ops-sheet-in .18s ease}@keyframes ops-sheet-in{0%{transform:translate(24px);opacity:0}to{transform:none;opacity:1}}.ops-sheet-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;padding:20px 28px;border-bottom:1px solid var(--border)}.ops-sheet-head h2,.ops-dialog-head h2{margin:0;color:var(--ink);font-family:var(--font-ui);font-size:18px;line-height:24px;font-weight:600;letter-spacing:-.01em}.ops-sheet-head p,.ops-dialog-head p{margin:4px 0 0;color:var(--muted);font-size:13.5px;line-height:19px}.ops-dialog-head p strong{color:var(--ink);font-weight:600}.ops-sheet-body{flex:1 1 auto;min-height:0;overflow-y:auto;display:flex;flex-direction:column;gap:22px;padding:24px 28px}.ops-sheet-foot,.ops-dialog-foot{display:flex;align-items:center;justify-content:flex-end;gap:8px;padding:16px 28px;border-top:1px solid var(--border);background:var(--subtle)}.ops-dialog-foot>span{flex:1 1 auto}.ops-sheet-body>.field,.ops-dialog-body>.field,.ops-dialog-body .monitoring-policy-fields>.field{gap:8px}.ops-sheet-body .field-label,.ops-dialog-body .field-label{color:var(--ink);font-size:13px;font-weight:500}.ops-choice{display:grid;gap:8px}.ops-sheet-body .input,.ops-dialog-body .input{font-size:14px}.ops-sheet-body .mono-input,.ops-dialog-body .mono-input{font-family:var(--font-mono);font-size:13px}.ops-icon-button{width:32px;height:32px;display:inline-grid;place-items:center;flex:0 0 auto;padding:0;border:1px solid transparent;border-radius:8px;color:var(--muted);background:transparent;cursor:pointer;transition:background-color .12s ease,color .12s ease}.ops-icon-button:hover,.ops-icon-button[aria-expanded=true]{color:var(--ink);background:var(--hover)}.shell:has(.reference-sidebar-nav) .ops-dialog,.shell:has(.reference-sidebar-nav) .monitoring-dialog.ops-dialog,.shell:has(.reference-sidebar-nav) .sources-reference-dialog.ops-dialog{width:min(560px,100%);max-height:min(860px,calc(100vh - 48px));display:flex;flex-direction:column;overflow:hidden;border:0;border-radius:16px;background:#fff;box-shadow:var(--float);animation:none}.shell:has(.reference-sidebar-nav) .ops-dialog>.ops-dialog-head,.monitoring-dialog.ops-dialog>header,.sources-reference-dialog.ops-dialog>header{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;padding:24px 28px 16px;border-bottom:1px solid var(--border)}.monitoring-dialog.ops-dialog>header>div,.sources-reference-dialog.ops-dialog>header>div{display:block}.monitoring-dialog.ops-dialog>.ops-dialog-body,.sources-reference-dialog.ops-dialog>.ops-dialog-body{flex:1 1 auto;min-height:0;overflow-y:auto;display:flex;flex-direction:column;gap:20px;padding:20px 28px 24px}.monitoring-dialog.ops-dialog>footer,.sources-reference-dialog.ops-dialog>footer{padding:16px 28px}.sources-reference-dialog.ops-dialog>footer .btn{min-width:0;min-height:0}.monitoring-policy-fields{display:grid;gap:20px}.shell:has(.reference-sidebar-nav) .monitoring-dialog-status{min-height:44px;padding:8px 8px 8px 14px;border:1px solid var(--border);border-radius:10px;background:var(--subtle)}.shell:has(.reference-sidebar-nav) .monitoring-dialog-status>span{color:var(--text);font-size:13.5px}.shell:has(.reference-sidebar-nav) .monitoring-dialog-status>span i{background:var(--faint)}.shell:has(.reference-sidebar-nav) .monitoring-dialog-status>span.active{color:var(--good)}.shell:has(.reference-sidebar-nav) .monitoring-dialog-status>span.active i{background:var(--good);box-shadow:none}.ops-dialog-body .schedule-summary{margin:-6px 0 0;color:var(--muted);font-size:13px}.ops-dialog-body .disclosure{color:var(--brand);font-size:13.5px;font-weight:500}.ops-menu{position:absolute;right:0;top:calc(100% + 4px);z-index:20;min-width:232px;display:grid;padding:6px;border:1px solid var(--border);border-radius:10px;background:#fff;box-shadow:var(--pop);animation:fade-up .12s ease}.ops-menu>button{display:flex;align-items:center;gap:10px;width:100%;height:36px;padding:0 10px;border:0;border-radius:7px;color:var(--ink);background:transparent;font:inherit;font-size:14px;text-align:left;white-space:nowrap;cursor:pointer}.ops-menu>button .icon{color:var(--muted)}.ops-menu>button:hover:not(:disabled){background:var(--hover)}.ops-menu>button.danger,.ops-menu>button.danger .icon{color:var(--bad)}.ops-menu>button.danger:hover:not(:disabled){background:var(--bad-soft)}.ops-menu>button:disabled{opacity:.5;cursor:default}.ops-empty-wrap{padding:20px}.ops-empty-wrap .history-loading{color:var(--muted);font-size:13.5px}.vrow-label.faint{color:var(--faint);font-weight:400}.vrow-value.error{color:var(--bad)}.vrow-value .btn.link{height:auto;padding:0}.vrow-value code{color:var(--muted);background:none;border:0;box-shadow:none;padding:0;font-size:13px}.shell:has(.reference-sidebar-nav) .sources-reference-page{display:grid;gap:24px}.shell:has(.reference-sidebar-nav) .sources-library{display:block;overflow:visible}.shell:has(.reference-sidebar-nav) .sources-library .panel-body.flush{overflow:visible}.source-rows{display:grid}.source-row{display:flex;align-items:center;gap:16px;padding:14px 20px;border-top:1px solid var(--border)}.source-rows [role=rowgroup]>.source-row:first-child{border-top:0}.source-row-icon{display:inline-flex;flex:0 0 auto;margin-right:12px;color:var(--muted)}.source-row-copy{flex:1 1 auto;min-width:0;display:grid}.source-row-name{color:var(--ink);font-size:14px;line-height:20px;font-weight:500;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.source-row-meta{margin:2px 0 0;display:flex;flex-wrap:nowrap;overflow:hidden;white-space:nowrap;align-items:baseline;gap:0 6px;color:var(--muted);font-size:12.5px;line-height:19px}.source-row-meta>span+span:before{content:"·";margin-right:6px;color:var(--faint)}.source-row-detail{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.source-row-meta small{display:block;color:var(--muted);font-size:12.5px;line-height:18px}.source-row-meta small.source-health-error{color:var(--bad)}.source-row-status,.source-row-actions{display:flex;align-items:center;gap:12px;flex:0 0 auto}.source-row-actions{position:relative}.coverage-summary{display:flex;align-items:center;gap:20px;padding:20px 20px 8px}.coverage-figure{color:var(--ink);font-family:var(--font-display);font-size:36px;line-height:1;font-weight:600;letter-spacing:-.02em;font-variant-numeric:tabular-nums}.coverage-figure.good{color:var(--good)}.coverage-figure.warn{color:var(--warn-dot)}.coverage-figure.bad{color:var(--bad)}.shell:has(.reference-sidebar-nav) .coverage-panel .coverage-summary-copy{display:grid;gap:2px}.shell:has(.reference-sidebar-nav) .coverage-panel .coverage-assessment{color:var(--ink);font-size:14px;line-height:20px;font-weight:600}.shell:has(.reference-sidebar-nav) .coverage-panel .coverage-assessment.attention{color:var(--warn)}.coverage-summary-detail{color:var(--muted);font-size:13px;line-height:18px}.coverage-rows{display:grid}.coverage-row{display:flex;align-items:center;gap:20px;padding:12px 20px;border-top:1px solid var(--border)}.coverage-rows>.coverage-row:first-child{border-top:0}.coverage-row-label{flex:0 0 200px;width:200px;color:var(--ink);font-size:14px;font-weight:500;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.coverage-row>.progress{flex:1 1 auto;width:auto}.progress.warn>i{background:var(--warn-dot)}.coverage-row-percent{flex:0 0 44px;width:44px;color:var(--text);font-family:var(--font-mono);font-size:13px;font-style:normal;text-align:right}.coverage-row.unknown .coverage-row-percent{flex:0 0 auto;width:auto;color:var(--faint);font-family:var(--font-ui)}.coverage-row.unknown .coverage-row-label{color:var(--muted)}.shell:has(.reference-sidebar-nav) .coverage-row .coverage-review-action{flex:0 0 auto;padding:0;border:0;background:none;color:var(--brand);font-size:13px;font-weight:500;white-space:nowrap;cursor:pointer}.shell:has(.reference-sidebar-nav) .coverage-row .coverage-review-action:hover{text-decoration:underline}.shell:has(.reference-sidebar-nav) .coverage-panel .source-evidence-notes{margin:0;padding:12px 20px 14px;border:0;border-top:1px solid var(--border);border-radius:0;background:var(--subtle)}.shell:has(.reference-sidebar-nav) .coverage-panel .source-evidence-notes summary{color:var(--muted);font-size:13px;font-weight:500}.freshness-panel .vrow-value{flex:0 1 auto;text-align:right}.freshness-panel .freshness-page .vrow-label code{color:var(--ink);font-size:12.5px}.freshness-panel .freshness-page .vrow-value{color:var(--muted);font-size:13px}.ops-sheet .repository-connect-input{display:flex;align-items:center;gap:8px}.ops-sheet .repository-connect-input .input{flex:1 1 auto;min-width:0;border-radius:8px}.shell:has(.reference-sidebar-nav) .ops-sheet .repository-connect-input .btn.primary{color:var(--ink);border-color:transparent;background:#fff;box-shadow:0 0 0 1px var(--strong-border),var(--lift)}.shell:has(.reference-sidebar-nav) .ops-sheet .repository-connect-input .btn.primary:hover:not(:disabled){background:var(--subtle);border-color:transparent}.ops-sheet .repository-connected-button{display:inline-flex;align-items:center;gap:6px;height:36px;padding:0 12px;border:0;border-radius:8px;color:var(--good);background:var(--good-soft);font:inherit;font-size:13px;font-weight:500}.ops-sheet .source-folder-input{display:flex;align-items:center;gap:8px}.ops-sheet .source-folder-input .input{flex:1 1 auto;min-width:0}.ops-sheet .openapi-dropzone{min-height:160px;gap:10px;padding:24px;border:1px dashed var(--strong-border);border-radius:12px;background:var(--subtle)}.ops-sheet .openapi-dropzone>span{width:40px;height:40px;display:grid;place-items:center;border-radius:10px;color:var(--brand);background:var(--brand-soft)}.ops-sheet .openapi-dropzone strong{color:var(--ink);font-size:14px;font-weight:500;text-align:center;overflow-wrap:anywhere}.ops-sheet .openapi-dropzone.has-file{border-style:solid;border-color:var(--brand-tint);background:var(--brand-soft)}.ops-sheet .source-scope-fields{margin:0;padding:18px 0 0;border:0;border-top:1px solid var(--border);border-radius:0;background:transparent}.ops-sheet .source-scope-fields>summary{color:var(--muted);font-size:13.5px;font-weight:500;cursor:pointer}.ops-sheet .source-scope-fields>div{display:grid;gap:20px;padding-top:18px}.ops-sheet .docs-site-fields{display:grid;gap:16px}.shell:has(.reference-sidebar-nav) .publish-page{display:grid;gap:24px}.input-addon-row{display:flex;align-items:center;gap:8px}.input-addon-row .input{flex:1 1 auto;min-width:0}.input-addon{color:var(--muted);font-size:14px;white-space:nowrap}.publish-visibility-row{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 16px;border:1px solid var(--strong-border);border-radius:10px;background:#fff}.publish-visibility-row>div{display:grid;gap:2px;min-width:0}.shell:has(.reference-sidebar-nav) .publish-visibility-row .segmented{display:inline-flex;flex:0 0 auto}.publish-visibility-row>div>span{color:var(--ink);font-size:14px;font-weight:500}.publish-visibility-row>div>small{color:var(--muted);font-size:12.5px;line-height:17px}.shell:has(.reference-sidebar-nav) .publish-account-row,.shell:has(.reference-sidebar-nav) .publish-target-panel .publish-account-row{display:flex;align-items:center;gap:12px;margin:0;padding:12px 16px;border:1px solid var(--border);border-radius:10px;background:var(--subtle)}.shell:has(.reference-sidebar-nav) .publish-account-row .avatar{width:32px;height:32px;display:grid;place-items:center;flex:0 0 auto;border-radius:50%;color:#fff;background:#1f2a44;box-shadow:none;font-size:13px;font-weight:600}.shell:has(.reference-sidebar-nav) .publish-account-row .avatar.muted{color:var(--muted);background:#fff;box-shadow:var(--hairline)}.shell:has(.reference-sidebar-nav) .publish-account-identity{flex:1 1 auto;min-width:0;display:grid;gap:1px}.shell:has(.reference-sidebar-nav) .publish-account-identity strong{color:var(--ink);font-size:14px;font-weight:500}.shell:has(.reference-sidebar-nav) .publish-account-identity small{color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .publish-signin-pending,.shell:has(.reference-sidebar-nav) .publish-signin-required{display:flex;align-items:flex-start;gap:10px;margin:0;padding:12px 14px;border:0;border-radius:10px;font-size:13.5px;line-height:19px}.shell:has(.reference-sidebar-nav) .publish-signin-pending{color:var(--info);background:var(--info-soft)}.shell:has(.reference-sidebar-nav) .publish-signin-required{color:var(--warn);background:var(--warn-soft)}.shell:has(.reference-sidebar-nav) .publish-signin-pending>.icon,.shell:has(.reference-sidebar-nav) .publish-signin-required>.icon{flex:0 0 auto;margin-top:2px}.shell:has(.reference-sidebar-nav) .publish-signin-pending>span,.shell:has(.reference-sidebar-nav) .publish-signin-required>span{flex:1 1 auto;display:grid;gap:2px}.shell:has(.reference-sidebar-nav) .publish-signin-pending strong,.shell:has(.reference-sidebar-nav) .publish-signin-required strong{color:inherit;font-weight:600}.shell:has(.reference-sidebar-nav) .publish-signin-pending small,.shell:has(.reference-sidebar-nav) .publish-signin-required small{color:inherit;font-size:13px;opacity:.85}.shell:has(.reference-sidebar-nav) .publish-signin-pending a{color:inherit;font-size:13px;font-weight:500}.shell:has(.reference-sidebar-nav) .deploy-progress{display:block;padding:0;gap:0;border-color:var(--border);box-shadow:none}.shell:has(.reference-sidebar-nav) .deploy-progress.running,.shell:has(.reference-sidebar-nav) .deploy-progress.failed{border-color:var(--border);box-shadow:none}.shell:has(.reference-sidebar-nav) .deploy-progress-head{gap:10px}.shell:has(.reference-sidebar-nav) .deploy-progress-icon{width:20px;height:20px;border-radius:0;color:var(--muted);background:transparent}.shell:has(.reference-sidebar-nav) .deploy-progress-icon.succeeded{color:var(--good)}.shell:has(.reference-sidebar-nav) .deploy-progress-icon.failed,.shell:has(.reference-sidebar-nav) .deploy-progress-icon.cancelled{color:var(--bad);background:transparent}.shell:has(.reference-sidebar-nav) .deploy-progress-title{display:block;gap:0}.shell:has(.reference-sidebar-nav) .deploy-progress-title p strong{color:var(--ink);font-weight:600}.shell:has(.reference-sidebar-nav) .deploy-progress-head .panel-actions{display:flex;align-items:center;gap:8px;margin-left:auto}.shell:has(.reference-sidebar-nav) .deploy-progress-bar{padding:16px 20px 4px}.shell:has(.reference-sidebar-nav) .deploy-progress-track{background:var(--border)}.shell:has(.reference-sidebar-nav) .deploy-progress-track i{background:var(--brand)}.shell:has(.reference-sidebar-nav) .deploy-progress-track.running i{background:linear-gradient(90deg,var(--brand),#6fd0c9,var(--brand));background-size:200% 100%}.shell:has(.reference-sidebar-nav) .deploy-progress-steps{gap:0;padding:0}.shell:has(.reference-sidebar-nav) .deploy-progress-steps li{grid-template-columns:22px minmax(0,1fr);gap:14px;padding:12px 20px;border-top:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .deploy-progress-steps li:first-child{border-top:0}.shell:has(.reference-sidebar-nav) .deploy-progress-bar+.deploy-progress-steps li:first-child{border-top:0}.shell:has(.reference-sidebar-nav) .deploy-step-mark{width:22px;height:22px;border:0;color:transparent;background:var(--hover)}.shell:has(.reference-sidebar-nav) .deploy-progress-steps li.done .deploy-step-mark{color:var(--good);background:var(--good-soft);border:0}.shell:has(.reference-sidebar-nav) .deploy-progress-steps li.failed .deploy-step-mark{color:var(--bad);background:var(--bad-soft);border:0}.shell:has(.reference-sidebar-nav) .deploy-progress-steps li.running .deploy-step-mark{border:2px solid var(--brand);border-top-color:transparent;background:transparent}.shell:has(.reference-sidebar-nav) .deploy-step-copy{justify-content:space-between}.shell:has(.reference-sidebar-nav) .deploy-step-copy strong{color:var(--ink);font-size:14px;font-weight:500}.shell:has(.reference-sidebar-nav) .deploy-progress-steps li.pending .deploy-step-copy strong{color:var(--faint);font-weight:500}.shell:has(.reference-sidebar-nav) .deploy-step-copy small{color:var(--muted);font-size:13px}.shell:has(.reference-sidebar-nav) .deploy-progress-log{gap:10px;padding:12px 20px 16px;border-top:1px solid var(--border)}.shell:has(.reference-sidebar-nav) .deploy-log-toggle{color:var(--brand);font-size:13px;font-weight:500}.shell:has(.reference-sidebar-nav) .deploy-progress-log .live-terminal{min-height:120px;max-height:280px;border-color:var(--border)}.deploy-history-name{color:var(--ink);font-family:var(--font-mono);font-size:13px}.shell:has(.reference-sidebar-nav) .deploy-history .history-lines{display:block;margin-top:3px;color:var(--muted);font-size:12.5px}.shell:has(.reference-sidebar-nav) .deploy-history .history-lines i{font-style:normal}.shell:has(.reference-sidebar-nav) .deploy-history .history-lines i.added{color:var(--good)}.shell:has(.reference-sidebar-nav) .deploy-history .history-error{display:block;margin-top:4px;color:var(--bad);font-size:12.5px}.shell:has(.reference-sidebar-nav) .deploy-history .history-duration{display:block;color:var(--faint);font-size:12px}.shell:has(.reference-sidebar-nav) .deploy-history tbody tr:last-child td{border-bottom:0}.shell:has(.reference-sidebar-nav) .settings .stack{gap:24px}.settings-row{width:100%;border:0;border-top:1px solid var(--border);border-radius:0;background:#fff;font:inherit;text-align:left;cursor:pointer;transition:background-color .12s ease}.settings-row:hover{background:var(--subtle)}.settings-row.static{cursor:default}.settings-row.static:hover{background:#fff}.settings-row>.vrow-value{max-width:60%}.settings-row>.vrow-value>.value-text{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.settings-row>.vrow-value>.icon{flex:0 0 auto;color:var(--faint)}.settings-row>.vrow-value>em{color:var(--faint);font-style:normal}.settings-row>.vrow-value>code{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.settings-row:focus-visible{outline-offset:-2px}.capture-signin-embedded{display:grid;gap:20px}.shell:has(.reference-sidebar-nav) .capture-signin{gap:0}.shell:has(.reference-sidebar-nav) .capture-signin-block{gap:14px;padding:20px 0 0;border:0;border-top:1px solid var(--border);border-radius:0;background:transparent}.shell:has(.reference-sidebar-nav) .capture-signin-block+.capture-signin-block{margin-top:20px}.shell:has(.reference-sidebar-nav) .capture-signin-block>header{gap:4px}.shell:has(.reference-sidebar-nav) .capture-signin-block>header strong{color:var(--ink);font-size:14px;font-weight:600}.shell:has(.reference-sidebar-nav) .capture-signin-block>header small{color:var(--muted);font-size:13px;line-height:19px}.shell:has(.reference-sidebar-nav) .capture-signin-block .plan-capture-readiness{border-radius:10px;background:var(--subtle);box-shadow:var(--hairline)}.shell:has(.reference-sidebar-nav) .plan-capture-readiness span{display:grid;gap:2px}.shell:has(.reference-sidebar-nav) .plan-capture-readiness strong{color:var(--ink);font-size:13.5px;font-weight:600}.shell:has(.reference-sidebar-nav) .plan-capture-readiness small{color:var(--muted);font-size:12.5px;line-height:17px}.shell:has(.reference-sidebar-nav) .stale-form-notice{margin:0;padding:12px 14px;border-radius:10px;font-size:13.5px;line-height:19px}.shell:has(.reference-sidebar-nav) .banner{align-items:center;gap:14px;padding:14px 18px;color:var(--ink);animation:none}.shell:has(.reference-sidebar-nav) .banner.bad{color:var(--ink);background:#fff}.shell:has(.reference-sidebar-nav) .banner.bad>.icon{flex:0 0 auto;color:var(--bad)}.shell:has(.reference-sidebar-nav) .banner strong{color:var(--ink);font-size:14px;font-weight:600}.shell:has(.reference-sidebar-nav) .banner span{color:var(--text);font-size:13.5px;opacity:1}.shell:has(.reference-sidebar-nav) .banner>button{color:var(--muted);opacity:1}.shell:has(.reference-sidebar-nav) .banner>button:hover{color:var(--ink)}@media(max-width:900px){.coverage-row{flex-wrap:wrap;gap:8px 12px}.coverage-row-label{flex-basis:100%;width:auto}.source-row{flex-wrap:nowrap}.source-row-meta>span:first-child{flex:0 0 auto}.publish-visibility-row{flex-direction:column;align-items:flex-start}.settings-row>.vrow-value{max-width:50%}}:root{--page-width: 1200px;--page-gutter: 40px}.shell:has(.reference-sidebar-nav) .workspace-main .page{width:100%!important;max-width:calc(var(--page-width) + 2 * var(--page-gutter))!important;margin:0 auto!important;padding:32px var(--page-gutter) 64px!important;box-sizing:border-box;background:transparent!important}.shell:has(.reference-sidebar-nav) .workspace-main .page>:is(.authoring-page,.publish-page,.settings,.overview-page,.sources-page,.pages-page,.proposals-page,.sync-page){width:100%!important;max-width:none!important;margin-inline:0!important}@media(max-width:760px){:root{--page-gutter: 16px}.shell:has(.reference-sidebar-nav) .workspace-main .page{padding-top:20px!important;padding-bottom:48px!important}}.pipeline-card button>span.pipeline-copy{width:auto;height:auto;display:grid;place-items:initial;border:0;border-radius:0;background:transparent;color:inherit;animation:none}.pipeline-card button.done>span.pipeline-copy{background:transparent;color:inherit}.pipeline-card button.active>span.pipeline-copy{border:0;background:transparent}.pipeline-card button.active>span.pipeline-copy:after{content:none}.pipeline-card button>span.pipeline-copy strong{color:var(--ink)}.pipeline-card button.idle>span.pipeline-copy strong{color:var(--muted)}.ov-metric-copy code{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;overflow-wrap:normal}.radio-rows>*>span.badge{flex:0 0 auto;margin-left:auto}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-header{flex-wrap:wrap;row-gap:12px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-copy{flex:1 1 320px;min-width:0}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-title{flex-wrap:wrap}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-title h2{overflow-wrap:normal;word-break:normal;-webkit-hyphens:none;hyphens:none}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .page-detail-actions{flex:0 0 auto;flex-wrap:nowrap}html,.shell:has(.reference-sidebar-nav) .main,.shell:has(.reference-sidebar-nav) .workspace-main{scrollbar-gutter:stable}.radio-rows>:is(.selected,[aria-checked=true],[aria-pressed=true],.active) .badge.teal{background:#fff;box-shadow:0 0 0 1px var(--brand-tint)}.progress.indeterminate{position:relative}.progress.indeterminate>i{position:absolute;left:0;width:30%!important;animation:progress-slide 1.4s ease-in-out infinite}@keyframes progress-slide{0%{transform:translate(-100%)}to{transform:translate(340%)}}@media(prefers-reduced-motion:reduce){.progress.indeterminate>i{animation:none;width:100%!important;opacity:.35}}.screenshot-message-paths{margin-top:6px}.screenshot-message-paths summary{cursor:pointer;color:var(--brand);font-weight:500}.screenshot-message-paths ul{margin:6px 0 0;padding-left:18px;max-height:160px;overflow:auto}.screenshot-message-paths code{font-size:12px}.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .pages-workbench,.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.navigation-open .pages-workbench{grid-template-columns:320px minmax(0,1fr)}@media(min-width:1051px)and (max-width:1100px){.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .pages-workbench,.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.navigation-open .pages-workbench{grid-template-columns:260px minmax(0,1fr)}}.coverage-bulk-internal{display:inline-flex;align-items:center;gap:8px}.coverage-bulk-internal .input{width:280px}@media(min-width:761px){.shell:has(.reference-sidebar-nav) .sidebar{position:sticky!important;inset:auto;height:100vh;width:var(--sidebar-width);transform:none!important;box-shadow:none!important}.shell:has(.reference-sidebar-nav) .nav-scrim{display:none!important}.shell:has(.reference-sidebar-nav) .workspace-mobile-menu,.shell:has(.reference-sidebar-nav) .sidebar-close{display:none!important}}@media(min-width:761px)and (max-width:1024px){:root{--sidebar-width: 208px;--page-gutter: 24px}}@media(max-width:1050px){.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages .pages-workbench,.shell:has(.reference-sidebar-nav) .pages-page.preview-first-pages.navigation-open .pages-workbench{grid-template-columns:minmax(0,1fr)}}.docs-site-summary.thin{border-color:#f3d9a4!important;background:var(--warn-soft)!important}.docs-site-summary.thin .docs-site-summary-icon{color:var(--warn)!important;background:#fff!important}.docs-site-thin-note{margin:8px 0 0;color:var(--warn);font-size:13px;line-height:19px}.pl-activity-summary{display:grid;gap:8px;margin:12px 20px 0;padding:12px 14px;border:1px solid var(--border);border-radius:10px;background:#fff}.pl-activity-summary p{display:grid;gap:2px;margin:0;color:var(--text);font-size:13.5px;line-height:20px}.pl-activity-summary p strong{color:var(--ink);font-size:12px;font-weight:600}.pl-activity-summary ul{display:flex;flex-wrap:wrap;gap:6px 18px;margin:0;padding:0;list-style:none;color:var(--muted);font-size:12.5px}.pl-activity-summary li{display:inline-flex;align-items:center;gap:6px}.publish-advanced{border-top:1px solid var(--border);padding-top:12px}.publish-advanced>summary{cursor:pointer;color:var(--muted);font-size:13px;font-weight:500}.publish-advanced[open]>summary{margin-bottom:12px}.publish-signin-code{display:block;margin-top:4px}.publish-signin-code code{padding:1px 6px;border-radius:5px;background:#fff;box-shadow:var(--hairline);font-family:var(--font-mono);font-size:12.5px;letter-spacing:.04em}html:has(.setup-wizard),html:has(.shell){background:var(--app-canvas)}.plan-existing-docs-columns section,.plan-existing-docs-columns ul{align-content:start}.publish-doxbrix{display:grid;gap:20px}.publish-doxbrix .publish-hero,.publish-doxbrix .publish-live{display:grid;gap:18px;padding:24px;border:1px solid var(--border);border-radius:var(--radius-xl);background:#fff;box-shadow:var(--lift)}.publish-hero-head{display:flex;gap:18px;align-items:flex-start}.publish-hero-head h2{margin:0 0 6px;font-family:var(--font-display);font-size:21px;line-height:1.25;color:var(--ink);letter-spacing:-.01em}.publish-hero-head p{margin:0;max-width:72ch;font-size:15px;line-height:1.55;color:var(--text)}.publish-mark{width:44px;height:44px;flex:0 0 auto;display:grid;place-items:center;border-radius:12px;background:var(--ink);color:#5eead4}.publish-connect{display:flex;align-items:center;gap:16px;padding:16px;border:1px solid var(--divider);border-radius:var(--radius-md);background:var(--subtle);color:var(--brand)}.publish-connect>span{display:grid;gap:2px;flex:1 1 auto;min-width:0}.publish-connect strong{color:var(--ink);font-size:15px;font-weight:600}.publish-connect small{color:var(--muted);font-size:13.5px;line-height:1.45}.publish-code{display:grid;justify-items:center;gap:12px;padding:26px;border:1px dashed var(--brand-tint);border-radius:var(--radius-lg);background:var(--subtle)}.shell:has(.reference-sidebar-nav) .page .publish-code code:not(pre code){padding:0;border:0;font-family:var(--font-mono);font-size:40px;font-weight:500;letter-spacing:.08em;color:var(--ink);background:none}.publish-code-wait{display:inline-flex;align-items:center;gap:10px;font-size:14px;color:var(--info)}.publish-hero-foot{display:flex;align-items:center;gap:12px}.publish-hero-foot>span{flex:1 1 auto;font-size:14px;color:var(--muted)}.publish-hero-foot a{font-family:var(--font-mono);font-size:13.5px}.publish-live-meta{display:flex;align-items:center;gap:12px;font-size:14px;color:var(--muted)}.publish-live-address{display:flex;align-items:center;gap:12px}.publish-live-address>a.mono{flex:1 1 auto;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-family:var(--font-mono);font-size:22px;color:var(--ink)}.publish-live-address>a.mono:hover{color:var(--brand-dark)}.publish-live-stats{display:flex;flex-wrap:wrap;gap:24px;padding-top:16px;border-top:1px solid var(--divider);font-size:14px;color:var(--text)}.publish-live-stats span{display:inline-flex;align-items:center;gap:8px}.publish-live-stats .icon{color:var(--muted)}.publish-doxbrix .publish-attention{display:flex;align-items:center;gap:16px;padding:20px 22px;border:1px solid #f3d9a4;border-radius:var(--radius-xl);background:#fff8ec}.publish-attention-icon{width:36px;height:36px;flex:0 0 auto;display:grid;place-items:center;border-radius:10px;background:var(--warn-soft);color:var(--warn)}.publish-attention>div{flex:1 1 auto;display:grid;gap:4px}.publish-attention h2{margin:0;font-size:16px;font-weight:600;color:var(--ink)}.publish-attention p{margin:0;font-size:14.5px;line-height:1.5;color:var(--text)}.publish-checklist{list-style:none;margin:0;padding:0 20px 6px}.publish-checklist li{display:flex;align-items:center;gap:14px;padding:14px 0;border-top:1px solid var(--divider)}.publish-checklist li:first-child{border-top:0}.publish-check-mark{width:26px;height:26px;flex:0 0 auto;display:grid;place-items:center;border-radius:50%;background:var(--good-soft);color:var(--good)}.publish-checklist li.warn .publish-check-mark{background:var(--warn-soft);color:var(--warn)}.publish-checklist li.bad .publish-check-mark{background:var(--bad-soft);color:var(--bad)}.publish-check-copy{display:grid;gap:2px;flex:1 1 auto;min-width:0}.publish-check-copy strong{font-size:15px;font-weight:500;color:var(--ink)}.publish-check-copy small{font-size:13.5px;line-height:1.45;color:var(--muted)}.shell:has(.reference-sidebar-nav) .publish-visibility.radio-rows>button{gap:14px}.shell:has(.reference-sidebar-nav) .publish-visibility.radio-rows>button>.icon{flex:0 0 auto;color:var(--muted)}.shell:has(.reference-sidebar-nav) .publish-visibility.radio-rows>button.selected>.icon{color:var(--brand)}.publish-doxbrix .publish-bar{display:flex;align-items:center;gap:16px;padding:18px 20px;border-radius:var(--radius-xl);background:var(--brand-ink)}.publish-bar>span{display:grid;gap:2px;flex:1 1 auto;min-width:0}.publish-bar strong{font-size:15px;font-weight:600;color:#fff}.publish-bar small{font-size:13.5px;color:#a7d9d5}.shell:has(.reference-sidebar-nav) .publish-bar .btn.primary{background:#5eead4;border-color:#5eead4;color:var(--brand-ink)}.shell:has(.reference-sidebar-nav) .publish-bar .btn.primary:disabled{background:#ffffff24;border-color:transparent;color:#a7d9d5}.publish-change-list{list-style:none;margin:0;padding:0 20px 6px}.publish-change-list li{display:flex;align-items:center;gap:12px;min-height:48px;border-top:1px solid var(--divider)}.publish-change-list li:first-child{border-top:0}.publish-change-list code{width:18px;font-family:var(--font-mono);font-size:12px;font-weight:600;color:var(--good);background:none}.publish-change-list span{flex:1 1 auto;font-size:15px;color:var(--ink)}.publish-change-list small{font-family:var(--font-mono);font-size:12.5px;color:var(--muted)}.publish-doxbrix .publish-settings{border:1px solid var(--border);border-radius:var(--radius-xl);background:#fff}.publish-settings>summary{display:flex;align-items:center;gap:10px;min-height:52px;padding:0 20px;cursor:pointer;list-style:none;font-size:15px;font-weight:600;color:var(--ink)}.publish-settings>summary::-webkit-details-marker{display:none}.publish-settings>summary small{margin-left:auto;font-family:var(--font-mono);font-size:12.5px;font-weight:400;color:var(--muted)}.publish-settings-body{display:grid;gap:16px;padding:0 20px 20px}.publish-doxbrix .vrow-value.mono{font-family:var(--font-mono);font-size:13.5px}.docs-site-sample-pages li{min-width:0}.docs-site-sample-pages li>span{flex:1 1 auto;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.docs-site-sample-pages li>small{flex:0 1 auto;min-width:0;max-width:62%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
|