/* ============================================================
 * RodiAi · Cloudflare Pages frontend
 * 1:1 visual port of RodiCRM (Ahmet Demir CRM) shell.
 * Source baseline: ahmet-demir-crm/core/app/shell/src/themes/suite8
 * ------------------------------------------------------------
 *   sidebar 224px · topbar 56px · Inter font
 *   brand green #3C9470 · primary-action blue #2563eb
 * ============================================================ */

* { box-sizing: border-box; }

:root {
  /* brand */
  --mdd-brand-primary: #3c9470;
  --mdd-brand-secondary: #2f785b;
  --mdd-brand-accent: #46a67d;
  --mdd-brand-light: #e6f4ee;

  /* surfaces */
  --bg-page: #f4f6f8;
  --bg-card: #ffffff;
  --bg-topbar: #ffffff;
  --bg-sidebar: #ffffff;
  --bg-hover: #f5f7f9;
  --bg-selected: rgba(60, 148, 112, 0.08);

  /* primary-action blue (CSV/+New buttons) */
  --action-blue: #2563eb;
  --action-blue-dark: #1e4ed8;
  --action-blue-light: #dbe6fe;
  --action-blue-outline: rgba(37, 99, 235, 0.18);

  /* text */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-soft: #94a3b8;

  /* borders */
  --border-light: #e6ebef;
  --border: #d8dee4;
  --border-strong: #cbd5e1;

  /* status */
  --status-success: #16a34a;
  --status-success-bg: #dcfce7;
  --status-warn: #d97706;
  --status-warn-bg: #fef3c7;
  --status-danger: #dc2626;
  --status-danger-bg: #fee2e2;

  /* dims */
  --topbar-h: 56px;
  --sidebar-w: 224px;

  /* radius / shadow */
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 8px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-focus: 0 0 0 3px rgba(60, 148, 112, 0.18);
  --shadow-action: 0 0 0 3px rgba(37, 99, 235, 0.18);

  --font-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html, body { margin: 0; padding: 0; height: 100%; }
body {
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button { font-family: inherit; }

/* SHELL */
.crm-shell {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  grid-template-rows: var(--topbar-h) 1fr;
  grid-template-areas: "sidebar topbar" "sidebar content";
  min-height: 100vh;
}

/* TOPBAR */
.crm-topbar {
  grid-area: topbar;
  background: var(--bg-topbar);
  border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center;
  padding: 0 20px;
  height: var(--topbar-h);
  position: sticky; top: 0; z-index: 30;
  gap: 16px;
}
.crm-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.crm-breadcrumb-home { display: inline-flex; align-items: center; width: 18px; height: 18px; color: var(--text-muted); }
.crm-breadcrumb-sep { color: var(--text-soft); }
.crm-breadcrumb-current { color: var(--text-primary); font-weight: 500; }

.crm-topbar-search { flex: 1; display: flex; justify-content: center; }
.crm-topbar-search-inner { position: relative; width: 100%; max-width: 420px; }
.crm-topbar-search input {
  width: 100%; height: 36px;
  padding: 0 14px 0 36px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: #f8fafc;
  color: var(--text-primary);
  font-family: inherit; font-size: 13px;
}
.crm-topbar-search input:focus { outline: none; background: #fff; border-color: var(--mdd-brand-primary); box-shadow: var(--shadow-focus); }
.crm-topbar-search input:disabled { cursor: not-allowed; color: var(--text-soft); }
.crm-topbar-search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; color: var(--text-soft); pointer-events: none; }

.crm-topbar-actions { display: flex; align-items: center; gap: 4px; }
.crm-icon-btn {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: none;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer; position: relative;
  transition: background 140ms ease, color 140ms ease;
  text-decoration: none;
}
.crm-icon-btn:hover { background: var(--bg-hover); color: var(--text-primary); }
.crm-icon-btn.is-disabled { cursor: default; color: var(--text-soft); }
.crm-icon-btn.is-disabled:hover { background: transparent; color: var(--text-soft); }
.crm-icon-btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.7; fill: none; }
.crm-icon-btn-badge { position: absolute; top: 7px; right: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--mdd-brand-primary); box-shadow: 0 0 0 2px var(--bg-topbar); }

.crm-lang { display: inline-flex; background: #f1f5f9; border-radius: 999px; padding: 3px; margin: 0 8px 0 4px; }
.lang-btn { border: none; background: transparent; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; color: var(--text-muted); padding: 4px 12px; border-radius: 999px; cursor: pointer; }
.lang-btn.active { background: #fff; color: var(--mdd-brand-secondary); box-shadow: var(--shadow-sm); }

.crm-user { display: flex; align-items: center; gap: 10px; padding-left: 12px; margin-left: 8px; border-left: 1px solid var(--border-light); height: 36px; }
.crm-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--mdd-brand-accent), var(--mdd-brand-secondary)); color: #fff; display: grid; place-items: center; font-weight: 600; font-size: 13px; }
.crm-user-info { line-height: 1.1; }
.crm-user-info strong { font-size: 13px; color: var(--text-primary); font-weight: 600; }
.crm-user-info span { font-size: 11px; color: var(--text-muted); }

