:root {
  --page-plane: #FBF6EC;
  --surface-1: #FFFFFF;
  --text-primary: #20302F;
  --text-secondary: rgba(32, 48, 47, 0.72);
  --text-muted: rgba(32, 48, 47, 0.55);
  --gridline: rgba(30, 61, 60, 0.09);
  --border: rgba(32, 48, 47, 0.14);
  --series-1: #5B9AA0;
  --series-1-wash: rgba(91, 154, 160, 0.12);
  --cta-bg: #EFA646;
  --cta-ink: #1E3D3C;
  --critical: #d03b3b;
  color-scheme: light;
}
:root[data-theme="dark"] {
  --page-plane: #1E3D3C;
  --surface-1: #254743;
  --text-primary: #F1E4CF;
  --text-secondary: rgba(241, 228, 207, 0.78);
  --text-muted: rgba(241, 228, 207, 0.60);
  --gridline: rgba(241, 228, 207, 0.12);
  --border: rgba(241, 228, 207, 0.16);
  --series-1: #5B9AA0;
  --series-1-wash: rgba(91, 154, 160, 0.16);
  --cta-bg: #EFA646;
  --cta-ink: #1E3D3C;
  --critical: #e66767;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--page-plane);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", sans-serif;
}
.page { max-width: 720px; margin: 0 auto; padding: 40px 20px 80px; }
.page-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
.lede { color: var(--text-secondary); margin: 6px 0 0; font-size: 14px; }
.lede a { color: var(--series-1); }

.brand-lockup { display: flex; align-items: center; gap: 14px; }
.wordmark-row { display: flex; align-items: baseline; gap: 8px; }
.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.01em;
}
.wordmark .accent { color: var(--cta-bg); }
.alfa-tag {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--series-1-wash);
  color: var(--series-1);
}

.brand-mark { position: relative; width: 56px; height: 56px; display: inline-block; flex-shrink: 0; }
.brand-mark.brand-mark-small { width: 30px; height: 30px; }
.brand-mark .capy-svg { width: 100%; height: 100%; display: block; }
.brand-mark:focus-visible { outline: 2px solid var(--series-1); outline-offset: 3px; border-radius: 50%; }
.capy-ear { transform-box: fill-box; transform-origin: 50% 100%; }
.brand-mark:hover .capy-ear-left, .brand-mark:focus-visible .capy-ear-left { animation: ear-wiggle-l 0.5s ease-in-out infinite; }
.brand-mark:hover .capy-ear-right, .brand-mark:focus-visible .capy-ear-right { animation: ear-wiggle-r 0.5s ease-in-out infinite; }
@keyframes ear-wiggle-l { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(-10deg); } }
@keyframes ear-wiggle-r { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(10deg); } }

.brand-deco { position: absolute; transition: transform 0.3s ease; transform-origin: center; }
.brand-mark:hover .brand-deco, .brand-mark:focus-visible .brand-deco { transform: scale(1.15) translateY(-2px); }
.deco-heart { top: -6px; left: -8px; width: 16px; height: 16px; }
.deco-eye { top: -8px; right: -10px; width: 18px; height: 18px; }
.deco-bars { top: 14px; right: -14px; width: 16px; height: 16px; }
.deco-spark { bottom: 2px; left: -10px; width: 10px; height: 10px; opacity: 0.7; }
.brand-mark-small .deco-heart { width: 10px; height: 10px; top: -3px; left: -5px; }
.brand-mark-small .deco-eye { width: 11px; height: 11px; top: -4px; right: -6px; }
.brand-mark-small .deco-bars { width: 10px; height: 10px; top: 8px; right: -8px; }
.brand-mark-small .deco-spark { width: 6px; height: 6px; bottom: 1px; left: -6px; }

