agnes-the-ai-analyst/app/web/static/style-custom.css
Vojtech 2e2e1a1eca
feat(home): state-aware /home + /setup-advanced + schema v26 (#228)
* feat(home+news): state-aware /home + /news + admin-edited news section

Squash of the vr/home-page feature work for clean rebase onto main.
Original 18-commit history preserved in branch backup/vr-home-page-pre-rebase.

What's in this PR:

**State-aware /home page**
- New `/home` route with hero + auto-mode + connectors (Asana / GWS /
  Atlassian) + lookarounds. Onboarded vs not-onboarded state-machine
  branches a single template (`home_not_onboarded.html`); the install
  steps, "Setup a new Claude Code" CTA (90-day PAT mint), and per-
  connector setup prompts hide once `users.onboarded=TRUE`. A
  completion badge replaces them.
- "Mark me as offboarded" button reverses the flag without an SQL UPDATE.
- `users.onboarded BOOLEAN` column added; default FALSE; flipped by the
  CLI's `agnes init` post-success POST and the `/admin/users` API.
- Connector setup prompts pre-check whether the tool is already
  installed/connected before re-running setup.
- GWS scope set widened to include Google Chat (`chat.spaces`,
  `chat.messages`).

**Single template + design tokens**
- `dashboard.html` now extends `base.html` via the new
  `{% block layout %}` opt-out (full-width pages skip the 800px
  `.container`). Net: every page shares one shell.
- `style-custom.css` `:root` extended with `--space-{7,9,10,12}`,
  `--radius-2xl`, `--shadow-{card,elevated}`, `--text-{muted,disabled}`,
  `--focus-ring`, `--transition-*`, `--width-{narrow,app,wide}` so
  inline page styles can migrate incrementally.

**Auth redirects honor AGNES_HOME_ROUTE**
- `safe_next_path` resolves the configured home route when no `default=`
  is passed; OAuth callbacks, magic-link clicks, password form, and
  LOCAL_DEV_MODE shortcuts now land on `/home` (or whatever the operator
  picked) instead of always /dashboard.

**News section + /news permalink + /admin/news editor**
- Schema-bumped `news_template` table (single versioned entity, draft +
  publish gate). `published BOOLEAN` distinguishes draft from public;
  monotonically-increasing `version` per save; rows >30d pruned on
  save except the currently-displayed published version.
- `/home` bottom-of-page renders the latest published intro with a
  "Read more →" link to `/news` (which renders the full body).
- `/admin/news` editor with sandboxed live preview, versions table,
  per-row Unpublish, Format-help cheatsheet.
- `agnes admin news show / draft / edit / publish / unpublish /
  versions / export` (CLI). Talks to the live server via the
  `/api/admin/news/*` endpoints (PAT-authed) — no direct DB access
  so it coexists with a running uvicorn.
- **Optimistic-lock guard**: `agnes admin news publish --version N` and
  PUT/PATCH endpoints accept `expected_version` and 409 with structured
  `{error: "version_conflict", expected, actual, actual_by}` when a
  concurrent admin replaced the draft. Edit refuses to overwrite a
  draft authored by someone else without `--force` or
  `--expect-version`.
- nh3 (Rust-backed ammonia) HTML sanitizer; iframe pre-pass strips
  any iframe whose src is not on the YouTube/Vimeo/Loom allowlist;
  javascript:/data: schemes blocked everywhere.
- Author CSS vocabulary: `.news-hero` (blue gradient hero block),
  `.callout`/`.callout-{info,warn,success,danger}`,
  `.video-embed`, `.news-section`, `.news-grid-{2,3}`, `.news-cta` —
  all consolidated in `style-custom.css` under "News content
  vocabulary (shared)" so /home perex, /news body, and /admin/news
  preview share one source of styling.
- Code-inside-`<pre>` contrast fix (was unreadable amber-on-silver).
- `.news-content` table styling (border, header band, row-hover).

**`scripts/dev/run-local.sh`** — local uvicorn launcher. Pulls Google
OAuth client id/secret from GCP Secret Manager
(`AGNES_OAUTH_GCP_PROJECT`-driven, no vendor defaults), points
`AGNES_CLI_DIST_DIR` at `./dist` so the wheel endpoint resolves, and
`--dev` flips `LOCAL_DEV_MODE=1` + `AGNES_HOME_ROUTE=/home` for one-
command iteration. `LOCAL_DEV_MODE=1` also enables the FastAPI debug
toolbar.

**CLAUDE.md "Run tests before every push" section** codifies
`pytest tests/ -n auto -q` as non-negotiable before each push.

**Tests**: 51 + 14 + 8 = 73 new tests across news-template repo,
sanitizer, API, web, CLI; plus updated home/auth/template tests for
the new shared-shell architecture.

Origin docs (gitignored, customer-fork content):
docs/brainstorms/home-page-requirements.md,
docs/plans/2026-05-07-001-feat-home-page-plan.md.

* feat(cli): agnes onboarded {on,off,status} — self-scoped flag toggle

User-facing equivalent of the in-page "Mark me as (off)boarded" button
on /home. POSTs /api/me/onboarded with {onboarded, source}; --source
overrides the audit-log marker so flips made from the CLI vs the web
button vs agnes init automation stay distinguishable.

`status` reads via /api/me/profile (when present); falls back to a
quick body-marker scan of /home so the read path doesn't write an
audit_log row. PAT-authed via cli.client.api_post — same convention
as agnes admin news / agnes admin add-user etc.

Tests: 5 covering on/off/status round-trip, idempotency, and
audit-log source recording. Full suite holds at 12 pre-existing
failures (same set as before).

* ui(nav+home): primary nav reorg + green What's new band + /marketplace link fix

Primary nav (post-rebase audit + per-user feedback):

- Items: Home → Marketplace → Data Packages → Memory. Admin dropdown
  for admins only. The "Dashboard" label was renamed Home — point still
  resolves through `home_route` so customer instances on /dashboard
  still land there.
- Activity Center moved into the Admin dropdown. Per-team adoption
  analytics is admin-consumed in practice; the route still allows
  any authed user for direct deep-links so existing /home tile +
  bookmarks keep working.
- Memory link added (→ /corporate-memory) — was previously buried in
  the /home "Look around" tiles.
- Setup local agent + My Stack dropped from main nav. Setup is the
  /home install flow's home now; My Stack lives as a tab inside
  /marketplace.

/home tweaks:

- Plugin marketplace tile now points at /marketplace (was /store —
  legacy from before the marketplace rebrand landed in #230).
- "What's new" section header gets a green band (success-flavored
  D1FAE5 background, A7F3D0 border, darker green title) so the
  bottom-of-page news block visibly distinguishes from the blue
  install-hero at the top. Header strip only — body stays white.

Test fix: test_home_route_resolution renamed `dashboard_link_uses_home_route`
→ `home_link_uses_home_route` and asserts `href="/home">Home` instead
of `href="/home">Dashboard` after the label change.

* fix(home): decouple Step 3 + Connect-tools collapse from server onboarded flag

The server-side `users.onboarded` flip happens through two paths:

1. Explicit user click on "Mark me as onboarded" or `agnes onboarded on`.
2. Implicit `agnes init` POST → /api/me/onboarded on success.

Path 2 produced a UX surprise: an analyst running `agnes init` mid-flow
reloaded /home and saw Step 3 (auto-mode) + Connect-your-tools auto-
collapse to summary bars. They were actively working through those
sections — the install POST never signalled "I'm done with the rest
of setup", just "Agnes itself is installed".

Decouple the section-collapse decision from the server flag:

- Step 1 + Step 2 install blocks: still hidden on `onboarded=TRUE`
  (their completion is a hard server signal — Agnes IS installed).
- Step 3 + Connect-your-tools: render flat by default in BOTH states.
  Wrapped in `<details class="setup-collapsible" open>` so the
  browser's native disclosure handles per-section toggle without JS,
  but the `<summary>` is CSS-hidden until the page-level
  `data-setup-minimized="1"` attribute is set on `.home-mock`.
- New "Minimize setup view" toggle inside the blue install-hero,
  rendered only when onboarded. Click flips the data-attr on
  `.home-mock` AND removes the `open` attribute from each
  `<details>`. State persists in `localStorage["agnes_home_setup_minimized"]`
  so the choice survives reloads but is per-device.
- "Show full setup view" (the same button when minimized) re-opens
  both `<details>` and clears localStorage.

When minimized, each `<details>` still has its own native expand/
collapse — click the gray summary bar to peek at one section without
toggling the page-level minimize off.

Tests:
- test_step3_and_connectors_render_flat_when_onboarded_by_default —
  asserts `<details class="setup-collapsible" ... open>` for both
  sections post-onboarding and the absence of any server-rendered
  `data-setup-minimized` attribute on the `.home-mock` root.
- test_minimize_toggle_visible_only_when_onboarded — toggle button
  rendered only when onboarded.

Full pytest holds at 12 pre-existing failures (same set).
2026-05-08 18:28:47 +02:00

2526 lines
56 KiB
CSS

/* Design System - Data Analyst Portal v2 */
:root {
/* Colors */
--primary: #0073D1;
--primary-light: rgba(0, 115, 209, 0.1);
--primary-dark: #005BA3;
--text-primary: #1A253C;
--text-secondary: #6B7280;
--background: #F5F7FA;
--surface: #FFFFFF;
--border: #E5E7EB;
--border-light: #F3F4F6;
--success: #10B77F;
--warning: #F59F0A;
--error: #EA580C;
/* Typography */
--font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
/* Font sizes */
--text-xs: 10px;
--text-sm: 12px;
--text-base: 14px;
--text-md: 16px;
--text-lg: 18px;
--text-xl: 24px;
--text-2xl: 30px;
/* Font weights */
--font-normal: 400;
--font-medium: 500;
--font-semibold: 600;
--font-bold: 700;
--font-extrabold: 800;
/* Extra text colors — referenced by inline page styles that should
eventually migrate (home hero used --hp-text-muted, etc.) */
--text-muted: #9CA3AF;
--text-disabled: #D1D5DB;
/* Spacing — 4-multiple scale. Gaps filled to cover dashboard /home
inline-style values (28px / 40px / 48px / 64px). */
--space-1: 4px;
--space-2: 8px;
--space-3: 12px;
--space-4: 16px;
--space-5: 20px;
--space-6: 24px;
--space-7: 28px;
--space-8: 32px;
--space-9: 40px;
--space-10: 48px;
--space-12: 64px;
/* Border radius */
--radius-sm: 4px;
--radius-md: 6px;
--radius-lg: 8px;
--radius-xl: 12px;
--radius-2xl: 16px;
--radius-full: 9999px;
/* Shadows. --shadow-card is the canonical card elevation;
--shadow-elevated lifts hero blocks (home install-hero used a
custom blue-tinted shadow before this token landed). */
--shadow-sm: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
--shadow-md: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;
--shadow-card: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
--shadow-elevated: 0 8px 24px rgba(0, 86, 163, 0.18);
/* Focus + interaction */
--focus-ring: 0 0 0 3px rgba(0, 115, 209, 0.25);
--transition-fast: 120ms ease;
--transition-base: 200ms ease;
--transition-slow: 320ms ease;
/* Layout — outer chrome widths. Pages should reference these instead
of hardcoding 1280 / 1200 / 800 to keep /home and /dashboard in
step. */
--width-narrow: 800px;
--width-app: 1280px;
--width-wide: 1400px;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: var(--font-primary);
background-color: var(--background);
color: var(--text-primary);
font-size: var(--text-base);
line-height: 1.5;
min-height: 100vh;
}
/* Container */
.container-v2 {
max-width: 1400px;
margin: 0 auto;
padding: var(--space-6) var(--space-5);
}
/* Header */
.header-v2 {
display: flex;
justify-content: space-between;
align-items: center;
padding: var(--space-4) 0;
margin-bottom: var(--space-6);
border-bottom: 1px solid var(--border);
}
.logo-v2 h1 {
font-size: var(--text-lg);
font-weight: var(--font-semibold);
color: var(--text-primary);
margin: 0;
}
.logo-v2 .subtitle {
font-size: var(--text-sm);
color: var(--text-secondary);
margin-top: 2px;
}
.nav-v2 {
display: flex;
align-items: center;
gap: var(--space-3);
}
.user-info-v2 {
display: flex;
align-items: center;
gap: var(--space-2);
font-size: var(--text-sm);
color: var(--text-secondary);
}
.avatar-v2 {
width: 32px;
height: 32px;
border-radius: var(--radius-full);
}
/* Buttons */
.btn-v2 {
display: inline-flex;
align-items: center;
justify-content: center;
gap: var(--space-2);
padding: 0 var(--space-3);
height: 36px;
font-size: var(--text-base);
font-weight: var(--font-medium);
text-decoration: none;
border-radius: var(--radius-md);
border: none;
cursor: pointer;
transition: all 0.15s ease;
}
.btn-primary-v2 {
background-color: var(--primary);
color: white;
}
.btn-primary-v2:hover {
background-color: var(--primary-dark);
}
.btn-secondary-v2 {
background-color: var(--background);
color: var(--text-primary);
border: 1px solid var(--border);
}
.btn-secondary-v2:hover {
background-color: var(--border);
}
.btn-ghost-v2 {
background-color: transparent;
color: var(--text-secondary);
}
.btn-ghost-v2:hover {
background-color: rgba(243, 244, 246, 0.5);
}
/* Cards */
.card-v2 {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: var(--space-5);
margin-bottom: var(--space-5);
box-shadow: var(--shadow-sm);
}
.card-v2 h3 {
font-size: var(--text-md);
font-weight: var(--font-semibold);
color: var(--text-primary);
margin-bottom: var(--space-4);
}
.card-v2 p {
color: var(--text-secondary);
margin-bottom: var(--space-3);
}
/* Welcome section */
.welcome-v2 {
margin-bottom: var(--space-6);
}
.welcome-v2 h2 {
font-size: var(--text-xl);
font-weight: var(--font-extrabold);
color: var(--text-primary);
margin-bottom: var(--space-2);
}
/* AI Setup Card - Primary CTA */
.ai-setup-card {
background: linear-gradient(135deg, var(--primary) 0%, #0056A3 100%);
border: none;
color: white;
padding: var(--space-6);
margin-bottom: var(--space-5);
}
.ai-setup-card h3 {
color: white;
font-size: var(--text-lg);
margin-bottom: var(--space-3);
}
.ai-setup-card .setup-description {
color: rgba(255, 255, 255, 0.9);
font-size: var(--text-base);
line-height: 1.6;
margin-bottom: var(--space-4);
}
.ai-setup-card .btn-copy-v2 {
background: white;
color: var(--primary);
font-weight: var(--font-semibold);
padding: var(--space-3) var(--space-6);
height: 44px;
width: 100%;
border-radius: var(--radius-md);
border: none;
cursor: pointer;
font-size: var(--text-base);
text-transform: uppercase;
letter-spacing: 0.5px;
transition: all 0.2s ease;
}
.ai-setup-card .btn-copy-v2:hover {
background: var(--border-light);
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ai-setup-card .btn-copy-v2.copied {
background: var(--success);
color: white;
}
.ai-setup-card .helper-text {
color: rgba(255, 255, 255, 0.9);
font-size: var(--text-sm);
margin-top: var(--space-3);
margin-bottom: 0;
line-height: 1.5;
}
/* CLI Hint */
.cli-hint-v2 {
margin-top: var(--space-4);
padding-top: var(--space-3);
border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.cli-hint-v2 summary {
cursor: pointer;
color: rgba(255, 255, 255, 0.8);
font-size: var(--text-sm);
font-weight: var(--font-medium);
padding: var(--space-1) 0;
list-style: none;
}
.cli-hint-v2 summary::-webkit-details-marker {
display: none;
}
.cli-hint-v2 summary::before {
content: '+ ';
}
.cli-hint-v2[open] summary::before {
content: '- ';
}
.cli-hint-v2 summary:hover {
color: white;
}
.cli-hint-v2 .cli-content {
margin-top: var(--space-3);
background: rgba(0, 0, 0, 0.15);
padding: var(--space-3);
border-radius: var(--radius-md);
}
.cli-hint-v2 code {
display: block;
background: rgba(0, 0, 0, 0.2);
color: white;
padding: var(--space-2) var(--space-3);
border-radius: var(--radius-sm);
font-family: var(--font-mono);
font-size: var(--text-sm);
margin-bottom: var(--space-2);
}
.cli-hint-v2 .cli-desc {
color: rgba(255, 255, 255, 0.7);
font-size: var(--text-xs);
}
/* Support banner */
.support-banner {
display: flex;
align-items: center;
justify-content: center;
gap: var(--space-2);
padding: var(--space-3) var(--space-4);
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
margin-bottom: var(--space-5);
font-size: var(--text-sm);
color: var(--text-secondary);
}
.support-banner strong {
color: var(--text-primary);
}
.support-banner .slack-badge {
display: inline-flex;
align-items: center;
gap: var(--space-1);
background: var(--primary-light);
color: var(--primary);
padding: 2px var(--space-2);
border-radius: var(--radius-full);
font-weight: var(--font-medium);
}
/* Status cards */
.status-card {
border-left: 3px solid var(--success);
}
.status-card.error {
border-left-color: var(--error);
}
.status-card.warning {
border-left-color: var(--warning);
}
/* Username box */
.username-box-v2 {
background: var(--primary-light);
border: 1px solid var(--primary);
border-radius: var(--radius-lg);
padding: var(--space-4);
margin: var(--space-4) 0;
}
.username-box-v2 label {
font-size: var(--text-sm);
font-weight: var(--font-medium);
color: var(--text-secondary);
display: block;
margin-bottom: var(--space-2);
}
.username-display-v2 {
display: flex;
align-items: center;
gap: var(--space-3);
}
.username-display-v2 code {
font-family: var(--font-mono);
font-size: var(--text-xl);
font-weight: var(--font-bold);
color: var(--primary);
background: white;
padding: var(--space-2) var(--space-4);
border-radius: var(--radius-md);
flex-grow: 1;
}
.username-display-v2 .btn-copy-sm {
background: var(--primary);
color: white;
border: none;
padding: var(--space-2) var(--space-4);
border-radius: var(--radius-md);
cursor: pointer;
font-size: var(--text-sm);
font-weight: var(--font-semibold);
text-transform: uppercase;
letter-spacing: 0.5px;
transition: all 0.15s ease;
}
.username-display-v2 .btn-copy-sm:hover {
background: var(--primary-dark);
}
.username-display-v2 .btn-copy-sm.copied {
background: var(--success);
}
/* Info grid */
.info-grid-v2 {
display: grid;
gap: var(--space-3);
}
.info-item-v2 {
display: flex;
align-items: center;
gap: var(--space-3);
}
.info-item-v2 .label {
font-weight: var(--font-medium);
color: var(--text-secondary);
min-width: 120px;
font-size: var(--text-sm);
}
.info-item-v2 .value {
color: var(--text-primary);
}
.info-item-v2 code {
font-family: var(--font-mono);
font-size: var(--text-sm);
background: var(--background);
padding: 2px var(--space-2);
border-radius: var(--radius-sm);
}
/* Badges */
.badge-v2 {
display: inline-flex;
align-items: center;
padding: 2px var(--space-2);
font-size: var(--text-xs);
font-weight: var(--font-medium);
border-radius: var(--radius-full);
background: var(--background);
color: var(--text-secondary);
margin-right: var(--space-1);
}
.badge-analyst-v2 {
background: rgba(16, 183, 127, 0.1);
color: var(--success);
}
.badge-privileged-v2 {
background: rgba(245, 159, 10, 0.1);
color: var(--warning);
}
.badge-admin-v2 {
background: rgba(0, 115, 209, 0.1);
color: var(--primary);
}
/* Form */
.form-v2 {
margin-top: var(--space-4);
}
.form-group-v2 {
margin-bottom: var(--space-4);
}
.form-group-v2 label {
display: block;
font-weight: var(--font-medium);
color: var(--text-primary);
margin-bottom: var(--space-2);
font-size: var(--text-sm);
}
.form-group-v2 textarea {
width: 100%;
padding: var(--space-3);
font-family: var(--font-mono);
font-size: var(--text-sm);
line-height: 1.5;
border: 1px solid var(--border);
border-radius: var(--radius-md);
resize: vertical;
min-height: 80px;
background: var(--surface);
transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-group-v2 textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 2px var(--primary-light);
}
.form-group-v2 textarea::placeholder {
color: var(--text-secondary);
}
.form-row-v2 {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--space-4);
}
.form-info-v2 {
display: flex;
align-items: center;
gap: var(--space-2);
font-size: var(--text-sm);
color: var(--text-secondary);
}
.form-info-v2 code {
font-family: var(--font-mono);
font-weight: var(--font-semibold);
color: var(--text-primary);
}
/* Help text */
.help-text-v2 {
font-size: var(--text-sm);
color: var(--text-secondary);
margin-top: var(--space-2);
}
.help-text-v2 strong {
color: var(--text-primary);
}
/* Info box */
.info-box-v2 {
background: var(--background);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: var(--space-3);
margin-bottom: var(--space-4);
display: flex;
align-items: center;
gap: var(--space-2);
}
.info-box-v2 .username-preview {
font-family: var(--font-mono);
font-size: var(--text-lg);
font-weight: var(--font-semibold);
color: var(--primary);
}
/* Alert */
.alert-v2 {
display: flex;
align-items: flex-start;
gap: var(--space-3);
padding: var(--space-4);
border-radius: var(--radius-lg);
margin-bottom: var(--space-4);
}
.alert-success-v2 {
background: rgba(16, 183, 127, 0.1);
border-left: 3px solid var(--success);
}
.alert-error-v2 {
background: rgba(234, 88, 12, 0.1);
border-left: 3px solid var(--error);
}
.alert-v2 .alert-icon {
font-size: var(--text-lg);
}
.alert-v2 h4 {
font-size: var(--text-base);
font-weight: var(--font-semibold);
color: var(--text-primary);
margin-bottom: var(--space-1);
}
.alert-v2 p {
font-size: var(--text-sm);
color: var(--text-secondary);
margin: 0;
}
/* Flash messages */
.flash-messages-v2 {
margin-bottom: var(--space-5);
}
.flash-v2 {
padding: var(--space-3) var(--space-4);
border-radius: var(--radius-lg);
margin-bottom: var(--space-3);
font-size: var(--text-sm);
font-weight: var(--font-medium);
}
.flash-success-v2 {
background: rgba(16, 183, 127, 0.1);
color: #0d9668;
border: 1px solid rgba(16, 183, 127, 0.3);
}
.flash-error-v2 {
background: rgba(234, 88, 12, 0.1);
color: #c2410c;
border: 1px solid rgba(234, 88, 12, 0.3);
}
.flash-info-v2 {
background: var(--primary-light);
color: var(--primary);
border: 1px solid rgba(0, 115, 209, 0.3);
}
/* Footer */
.footer-v2 {
margin-top: var(--space-8);
padding-top: var(--space-5);
border-top: 1px solid var(--border);
text-align: center;
color: var(--text-secondary);
font-size: var(--text-sm);
}
/* Next step card */
.next-step-card {
background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
border: 1px solid var(--primary);
border-left: 3px solid var(--primary);
}
.next-step-card h3 {
color: var(--primary);
}
/* Data Link Card */
.data-link-card {
display: flex;
align-items: center;
justify-content: space-between;
padding: var(--space-4) var(--space-5);
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
text-decoration: none;
transition: all 0.15s ease;
margin-bottom: var(--space-5);
}
.data-link-card:hover {
border-color: var(--primary);
box-shadow: 0 0 0 1px var(--primary);
}
.data-link-content {
display: flex;
align-items: center;
gap: var(--space-4);
}
.data-link-icon {
width: 44px;
height: 44px;
background: var(--primary-light);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.data-link-text h3 {
font-size: var(--text-md);
font-weight: var(--font-semibold);
color: var(--text-primary);
margin-bottom: 2px;
}
.data-link-text p {
font-size: var(--text-sm);
color: var(--text-secondary);
margin: 0;
}
.data-link-stats {
display: flex;
gap: var(--space-4);
padding: var(--space-3) var(--space-4);
background: var(--background);
border-radius: var(--radius-md);
}
.data-stat {
text-align: center;
padding: 0 var(--space-2);
}
.data-stat .value {
font-size: var(--text-md);
font-weight: var(--font-semibold);
color: var(--text-primary);
}
.data-stat .label {
font-size: 10px;
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 0.3px;
}
.data-stat-divider {
width: 1px;
background: var(--border);
}
.data-link-arrow {
width: 32px;
height: 32px;
background: var(--primary-light);
border-radius: var(--radius-full);
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
transition: all 0.15s ease;
flex-shrink: 0;
}
.data-link-card:hover .data-link-arrow {
background: var(--primary);
color: white;
transform: translateX(2px);
}
.data-categories {
display: flex;
gap: var(--space-2);
margin-top: var(--space-2);
}
.category-tag {
font-size: var(--text-xs);
padding: 2px 8px;
border-radius: var(--radius-full);
font-weight: var(--font-medium);
}
.category-tag.finance { background: rgba(16, 183, 127, 0.1); color: #0d9668; }
.category-tag.hr { background: rgba(139, 92, 246, 0.1); color: #7c3aed; }
.category-tag.sales { background: rgba(0, 115, 209, 0.1); color: #0073D1; }
.category-tag.telemetry { background: rgba(245, 159, 10, 0.1); color: #b45309; }
.category-tag.support { background: rgba(234, 88, 12, 0.1); color: #EA580C; }
.category-tag.revenue { background: rgba(0, 115, 209, 0.1); color: #0073D1; }
.category-tag.customers { background: rgba(139, 92, 246, 0.1); color: #7c3aed; }
.category-tag.marketing { background: rgba(245, 159, 10, 0.1); color: #b45309; }
.data-highlights {
display: flex;
gap: var(--space-4);
margin-top: var(--space-3);
font-size: var(--text-sm);
color: var(--text-secondary);
}
.data-highlight {
display: flex;
align-items: center;
gap: 4px;
}
.data-highlight strong {
color: var(--text-primary);
font-weight: var(--font-semibold);
}
/* Slack badge as link */
a.slack-badge {
text-decoration: none;
transition: all 0.15s ease;
}
a.slack-badge:hover {
background: var(--primary);
color: white;
}
/* Dashboard 2-column grid */
.dashboard-grid {
display: grid;
grid-template-columns: 3fr 2fr;
gap: var(--space-5);
align-items: start;
}
.col-left {
display: flex;
flex-direction: column;
gap: var(--space-5);
}
.col-right {
display: flex;
flex-direction: column;
gap: var(--space-5);
}
.full-width {
grid-column: 1 / -1;
}
/* Remove bottom margin for cards inside grid (grid gap handles spacing) */
.dashboard-grid .card-v2 {
margin-bottom: 0;
}
.dashboard-grid .data-link-card {
margin-bottom: 0;
}
.dashboard-grid .support-banner {
margin-bottom: 0;
}
.support-banner .heart {
color: #e74c3c;
}
/* Responsive */
@media (max-width: 1024px) {
.dashboard-grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 640px) {
.container-v2 {
padding: var(--space-4);
}
.header-v2 {
flex-direction: column;
gap: var(--space-3);
text-align: center;
}
.username-display-v2 {
flex-direction: column;
}
.username-display-v2 code {
width: 100%;
text-align: center;
}
.form-row-v2 {
flex-direction: column;
align-items: stretch;
}
.info-item-v2 {
flex-direction: column;
align-items: flex-start;
gap: var(--space-1);
}
.info-item-v2 .label {
min-width: auto;
}
.dashboard-grid {
grid-template-columns: 1fr;
}
}
/* Setup steps styling */
.setup-steps {
margin: 24px 0;
display: flex;
flex-direction: column;
gap: 20px;
}
.step-item {
display: flex;
flex-direction: column;
gap: 8px;
}
.step-header {
display: flex;
align-items: center;
gap: 12px;
}
.step-number {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
background: white;
color: #0073D1;
border-radius: 50%;
font-weight: 700;
font-size: 16px;
flex-shrink: 0;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.step-header strong {
color: white;
font-size: 16px;
font-weight: 600;
}
.step-body {
margin-left: 44px;
}
.step-body p {
margin: 0 0 8px 0;
color: rgba(255, 255, 255, 0.9);
font-size: 14px;
line-height: 1.5;
}
/* Code block styling */
.code-block-wrapper {
position: relative;
display: flex;
align-items: center;
background: rgba(0, 0, 0, 0.2);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 6px;
padding: 12px 48px 12px 12px;
margin-top: 8px;
}
.code-block {
flex: 1;
font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
font-size: 13px;
color: #fff;
background: transparent;
border: none;
white-space: pre;
overflow-x: auto;
}
.btn-copy-code {
position: absolute;
right: 8px;
top: 50%;
transform: translateY(-50%);
background: rgba(255, 255, 255, 0.15);
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 4px;
padding: 6px 8px;
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
color: white;
}
.btn-copy-code:hover {
background: rgba(255, 255, 255, 0.25);
border-color: rgba(255, 255, 255, 0.4);
}
.btn-copy-code.copied {
background: rgba(76, 175, 80, 0.3);
border-color: rgba(76, 175, 80, 0.5);
}
.btn-copy-code svg {
width: 16px;
height: 16px;
}
/* Compact setup banner (existing users) */
.setup-compact {
background: linear-gradient(135deg, var(--primary) 0%, #0056A3 100%);
border: none;
color: white;
padding: var(--space-4) var(--space-5);
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--space-4);
}
.setup-compact h3 {
color: white;
margin-bottom: 0;
font-size: var(--text-base);
}
.setup-compact p {
color: rgba(255, 255, 255, 0.85);
margin: 4px 0 0 0;
font-size: var(--text-sm);
}
.setup-compact .btn-copy-v2 {
background: white;
color: var(--primary);
font-weight: var(--font-semibold);
padding: var(--space-2) var(--space-5);
height: 40px;
border-radius: var(--radius-md);
border: none;
cursor: pointer;
font-size: var(--text-sm);
white-space: nowrap;
transition: all 0.15s ease;
flex-shrink: 0;
}
.setup-compact .btn-copy-v2:hover {
background: var(--border-light);
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.setup-compact .btn-copy-v2.copied {
background: var(--success);
color: white;
}
/* Unified Notifications card */
.notifications-card {
padding: 0;
}
.notifications-card h3 {
padding: var(--space-5) var(--space-5) 0;
margin-bottom: var(--space-3);
}
.notif-channels {
display: flex;
flex-direction: column;
}
.notif-channel {
padding: var(--space-4) var(--space-5);
border-top: 1px solid var(--border);
display: flex;
align-items: flex-start;
gap: var(--space-3);
}
.notif-channel-icon {
width: 36px;
height: 36px;
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.notif-channel-icon.telegram {
background: #e3f2fd;
}
.notif-channel-icon.desktop {
background: #f3e8ff;
}
.notif-channel-body {
flex: 1;
min-width: 0;
}
.notif-channel-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--space-2);
margin-bottom: var(--space-1);
}
.notif-channel-name {
font-weight: var(--font-semibold);
font-size: var(--text-base);
color: var(--text-primary);
}
.notif-status-badge {
font-size: var(--text-xs);
font-weight: var(--font-medium);
padding: 2px 8px;
border-radius: var(--radius-full);
}
.notif-status-badge.linked {
background: rgba(16, 183, 127, 0.1);
color: var(--success);
}
.notif-status-badge.not-linked {
background: var(--background);
color: var(--text-secondary);
}
.notif-channel-desc {
font-size: var(--text-sm);
color: var(--text-secondary);
margin-bottom: var(--space-3);
}
.notif-channel-action {
display: flex;
align-items: center;
gap: var(--space-2);
}
.notif-channel-action input[type="text"] {
width: 120px;
padding: 6px 10px;
border: 1px solid var(--border);
border-radius: var(--radius-md);
font-family: var(--font-mono);
font-size: var(--text-sm);
text-align: center;
}
.btn-sm-v2 {
display: inline-flex;
align-items: center;
justify-content: center;
gap: var(--space-1);
padding: 0 var(--space-3);
height: 32px;
font-size: var(--text-sm);
font-weight: var(--font-medium);
text-decoration: none;
border-radius: var(--radius-md);
border: none;
cursor: pointer;
transition: all 0.15s ease;
}
.btn-sm-primary {
background-color: var(--primary);
color: white;
}
.btn-sm-primary:hover {
background-color: var(--primary-dark);
}
.btn-sm-secondary {
background-color: var(--background);
color: var(--text-primary);
border: 1px solid var(--border);
}
.btn-sm-secondary:hover {
background-color: var(--border);
}
.download-link {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: var(--text-sm);
font-weight: var(--font-medium);
color: var(--primary);
text-decoration: none;
}
.download-link:hover {
text-decoration: underline;
}
.notif-install-steps {
margin: 4px 0 0;
padding-left: 20px;
font-size: var(--text-sm);
color: var(--text-secondary);
line-height: 1.7;
}
.notif-install-steps li {
padding-left: 4px;
}
.notif-install-steps .download-link {
font-weight: var(--font-normal);
}
/* Beta warning styles */
.beta-warning {
background: rgba(245, 159, 10, 0.1);
border: 1px solid rgba(245, 159, 10, 0.3);
border-radius: var(--radius-md);
padding: var(--space-2) var(--space-3);
margin-bottom: var(--space-3);
font-size: var(--text-sm);
color: #b45309;
}
.beta-warning strong {
color: #92400e;
}
.beta-tag {
display: inline-flex;
align-items: center;
background: rgba(245, 159, 10, 0.15);
color: #b45309;
font-size: var(--text-xs);
font-weight: var(--font-medium);
padding: 1px 6px;
border-radius: var(--radius-full);
margin-left: var(--space-1);
}
@media (max-width: 640px) {
.setup-compact {
flex-direction: column;
align-items: stretch;
text-align: center;
}
.setup-compact .btn-copy-v2 {
width: 100%;
}
}
/* Data Settings Card */
.settings-card {
border-left: 3px solid var(--primary);
}
.settings-card h3 {
margin-bottom: var(--space-3);
}
.dataset-toggles {
display: flex;
flex-direction: column;
gap: var(--space-3);
}
.dataset-toggle {
display: flex;
align-items: flex-start;
justify-content: space-between;
padding: var(--space-3);
background: var(--background);
border-radius: var(--radius-md);
gap: var(--space-3);
}
.dataset-toggle.disabled {
opacity: 0.5;
pointer-events: none;
}
.dataset-info {
flex: 1;
min-width: 0;
}
.dataset-label {
font-weight: var(--font-medium);
font-size: var(--text-base);
color: var(--text-primary);
display: flex;
align-items: center;
gap: var(--space-2);
}
.dataset-size {
font-size: var(--text-xs);
color: var(--text-secondary);
font-weight: var(--font-normal);
}
.dataset-desc {
font-size: var(--text-sm);
color: var(--text-secondary);
margin-top: 2px;
}
/* Toggle Switch */
.toggle-switch {
position: relative;
width: 44px;
height: 24px;
flex-shrink: 0;
}
.toggle-switch input {
opacity: 0;
width: 0;
height: 0;
}
.toggle-slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--border);
transition: 0.2s ease;
border-radius: 24px;
}
.toggle-slider:before {
position: absolute;
content: "";
height: 18px;
width: 18px;
left: 3px;
bottom: 3px;
background-color: white;
transition: 0.2s ease;
border-radius: 50%;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.toggle-switch input:checked + .toggle-slider {
background-color: var(--primary);
}
.toggle-switch input:checked + .toggle-slider:before {
transform: translateX(20px);
}
.toggle-switch input:disabled + .toggle-slider {
cursor: not-allowed;
opacity: 0.6;
}
.settings-hint {
font-size: var(--text-sm);
color: var(--text-secondary);
margin-top: var(--space-3);
margin-bottom: 0;
padding-top: var(--space-3);
border-top: 1px solid var(--border);
}
.settings-saving {
display: flex;
align-items: center;
gap: var(--space-2);
font-size: var(--text-sm);
color: var(--text-secondary);
}
.settings-error {
font-size: var(--text-sm);
color: var(--error);
margin-top: var(--space-2);
}
/* ========== KPI Card (Your Data Widget) ========== */
.kpi-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
overflow: hidden;
}
.kpi-header {
background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
color: white;
padding: var(--space-5);
display: flex;
justify-content: space-between;
align-items: center;
}
.kpi-header h3 {
font-size: var(--text-md);
font-weight: var(--font-semibold);
color: white;
margin: 0;
}
.kpi-header-stats {
display: flex;
gap: var(--space-5);
}
.kpi-header-stat {
text-align: center;
}
.kpi-header-stat .value {
font-size: var(--text-xl);
font-weight: var(--font-semibold);
}
.kpi-header-stat .label {
font-size: var(--text-xs);
opacity: 0.7;
text-transform: uppercase;
}
.kpi-header-stat-secondary {
opacity: 0.7;
}
.kpi-body {
padding: var(--space-5);
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-4);
}
.kpi-section {
padding: var(--space-4);
border-radius: var(--radius-md);
border: 1px solid var(--border);
}
.kpi-section-disabled {
opacity: 0.5;
}
.kpi-section-header {
display: flex;
align-items: center;
gap: var(--space-2);
margin-bottom: var(--space-3);
}
.kpi-icon {
width: 24px;
height: 24px;
border-radius: var(--radius-sm);
display: flex;
align-items: center;
justify-content: center;
}
.kpi-icon.batch {
background: var(--primary-light);
}
.kpi-icon.live {
background: rgba(16, 183, 127, 0.1);
}
.kpi-icon.disabled {
background: var(--background);
}
.kpi-section-title {
font-size: var(--text-sm);
font-weight: var(--font-medium);
}
.kpi-badge {
margin-left: auto;
font-size: 9px;
font-weight: var(--font-semibold);
padding: 2px 6px;
border-radius: var(--radius-full);
text-transform: uppercase;
display: flex;
align-items: center;
gap: 4px;
}
.kpi-badge.live {
background: rgba(16, 183, 127, 0.1);
color: var(--success);
}
.kpi-section-time {
font-size: var(--text-xs);
color: var(--text-secondary);
margin-bottom: var(--space-2);
}
.kpi-section-time.live {
color: var(--success);
}
.kpi-section-datasets {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.kpi-footer {
padding: var(--space-3) var(--space-5);
background: var(--background);
display: flex;
justify-content: space-between;
align-items: center;
}
.kpi-highlights {
display: flex;
gap: var(--space-4);
font-size: var(--text-sm);
color: var(--text-secondary);
}
.kpi-highlights strong {
color: var(--text-primary);
}
.kpi-link {
font-size: var(--text-sm);
font-weight: var(--font-medium);
color: var(--primary);
text-decoration: none;
display: flex;
align-items: center;
gap: 4px;
transition: all 0.15s ease;
}
.kpi-link:hover {
text-decoration: underline;
}
/* Live dot animation */
.live-dot {
width: 6px;
height: 6px;
background: var(--success);
border-radius: 50%;
animation: pulse 2s infinite;
display: inline-block;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}
/* Disabled category tag */
.category-tag.disabled {
background: var(--background);
color: var(--text-secondary);
}
/* Responsive KPI card */
@media (max-width: 640px) {
.kpi-header {
flex-direction: column;
gap: var(--space-3);
text-align: center;
}
.kpi-body {
grid-template-columns: 1fr;
}
.kpi-footer {
flex-direction: column;
gap: var(--space-3);
text-align: center;
}
.kpi-highlights {
flex-wrap: wrap;
justify-content: center;
}
}
/* ========== Login Page Split Layout ========== */
.login-page {
min-height: 100vh;
background: var(--background);
}
.login-split {
display: grid;
grid-template-columns: 1fr 1fr;
min-height: 100vh;
}
/* Left side: Features */
.login-features {
background: var(--primary);
color: white;
padding: var(--space-8);
display: flex;
align-items: center;
justify-content: center;
}
.features-content {
max-width: 480px;
}
.features-title {
font-size: 28px;
font-weight: var(--font-semibold);
line-height: 1.3;
margin-bottom: var(--space-3);
}
.features-subtitle {
font-size: var(--text-md);
line-height: 1.6;
opacity: 0.9;
margin-bottom: var(--space-6);
}
/* Feature cards */
.feature-cards {
display: flex;
flex-direction: column;
gap: var(--space-3);
}
.feature-card {
display: flex;
gap: var(--space-3);
padding: var(--space-4);
background: rgba(255, 255, 255, 0.1);
border-radius: var(--radius-lg);
border: 1px solid rgba(255, 255, 255, 0.15);
}
.feature-icon {
width: 40px;
height: 40px;
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
background: rgba(255, 255, 255, 0.15);
color: white;
}
.feature-icon-data,
.feature-icon-memory,
.feature-icon-auto,
.feature-icon-notif {
background: rgba(255, 255, 255, 0.15);
color: white;
}
.feature-text h3 {
font-size: var(--text-base);
font-weight: var(--font-semibold);
margin-bottom: 2px;
color: white;
}
.feature-text p {
font-size: var(--text-sm);
line-height: 1.5;
color: rgba(255, 255, 255, 0.8);
margin: 0;
}
/* Right side: Login card */
.login-card-wrapper {
display: flex;
align-items: center;
justify-content: center;
padding: var(--space-6);
background: var(--background);
}
.login-page .login-card {
background: var(--surface);
border-radius: var(--radius-xl);
padding: 48px 40px;
text-align: center;
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
max-width: 420px;
width: 100%;
border: 1px solid var(--border);
}
.login-page .login-card h2 {
margin-bottom: var(--space-2);
font-size: var(--text-xl);
font-weight: var(--font-semibold);
color: var(--text-primary);
}
.login-page .login-description {
color: var(--text-secondary);
margin-bottom: var(--space-6);
font-size: var(--text-base);
line-height: 1.5;
}
.login-page .login-note {
font-size: var(--text-sm);
color: var(--text-secondary);
margin-top: var(--space-3);
}
.login-page .login-note strong {
color: var(--text-primary);
}
.login-page .divider {
display: flex;
align-items: center;
margin: var(--space-5) 0;
color: var(--text-secondary);
font-size: var(--text-sm);
}
.login-page .divider::before,
.login-page .divider::after {
content: "";
flex: 1;
height: 1px;
background-color: var(--border);
}
.login-page .divider span {
padding: 0 var(--space-4);
}
/* Google button styling */
.login-page .btn-google {
background-color: white;
color: var(--text-primary);
border: 1px solid var(--border);
padding: 14px 28px;
font-size: var(--text-base);
font-weight: var(--font-medium);
width: 100%;
max-width: 280px;
transition: all 0.2s ease;
display: inline-flex;
align-items: center;
justify-content: center;
gap: var(--space-2);
border-radius: var(--radius-md);
text-decoration: none;
cursor: pointer;
}
.login-page .btn-google:hover {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
border-color: #c4c4c4;
background-color: #fafafa;
}
.login-page .btn-google:active {
transform: scale(0.98);
}
/* Email magic link button styling */
.login-page .btn-email {
background-color: #4361ee;
color: white;
border: 1px solid #3a56d4;
padding: 14px 28px;
font-size: var(--text-base);
font-weight: var(--font-medium);
border-radius: var(--radius-md);
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
transition: all 0.2s ease;
cursor: pointer;
}
.login-page .btn-email:hover {
background-color: #3a56d4;
box-shadow: 0 2px 8px rgba(67, 97, 238, 0.3);
}
.login-page .btn-email:active {
transform: scale(0.98);
}
.login-page .btn-secondary {
background-color: transparent;
color: var(--text-secondary);
border: 1px solid var(--border);
padding: 14px 28px;
font-size: var(--text-base);
font-weight: var(--font-medium);
border-radius: var(--radius-md);
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
cursor: pointer;
}
.login-page .btn-secondary:hover {
background-color: var(--background);
border-color: var(--text-secondary);
}
/* Responsive: Tablet */
@media (max-width: 1024px) {
.login-split {
grid-template-columns: 1fr;
}
.login-features {
padding: var(--space-6);
min-height: auto;
}
.features-content {
max-width: 600px;
}
.features-title {
font-size: 28px;
}
.features-subtitle {
margin-bottom: var(--space-6);
}
.feature-cards {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-3);
}
.feature-card {
padding: var(--space-3);
}
.feature-icon {
width: 36px;
height: 36px;
}
.login-card-wrapper {
padding: var(--space-6);
}
}
/* Responsive: Mobile */
@media (max-width: 640px) {
.login-features {
padding: var(--space-5);
}
.features-content {
max-width: 100%;
}
.features-title {
font-size: 24px;
}
.features-subtitle {
font-size: var(--text-base);
margin-bottom: var(--space-5);
}
.feature-cards {
grid-template-columns: 1fr;
gap: var(--space-3);
}
.feature-card {
padding: var(--space-3);
gap: var(--space-3);
}
.feature-text h3 {
font-size: var(--text-base);
}
.feature-text p {
font-size: var(--text-xs);
}
.login-card-wrapper {
padding: var(--space-4);
}
.login-page .login-card {
padding: var(--space-6);
}
}
/* ========== Corporate Memory Widget (Design System - Warning Color) ========== */
.memory-widget {
border-left: 3px solid var(--warning);
}
.memory-widget .card-header-custom {
background: rgba(245, 159, 10, 0.08);
padding: var(--space-4) var(--space-5);
margin: calc(-1 * var(--space-5));
margin-bottom: var(--space-4);
border-bottom: 1px solid var(--border);
display: flex;
align-items: center;
gap: var(--space-2);
}
.memory-icon {
width: 28px;
height: 28px;
background: var(--warning);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
color: white;
}
.memory-widget h3 {
margin-bottom: 0;
display: flex;
align-items: center;
gap: var(--space-2);
}
.memory-stats-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--space-4);
margin-bottom: var(--space-4);
}
.memory-stat {
text-align: center;
padding: var(--space-4);
background: var(--background);
border-radius: var(--radius-lg);
}
.memory-stat .value {
font-size: var(--text-2xl);
font-weight: var(--font-bold);
color: var(--text-primary);
line-height: 1;
}
.memory-stat .label {
font-size: var(--text-xs);
color: var(--text-secondary);
margin-top: var(--space-1);
}
.memory-stat.highlight {
background: var(--warning);
}
.memory-stat.highlight .value,
.memory-stat.highlight .label {
color: white;
}
.memory-description {
font-size: var(--text-sm);
color: var(--text-secondary);
line-height: 1.6;
padding: var(--space-3) var(--space-4);
background: var(--background);
border-radius: var(--radius-md);
border-left: 3px solid rgba(245, 159, 10, 0.3);
margin-bottom: var(--space-4);
}
.memory-description strong {
color: var(--text-primary);
}
.memory-description code {
font-family: var(--font-mono);
font-size: var(--text-xs);
background: rgba(0, 0, 0, 0.05);
padding: 1px 4px;
border-radius: var(--radius-sm);
}
.memory-footer {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: var(--space-3);
border-top: 1px solid var(--border);
margin-top: var(--space-4);
}
.sync-status {
display: flex;
align-items: center;
gap: 6px;
font-size: var(--text-sm);
color: var(--success);
}
.memory-link {
display: inline-flex;
align-items: center;
gap: 6px;
padding: var(--space-2) var(--space-4);
background: var(--warning);
color: white;
text-decoration: none;
font-size: var(--text-sm);
font-weight: var(--font-medium);
border-radius: var(--radius-md);
transition: all 0.15s ease;
}
.memory-link:hover {
background: #d97706;
transform: translateY(-1px);
}
/* ─── Shared modern header (used by base.html + future pages) ─── */
/* Mirrors the inline header styles in dashboard.html so all pages share chrome. */
.app-header {
background: var(--surface, #fff);
border-bottom: 1px solid var(--border, #e5e7eb);
padding: 0 32px;
/* Cancel the generic `header { margin-bottom: 24px }` from style.css,
which would otherwise leave a 24px stripe of pale grey under the
app-header. Invisible on white-on-white pages (dashboard) but very
visible on /home where the blue install-hero sits directly below. */
margin-bottom: 0;
height: 72px;
/* Override the legacy generic `header { margin-bottom: 24px }` rule from
style.css — the .app-header sits flush against the page container so
all base.html pages match the dashboard's header-to-content spacing. */
margin-bottom: 0;
display: flex;
align-items: center;
justify-content: space-between;
position: sticky;
top: 0;
z-index: 100;
}
.app-header-left {
display: flex;
flex-direction: column;
justify-content: center;
gap: 2px;
}
.app-header-logo {
display: inline-flex;
align-items: center;
text-decoration: none;
color: inherit;
font-weight: 600;
font-size: 16px;
}
.app-header-logo svg { display: block; }
a.app-header-logo:focus-visible {
outline: 2px solid var(--primary, #6366f1);
outline-offset: 2px;
border-radius: 4px;
}
.app-header-subtitle {
font-size: 11px;
font-weight: 500;
color: var(--text-secondary, #6b7280);
letter-spacing: 0.4px;
text-transform: uppercase;
margin-top: 2px;
}
.app-header-right {
display: flex;
align-items: center;
gap: 16px;
}
.app-header-email {
font-size: 13px;
color: var(--text-secondary, #6b7280);
font-weight: 500;
}
.app-avatar {
width: 36px;
height: 36px;
border-radius: 50%;
background: var(--primary-light, #eef2ff);
color: var(--primary, #6366f1);
font-size: 13px;
font-weight: 600;
display: flex;
align-items: center;
justify-content: center;
letter-spacing: 0.3px;
}
.app-avatar-img {
width: 36px;
height: 36px;
border-radius: 50%;
border: 2px solid var(--border, #e5e7eb);
}
.app-nav-link {
font-size: 13px;
font-weight: 500;
color: var(--text-secondary, #6b7280);
text-decoration: none;
padding: 6px 12px;
border-radius: 8px;
transition: all 0.15s ease;
}
.app-nav-link:hover {
color: var(--text-primary, #111827);
background: var(--border-light, #f3f4f6);
}
.app-nav-link.is-active {
color: var(--primary, #6366f1);
background: var(--primary-light, #eef2ff);
}
.app-btn-logout {
font-size: 13px;
font-weight: 500;
color: var(--text-secondary, #6b7280);
background: none;
border: 1px solid var(--border, #e5e7eb);
border-radius: 8px;
padding: 6px 14px;
cursor: pointer;
transition: all 0.15s ease;
text-decoration: none;
display: inline-block;
}
.app-btn-logout:hover {
color: var(--text-primary, #111827);
border-color: #d1d5db;
background: var(--border-light, #f3f4f6);
}
/* ── User menu (dropdown) ── */
.app-user-menu { position: relative; display: inline-flex; align-items: center; }
.app-user-menu-trigger {
display: inline-flex; align-items: center; gap: 6px;
background: none; border: 1px solid transparent;
border-radius: 999px; padding: 4px 10px 4px 4px;
cursor: pointer; transition: all 0.15s ease;
}
.app-user-menu-trigger:hover { background: var(--border-light, #f3f4f6); border-color: var(--border, #e5e7eb); }
.app-user-menu-trigger[aria-expanded="true"] { background: var(--border-light, #f3f4f6); border-color: var(--border, #e5e7eb); }
.app-user-menu-chevron { color: var(--text-secondary, #6b7280); transition: transform 0.15s ease; }
.app-user-menu-trigger[aria-expanded="true"] .app-user-menu-chevron { transform: rotate(180deg); }
.app-user-menu-panel {
position: absolute; top: calc(100% + 8px); right: 0;
min-width: 220px;
background: var(--surface, #fff);
border: 1px solid var(--border, #e5e7eb);
border-radius: 10px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
padding: 6px;
z-index: 50;
}
.app-user-menu-panel[hidden] { display: none; }
.app-user-menu-header {
padding: 10px 12px 8px;
border-bottom: 1px solid var(--border-light, #f3f4f6);
margin-bottom: 4px;
}
.app-user-menu-email { font-size: 13px; font-weight: 500; color: var(--text-primary, #111827); word-break: break-all; }
.app-user-menu-role { font-size: 11px; color: var(--text-secondary, #6b7280); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.3px; }
.app-user-menu-item {
display: block; padding: 8px 12px;
font-size: 13px; color: var(--text-primary, #111827);
text-decoration: none; border-radius: 6px;
}
.app-user-menu-item:hover { background: var(--border-light, #f3f4f6); }
.app-user-menu-item.is-active { background: rgba(0, 115, 209, 0.08); color: var(--primary, #0073D1); font-weight: 500; }
/* ── Admin nav dropdown — same vocabulary as user menu, scoped under nav links ── */
.app-nav-menu { position: relative; display: inline-flex; }
.app-nav-menu-trigger {
display: inline-flex; align-items: center; gap: 4px;
background: none;
/* Strip the default <button> chrome — the .app-nav-link class above
supplies the visual; the button element only carries semantics. */
border: 0;
color: inherit;
font: inherit;
cursor: pointer;
}
.app-nav-menu-trigger:focus { outline: none; }
.app-nav-menu-trigger:focus-visible {
outline: 2px solid var(--primary, #0073D1);
outline-offset: 2px;
}
.app-nav-menu-trigger[aria-expanded="true"] {
background: var(--border-light, #f3f4f6);
}
.app-nav-menu-chevron { color: currentColor; transition: transform 0.15s ease; }
.app-nav-menu-trigger[aria-expanded="true"] .app-nav-menu-chevron { transform: rotate(180deg); }
.app-nav-menu-panel {
position: absolute; top: calc(100% + 8px); right: 0;
min-width: 200px;
background: var(--surface, #fff);
border: 1px solid var(--border, #e5e7eb);
border-radius: 10px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
padding: 6px;
z-index: 50;
}
.app-nav-menu-panel[hidden] { display: none; }
.app-nav-menu-item {
display: block; padding: 8px 12px;
font-size: 13px; color: var(--text-primary, #111827);
text-decoration: none; border-radius: 6px;
}
.app-nav-menu-item:hover { background: var(--border-light, #f3f4f6); }
.app-nav-menu-item.is-active { background: rgba(0, 115, 209, 0.08); color: var(--primary, #0073D1); font-weight: 500; }
@media (max-width: 720px) {
.app-header { padding: 0 16px; gap: 8px; }
.app-header-email { display: none; }
.app-nav-link { padding: 6px 8px; }
}
/* ── Standard page shell ─────────────────────────────────────────────
Shared layout container for pages that extend base.html. Matches the
dashboard's `.main` dimensions so /dashboard, /marketplace, and the
marketplace detail pages all align. Add `page-shell` to a page's root
wrapper to opt in. */
.container:has(.page-shell) {
max-width: 1280px;
margin: 0 auto;
padding: 28px 32px 48px;
}
.container:has(.page-shell) > main { margin: 0; padding: 0; }
/* ==============================================================
News content vocabulary (shared)
--------------------------------------------------------------
Used by: /news (full content), /home (perex slot via .home-news-body),
/admin/news preview pane.
Author classes documented in docs/operator/news-content-guide.md:
.news-hero, .callout, .callout-{info,warn,success,danger},
.video-embed, .news-section, .news-grid-2, .news-grid-3, .news-cta.
Selectors are scope-free where the class itself is the marker
(.callout, .news-hero, .video-embed, .news-grid-*, .news-cta) so
authors can drop them anywhere — /home perex, /news body,
/admin/news preview, future admin pages.
The table / pre / code overrides ARE scoped to .news-content because
`<table>` / `<pre>` / inline `<code>` exist on plenty of other pages
that should not inherit this styling.
============================================================== */
/* Callouts — boxed inline notice with colored left border. */
.callout {
border-left: 4px solid #0073D1;
background: #E6F3FC;
color: #111827;
padding: 12px 16px;
border-radius: 6px;
margin: 12px 0;
}
.callout-info { border-left-color: #0073D1; background: #E6F3FC; }
.callout-warn { border-left-color: #C2410C; background: #FED7AA; }
.callout-success { border-left-color: #047857; background: #D1FAE5; }
.callout-danger { border-left-color: #B91C1C; background: #FEE2E2; }
.callout > :first-child { margin-top: 0; }
.callout > :last-child { margin-bottom: 0; }
/* 16:9 wrapper for YouTube/Vimeo/Loom iframes. */
.video-embed {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
border-radius: 8px;
margin: 14px 0;
background: black;
}
.video-embed iframe {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
border: 0;
}
/* Section divider — subtle top margin to separate topics. */
.news-section { margin-top: 28px; }
.news-section:first-child { margin-top: 0; }
/* 2- / 3-column responsive grids. */
.news-grid-2,
.news-grid-3 {
display: grid;
gap: 16px;
margin: 12px 0;
}
.news-grid-2 { grid-template-columns: repeat(2, 1fr); }
.news-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) {
.news-grid-2,
.news-grid-3 { grid-template-columns: 1fr; }
}
/* Anchor styled as primary button. */
a.news-cta {
display: inline-block;
background: #0073D1;
color: white !important; /* override link colors on /home */
text-decoration: none !important;
padding: 9px 18px;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
margin: 8px 0;
transition: background 120ms ease;
}
a.news-cta:hover { background: #0056A3; }
/* --- .news-content scope: tables, code, pre, blockquote, headings ---
Anything inside the long-form body needs these refinements; they
would over-style chrome elsewhere on the site so we scope them. */
.news-content { font-size: 15px; line-height: 1.6; color: #111827; }
.news-content h1 { font-size: 24px; margin: 24px 0 12px; line-height: 1.25; }
.news-content h2 { font-size: 20px; margin: 22px 0 10px; line-height: 1.3; }
.news-content h3 { font-size: 17px; margin: 18px 0 8px; }
.news-content p { margin: 0 0 12px; }
.news-content ul,
.news-content ol { margin: 0 0 12px 24px; }
.news-content li { margin: 4px 0; }
.news-content blockquote {
border-left: 4px solid #E5E7EB;
padding: 6px 16px;
margin: 14px 0;
color: #4B5563;
font-style: italic;
background: #F9FAFB;
border-radius: 0 6px 6px 0;
}
/* Code: inline = light gray pill; block = dark navy with amber text.
The :not(pre code) split keeps inline code from overriding the
pre>code dark scheme — earlier versions had pre>code inheriting
the light background from the inline rule, producing the
"yellow-on-silver" unreadable combo. */
.news-content code {
background: #F3F4F6;
color: #0F172A;
padding: 1px 6px;
border-radius: 4px;
font-family: var(--font-mono);
font-size: 13px;
}
.news-content pre {
background: #0F172A;
color: #FBBF24;
padding: 14px 18px;
border-radius: 8px;
overflow-x: auto;
margin: 14px 0;
line-height: 1.55;
}
.news-content pre code {
background: transparent;
color: inherit;
padding: 0;
font-size: 13px;
border-radius: 0;
}
/* Tables: border-collapse, header band, zebra rows on hover, compact
padding. Authors get a presentable default without writing custom
classes; .news-grid-2 / .news-grid-3 covers the layout-grid use case. */
.news-content table {
width: 100%;
border-collapse: collapse;
margin: 14px 0;
font-size: 14px;
background: white;
border: 1px solid #E5E7EB;
border-radius: 8px;
overflow: hidden;
}
.news-content thead { background: #F9FAFB; }
.news-content th {
text-align: left;
padding: 10px 14px;
font-weight: 600;
color: #374151;
border-bottom: 1px solid #E5E7EB;
}
.news-content td {
padding: 10px 14px;
border-bottom: 1px solid #F3F4F6;
vertical-align: top;
}
.news-content tbody tr:last-child td { border-bottom: none; }
.news-content tbody tr:hover { background: #F9FAFB; }
.news-content table code {
/* Inline code inside table cells reads better with a slightly
lighter background than the page default. */
background: #EEF2F7;
}
/* Reusable hero block — blue gradient, eyebrow + title + lead.
Defined AFTER the .news-content overrides so its `color: white` on
nested headings wins source-order ties (both selectors share
specificity 0,1,1 since they're "one class + one type"). Authors
drop `<section class="news-hero">` anywhere — /home perex, /news
body, /admin/news preview. */
.news-hero {
background: linear-gradient(135deg, #0073D1 0%, #0056A3 100%);
color: white;
border-radius: 16px;
padding: 28px 32px;
margin: 18px 0;
box-shadow: 0 8px 24px rgba(0, 86, 163, 0.18);
}
.news-hero .eyebrow {
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.8px;
opacity: 0.85;
margin-bottom: 10px;
color: white;
}
.news-hero h1,
.news-hero h2,
.news-hero h3 {
color: white;
margin: 0 0 8px;
font-weight: 600;
line-height: 1.25;
}
.news-hero h1 { font-size: 26px; letter-spacing: -0.4px; }
.news-hero h2 { font-size: 20px; }
.news-hero h3 { font-size: 17px; }
.news-hero .lead,
.news-hero p {
font-size: 15px;
opacity: 0.94;
line-height: 1.55;
margin: 0;
color: white;
}
.news-hero a {
color: #FBBF24;
text-decoration: underline;
}
.news-hero code {
background: rgba(15, 23, 42, 0.55);
color: #FBBF24;
border: 1px solid rgba(255, 255, 255, 0.18);
padding: 1px 6px;
border-radius: 4px;
font-size: 12.5px;
}
/* /home perex slot: the same callout / video-embed / hero classes
work inside .home-news-body without selector duplication, since the
rules above don't depend on a parent. The home-specific chrome
(margin, header strip) lives in home_not_onboarded.html. */