/* SIDEBAR */
.crm-sidebar {
  grid-area: sidebar;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border-light);
  position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.crm-sidebar-brand {
  height: var(--topbar-h);
  display: flex; align-items: center; gap: 10px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}
.crm-sidebar-brand-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--mdd-brand-accent) 0%, var(--mdd-brand-secondary) 100%);
  color: #fff; font-weight: 700; font-size: 14px;
  display: grid; place-items: center;
  box-shadow: 0 4px 10px -3px rgba(60, 148, 112, 0.45);
}
.crm-sidebar-brand-name { font-weight: 700; font-size: 16px; color: var(--text-primary); letter-spacing: -0.01em; }

.crm-sidebar-search { padding: 12px 12px 6px; }
.crm-sidebar-search input {
  width: 100%; height: 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: #f8fafc;
  color: var(--text-primary);
  font-family: inherit; font-size: 12px;
  padding: 0 10px;
}
.crm-sidebar-search input:focus { outline: none; background: #fff; border-color: var(--mdd-brand-primary); }

.crm-sidebar-nav { flex: 1; overflow-y: auto; padding: 6px 8px 16px; }
.crm-sidebar-nav::-webkit-scrollbar { width: 4px; }
.crm-sidebar-nav::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.crm-sidebar-section { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; color: var(--text-soft); text-transform: uppercase; padding: 10px 12px 4px; }

.crm-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 13px; font-weight: 500;
  text-decoration: none; cursor: default; user-select: none;
  margin-bottom: 1px;
  transition: background 130ms ease, color 130ms ease, border-color 130ms ease;
  position: relative;
  border: 1px solid transparent;
}
.crm-nav-item svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 1.6; fill: none; flex-shrink: 0; }
.crm-nav-item:hover { background: var(--bg-hover); color: var(--text-primary); }
.crm-nav-item.is-disabled { color: var(--text-muted); }
.crm-nav-item.is-disabled:hover { background: var(--bg-hover); color: var(--text-secondary); }
.crm-nav-item.is-active {
  background: var(--bg-selected);
  border-color: rgba(60, 148, 112, 0.24);
  color: var(--mdd-brand-secondary);
  font-weight: 600;
}
.crm-nav-item.is-active svg { color: var(--mdd-brand-primary); }
.crm-nav-item.is-active .crm-nav-badge { background: var(--mdd-brand-primary); color: #fff; }
.crm-nav-badge {
  margin-left: auto;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--mdd-brand-light);
  color: var(--mdd-brand-secondary);
  text-transform: uppercase;
}
.crm-sidebar-footer { border-top: 1px solid var(--border-light); padding: 10px 16px; font-size: 11px; color: var(--text-muted); line-height: 1.45; }
.crm-sidebar-footer strong { color: var(--text-primary); font-weight: 600; }