.brand-badge {
  position: absolute; font-family: 'IBM Plex Mono', ui-monospace, monospace; font-size: 10px; font-weight: 700;
  padding: 1px 5px; border-radius: 8px; white-space: nowrap; opacity: 0;
  transform: translateY(6px) scale(0.7); transition: opacity 0.25s ease 0.05s, transform 0.25s ease 0.05s;
  pointer-events: none;
}
.brand-mark:hover .brand-badge, .brand-mark:focus-visible .brand-badge { opacity: 1; transform: translateY(-6px) scale(1); }
.badge-heart { top: -20px; left: -14px; background: #E8927D; color: #3A2A1E; }
.badge-eye { top: -26px; right: -8px; background: #5B9AA0; color: #FBF6EC; }
.badge-bars { top: 8px; right: -32px; background: #EFA646; color: #1E3D3C; }
.brand-mark-small .brand-badge { font-size: 7px; padding: 0 3px; }
.brand-mark-small .badge-heart { top: -12px; left: -8px; }
.brand-mark-small .badge-eye { top: -16px; right: -4px; }
.brand-mark-small .badge-bars { top: 4px; right: -18px; }

.theme-toggle-btn {
  border: 1px solid var(--border); background: var(--surface-1); color: var(--text-primary);
  border-radius: 8px; padding: 6px 10px; font-size: 16px; line-height: 1; cursor: pointer; flex-shrink: 0;
}
.theme-toggle-btn:hover { background: var(--gridline); }

.card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 18px;
  box-shadow: 0 1px 3px rgba(30, 61, 60, 0.08);
}
.card h2 { font-size: 14px; color: var(--text-secondary); margin: 0 0 12px; font-weight: 600; }

.profile-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--surface-1); border: 1px solid var(--border); border-radius: 14px;
  padding: 10px 14px; margin-bottom: 18px;
}
.profile-chip { display: flex; align-items: center; gap: 10px; min-width: 0; }
.profile-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--cta-bg); color: var(--cta-ink); font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center; text-transform: uppercase;
}
.profile-text { min-width: 0; }
.profile-name { font-size: 13px; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.profile-email { font-size: 12px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.profile-links { display: flex; align-items: center; gap: 10px; font-size: 13px; flex-shrink: 0; }
.profile-links .link-btn { background: none; border: none; color: var(--series-1); font-size: 13px; cursor: pointer; padding: 0; text-decoration: none; }

#account-select {
  width: 100%; border: 1px solid var(--border); border-radius: 6px; padding: 8px 10px;
  font-family: inherit; font-size: 13px; background: var(--surface-1); color: var(--text-primary);
}

.tab-bar { display: flex; flex-wrap: wrap; gap: 8px; }
.tab-btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
}
.tab-btn:hover { background: var(--gridline); }
.tab-btn.active { background: var(--cta-bg); color: var(--cta-ink); border-color: var(--cta-bg); font-weight: 600; }

.preset-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.preset-btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
}
.preset-btn:hover { background: var(--gridline); }
.preset-btn.active { background: var(--cta-bg); color: var(--cta-ink); border-color: var(--cta-bg); font-weight: 600; }

.custom-range { display: flex; align-items: center; gap: 8px; padding-top: 10px; border-top: 1px solid var(--gridline); font-size: 13px; color: var(--text-secondary); }
.custom-range input[type="date"] {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 8px;
  font-family: inherit;
  font-size: 13px;
  background: var(--surface-1);
  color: var(--text-primary);
}

