/* Mailbox Factory control plane — light, fast, customer-facing product shell. */
:root {
  --cp-sidebar: #082938;
  --cp-sidebar-2: #0b3344;
  --cp-canvas: #f6f8f8;
  --cp-surface: #ffffff;
  --cp-surface-subtle: #f9fafa;
  --cp-surface-hover: #f1f5f4;
  --cp-border: #dfe5e6;
  --cp-border-strong: #cbd4d6;
  --cp-text: #152126;
  --cp-text-2: #5d6d74;
  --cp-text-3: #74838a;
  --cp-primary: #087f73;
  --cp-primary-hover: #066a61;
  --cp-primary-soft: #e6f4f1;
  --cp-success: #17834f;
  --cp-success-soft: #eaf6ef;
  --cp-warning: #aa6400;
  --cp-warning-soft: #fff4df;
  --cp-danger: #bd3f3a;
  --cp-danger-soft: #fceceb;
  --cp-running: #286aa6;
  --cp-running-soft: #eaf2fa;
  --cp-radius-sm: 6px;
  --cp-radius: 9px;
  --cp-radius-lg: 12px;
  --cp-shadow: 0 1px 2px rgba(15, 35, 42, .04), 0 8px 28px rgba(15, 35, 42, .035);
  --cp-sidebar-width: 220px;
  --cp-topbar-height: 66px;
  --cp-focus: 0 0 0 3px rgba(8, 127, 115, .2);
}

html { color-scheme: light !important; background: var(--cp-canvas); }

body.cp-authenticated,
body.cp-public {
  --mf-void: #ffffff;
  --mf-raised: #ffffff;
  --mf-panel: #ffffff;
  --mf-panel-2: #f7f9f9;
  --mf-hover: #f0f4f3;
  --mf-line: var(--cp-border);
  --mf-line-strong: var(--cp-border-strong);
  --mf-text: var(--cp-text);
  --mf-text-2: var(--cp-text-2);
  --mf-text-3: var(--cp-text-3);
  --mf-invert: #ffffff;
  --mf-white: var(--cp-primary);
  --mf-ok: var(--cp-success);
  --mf-ok-dim: var(--cp-success-soft);
  --mf-ok-line: #cce5d6;
  --mf-run: var(--cp-running);
  --mf-run-dim: var(--cp-running-soft);
  --mf-warn: var(--cp-warning);
  --mf-warn-dim: var(--cp-warning-soft);
  --mf-warn-line: #ead3a6;
  --mf-danger: var(--cp-danger);
  --mf-danger-dim: var(--cp-danger-soft);
  --mf-danger-line: #ebc8c6;
  --focus-ring: var(--cp-focus);
}

body.cp-authenticated {
  min-height: 100vh;
  margin: 0;
  color: var(--cp-text) !important;
  background: var(--cp-canvas) !important;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  -webkit-font-smoothing: antialiased;
}

.cp-authenticated *, .cp-public * { box-sizing: border-box; }

.cp-authenticated a { color: inherit; }

.cp-shell { min-height: 100vh; }

.cp-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 90;
  display: flex;
  width: var(--cp-sidebar-width);
  flex-direction: column;
  overflow: hidden;
  color: #d8e4e8;
  background: var(--cp-sidebar);
  transition: width 160ms ease, transform 180ms ease;
}

.cp-sidebar-top {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.cp-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  text-decoration: none;
}

.cp-brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
}

.cp-brand-mark svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cp-brand-name {
  overflow: hidden;
  color: inherit;
  font-size: 15px;
  font-weight: 670;
  letter-spacing: -.015em;
  white-space: nowrap;
}

.cp-sidebar-close, .cp-mobile-menu {
  display: none;
  border: 0;
  background: transparent;
}

.cp-nav {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  padding: 16px 8px;
  scrollbar-width: thin;
}

.cp-nav-item {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border-radius: 7px;
  color: #c7d6dc !important;
  font-size: 13px;
  font-weight: 520;
  text-decoration: none;
  white-space: nowrap;
  transition: color 120ms ease, background 120ms ease;
}