/* CONTENT */
.crm-content { grid-area: content; padding: 24px 32px 60px; overflow-y: auto; }
.crm-page-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.crm-page-head-text h1 { margin: 0 0 6px; font-size: 26px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.015em; line-height: 1.2; }
.crm-page-head-text p { margin: 0; font-size: 13.5px; color: var(--text-muted); }
.crm-page-head-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* BUTTONS */
.crm-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 36px; padding: 0 14px;
  border-radius: var(--radius-sm); border: 1px solid transparent;
  font-family: inherit; font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease, box-shadow 180ms ease, transform 120ms ease;
  white-space: nowrap; text-decoration: none;
}
.crm-btn:focus-visible { outline: none; box-shadow: var(--shadow-action); }
.crm-btn svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; }
.crm-btn-primary { background: var(--action-blue); color: #fff; }
.crm-btn-primary:hover:not(:disabled) { background: var(--action-blue-dark); transform: translateY(-1px); box-shadow: 0 4px 10px -4px rgba(37, 99, 235, 0.45); }
.crm-btn-primary:disabled { background: #cbd5e1; color: #fff; cursor: not-allowed; }
.crm-btn-outline { background: #fff; border-color: var(--action-blue-outline); color: var(--action-blue); }
.crm-btn-outline:hover { background: #f8faff; border-color: var(--action-blue); }
.crm-btn-ghost { background: transparent; color: var(--text-secondary); border-color: var(--border-light); }
.crm-btn-ghost:hover { border-color: var(--border-strong); color: var(--text-primary); background: #fff; }
.crm-btn-success { background: var(--mdd-brand-primary); color: #fff; }
.crm-btn-success:hover:not(:disabled) { background: var(--mdd-brand-secondary); transform: translateY(-1px); box-shadow: 0 4px 10px -4px rgba(60, 148, 112, 0.45); }
.crm-btn-success:disabled { background: #cbd5e1; cursor: not-allowed; }

/* CARDS / FORM */
.crm-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-sm); }
.crm-label { display: flex; align-items: center; justify-content: space-between; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.crm-label-counter { color: var(--text-soft); font-weight: 500; letter-spacing: 0.04em; }

.crm-input, .crm-textarea, .crm-select {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: inherit; font-size: 14px;
  color: var(--text-primary); line-height: 1.55;
  transition: border-color 130ms ease, box-shadow 130ms ease;
}
.crm-textarea { min-height: 220px; resize: vertical; }
.crm-input:focus, .crm-textarea:focus, .crm-select:focus { outline: none; border-color: var(--mdd-brand-primary); box-shadow: var(--shadow-focus); }
.crm-input::placeholder, .crm-textarea::placeholder { color: var(--text-soft); }

.crm-mode-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 22px; }
@media (max-width: 960px) { .crm-mode-grid { grid-template-columns: repeat(2, 1fr); } }

.crm-mode-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-align: left; cursor: pointer;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color 150ms ease, box-shadow 200ms ease, transform 180ms ease, background 150ms ease;
}
.crm-mode-card:hover { border-color: var(--action-blue-outline); box-shadow: var(--shadow); transform: translateY(-1px); }
.crm-mode-card.active {
  border-color: var(--action-blue);
  background: linear-gradient(180deg, #f0f6ff 0%, #fff 75%);
  box-shadow: 0 0 0 1px var(--action-blue) inset, 0 4px 12px -6px rgba(37, 99, 235, 0.35);
}
.crm-mode-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 2px; }
.crm-mode-icon { width: 32px; height: 32px; border-radius: var(--radius-sm); background: var(--bg-hover); display: grid; place-items: center; color: var(--text-muted); }
.crm-mode-icon svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.crm-mode-card.active .crm-mode-icon { background: var(--action-blue-light); color: var(--action-blue-dark); }
.crm-mode-card-label { font-weight: 600; font-size: 14px; color: var(--text-primary); }
.crm-mode-card.active .crm-mode-card-label { color: var(--action-blue-dark); }
.crm-mode-card-desc { font-size: 12px; color: var(--text-muted); line-height: 1.45; }

.crm-work-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: 16px; align-items: start; }
@media (max-width: 960px) { .crm-work-grid { grid-template-columns: 1fr; } }
.crm-side-rows { display: flex; flex-direction: column; gap: 14px; }
.crm-help { font-size: 11.5px; color: var(--text-muted); line-height: 1.5; }

.crm-toggle { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); cursor: pointer; }
.crm-toggle input { accent-color: var(--mdd-brand-primary); width: 16px; height: 16px; }

.crm-actions-bar { margin-top: 20px; padding-top: 16px; border-top: 1px dashed var(--border-light); display: flex; justify-content: flex-end; gap: 8px; }

/* STATUS / RESULT */
.crm-status { display: none; margin-top: 16px; padding: 12px 14px; border-radius: var(--radius-sm); background: #f0f9ff; border: 1px solid #bae6fd; color: #075985; align-items: center; gap: 10px; font-size: 13px; }
.crm-status.is-visible { display: flex; }
.crm-status.is-error { background: var(--status-danger-bg); border-color: #fecaca; color: #991b1b; }
.crm-status.is-warn { background: var(--status-warn-bg); border-color: #fde68a; color: #92400e; }
.crm-status-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: crm-pulse 1.4s ease-in-out infinite; }
@keyframes crm-pulse { 0%,100%{transform:scale(1);opacity:1}50%{transform:scale(1.5);opacity:.55} }

.crm-result { display: none; margin-top: 28px; }
.crm-result.is-visible { display: block; }
.crm-result-head { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px solid var(--border-light); padding-bottom: 10px; margin-bottom: 12px; gap: 18px; flex-wrap: wrap; }
.crm-result-head h2 { margin: 0; font-size: 18px; font-weight: 600; color: var(--text-primary); letter-spacing: -0.005em; }
.crm-result-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.crm-result-pill { background: var(--mdd-brand-light); color: var(--mdd-brand-secondary); padding: 3px 9px; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.crm-result-body { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius); padding: 20px 22px; font-size: 14.5px; line-height: 1.65; color: var(--text-primary); white-space: pre-wrap; box-shadow: var(--shadow-sm); }

.crm-result-views { display: none; align-items: center; gap: 12px; margin-bottom: 10px; }
.crm-result-views.is-visible { display: flex; }
.crm-tab-row { display: inline-flex; background: #fff; border: 1px solid var(--border-light); border-radius: 999px; padding: 3px; }
.crm-tab { border: none; background: transparent; font-family: inherit; font-size: 11.5px; font-weight: 600; letter-spacing: 0.05em; color: var(--text-muted); padding: 5px 12px; border-radius: 999px; cursor: pointer; }
.crm-tab.active { background: var(--action-blue); color: #fff; }

.crm-attempts { margin-top: 16px; font-size: 12px; color: var(--text-muted); }
.crm-attempts summary { cursor: pointer; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 0; }
.crm-attempts ul { margin: 6px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 3px; font-variant-numeric: tabular-nums; }
.crm-attempts li { padding: 4px 10px; background: #f8fafc; border-radius: 4px; }
.crm-attempts li.is-ok { color: var(--mdd-brand-secondary); }
.crm-attempts li.is-fail { color: var(--status-danger); }

/* DIFF segments */
.diff-seg-equal, .rodi-diff-seg-equal { color: var(--text-secondary); }
.diff-seg-insert, .rodi-diff-seg-insert { background: rgba(60, 148, 112, 0.14); color: var(--mdd-brand-secondary); padding: 0 2px; border-radius: 3px; }
.diff-seg-replace, .rodi-diff-seg-replace { background: rgba(245, 158, 11, 0.16); color: #92400e; padding: 0 2px; border-radius: 3px; }
.diff-seg-delete, .rodi-diff-seg-delete { background: rgba(239, 68, 68, 0.12); color: #991b1b; text-decoration: line-through; padding: 0 2px; border-radius: 3px; }

/* PORTAL */
.crm-portal-primary {
  background:
    radial-gradient(circle at 85% -20%, rgba(37, 99, 235, 0.16), transparent 60%),
    linear-gradient(180deg, #fff, #f5faff);
  border: 1px solid var(--action-blue-outline);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 28px;
  box-shadow: 0 8px 30px -16px rgba(37, 99, 235, 0.32);
}
.crm-portal-primary h2 { margin: 0 0 4px; font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.crm-portal-primary p { margin: 0 0 6px; font-size: 14px; color: var(--text-secondary); max-width: 56ch; }
.crm-portal-primary-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(37, 99, 235, 0.12); color: var(--action-blue-dark); padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }

.crm-portal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 1200px) { .crm-portal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .crm-portal-grid { grid-template-columns: 1fr; } }
.crm-portal-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius); padding: 18px; display: flex; flex-direction: column; gap: 6px; position: relative; min-height: 130px; }
.crm-portal-card.is-disabled { background: #fafbfc; color: var(--text-muted); }
.crm-portal-card-title { font-size: 14.5px; font-weight: 600; color: var(--text-primary); letter-spacing: -0.005em; }
.crm-portal-card.is-disabled .crm-portal-card-title { color: var(--text-secondary); }
.crm-portal-card-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.45; flex: 1; }
.crm-portal-card-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-soft); }
.crm-portal-card-tag.is-locked::before { content: "🔒 "; font-size: 11px; }

/* LOGIN */
.crm-login { min-height: 100vh; display: grid; place-items: center; background:
  radial-gradient(circle at 20% 20%, rgba(60, 148, 112, 0.08), transparent 50%),
  radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.06), transparent 50%),
  var(--bg-page); padding: 24px;
}
.crm-login-card { background: #fff; border: 1px solid var(--border-light); border-radius: 16px; padding: 36px 34px 30px; width: 100%; max-width: 380px; box-shadow: 0 24px 50px -25px rgba(15, 23, 42, 0.2), var(--shadow-sm); }
.crm-login-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.crm-login-brand-mark { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--mdd-brand-accent), var(--mdd-brand-secondary)); color: #fff; font-weight: 700; font-size: 18px; display: grid; place-items: center; box-shadow: 0 10px 22px -8px rgba(60, 148, 112, 0.55); }
.crm-login-brand h1 { margin: 0; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; color: var(--text-primary); }
.crm-login-brand p { margin: 1px 0 0; font-size: 11px; font-weight: 500; letter-spacing: 0.14em; color: var(--text-muted); text-transform: uppercase; }
.crm-login-card h2 { margin: 14px 0 4px; font-size: 20px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }
.crm-login-card .crm-help { margin-bottom: 18px; }
.crm-login-error { margin-top: 14px; padding: 10px 12px; border-radius: var(--radius-sm); background: var(--status-danger-bg); border: 1px solid #fecaca; color: #991b1b; font-size: 12.5px; }
.crm-login-lang { display: flex; justify-content: flex-end; margin-bottom: 4px; }
.crm-login-foot { margin-top: 22px; text-align: center; font-size: 11px; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* utilities */
.hidden { display: none !important; }
.crm-divider { height: 1px; background: var(--border-light); margin: 22px 0; }