.campaign-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.campaign-toolbar .link-btn { background: none; border: none; color: var(--series-1); font-size: 13px; cursor: pointer; padding: 0; }
.campaign-list { max-height: 260px; overflow-y: auto; border: 1px solid var(--gridline); border-radius: 10px; padding: 4px; }
.campaign-row { display: flex; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 6px; font-size: 13px; }
.campaign-row:hover { background: var(--gridline); }
.campaign-row .status { color: var(--text-muted); font-size: 11px; margin-left: auto; }
.campaign-row .status.ACTIVE { color: #0ca30c; }

.metric-picker-note { font-size: 12px; color: var(--text-muted); margin: 0 0 12px; line-height: 1.5; }
.metric-picker { display: flex; flex-direction: column; gap: 14px; }
.metric-category h3 { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.03em; margin: 0 0 6px; }
.metric-category-list { border: 1px solid var(--gridline); border-radius: 10px; padding: 4px; }
.metric-choice-row { display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 6px; font-size: 13px; }
.metric-choice-row:hover { background: var(--gridline); }

.empty-msg, .error-msg { font-size: 13px; padding: 10px 4px; }
.empty-msg { color: var(--text-muted); }
.error-msg { color: var(--critical); }

.empty-state { text-align: center; padding: 8px 4px 4px; }
.empty-state .mascot-empty { margin: 0 auto 8px; display: block; }
.empty-state p { color: var(--text-muted); font-size: 13px; margin: 0; }

.submit-row { display: flex; justify-content: flex-end; }
.submit-btn {
  background: var(--cta-bg);
  color: var(--cta-ink);
  border: none;
  border-radius: 10px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.submit-btn:hover { opacity: 0.92; }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.facebook-btn {
  background: #1877F2;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.facebook-btn:hover { opacity: 0.92; }

.form-error { color: var(--critical); font-size: 13px; margin-top: 10px; text-align: right; }

.setup-step.step-disabled { opacity: 0.45; }
.step-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.step-head h2 { margin: 0; font-size: 15px; color: var(--text-primary); }
.step-badge {
  width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%;
  background: var(--cta-bg); color: var(--cta-ink); font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-note { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin: 0 0 12px; }
.step-note a { color: var(--series-1); }
.step-note code { background: var(--gridline); border-radius: 4px; padding: 1px 5px; font-size: 12px; font-family: 'IBM Plex Mono', ui-monospace, monospace; }
.step-ok { color: #0ca30c; font-size: 13px; margin: 8px 0 0; }

.field-label { display: block; font-size: 12px; color: var(--text-secondary); margin: 10px 0 4px; }
.setup-step input[type="text"], .setup-step input[type="password"], .setup-step select {
  width: 100%; border: 1px solid var(--border); border-radius: 6px; padding: 8px 10px;
  font-family: inherit; font-size: 13px; background: var(--surface-1); color: var(--text-primary);
}

.copy-row { display: flex; gap: 8px; margin-bottom: 12px; }
.copy-row input { flex: 1; font-family: 'IBM Plex Mono', ui-monospace, monospace; font-size: 12px; }
.copy-btn {
  border: 1px solid var(--border); border-radius: 6px; padding: 0 14px; flex-shrink: 0;
  background: var(--surface-1); color: var(--text-primary); font-family: inherit; cursor: pointer;
}
.copy-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.secondary-btn {
  background: transparent; color: var(--series-1); border: 1px solid var(--border);
  text-decoration: none; display: inline-block;
}

/* ---------- connections list ---------- */
.empty-hero { padding: 40px 28px 32px; text-align: center; }
.empty-illustration { width: 150px; margin: 0 auto 14px; display: block; filter: drop-shadow(0 8px 10px rgba(30, 61, 60, 0.14)); }
.empty-hero h2 { font-size: 19px; margin: 0 0 8px; }
.empty-hero p { font-size: 13.5px; color: var(--text-muted); max-width: 360px; margin: 0 auto 22px; line-height: 1.55; }

.list-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.list-head h2 { font-size: 13px; font-weight: 700; margin: 0; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.4px; }
.add-link-btn {
  font-size: 13px; font-weight: 700; color: var(--text-primary); background: var(--surface-1); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 999px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.add-link-btn:hover { background: var(--gridline); }
.add-link-btn svg { color: var(--cta-bg); }

.conn-card {
  background: var(--surface-1); border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 1px 3px rgba(30, 61, 60, 0.08);
  padding: 16px 18px; display: flex; align-items: center; gap: 14px; margin-bottom: 10px;
}
.conn-card-link { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; text-decoration: none; color: inherit; }
.conn-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--series-1-wash); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.conn-icon svg { width: 22px; height: 22px; }
.conn-body { flex: 1; min-width: 0; }
.conn-name { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.conn-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.conn-status {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px;
  padding: 4px 10px; border-radius: 999px; white-space: nowrap; background: var(--series-1-wash); color: var(--series-1);
}
.conn-remove { background: none; border: none; color: var(--text-muted); font-size: 12px; cursor: pointer; padding: 0; flex-shrink: 0; }
.conn-remove:hover { color: var(--critical); }

/* ---------- connection wizard ---------- */
.wizard-title { font-size: 21px; font-weight: 700; margin: 0 0 18px; }

.stepper { display: flex; align-items: center; gap: 6px; margin-bottom: 22px; }
.step-pill { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: var(--text-muted); }
.step-pill .step-num {
  width: 22px; height: 22px; border-radius: 50%; background: var(--border); color: var(--surface-1); font-size: 11px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-pill.done .step-num { background: var(--series-1); }
.step-pill.current .step-num { background: var(--cta-bg); color: var(--cta-ink); }
.step-pill.current { color: var(--text-primary); }
.step-pill.done { color: var(--series-1); }
.step-line { flex: 1; height: 1px; background: var(--border); max-width: 40px; }

.wizard-card { background: var(--surface-1); border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 1px 3px rgba(30, 61, 60, 0.08); padding: 28px; }

.oauth-box { text-align: center; padding: 12px 10px 4px; }
.oauth-box h3 { font-size: 16.5px; font-weight: 700; margin: 0 0 8px; }
.oauth-box p { font-size: 13px; color: var(--text-muted); max-width: 380px; margin: 0 auto 18px; line-height: 1.55; }
.permission-note {
  margin-top: 18px; text-align: left; background: var(--page-plane); border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 16px; font-size: 12px; color: var(--text-muted); line-height: 1.6;
}
.permission-note b { color: var(--text-primary); }
.wizard-divider { display: flex; align-items: center; gap: 12px; margin: 24px 0; color: var(--text-muted); font-size: 12px; }
.wizard-divider::before, .wizard-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }

.accounts-head { margin-bottom: 14px; }
.accounts-head h3 { font-size: 16px; font-weight: 700; margin: 0 0 4px; }
.accounts-head p { font-size: 12.5px; color: var(--text-muted); margin: 0; }
.account-option {
  display: flex; align-items: center; gap: 12px; border: 1px solid var(--border); border-radius: 14px;
  padding: 13px 16px; margin-bottom: 10px; cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease;
}
.account-option:hover { border-color: var(--series-1); }
.account-option.selected { border-color: var(--series-1); background: var(--series-1-wash); }
.account-option input { width: 17px; height: 17px; accent-color: var(--series-1); flex-shrink: 0; }
.account-name { font-size: 13.5px; font-weight: 700; color: var(--text-primary); }
.account-meta { font-size: 11.5px; color: var(--text-muted); margin-top: 1px; }
.account-badge { margin-left: auto; font-size: 11px; color: var(--text-muted); font-weight: 600; white-space: nowrap; }

.wizard-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; }
.btn-secondary {
  background: var(--surface-1); border: 1px solid var(--border); color: var(--text-primary); border-radius: 999px;
  padding: 11px 20px; font-size: 13.5px; font-weight: 700; cursor: pointer; font-family: inherit;
}
.btn-secondary:hover { background: var(--gridline); }
.btn-primary-sm {
  background: var(--cta-bg); color: var(--cta-ink); border: none; border-radius: 999px; padding: 11px 22px;
  font-size: 13.5px; font-weight: 700; cursor: pointer; font-family: inherit;
}
.btn-primary-sm:disabled { opacity: 0.4; cursor: not-allowed; }

.success-box { text-align: center; padding: 16px 10px; }
.success-icon {
  width: 60px; height: 60px; border-radius: 50%; background: var(--series-1-wash); color: var(--series-1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.success-icon svg { width: 28px; height: 28px; }
.success-box h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.success-box p { font-size: 13.5px; color: var(--text-muted); margin: 0 0 22px; }

.primary-btn {
  background: var(--cta-bg); color: var(--cta-ink); border: none; border-radius: 999px; padding: 13px 26px;
  font-size: 14px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; text-decoration: none; box-shadow: 0 2px 10px rgba(30, 61, 60, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.primary-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(30, 61, 60, 0.18); }
.primary-btn svg { width: 16px; height: 16px; }

/* ---------- workspace shell (shared with report.html's own sidebar concept —
   ported here so future work can point report.html at these same classes
   instead of its self-contained inline copy) ---------- */
.app { display: flex; min-height: 100vh; }
.sidebar {
  width: 204px; flex-shrink: 0; background: #1E3D3C; display: flex; flex-direction: column;
  padding: 22px 14px; position: sticky; top: 0; height: 100vh;
}
.sidebar .report-lockup { display: flex; align-items: center; gap: 8px; margin: 0 0 22px 4px; }
.sidebar .wordmark-text { font-family: 'Fraunces', Georgia, serif; font-weight: 700; font-size: 14px; color: #F1E4CF; }
.sidebar .wordmark-text .accent { color: var(--cta-bg); }
.sidebar .alfa-tag-sm {
  font-family: 'IBM Plex Mono', ui-monospace, monospace; font-size: 9px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; padding: 2px 6px; border-radius: 999px;
  background: rgba(241, 228, 207, 0.14); color: #F1E4CF; margin-left: 4px;
}
.nav { display: flex; flex-direction: column; gap: 4px; }
.nav-item {
  display: flex; align-items: center; gap: 9px; padding: 9px 11px; border-radius: 10px;
  color: rgba(241, 228, 207, 0.82); font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: none;
}
.nav-item:hover { background: rgba(241, 228, 207, 0.08); }
.nav-item.active { background: var(--cta-bg); color: var(--cta-ink); }
.nav-item .soon-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cta-bg); margin-left: auto; flex-shrink: 0; }
.nav-item.active .soon-dot { background: var(--cta-ink); }
.sidebar-footer {
  margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(241, 228, 207, 0.14);
  font-size: 11px; color: rgba(241, 228, 207, 0.55); line-height: 1.5;
}
.workspace-main { flex: 1; min-width: 0; }
.workspace-content { padding: 32px 24px 64px; max-width: 720px; }
.workspace-page { display: none; }
.workspace-page.active { display: block; }

.coming-soon-panel {
  max-width: 480px; margin: 60px auto; text-align: center; background: var(--surface-1);
  border: 1px solid var(--border); border-radius: 16px; padding: 40px 32px;
}
.coming-soon-panel .icon { font-size: 32px; margin-bottom: 12px; }
.coming-soon-panel h1 { font-family: 'Fraunces', Georgia, serif; font-size: 20px; margin: 0 0 8px; }
.coming-soon-panel p { color: var(--text-secondary); font-size: 14px; margin: 0 0 14px; }
.status-flag {
  display: inline-block; font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; padding: 5px 10px; border-radius: 999px;
  background: var(--series-1-wash); color: var(--series-1);
}

@media (max-width: 720px) {
  .app { flex-direction: column; }
  .sidebar { width: 100%; height: auto; flex-direction: row; align-items: center; position: relative; padding: 12px 14px; }
  .sidebar .report-lockup { margin: 0 14px 0 0; }
  .nav { flex-direction: row; gap: 6px; overflow-x: auto; }
  .sidebar-footer { display: none; }
}

.report-toggle-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.workspace-report-frame { width: 100%; border: none; min-height: 80vh; display: block; margin-bottom: 18px; }
.workspace-content:has(.workspace-report-frame) { max-width: 1100px; }

.report-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.report-card {
  background: var(--surface-1); border: 1px solid var(--border); border-radius: 16px;
  box-shadow: 0 1px 3px rgba(30, 61, 60, 0.08); padding: 16px 18px; display: flex; flex-direction: column; gap: 10px;
}
.report-card-link { text-decoration: none; color: inherit; flex: 1; }
.report-card-name { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.report-card-meta { font-size: 12px; color: var(--text-muted); }
.report-card-new {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  border: 1.5px dashed var(--border); border-radius: 16px; color: var(--text-muted); text-decoration: none;
  min-height: 90px; font-size: 13px; font-weight: 600;
}
.report-card-new:hover { color: var(--text-primary); border-color: var(--series-1); }
.report-card-new svg { width: 20px; height: 20px; }