.cp-nav-item:hover { color: #fff !important; background: rgba(255, 255, 255, .07); }
.cp-nav-item.is-active { color: #fff !important; background: var(--cp-primary); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08); }

.cp-nav-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cp-nav-count {
  min-width: 20px;
  margin-left: auto;
  padding: 2px 6px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.cp-nav-section-label {
  margin: 17px 12px 5px;
  color: #76929d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.cp-sidebar-footer {
  padding: 10px 8px 12px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.cp-workspace-card {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 9px 8px;
  border-radius: 8px;
  color: #fff !important;
  text-decoration: none;
}

.cp-workspace-card:hover, .cp-workspace-card.is-active { background: rgba(255, 255, 255, .065); }

.cp-avatar {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--cp-primary);
  font-size: 11px;
  font-weight: 720;
}

.cp-workspace-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 1px;
}

.cp-workspace-copy strong, .cp-workspace-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cp-workspace-copy strong { font-size: 12px; font-weight: 620; }
.cp-workspace-copy small { color: #98afb8; font-size: 10px; }

.cp-workspace-chevron, .cp-account-menu summary > svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cp-collapse {
  display: flex;
  width: 100%;
  height: 36px;
  align-items: center;
  gap: 12px;
  margin-top: 5px;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  color: #a9bdc4;
  background: transparent;
  font: inherit;
  font-size: 11px;
  cursor: pointer;
}

.cp-collapse:hover { color: #fff; background: rgba(255, 255, 255, .06); }
.cp-collapse svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 1.7; }

.cp-stage {
  min-height: 100vh;
  margin-left: var(--cp-sidebar-width);
  transition: margin-left 160ms ease;
}

.cp-topbar.app-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 70 !important;
  display: flex !important;
  width: auto !important;
  height: var(--cp-topbar-height) !important;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--cp-border) !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: none !important;
  backdrop-filter: saturate(1.1) blur(8px) !important;
  -webkit-backdrop-filter: saturate(1.1) blur(8px) !important;
}

.cp-search {
  position: relative;
  display: flex;
  width: min(445px, 45vw);
  height: 40px;
  align-items: center;
}

.cp-search > svg {
  position: absolute;
  left: 12px;
  width: 17px;
  height: 17px;
  color: var(--cp-text-2);
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.cp-search input {
  width: 100%;
  height: 40px;
  padding: 0 42px 0 38px;
  border: 1px solid var(--cp-border);
  border-radius: 7px;
  outline: 0;
  color: var(--cp-text);
  background: var(--cp-surface);
  font: inherit;
  font-size: 12px;
  box-shadow: 0 1px 2px rgba(15, 35, 42, .03);
}

.cp-search input::placeholder { color: #87949a; }
.cp-search input:focus { border-color: var(--cp-primary); box-shadow: var(--cp-focus); }

.cp-search kbd {
  position: absolute;
  right: 10px;
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid var(--cp-border);
  border-radius: 4px;
  color: var(--cp-text-3);
  background: var(--cp-surface-subtle);
  font: inherit;
  font-size: 10px;
}

.cp-topbar-actions { display: flex; align-items: center; gap: 10px; }

.cp-topbar-link, .cp-icon-button {
  display: inline-flex;
  height: 36px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 7px;
  color: var(--cp-text-2) !important;
  font-size: 12px;
  text-decoration: none;
}

.cp-topbar-link { padding: 0 8px; }
.cp-icon-button { position: relative; width: 36px; }
.cp-topbar-link:hover, .cp-icon-button:hover { color: var(--cp-text) !important; background: var(--cp-surface-hover); }
.cp-topbar-link svg, .cp-icon-button svg { width: 19px; height: 19px; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }

.cp-notification-dot {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: var(--cp-primary);
  font-size: 8px;
  font-weight: 700;
}

.cp-account-menu { position: relative; }
.cp-account-menu summary {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 6px 0 8px;
  border-radius: 8px;
  color: var(--cp-text);
  cursor: pointer;
  list-style: none;
}
.cp-account-menu summary::-webkit-details-marker { display: none; }
.cp-account-menu summary:hover { background: var(--cp-surface-hover); }
.cp-avatar--light { width: 32px; height: 32px; flex-basis: 32px; color: #15514c; background: #dcefed; }
.cp-account-label { max-width: 150px; overflow: hidden; font-size: 12px; font-weight: 590; text-overflow: ellipsis; white-space: nowrap; }

.cp-account-popover {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  z-index: 100;
  display: flex;
  width: 220px;
  flex-direction: column;
  padding: 7px;
  border: 1px solid var(--cp-border);
  border-radius: 10px;
  background: var(--cp-surface);
  box-shadow: 0 16px 50px rgba(15, 35, 42, .15);
}

.cp-account-popover p { margin: 3px 7px 8px; overflow: hidden; color: var(--cp-text-3); font-size: 10px; text-overflow: ellipsis; }
.cp-account-popover a { padding: 8px 9px; border-radius: 6px; color: var(--cp-text) !important; font-size: 12px; text-decoration: none; }
.cp-account-popover a:hover { background: var(--cp-surface-hover); }

.cp-main.app-main {
  width: auto !important;
  max-width: none !important;
  min-height: calc(100vh - var(--cp-topbar-height));
  margin: 0 !important;
  padding: 28px 26px 48px !important;
  color: var(--cp-text) !important;
  background: var(--cp-canvas) !important;
}

.cp-main:focus { outline: 0; }

/* Collapsed desktop rail. */
.cp-authenticated.cp-sidebar-collapsed { --cp-sidebar-width: 68px; }
.cp-sidebar-collapsed .cp-brand-name,
.cp-sidebar-collapsed .cp-nav-item > span:not(.cp-nav-count),
.cp-sidebar-collapsed .cp-nav-section-label,
.cp-sidebar-collapsed .cp-workspace-copy,
.cp-sidebar-collapsed .cp-workspace-chevron,
.cp-sidebar-collapsed .cp-collapse span { display: none; }
.cp-sidebar-collapsed .cp-brand { margin: auto; }
.cp-sidebar-collapsed .cp-sidebar-top { padding-inline: 10px; }
.cp-sidebar-collapsed .cp-nav-item { justify-content: center; padding: 0; }
.cp-sidebar-collapsed .cp-nav-count { position: absolute; top: 3px; right: 4px; min-width: 16px; height: 16px; padding: 1px 3px; font-size: 8px; }
.cp-sidebar-collapsed .cp-workspace-card { justify-content: center; }
.cp-sidebar-collapsed .cp-collapse { justify-content: center; padding: 0; }
.cp-sidebar-collapsed .cp-collapse svg { transform: rotate(180deg); }

/* Page foundation. */
.cp-main .page, .cp-page {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  color: var(--cp-text);
}

.cp-page { display: flex; flex-direction: column; gap: 20px; }

.cp-page-header, .cp-main .page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
}

.cp-title, .cp-main .page-title {
  margin: 0;
  color: var(--cp-text);
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 690;
  letter-spacing: -.035em;
  line-height: 1.2;
}

.cp-subtitle, .cp-main .page-desc {
  max-width: 680px;
  margin: 6px 0 0;
  color: var(--cp-text-2);
  font-size: 12px;
  line-height: 1.55;
}

.cp-header-actions, .cp-toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }

.cp-authenticated .btn {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--cp-border-strong);
  border-radius: 7px;
  color: var(--cp-text);
  background: var(--cp-surface);
  box-shadow: 0 1px 1px rgba(15, 35, 42, .025);
  font-family: inherit;
  font-size: 11px;
  font-weight: 620;
  line-height: 34px;
  text-decoration: none;
  transition: border-color 120ms ease, background 120ms ease, box-shadow 120ms ease, transform 80ms ease;
}

.cp-authenticated .btn:hover { border-color: #aab8bb; background: var(--cp-surface-hover); box-shadow: 0 2px 5px rgba(15, 35, 42, .06); }
.cp-authenticated .btn:active { transform: translateY(1px); }
.cp-authenticated .btn:focus-visible { outline: 0; box-shadow: var(--cp-focus); }
.cp-authenticated .btn-primary, .cp-authenticated .btn-run {
  border-color: var(--cp-primary);
  color: #fff !important;
  background: var(--cp-primary);
}
.cp-authenticated .btn-primary:hover, .cp-authenticated .btn-run:hover { border-color: var(--cp-primary-hover) !important; background: var(--cp-primary-hover) !important; }
.cp-authenticated .btn-secondary, .cp-authenticated .btn-ghost { color: var(--cp-text); background: var(--cp-surface); }
.cp-authenticated .btn-danger { border-color: #e7c0be; color: var(--cp-danger); background: #fff; }
.cp-authenticated .btn-warn, .cp-authenticated .btn-continue { border-color: #ebcf9e; color: #8e5605; background: #fff9ed; }
.cp-authenticated .btn-sm { min-height: 31px; padding: 0 10px; font-size: 10px; line-height: 29px; }
.cp-authenticated .btn-lg { min-height: 40px; line-height: 38px; }
.cp-authenticated .btn[disabled], .cp-authenticated button[disabled] { opacity: .52; cursor: not-allowed; transform: none; }

.cp-card, .cp-panel, .cp-main .panel, .cp-main .card-surface, .cp-main .saas-panel {
  border: 1px solid var(--cp-border) !important;
  border-radius: var(--cp-radius) !important;
  color: var(--cp-text) !important;
  background: var(--cp-surface) !important;
  box-shadow: var(--cp-shadow) !important;
}

.cp-panel { overflow: hidden; }

.cp-panel-header {
  display: flex;
  min-height: 51px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 1px solid var(--cp-border);
}

.cp-panel-title { margin: 0; font-size: 13px; font-weight: 660; letter-spacing: -.015em; }
.cp-panel-link { color: var(--cp-primary) !important; font-size: 10px; font-weight: 650; text-decoration: none; }
.cp-panel-link:hover { text-decoration: underline; }

/* Metrics. */
.cp-metrics, .cp-main .kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.cp-metric-card {
  display: flex;
  min-height: 112px;
  align-items: flex-start;
  gap: 15px;
  padding: 19px;
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius);
  background: var(--cp-surface);
  box-shadow: var(--cp-shadow);
}

.cp-metric-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--cp-primary);
  background: var(--cp-primary-soft);
}
.cp-metric-icon svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.cp-metric-card.is-warning .cp-metric-icon { color: var(--cp-warning); background: var(--cp-warning-soft); }
.cp-metric-copy { min-width: 0; }
.cp-metric-label { display: block; margin: 0 0 2px; color: var(--cp-text-2); font-size: 11px; font-weight: 520; }
.cp-metric-value { display: block; color: var(--cp-text); font-size: 29px; font-weight: 620; letter-spacing: -.035em; font-variant-numeric: tabular-nums; line-height: 1.08; }
.cp-metric-meta { display: block; margin-top: 6px; color: var(--cp-text-3); font-size: 9.5px; line-height: 1.35; }
.cp-metric-meta.is-success { color: var(--cp-success); }
.cp-metric-meta.is-warning { color: var(--cp-warning); }

/* Overview. */
.cp-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(290px, .85fr);
  gap: 15px;
  align-items: start;
}
.cp-overview-main, .cp-overview-side { display: flex; min-width: 0; flex-direction: column; gap: 15px; }

.cp-live-banner {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid #c9dfed;
  border-radius: 8px;
  color: #225e86;
  background: #eef6fb;
  font-size: 11px;
}
.cp-live-banner strong { font-weight: 660; }
.cp-live-pulse { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--cp-running); animation: cp-pulse 1.5s ease-in-out infinite; }

.cp-table-wrap { width: 100%; overflow-x: auto; }
.cp-table { width: 100%; border-collapse: collapse; color: var(--cp-text); font-size: 10.5px; }
.cp-table th {
  height: 45px;
  padding: 0 14px;
  border-bottom: 1px solid var(--cp-border);
  color: var(--cp-text-2);
  background: var(--cp-surface-subtle);
  font-size: 9.5px;
  font-weight: 650;
  letter-spacing: .015em;
  text-align: left;
  white-space: nowrap;
}
.cp-table td { height: 57px; padding: 9px 14px; border-bottom: 1px solid #e8eced; vertical-align: middle; }
.cp-table tbody tr:last-child td { border-bottom: 0; }
.cp-table tbody tr { transition: background 100ms ease; }
.cp-table tbody tr:hover { background: #fafcfc; }
.cp-table-row-link { cursor: pointer; }
.cp-table-row-link:focus-within { outline: 2px solid rgba(8, 127, 115, .25); outline-offset: -2px; }

.cp-tenant-cell { display: flex; min-width: 145px; align-items: center; gap: 9px; }
.cp-tenant-avatar { display: grid; width: 29px; height: 29px; flex: 0 0 29px; place-items: center; border-radius: 6px; color: #0b554e; background: #dcefed; font-size: 9px; font-weight: 730; }
.cp-tenant-copy { display: flex; min-width: 0; flex-direction: column; gap: 2px; }
.cp-tenant-copy a, .cp-table-primary { overflow: hidden; color: var(--cp-text) !important; font-weight: 620; text-decoration: none; text-overflow: ellipsis; white-space: nowrap; }
.cp-tenant-copy small, .cp-table-secondary { color: var(--cp-text-3); font-size: 9px; }
.cp-domain-link { color: var(--cp-text) !important; text-decoration: none; }
.cp-domain-link:hover { color: var(--cp-primary) !important; }

.cp-status {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  gap: 5px;
  padding: 3px 7px;
  border: 1px solid var(--cp-border);
  border-radius: 5px;
  color: var(--cp-text-2);
  background: var(--cp-surface-subtle);
  font-size: 9px;
  font-weight: 610;
  white-space: nowrap;
}
.cp-status-dot { width: 6px; height: 6px; border: 1.5px solid currentColor; border-radius: 50%; }
.cp-status--success { border-color: #cce5d6; color: var(--cp-success); background: var(--cp-success-soft); }
.cp-status--success .cp-status-dot { background: currentColor; box-shadow: inset 0 0 0 1px var(--cp-success-soft); }
.cp-status--warning { border-color: #edd8b0; color: var(--cp-warning); background: var(--cp-warning-soft); }
.cp-status--danger { border-color: #efcfcd; color: var(--cp-danger); background: var(--cp-danger-soft); }
.cp-status--running { border-color: #c9ddeb; color: var(--cp-running); background: var(--cp-running-soft); }
.cp-status--running .cp-status-dot { background: currentColor; animation: cp-pulse 1.4s ease-in-out infinite; }
.cp-status--neutral { color: #657279; background: #f3f5f5; }

.cp-provider-stack { display: flex; align-items: center; }
.cp-provider-chip {
  display: grid;
  width: 23px;
  height: 23px;
  margin-left: -4px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 6px;
  color: #fff;
  background: #3356b8;
  font-size: 8px;
  font-weight: 750;
}
.cp-provider-chip:first-child { margin-left: 0; }
.cp-provider-chip[data-provider="smartlead"] { background: #1e293b; }
.cp-provider-chip[data-provider="emailbison"] { background: #a34b35; }
.cp-provider-chip[data-provider="plusvibe"] { background: #6d4ec8; }
.cp-provider-more { margin-left: 5px; color: var(--cp-text-2); font-size: 9px; }

.cp-count-pair { color: var(--cp-text); font-variant-numeric: tabular-nums; white-space: nowrap; }
.cp-count-pair small { color: var(--cp-text-3); }
.cp-row-menu { display: grid; width: 28px; height: 28px; place-items: center; border: 0; border-radius: 5px; color: var(--cp-text-2); background: transparent; font-size: 18px; line-height: 1; cursor: pointer; }
.cp-row-menu:hover { background: var(--cp-surface-hover); }

.cp-table-footer { display: flex; min-height: 45px; align-items: center; justify-content: space-between; padding: 0 16px; border-top: 1px solid var(--cp-border); color: var(--cp-text-3); font-size: 9px; }

.cp-action-list, .cp-activity-list { margin: 0; padding: 0; list-style: none; }
.cp-action-item { padding: 13px 16px; border-bottom: 1px solid #e8eced; }
.cp-action-item:last-child { border-bottom: 0; }
.cp-action-head { display: flex; align-items: flex-start; gap: 9px; }
.cp-action-icon, .cp-activity-dot { width: 8px; height: 8px; flex: 0 0 8px; margin-top: 4px; border-radius: 50%; background: var(--cp-text-3); }
.cp-action-icon.is-danger, .cp-activity-dot.is-danger { background: var(--cp-danger); }
.cp-action-icon.is-warning, .cp-activity-dot.is-warning { background: var(--cp-warning); }
.cp-activity-dot.is-success { background: var(--cp-success); }
.cp-action-copy { min-width: 0; }
.cp-action-copy strong { display: block; color: var(--cp-text); font-size: 10.5px; font-weight: 630; line-height: 1.4; }
.cp-action-copy p { margin: 3px 0 8px; color: var(--cp-text-2); font-size: 9.5px; line-height: 1.45; }
.cp-action-copy a { color: var(--cp-primary) !important; font-size: 9px; font-weight: 650; text-decoration: none; }
.cp-action-copy a:hover { text-decoration: underline; }

.cp-activity-item { position: relative; display: grid; grid-template-columns: 9px 48px minmax(0, 1fr); gap: 9px; padding: 11px 16px; }
.cp-activity-item::before { position: absolute; top: 23px; bottom: -9px; left: 19px; width: 1px; background: #dce3e4; content: ""; }
.cp-activity-item:last-child::before { display: none; }
.cp-activity-time { color: var(--cp-text-3); font-size: 8.5px; font-variant-numeric: tabular-nums; }
.cp-activity-copy { min-width: 0; }
.cp-activity-message { display: block; color: var(--cp-text); font-size: 9.5px; line-height: 1.4; }
.cp-activity-domain { display: block; margin-top: 2px; color: var(--cp-text-3); font-size: 8.5px; }

.cp-empty {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  color: var(--cp-text-2);
  text-align: center;
}
.cp-empty-icon { display: grid; width: 42px; height: 42px; margin-bottom: 11px; place-items: center; border-radius: 50%; color: var(--cp-primary); background: var(--cp-primary-soft); }
.cp-empty-icon svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.6; }
.cp-empty h3 { margin: 0; color: var(--cp-text); font-size: 13px; }
.cp-empty p { max-width: 410px; margin: 6px 0 14px; font-size: 10.5px; line-height: 1.5; }

/* Billing summary and page. */
.cp-eyebrow { margin: 0 0 5px; color: var(--cp-primary); font-size: 9px; font-weight: 720; letter-spacing: .09em; text-transform: uppercase; }
.cp-billing-summary { padding: 17px 18px; }
.cp-billing-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.cp-billing-plan { color: var(--cp-primary); font-size: 15px; font-weight: 680; }
.cp-billing-price { margin-top: 3px; color: var(--cp-text); font-size: 11px; }
.cp-billing-status { color: var(--cp-text-3); font-size: 9px; text-align: right; }
.cp-usage-head { display: flex; justify-content: space-between; margin-top: 18px; color: var(--cp-text-2); font-size: 9px; }
.cp-usage-track { height: 7px; margin-top: 8px; overflow: hidden; border-radius: 999px; background: #e8eded; }
.cp-usage-fill, .cp-usage-track > span { display: block; height: 100%; border-radius: inherit; background: var(--cp-primary); transition: width 240ms ease; }
.cp-billing-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 11px; color: var(--cp-text-3); font-size: 8.5px; }
.cp-status--large { min-height: 29px; padding-inline: 10px; font-size: 10px; }
.cp-billing-layout { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(280px, .65fr); gap: 15px; align-items: start; }
.cp-billing-primary { display: flex; min-width: 0; flex-direction: column; gap: 15px; }
.cp-subscription-card { padding: 21px; }
.cp-subscription-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.cp-subscription-mark { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; border-radius: 50%; color: var(--cp-text-2); background: #eff2f2; font-size: 14px; font-weight: 740; }
.cp-subscription-mark.is-success { color: var(--cp-success); background: var(--cp-success-soft); }
.cp-subscription-mark.is-warning { color: var(--cp-warning); background: var(--cp-warning-soft); }
.cp-subscription-message { max-width: 630px; margin-top: 22px; }
.cp-subscription-message strong { display: block; font-size: 16px; font-weight: 670; letter-spacing: -.02em; }
.cp-subscription-message p { margin: 6px 0 0; color: var(--cp-text-2); font-size: 11px; line-height: 1.55; }
.cp-billing-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 22px; }
.cp-billing-actions form { margin: 0; }
.cp-inline-note { margin: 12px 0 0; color: var(--cp-text-3); font-size: 9.5px; }
.cp-inline-note.is-warning { color: var(--cp-warning); }
.cp-usage-card { padding-bottom: 18px; }
.cp-usage-card .cp-panel-header { border-bottom: 0; }
.cp-usage-card > .cp-usage-head, .cp-usage-card > .cp-usage-track, .cp-usage-card > .cp-usage-caption { margin-right: 18px; margin-left: 18px; }
.cp-usage-number { color: var(--cp-text); font-size: 21px; font-weight: 640; font-variant-numeric: tabular-nums; }
.cp-usage-caption { margin-top: 10px; color: var(--cp-text-3); font-size: 9.5px; line-height: 1.5; }
.cp-billing-aside { padding: 21px; }
.cp-check-list { display: flex; flex-direction: column; gap: 17px; margin: 21px 0 0; padding: 0; list-style: none; }
.cp-check-list li { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 10px; }
.cp-check-list li > span { display: grid; width: 21px; height: 21px; place-items: center; border-radius: 50%; color: var(--cp-success); background: var(--cp-success-soft); font-size: 9px; font-weight: 800; }
.cp-check-list strong, .cp-check-list small { display: block; }
.cp-check-list strong { font-size: 10.5px; font-weight: 650; }
.cp-check-list small { margin-top: 3px; color: var(--cp-text-3); font-size: 9px; line-height: 1.45; }
.cp-secure-note { display: flex; align-items: flex-start; gap: 9px; margin-top: 24px; padding: 12px; border-radius: 7px; color: var(--cp-text-2); background: var(--cp-surface-subtle); }
.cp-secure-note > span { color: var(--cp-primary); }
.cp-secure-note p { margin: 0; }
.cp-secure-note strong, .cp-secure-note small { display: block; }
.cp-secure-note strong { color: var(--cp-text); font-size: 9.5px; }
.cp-secure-note small { margin-top: 2px; font-size: 8.5px; }
.cp-operator-billing { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px; }
.cp-operator-billing p:not(.cp-eyebrow) { max-width: 680px; margin: 7px 0 0; color: var(--cp-text-2); font-size: 10.5px; line-height: 1.5; }

/* Settings: explicit save for sensitive billing fields. */
.cp-main .settings-stack > form { display: flex; flex-direction: column; gap: 16px; }
.cp-input-suffix { position: relative; display: flex; align-items: center; }
.cp-input-suffix input { width: 100%; padding-right: 48px !important; }
.cp-input-suffix > span { position: absolute; right: 11px; color: var(--cp-text-3); font-size: 9px; pointer-events: none; }
.cp-settings-callout { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 16px; padding: 12px 13px; border: 1px solid var(--cp-border); border-radius: 7px; background: var(--cp-surface-subtle); }
.cp-settings-callout > div { display: flex; min-width: 0; flex-direction: column; gap: 5px; }
.cp-settings-callout strong { font-size: 9.5px; }
.cp-settings-callout code { overflow: hidden; padding: 3px 5px; font-size: 8.5px; text-overflow: ellipsis; white-space: nowrap; }
.cp-settings-callout > span { max-width: 360px; color: var(--cp-text-3); font-size: 9px; line-height: 1.45; text-align: right; }
.cp-customer-settings-grid, .cp-account-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr); gap: 15px; align-items: start; }
.cp-customer-settings-card { padding: 21px; }
.cp-customer-settings-card > .cp-meta-list { margin: 17px -21px 0; border-top: 1px solid var(--cp-border); }
.cp-customer-settings-card > p.card-desc { margin: 12px 0 18px; font-size: 10.5px; line-height: 1.55; }
.cp-account-profile { overflow: hidden; }
.cp-account-hero { display: flex; align-items: center; gap: 14px; padding: 22px; }
.cp-account-avatar-large { display: grid; width: 48px; height: 48px; flex: 0 0 48px; place-items: center; border-radius: 10px; color: #0c5e56; background: var(--cp-primary-soft); font-size: 17px; font-weight: 720; }
.cp-account-hero h2 { margin: 0; font-size: 16px; font-weight: 670; letter-spacing: -.02em; }
.cp-account-hero p { margin: 4px 0 0; color: var(--cp-text-2); font-size: 10px; }
.cp-account-profile > .cp-meta-list { border-top: 1px solid var(--cp-border); }
.cp-account-actions { display: flex; flex-wrap: wrap; gap: 8px; padding: 18px 21px; border-top: 1px solid var(--cp-border); }
.cp-customer-settings-card > .cp-account-actions { margin: 0 -21px -21px; }
.cp-account-security { padding: 21px; }
.cp-account-security > p:not(.cp-eyebrow) { margin: 10px 0 18px; color: var(--cp-text-2); font-size: 10px; line-height: 1.55; }

/* Resource pages. */
.cp-filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--cp-border); }
.cp-filter-group { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.cp-input, .cp-select, .cp-authenticated .input-md, .cp-authenticated .field-input, .cp-authenticated input:not([type="checkbox"]):not([type="radio"]), .cp-authenticated select, .cp-authenticated textarea {
  min-height: 37px;
  border: 1px solid var(--cp-border-strong) !important;
  border-radius: 7px !important;
  outline: 0;
  color: var(--cp-text) !important;
  background: #fff !important;
  font-family: inherit !important;
  font-size: 11px !important;
  box-shadow: none !important;
}
.cp-input, .cp-authenticated input:not([type="checkbox"]):not([type="radio"]), .cp-authenticated textarea { padding: 0 11px; }
.cp-select, .cp-authenticated select { padding: 0 30px 0 10px; }
.cp-input:focus, .cp-select:focus, .cp-authenticated input:focus, .cp-authenticated select:focus, .cp-authenticated textarea:focus { border-color: var(--cp-primary) !important; box-shadow: var(--cp-focus) !important; }
.cp-filter-search { width: min(280px, 42vw); }
.cp-label, .cp-authenticated label, .cp-authenticated .field-label { color: var(--cp-text-2) !important; font-size: 10.5px; font-weight: 610; }
.cp-main .muted, .cp-main .card-desc, .cp-main .text-slate-400, .cp-main .text-slate-500 { color: var(--cp-text-2) !important; }
.cp-main code, .cp-main .mono { color: #42525a; background: #f1f4f4; }

.cp-resource-summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.cp-summary-card { padding: 16px; border: 1px solid var(--cp-border); border-radius: var(--cp-radius); background: var(--cp-surface); }
.cp-summary-card span { display: block; color: var(--cp-text-2); font-size: 9.5px; }
.cp-summary-card strong { display: block; margin-top: 3px; color: var(--cp-text); font-size: 22px; font-weight: 630; font-variant-numeric: tabular-nums; }

.cp-provider-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.cp-provider-card { padding: 18px; }
.cp-provider-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cp-provider-identity { display: flex; align-items: center; gap: 10px; }
.cp-provider-logo { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 8px; color: #fff; background: #2547ad; font-size: 11px; font-weight: 760; }
.cp-provider-logo[data-provider="smartlead"] { background: #1f2937; }
.cp-provider-logo[data-provider="emailbison"] { background: #9b4b37; }
.cp-provider-logo[data-provider="plusvibe"] { background: #6c50be; }
.cp-provider-name { font-size: 13px; font-weight: 660; }
.cp-provider-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin-top: 17px; }
.cp-provider-stat { padding: 10px; border-radius: 7px; background: var(--cp-surface-subtle); }
.cp-provider-stat span { display: block; color: var(--cp-text-3); font-size: 8.5px; }
.cp-provider-stat strong { display: block; margin-top: 2px; font-size: 16px; font-weight: 620; font-variant-numeric: tabular-nums; }
.cp-provider-tenants { margin: 14px 0 0; padding: 12px 0 0; border-top: 1px solid var(--cp-border); list-style: none; }
.cp-provider-tenants li { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 4px 0; font-size: 9.5px; }
.cp-provider-tenants a { overflow: hidden; color: var(--cp-text) !important; text-decoration: none; text-overflow: ellipsis; white-space: nowrap; }
.cp-provider-tenants a:hover { color: var(--cp-primary) !important; }

/* Tenant detail. */
.cp-breadcrumb { display: flex; align-items: center; gap: 6px; color: var(--cp-text-3); font-size: 10px; }
.cp-breadcrumb a { color: var(--cp-text-2) !important; text-decoration: none; }
.cp-breadcrumb a:hover { color: var(--cp-primary) !important; }
.cp-detail-grid { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(260px, .7fr); gap: 15px; align-items: start; }
.cp-journey { padding: 8px 18px; }
.cp-journey-step { display: grid; grid-template-columns: 28px minmax(0, 1fr) auto; gap: 12px; align-items: flex-start; padding: 17px 0; border-bottom: 1px solid var(--cp-border); }
.cp-journey-step:last-child { border-bottom: 0; }
.cp-step-index { display: grid; width: 27px; height: 27px; place-items: center; border: 1px solid var(--cp-border); border-radius: 50%; color: var(--cp-text-2); background: var(--cp-surface-subtle); font-size: 9px; font-weight: 700; }
.cp-step-index.is-complete { border-color: #bcdac9; color: var(--cp-success); background: var(--cp-success-soft); }
.cp-step-copy h3 { margin: 1px 0 3px; font-size: 11px; font-weight: 660; }
.cp-step-copy p { margin: 0; color: var(--cp-text-2); font-size: 9.5px; line-height: 1.45; }
.cp-meta-list { margin: 0; }
.cp-meta-list > div { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 12px; padding: 11px 16px; border-bottom: 1px solid var(--cp-border); }
.cp-meta-list > div:last-child { border-bottom: 0; }
.cp-meta-list dt { color: var(--cp-text-3); font-size: 9.5px; }
.cp-meta-list dd { margin: 0; overflow-wrap: anywhere; color: var(--cp-text); font-size: 10px; font-weight: 550; }

/* Full activity page. */
.cp-live-indicator { display: inline-flex; min-height: 28px; align-items: center; gap: 7px; padding: 0 9px; border: 1px solid #cce5d6; border-radius: 999px; color: var(--cp-success); background: var(--cp-success-soft); font-size: 9px; font-weight: 650; }
.cp-live-indicator > span { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: cp-pulse 1.8s ease-in-out infinite; }
.cp-activity-layout { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(270px, .65fr); gap: 15px; align-items: start; }
.cp-timeline { margin: 0; padding: 4px 0; list-style: none; }
.cp-timeline-item { display: grid; grid-template-columns: 17px minmax(0, 1fr) auto; gap: 12px; padding: 15px 18px; border-bottom: 1px solid var(--cp-border); }
.cp-timeline-item:last-child { border-bottom: 0; }
.cp-timeline-marker { position: relative; width: 10px; height: 10px; margin-top: 3px; border: 2px solid #fff; border-radius: 50%; background: var(--cp-text-3); box-shadow: 0 0 0 1px var(--cp-border-strong); }
.cp-timeline-marker.is-success { background: var(--cp-success); }
.cp-timeline-marker.is-warning { background: var(--cp-warning); }
.cp-timeline-marker.is-danger { background: var(--cp-danger); }
.cp-timeline-copy strong { display: block; font-size: 10.5px; font-weight: 600; line-height: 1.45; }
.cp-timeline-copy small { display: block; margin-top: 3px; color: var(--cp-text-3); font-size: 9px; }
.cp-timeline-time { color: var(--cp-text-3); font-size: 9px; font-variant-numeric: tabular-nums; }

/* Existing page components inherit the new visual language. */
.cp-main .banner, .cp-main .alert-banner {
  border-radius: 8px !important;
  color: var(--cp-text) !important;
  background: #fff !important;
  box-shadow: none !important;
}
.cp-main .banner--info, .cp-main .level-info { border-color: #c9ddeb !important; background: var(--cp-running-soft) !important; }
.cp-main .banner--warn, .cp-main .level-warning { border-color: #ead3a6 !important; background: var(--cp-warning-soft) !important; }
.cp-main .banner--error, .cp-main .level-error { border-color: #ebc8c6 !important; background: var(--cp-danger-soft) !important; }
.cp-main .banner--success, .cp-main .level-success { border-color: #c9e0d2 !important; background: var(--cp-success-soft) !important; }
.cp-main .section-nav { position: static; border-color: var(--cp-border); background: var(--cp-surface); }
.cp-main .section-nav a { color: var(--cp-text-2); }
.cp-main .settings-card { padding: 20px; }
.cp-main .settings-card h2, .cp-main .panel-title { color: var(--cp-text); }
.cp-main .meta-list dt { color: var(--cp-text-3); }
.cp-main .meta-list dd { color: var(--cp-text); }
.cp-main .feature-list { color: var(--cp-text-2); }
.cp-main .empty-state { border-color: var(--cp-border); color: var(--cp-text-2); background: var(--cp-surface); }
.cp-main .empty-state-title { color: var(--cp-text); }
.cp-main .connect-shell, .cp-main .connect-card, .cp-main .connect-panel, .cp-main .auth-card, .cp-main .health-card { color: var(--cp-text); }
.cp-main pre, .cp-main .error-pre { border-color: var(--cp-border); color: #33434a; background: #f4f6f6; }

/* Public/auth pages. */
body.cp-public {
  min-height: 100vh;
  margin: 0;
  color: var(--cp-text) !important;
  background: #fbfcfc !important;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
.cp-public-header.app-header {
  position: relative !important;
  display: flex !important;
  width: 100% !important;
  height: 66px !important;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 72px) !important;
  border: 0 !important;
  border-bottom: 1px solid var(--cp-border) !important;
  background: #fff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.cp-brand--public { color: var(--cp-text) !important; }
.cp-brand--public .cp-brand-mark { color: var(--cp-primary); }
.cp-public-nav { display: flex; align-items: center; gap: 20px; }
.cp-public-nav > a:not(.btn) { color: var(--cp-text-2); font-size: 12px; text-decoration: none; }
.cp-public-nav > a:not(.btn):hover { color: var(--cp-text); }
.cp-public .btn { border-radius: 7px; font-family: inherit; }
.cp-public .btn-primary { border-color: var(--cp-primary); color: #fff; background: var(--cp-primary); }
.cp-public-main.app-main { width: 100% !important; max-width: none !important; min-height: calc(100vh - 66px); margin: 0 !important; padding: 40px 20px !important; background: #fbfcfc !important; }
.cp-public .auth-shell { min-height: calc(100vh - 146px); }
.cp-public .auth-panel { border: 1px solid var(--cp-border); border-radius: 12px; color: var(--cp-text); background: #fff; box-shadow: 0 18px 50px rgba(15, 35, 42, .07); }
.cp-public .auth-kicker { color: var(--cp-primary); }
.cp-public .auth-title { color: var(--cp-text); }
.cp-public .auth-lead, .cp-public .auth-meta { color: var(--cp-text-2); }
.cp-public .field-input { border-color: var(--cp-border-strong); color: var(--cp-text); background: #fff; }
.cp-public .field-input:focus { border-color: var(--cp-primary); box-shadow: var(--cp-focus); }

.cp-sidebar-scrim { display: none; }

@keyframes cp-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

@media (max-width: 1180px) {
  .cp-overview-grid { grid-template-columns: minmax(0, 1fr); }
  .cp-overview-side { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cp-overview-side > :first-child:last-child { grid-column: 1 / -1; }
  .cp-provider-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cp-detail-grid, .cp-activity-layout { grid-template-columns: minmax(0, 1fr); }
  .cp-billing-layout { grid-template-columns: minmax(0, 1fr); }
  .cp-customer-settings-grid, .cp-account-layout { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 900px) {
  .cp-sidebar { transform: translateX(-100%); box-shadow: 18px 0 45px rgba(4, 19, 26, .2); }
  .cp-sidebar-close, .cp-mobile-menu { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 7px; color: inherit; cursor: pointer; }
  .cp-sidebar-close:hover { background: rgba(255, 255, 255, .08); }
  .cp-sidebar-close svg, .cp-mobile-menu svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
  .cp-mobile-menu { flex: 0 0 36px; color: var(--cp-text-2); }
  .cp-mobile-menu:hover { background: var(--cp-surface-hover); }
  .cp-stage { margin-left: 0; }
  .cp-authenticated.cp-sidebar-open .cp-sidebar { transform: translateX(0); }
  .cp-authenticated.cp-sidebar-open .cp-sidebar-scrim { position: fixed; inset: 0; z-index: 80; display: block; border: 0; background: rgba(5, 20, 27, .38); }
  .cp-collapse { display: none; }
  .cp-search { width: min(420px, 55vw); }
  .cp-metrics, .cp-main .kpi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .cp-topbar.app-header { gap: 8px; padding: 0 12px; }
  .cp-search { width: auto; flex: 1; }
  .cp-search kbd, .cp-topbar-link span, .cp-account-label, .cp-account-menu summary > svg { display: none; }
  .cp-search input { padding-right: 10px; }
  .cp-main.app-main { padding: 20px 13px 36px; }
  .cp-page-header, .cp-main .page-header { flex-direction: column; align-items: stretch; }
  .cp-header-actions .btn { flex: 1; text-align: center; }
  .cp-metrics, .cp-main .kpi-grid { grid-template-columns: minmax(0, 1fr); }
  .cp-metric-card { min-height: 96px; }
  .cp-overview-side { display: flex; }
  .cp-provider-grid, .cp-resource-summary { grid-template-columns: minmax(0, 1fr); }
  .cp-filter-bar { align-items: stretch; flex-direction: column; }
  .cp-filter-search { width: 100%; }
  .cp-activity-layout { grid-template-columns: minmax(0, 1fr); }
  .cp-operator-billing, .cp-settings-callout { align-items: stretch; flex-direction: column; }
  .cp-settings-callout > span { max-width: none; text-align: left; }
  .cp-table { min-width: 760px; }
  .cp-public-header.app-header { padding: 0 16px; }
  .cp-public-nav > a:not(.btn) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
