/* Hallmark · pre-emit critique: P4 H4 E4 S5 R4 V4
 * audience: BrickBrick delivery staff · use: client operations and handoff · tone: utilitarian editorial
 */
/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --black:         #0a0a0a;
  --deep:          #111111;
  --surface:       #181818;
  --surface2:      #222222;
  --border:        #2a2a2a;
  --border-light:  #333333;
  --silver:        #c0c0c0;
  --silver-dim:    #8c8c8c;
  --silver-bright: #e8e8e8;
  --white:         #f5f5f5;
  --gold:          #b8a878;
  --red-soft:      #ec7063;
  --green-soft:    #58d68d;
  --blue-soft:     #5dade2;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html,
body {
  overflow-x: clip;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 400;
  transform: translateY(-160%);
  border: 1px solid var(--silver-bright);
  border-radius: 2px;
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  text-decoration: none;
}

.skip-link:focus { transform: translateY(0); }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--blue-soft);
  outline-offset: 3px;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ─── LOGIN ──────────────────────────────────────────────────────────────── */
#loginScreen {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 100;
}

.login-box {
  width: min(380px, calc(100% - 2rem));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px 40px;
  background: var(--deep);
  animation: fadeUp 0.4s ease both;
}

.login-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.login-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 5px;
  color: var(--silver-bright);
  margin-bottom: 4px;
}

.login-sub {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--silver-dim);
  margin-bottom: 0;
  text-transform: uppercase;
}

.portal-logo-mark {
  width: 42px;
  height: 42px;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: linear-gradient(135deg, rgba(93, 173, 226, 0.18), rgba(184, 168, 120, 0.12));
  object-fit: contain;
  flex-shrink: 0;
}

.login-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--silver-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.login-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.15s ease;
  margin-bottom: 18px;
}
.login-input:focus { border-color: var(--silver-dim); }

.login-helper-row {
  display: flex;
  justify-content: flex-end;
  margin: -6px 0 12px;
}

.reset-link-btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  color: var(--silver-dim);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.reset-link-btn:hover:not(:disabled) {
  border-color: var(--silver-dim);
  color: var(--silver);
  background: rgba(255,255,255,0.05);
}

.reset-link-btn:disabled {
  opacity: 0.55;
  cursor: wait;
}

.login-btn {
  width: 100%;
  background: var(--silver);
  color: var(--black);
  border: none;
  border-radius: 6px;
  padding: 13px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.login-btn:hover:not(:disabled) { background: var(--silver-bright); }
.login-btn:disabled { opacity: 0.5; cursor: wait; }

.login-error {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--red-soft);
  margin-top: 12px;
  text-align: center;
  min-height: 16px;
  letter-spacing: 1px;
}

.login-error.is-success {
  color: var(--green-soft);
}

.back-link {
  display: inline-block;
  margin-top: 16px;
  font-family: 'DM Mono', monospace;
  color: var(--silver-dim);
  text-decoration: none;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.15s;
}
.back-link:hover { color: var(--silver); }

/* ─── APP LAYOUT ─────────────────────────────────────────────────────────── */
#app { display: none; }
#app.visible {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 100vh;
}

/* ─── SIDEBAR ────────────────────────────────────────────────────────────── */
.sidebar {
  background: var(--deep);
  border-right: 1px solid var(--border);
  padding: 32px 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.brand {
  padding: 0 24px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 4px;
  color: var(--silver-bright);
}

.brand-sub {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--silver-dim);
  letter-spacing: 2px;
  margin-top: 3px;
  text-transform: uppercase;
}

.portal-logo-sidebar {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.nav { padding: 20px 0; flex: 1; }

.nav-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--silver-dim);
  text-transform: uppercase;
  padding: 0 24px;
  margin: 16px 0 8px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 24px;
  cursor: pointer;
  font-size: 13px;
  color: var(--silver-dim);
  transition: all 0.15s ease;
  border-left: 2px solid transparent;
  user-select: none;
}
.nav-item:hover { color: var(--silver); background: rgba(255,255,255,0.02); }
.nav-item.active { color: var(--white); border-left-color: var(--silver); background: rgba(255,255,255,0.03); }

.nav-icon { font-size: 13px; width: 16px; text-align: center; flex-shrink: 0; }

.sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.signed-in-as {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--silver-dim);
  margin-bottom: 10px;
  word-break: break-all;
}

.logout-btn {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--silver-dim);
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
  width: 100%;
  transition: all 0.15s ease;
  text-transform: uppercase;
}
.logout-btn:hover { color: var(--silver); border-color: var(--silver-dim); }

/* ─── MAIN ───────────────────────────────────────────────────────────────── */
.main {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  border-bottom: 1px solid var(--border);
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--black);
  z-index: 10;
}

.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 4px;
  color: var(--silver-bright);
}

.topbar-right { display: flex; align-items: center; gap: 10px; }

.btn {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-transform: uppercase;
}

.btn-ghost {
  background: transparent;
  color: var(--silver-dim);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--silver); border-color: var(--silver-dim); }

.btn-primary {
  background: var(--silver);
  color: var(--black);
  border: none;
}
.btn-primary:hover { background: var(--silver-bright); }

.btn-danger {
  background: rgba(192,57,43,0.15);
  color: var(--red-soft);
  border: 1px solid rgba(192,57,43,0.3);
}
.btn-danger:hover { background: rgba(192,57,43,0.25); }

/* ─── TOP NAV TABS ───────────────────────────────────────────────────────── */
.top-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: var(--deep);
  padding: 0 36px;
  position: sticky;
  top: 63px;
  z-index: 9;
  overflow-x: auto;
  scrollbar-width: thin;
}

.top-nav-item {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 20px;
  cursor: pointer;
  color: var(--silver-dim);
  border-bottom: 2px solid transparent;
  transition: all 0.15s ease;
  user-select: none;
  white-space: nowrap;
}
.top-nav-item:hover { color: var(--silver); }
.top-nav-item.active { color: var(--silver-bright); border-bottom-color: var(--silver); }

/* ─── CONTENT & PAGES ────────────────────────────────────────────────────── */
.content {
  padding: 28px 36px 40px;
  flex: 1;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page { display: none; }
.page.active { display: block; }

#page-pipeline.page.active {
  display: grid;
  align-content: start;
  gap: 12px;
}

#page-pipeline .pipeline-radar,
#page-pipeline .kanban,
#page-pipeline .lead-list-builder {
  margin: 0;
}

#page-pipeline .pipeline-radar { order: 1; }
#page-pipeline .kanban { order: 2; }
#page-pipeline .lead-list-builder {
  order: 3;
  margin-top: 14px;
}

.my-work-summary {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.my-work-pill {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 6px 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--silver-dim);
  text-transform: uppercase;
}

.my-work-pill strong {
  color: var(--silver-bright);
  font-weight: 500;
}

.my-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.my-work-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 12px;
}

.my-work-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.my-work-list {
  display: grid;
  gap: 8px;
}

.my-work-inline-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.my-work-inline-tools.my-work-sort-tools {
  justify-content: flex-start;
  gap: 6px;
  margin-bottom: 8px;
}

.my-work-inline-tools.my-work-sort-tools .sort-label {
  margin-right: 2px;
}

.my-work-item {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface2);
  color: inherit;
  text-align: left;
  padding: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.my-work-item:hover {
  border-color: var(--silver-dim);
  transform: translateY(-1px);
}

.my-work-item.is-done {
  opacity: 0.72;
}

.my-work-item.is-stale:not(.is-done) {
  border-color: rgba(184, 168, 120, 0.35);
  background: rgba(184, 168, 120, 0.05);
}

.my-work-task-check {
  margin-right: 6px;
  vertical-align: middle;
}

.my-work-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.my-work-item-row + .my-work-item-row {
  margin-top: 7px;
}

.my-work-item-title {
  color: var(--silver-bright);
  font-size: 13px;
}

.my-work-item-copy {
  margin-top: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--silver-dim);
  line-height: 1.45;
}

.my-work-item .card-tag {
  margin-top: 0;
}

.my-call-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 8px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.my-call-chip.overdue {
  color: var(--red-soft);
  border-color: rgba(236, 112, 99, 0.35);
  background: rgba(236, 112, 99, 0.1);
}

.my-call-chip.today {
  color: var(--gold);
  border-color: rgba(184, 168, 120, 0.35);
  background: rgba(184, 168, 120, 0.12);
}

/* ─── TASK SORT BAR ──────────────────────────────────────────────────────── */
.sort-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.sort-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-right: 4px;
}

.sort-pill {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--silver-dim);
  cursor: pointer;
  transition: all 0.15s;
}
.sort-pill:hover { color: var(--silver); border-color: var(--silver-dim); }
.sort-pill.active {
  background: var(--surface);
  color: var(--silver-bright);
  border-color: var(--silver-dim);
}
.sort-pill:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.sort-dir {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  padding: 5px 9px;
  border-radius: 3px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--silver-dim);
  cursor: pointer;
  transition: all 0.15s;
  margin-left: 2px;
}
.sort-dir:hover { color: var(--silver); border-color: var(--silver-dim); }

/* Pipeline radar */
.pipeline-radar {
  margin-bottom: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
}

.pipeline-radar-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.pipeline-radar-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver-bright);
  margin-bottom: 4px;
}

.pipeline-radar-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--silver-dim);
}

.pipeline-radar-metrics {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pipeline-radar-metric {
  min-width: 120px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
}

.pipeline-radar-metric-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 4px;
}

.pipeline-radar-metric-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--silver-bright);
  line-height: 1;
}

.pipeline-radar-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.pipeline-radar-actions {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pipeline-radar-action-btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface2);
  color: var(--silver);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.pipeline-radar-action-btn:hover {
  border-color: var(--silver-dim);
  color: var(--silver-bright);
}

.pipeline-radar-action-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pipeline-radar-action-context {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--silver-dim);
}

.pipeline-focus-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--silver-dim);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.pipeline-focus-chip strong {
  color: var(--silver);
  font-size: 11px;
  font-weight: 500;
}

.pipeline-focus-chip:hover {
  border-color: var(--silver-dim);
  color: var(--silver);
}

.pipeline-focus-chip.active {
  border-color: var(--silver-dim);
  color: var(--silver-bright);
  background: rgba(255,255,255,0.04);
}

.pipeline-focus-chip.active strong {
  color: var(--silver-bright);
}

.pipeline-radar-active {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--silver-dim);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.pipeline-radar-clear {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--silver-dim);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 9px;
  cursor: pointer;
}

.pipeline-radar-clear:hover {
  border-color: var(--silver-dim);
  color: var(--silver);
}

.pipeline-radar-notice {
  margin-top: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(88, 214, 141, 0.3);
  border-radius: 6px;
  background: rgba(88, 214, 141, 0.08);
  color: #a9e9c3;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
}

.pipeline-radar-notice.is-error {
  border-color: rgba(236, 112, 99, 0.35);
  background: rgba(236, 112, 99, 0.08);
  color: #f2b6ae;
}

.sales-brief-queue {
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  padding: 10px;
}

.sales-brief-head {
  display: grid;
  gap: 4px;
  margin-bottom: 8px;
}

.sales-brief-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver-bright);
}

.sales-brief-subtitle {
  font-size: 11px;
  color: var(--silver-dim);
}

.sales-brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.sales-brief-card {
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--surface2);
  padding: 10px;
}

.sales-brief-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.sales-brief-card-title {
  font-size: 13px;
  color: var(--white);
}

.sales-brief-meta {
  margin-top: 4px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--silver-dim);
}

.sales-brief-summary {
  margin-top: 7px;
  font-size: 12px;
  color: var(--silver);
  line-height: 1.5;
}

.sales-brief-angle {
  margin-top: 7px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--silver-dim);
  line-height: 1.45;
}

.sales-brief-actions {
  margin-top: 9px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* Lead list generator */
.lead-list-builder {
  margin-bottom: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
}

.lead-list-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.lead-list-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver-bright);
  margin-bottom: 4px;
}

.lead-list-subtitle {
  font-size: 12px;
  color: var(--silver-dim);
}

.lead-list-actions {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.lead-list-filter-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.lead-list-filter-group {
  display: grid;
  gap: 5px;
}

.lead-list-filter-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.lead-list-filter-grid .form-select,
.lead-list-filter-grid .form-input {
  padding: 8px 9px;
  font-size: 11px;
}

.lead-list-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 10px;
}

.lead-list-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver-dim);
  background: rgba(255,255,255,0.02);
}

.lead-list-pill strong {
  color: var(--silver-bright);
  font-size: 10px;
  letter-spacing: 0;
}

.lead-research-panel {
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255,255,255,0.015);
}

.research-source-score {
  margin: 0 0 10px;
  border: 1px solid rgba(93,173,226,0.22);
  border-radius: 8px;
  padding: 10px;
  background: rgba(93,173,226,0.05);
}

.lead-source-score-table td {
  vertical-align: top;
}

.lead-research-guardrail {
  margin-bottom: 10px;
  border: 1px solid rgba(184,168,120,0.3);
  border-radius: 6px;
  background: rgba(184,168,120,0.08);
  color: var(--gold);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  line-height: 1.45;
  padding: 7px 9px;
}

.lead-research-table td {
  vertical-align: top;
}

.research-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 3px 8px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.research-status-pending {
  color: var(--gold);
  border-color: rgba(184,168,120,0.35);
  background: rgba(184,168,120,0.12);
}

.research-status-approved {
  color: var(--blue-soft);
  border-color: rgba(93,173,226,0.35);
  background: rgba(93,173,226,0.1);
}

.research-status-imported {
  color: var(--green-soft);
  border-color: rgba(88,214,141,0.35);
  background: rgba(88,214,141,0.1);
}

.research-status-rejected {
  color: var(--red-soft);
  border-color: rgba(236,112,99,0.35);
  background: rgba(236,112,99,0.1);
}

.lead-list-status {
  margin-bottom: 10px;
  border: 1px solid rgba(88, 214, 141, 0.3);
  border-radius: 6px;
  background: rgba(88, 214, 141, 0.08);
  color: #a9e9c3;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  padding: 7px 10px;
}

.lead-list-status.is-error {
  border-color: rgba(236, 112, 99, 0.35);
  background: rgba(236, 112, 99, 0.08);
  color: #f2b6ae;
}

.lead-list-wrap {
  border: 1px solid var(--border);
  border-radius: 7px;
  background: rgba(255,255,255,0.01);
  overflow: auto;
}

table.lead-list-table {
  width: 100%;
  border-collapse: collapse;
}

table.lead-list-table th {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver-dim);
  text-align: left;
  padding: 9px 12px;
  border-bottom: 1px solid var(--border);
  font-weight: 400;
  white-space: nowrap;
}

table.lead-list-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--silver);
  vertical-align: middle;
}

table.lead-list-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

.lead-list-rank {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--silver-dim);
}

.lead-list-name {
  color: var(--white);
  font-size: 13px;
}

.lead-list-subtext {
  margin-top: 3px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--silver-dim);
  line-height: 1.4;
}

.lead-list-email {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--silver-bright);
}

.lead-list-open-btn {
  font-size: 9px;
  letter-spacing: 1px;
}

.lead-followup-chip,
.lead-signal-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 8px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lead-followup-overdue {
  color: var(--red-soft);
  border-color: rgba(236, 112, 99, 0.35);
  background: rgba(236, 112, 99, 0.1);
}

.lead-followup-today {
  color: var(--gold);
  border-color: rgba(184, 168, 120, 0.35);
  background: rgba(184, 168, 120, 0.12);
}

.lead-followup-next {
  color: var(--blue-soft);
  border-color: rgba(93, 173, 226, 0.35);
  background: rgba(93, 173, 226, 0.1);
}

.lead-followup-later {
  color: var(--silver-dim);
  border-color: var(--border);
  background: rgba(136, 136, 136, 0.08);
}

.lead-signal-chip {
  color: var(--gold);
  border-color: rgba(184, 168, 120, 0.35);
  background: rgba(184, 168, 120, 0.1);
}

.merge-assist-list {
  display: grid;
  gap: 10px;
}

.merge-assist-row {
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--surface2);
  padding: 10px;
}

.merge-assist-row.primary {
  border-color: rgba(93, 173, 226, 0.35);
  background: rgba(93, 173, 226, 0.08);
}

.merge-assist-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.merge-assist-title {
  color: var(--white);
  font-size: 13px;
}

.merge-assist-note {
  margin-top: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--silver-dim);
  line-height: 1.45;
}

.merge-assist-actions {
  margin-top: 8px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.merge-assist-badge {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 8px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver-dim);
  background: rgba(255,255,255,0.03);
}

table.lead-list-table tr:last-child td {
  border-bottom: 0;
}

/* ─── KANBAN ─────────────────────────────────────────────────────────────── */
.kanban {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: start;
}

.kanban-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  min-height: 300px;
}

.kanban-col.is-collapsed {
  min-height: auto;
}

.kanban-dropzone {
  min-height: 56px;
  border-radius: 6px;
  outline: 1px dashed transparent;
  outline-offset: 3px;
  transition: outline-color 0.15s ease, background 0.15s ease;
}
.kanban-dropzone.is-collapsed {
  display: none;
}
.kanban-dropzone.is-drop-target {
  outline-color: rgba(196,196,196,0.45);
  background: rgba(196,196,196,0.06);
}

.col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.col-header-left,
.col-header-right {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.col-toggle-btn {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: transparent;
  color: var(--silver-dim);
  padding: 3px 7px;
  cursor: pointer;
}

.col-toggle-btn:hover {
  color: var(--silver);
  border-color: var(--silver-dim);
}

.col-title {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.col-count {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--silver-dim);
  background: var(--surface2);
  padding: 2px 8px;
  border-radius: 10px;
}

.col-mode-pill {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--silver-dim);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2px 6px;
  text-transform: uppercase;
}

.kanban-note {
  margin-bottom: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--silver-dim);
  line-height: 1.4;
}

.leads-visible-toggle {
  margin-top: 8px;
  margin-bottom: 6px;
}

.card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 13px;
  margin-bottom: 8px;
  cursor: grab;
  transition: all 0.15s ease;
}
.card.dragging {
  opacity: 0.45;
  transform: scale(0.98);
  cursor: grabbing;
}
.card:hover {
  border-color: var(--silver-dim);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.card-title   { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.card-company { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--silver); margin-bottom: 3px; }
.card-meta    { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--silver-dim); line-height: 1.5; }

.card-tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  padding: 2px 7px;
  border-radius: 3px;
  margin-top: 8px;
  text-transform: uppercase;
}
.tag-ai    { background: rgba(41,128,185,0.2);   color: var(--blue-soft);  border: 1px solid rgba(41,128,185,0.3); }
.tag-web   { background: rgba(39,174,96,0.2);    color: var(--green-soft); border: 1px solid rgba(39,174,96,0.3); }
.tag-automation { background: rgba(142,68,173,0.2); color: #d7bde2; border: 1px solid rgba(142,68,173,0.35); }
.tag-content { background: rgba(22,160,133,0.2); color: #a3e4d7; border: 1px solid rgba(22,160,133,0.35); }
.tag-growth { background: rgba(230,126,34,0.2); color: #f8c471; border: 1px solid rgba(230,126,34,0.35); }
.tag-brand { background: rgba(52,152,219,0.2); color: #aed6f1; border: 1px solid rgba(52,152,219,0.35); }
.tag-other { background: rgba(136,136,136,0.15); color: var(--silver-dim); border: 1px solid var(--border); }

.lead-outcome-chip {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 6px;
  margin-top: 8px;
  border: 1px solid var(--border);
}

.lead-outcome-chip.outcome-won {
  color: var(--green-soft);
  border-color: rgba(88,214,141,0.35);
  background: rgba(88,214,141,0.1);
}

.lead-outcome-chip.outcome-lost {
  color: var(--red-soft);
  border-color: rgba(236,112,99,0.35);
  background: rgba(236,112,99,0.1);
}

.lead-outcome-chip.outcome-closed_unspecified {
  color: var(--gold);
  border-color: rgba(184,168,120,0.35);
  background: rgba(184,168,120,0.1);
}

.pipeline-owner {
  margin-top: 8px;
}

.card-actions {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.card-btn {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--silver-dim);
  transition: all 0.15s;
  text-transform: uppercase;
}
.card-btn:hover { color: var(--silver); border-color: var(--silver-dim); }
.card-btn.delete:hover { color: var(--red-soft); border-color: rgba(192,57,43,0.4); }

.add-card {
  width: 100%;
  background: transparent;
  border: 1px dashed var(--border);
  border-radius: 5px;
  padding: 9px;
  color: var(--silver-dim);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
  letter-spacing: 1px;
  margin-top: 4px;
}
.add-card:hover { border-color: var(--silver-dim); color: var(--silver); }

/* ─── TASKS TABLE ────────────────────────────────────────────────────────── */
.tasks-section + .tasks-section { margin-top: 22px; }

.tasks-section-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin: 0 0 8px;
}

.tasks-wrap { overflow-x: auto; }

table.tasks { width: 100%; border-collapse: collapse; }
table.tasks.tasks-main { table-layout: fixed; }
table.tasks.tasks-main td { vertical-align: top; }

table.tasks th {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver-dim);
  text-align: left;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  font-weight: 400;
  white-space: nowrap;
}
table.tasks.tasks-main th:nth-child(1),
table.tasks.tasks-main td:nth-child(1) {
  width: 42px;
  padding-left: 16px;
  padding-right: 8px;
}
table.tasks.tasks-main th:nth-child(3),
table.tasks.tasks-main td:nth-child(3) { width: 220px; }
table.tasks.tasks-main th:nth-child(4),
table.tasks.tasks-main td:nth-child(4) { width: 124px; }
table.tasks.tasks-main th:nth-child(5),
table.tasks.tasks-main td:nth-child(5) { width: 100px; }
table.tasks.tasks-main th:nth-child(6),
table.tasks.tasks-main td:nth-child(6) { width: 88px; }
table.tasks.tasks-main th:nth-child(7),
table.tasks.tasks-main td:nth-child(7) { width: 104px; }

table.tasks td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--silver);
  vertical-align: middle;
}

table.tasks tr:hover td { background: var(--surface); }

.task-name {
  color: var(--white);
  display: block;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  min-width: 0;
}
.task-done-row .task-name { text-decoration: line-through; color: var(--silver-dim); }
.task-done-row td { opacity: 0.5; }
.task-overdue-row td {
  background: rgba(192,57,43,0.1);
  border-bottom-color: rgba(192,57,43,0.3);
}
.task-overdue-row:hover td { background: rgba(192,57,43,0.15); }
.task-overdue-row .task-name { color: var(--red-soft); }
.task-overdue-row .owner-chip {
  border-color: rgba(192,57,43,0.35);
  background: rgba(192,57,43,0.08);
}

.task-stale-row:not(.task-overdue-row) td {
  background: rgba(184,168,120,0.08);
}

.task-stale-row:not(.task-overdue-row):hover td {
  background: rgba(184,168,120,0.12);
}

.task-name-cell {
  min-width: 0;
}

.task-name-wrap {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.task-stale-flag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(184,168,120,0.35);
  border-radius: 999px;
  padding: 2px 8px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,168,120,0.12);
}

.checkbox {
  width: 16px; height: 16px;
  border: 1.5px solid var(--border-light);
  border-radius: 3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  flex-shrink: 0;
}
.checkbox.checked { background: var(--silver-dim); border-color: var(--silver-dim); }
.checkbox.checked::after { content: '✓'; font-size: 10px; color: var(--black); font-weight: bold; }

.owner-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px 3px 4px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--silver);
  white-space: nowrap;
}

.owner-chip-team {
  border-color: rgba(93,173,226,0.35);
  background: rgba(93,173,226,0.08);
}

.owner-chip-personal {
  border-color: var(--border);
  background: var(--surface2);
}

.owner-chip-custom {
  border-color: rgba(184,168,120,0.35);
  background: rgba(184,168,120,0.08);
}

.task-owner-kind {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  padding: 2px 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver-dim);
  white-space: nowrap;
}

.task-owner-stack {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: wrap;
}

.task-owner-stack .task-owner-kind {
  margin-left: 0;
}

.task-owner-kind.kind-team {
  color: var(--blue-soft);
  border-color: rgba(93,173,226,0.35);
  background: rgba(93,173,226,0.1);
}

.task-owner-kind.kind-personal {
  color: var(--silver-bright);
}

.task-owner-kind.kind-custom {
  color: var(--gold);
  border-color: rgba(184,168,120,0.35);
  background: rgba(184,168,120,0.1);
}

.avatar {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--silver-dim);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--black);
  font-weight: 700;
  flex-shrink: 0;
  text-transform: uppercase;
}

.priority {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.p-high { background: rgba(192,57,43,0.15);  color: var(--red-soft);   border: 1px solid rgba(192,57,43,0.3); }
.p-mid  { background: rgba(184,168,120,0.15); color: var(--gold);       border: 1px solid rgba(184,168,120,0.3); }
.p-low  { background: rgba(136,136,136,0.1);  color: var(--silver-dim); border: 1px solid var(--border); }

.date-text { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--silver-dim); white-space: nowrap; }
.date-overdue { color: var(--red-soft); }

.task-actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 6px;
}
.task-actions .card-btn { padding: 3px 7px; }

/* ─── DECISIONS LOG ──────────────────────────────────────────────────────── */
/* CLIENT OPS */
.clients-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 16px;
}

.clients-list-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.clients-list-tools {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.clients-search-input {
  font-size: 12px;
}

.clients-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
}

.clients-group-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 8px;
}

.clients-list {
  display: grid;
  gap: 8px;
}

.client-row {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 10px;
  background: var(--surface2);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
}
.client-row:hover {
  border-color: var(--silver-dim);
  transform: translateY(-1px);
}
.client-row.selected {
  border-color: var(--silver);
  box-shadow: 0 0 0 1px rgba(232,232,232,0.16) inset;
}
.client-row.muted {
  opacity: 0.5;
  filter: grayscale(0.22);
}

.client-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.client-row-title {
  font-size: 13px;
  color: var(--white);
}

.client-row-sub {
  margin-top: 5px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--silver-dim);
  line-height: 1.5;
}

.client-row-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  color: var(--silver-dim);
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.client-row-progress-head span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.client-row-progress-track,
.client-progress-preview {
  height: 5px;
  margin-top: 5px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 1px;
  background: var(--black);
}

.client-row-progress-track span,
.client-progress-preview span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--silver-bright);
  transition: width 160ms steps(4, end);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 99px;
  border: 1px solid var(--border);
  padding: 2px 8px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.sp-active {
  color: var(--green-soft);
  border-color: rgba(88,214,141,0.35);
  background: rgba(88,214,141,0.11);
}
.sp-inactive {
  color: var(--silver-dim);
  border-color: var(--border);
  background: rgba(136,136,136,0.08);
}
.sp-one-time {
  color: var(--blue-soft);
  border-color: rgba(93,173,226,0.35);
  background: rgba(93,173,226,0.1);
}
.sp-completed {
  color: var(--gold);
  border-color: rgba(184,168,120,0.35);
  background: rgba(184,168,120,0.1);
}

.clients-detail-column {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 14px 16px;
  min-height: 320px;
}

/* PROTOTYPE LIBRARY */
.prototype-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background:
    radial-gradient(circle at 88% 12%, rgba(93,173,226,0.11), transparent 34%),
    var(--surface);
}

.prototype-kicker,
.prototype-client-label {
  font-family: 'DM Mono', monospace;
  color: var(--blue-soft);
  font-size: 9px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.prototype-title {
  margin: 5px 0 3px;
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.2px;
}

.prototype-subtitle {
  max-width: 660px;
  margin: 0;
  color: var(--silver-dim);
  font-size: 12px;
  line-height: 1.55;
}

.prototype-toolbar-actions {
  min-width: min(100%, 390px);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 8px;
}

.prototype-library,
.prototype-client-group {
  display: grid;
  gap: 14px;
}

.prototype-series-list {
  display: grid;
  gap: 20px;
}

.prototype-series {
  display: grid;
  gap: 10px;
}

.prototype-series + .prototype-series {
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.prototype-series-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--silver-dim);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.prototype-series-head span:first-child {
  color: var(--blue-soft);
}

.prototype-client-group {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(255,255,255,0.015);
}

.prototype-client-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.prototype-client-head h3 {
  margin: 4px 0 0;
  color: var(--silver-bright);
  font-size: 18px;
  font-weight: 500;
}

.prototype-count {
  color: var(--silver-dim);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.prototype-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.prototype-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  transition: transform 0.16s ease, border-color 0.16s ease;
}

.prototype-card:hover {
  transform: translateY(-2px);
  border-color: var(--silver-dim);
}

.prototype-preview {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0c1016;
  border-bottom: 1px solid var(--border);
}

.prototype-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.prototype-card:hover .prototype-preview img {
  transform: scale(1.025);
  opacity: 0.82;
}

.prototype-preview-fallback {
  color: var(--silver-dim);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.prototype-open-cue {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 5px;
  background: rgba(5,8,12,0.78);
  color: var(--silver-bright);
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.prototype-card-body {
  padding: 12px;
}

.prototype-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--silver-dim);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.prototype-card h3 {
  margin: 9px 0 5px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}

.prototype-card p {
  min-height: 38px;
  margin: 0;
  color: var(--silver-dim);
  font-size: 11px;
  line-height: 1.55;
}

.prototype-status {
  padding: 2px 6px;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 8px;
}
.prototype-ready { color: var(--green-soft); border-color: rgba(88,214,141,0.3); }
.prototype-review { color: var(--gold); border-color: rgba(184,168,120,0.32); }
.prototype-archived { color: var(--silver-dim); }

.prototype-card-actions {
  display: flex;
  gap: 7px;
  margin-top: 12px;
}

.prototype-card-actions .btn {
  flex: 1;
  justify-content: center;
  text-align: center;
}

.prototype-empty {
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px dashed var(--border);
  border-radius: 9px;
  color: var(--silver-dim);
  text-align: center;
}

.prototype-empty strong { color: var(--silver-bright); font-weight: 500; }
.prototype-empty-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--blue-soft);
  font-family: 'DM Mono', monospace;
}

.client-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}

.client-progress-editor {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.client-progress-editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.client-progress-editor-head output {
  color: var(--silver-bright);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
}

.client-progress-range {
  width: 100%;
  margin-top: 8px;
  accent-color: var(--silver-bright);
}

.client-progress-preview {
  height: 8px;
  margin-top: 8px;
}

.client-documents-admin-list {
  border-top: 1px solid var(--border);
}

.client-document-admin-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.client-document-admin-main {
  min-width: 0;
}

.client-document-admin-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.client-document-add-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(140px, 0.6fr);
  gap: 8px;
  margin-top: 12px;
}

.client-document-add-grid .btn {
  justify-self: start;
}

.client-document-hint {
  margin-top: 8px;
  color: var(--silver-dim);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  line-height: 1.5;
}

.client-detail-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.billing-list {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px;
  background: rgba(255,255,255,0.02);
  max-height: 132px;
  overflow: auto;
}

.client-history-requests {
  max-height: 260px;
}

.client-history-request-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.client-history-request-row:last-child {
  border-bottom: none;
}

.client-history-request-main {
  min-width: 0;
}

.client-history-request-title {
  color: var(--silver-bright);
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.client-history-request-meta {
  margin-top: 4px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--silver-dim);
}

.client-history-request-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.billing-entry {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--silver-dim);
  line-height: 1.5;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.billing-entry:last-child { border-bottom: none; }

.billing-entry-edit {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 8px;
  align-items: center;
}

.billing-date-input {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
}

.billing-entry-actions {
  display: flex;
  gap: 6px;
}

.inline-form-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 8px;
  margin-top: 8px;
}

.clients-requests {
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 12px;
}

.clients-requests-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

table.tasks.requests-table {
  table-layout: fixed;
}

table.tasks.requests-table th:nth-child(1),
table.tasks.requests-table td:nth-child(1) { width: 15%; }
table.tasks.requests-table th:nth-child(2),
table.tasks.requests-table td:nth-child(2) { width: auto; }
table.tasks.requests-table th:nth-child(3),
table.tasks.requests-table td:nth-child(3) { width: 14%; }
table.tasks.requests-table th:nth-child(4),
table.tasks.requests-table td:nth-child(4) { width: 10%; }
table.tasks.requests-table th:nth-child(5),
table.tasks.requests-table td:nth-child(5) { width: 13%; }
table.tasks.requests-table th:nth-child(6),
table.tasks.requests-table td:nth-child(6) { width: 12%; }
table.tasks.requests-table th:nth-child(7),
table.tasks.requests-table td:nth-child(7) { width: 8%; }

.request-row {
  cursor: pointer;
}

.request-row:focus-visible {
  outline: 1px solid var(--silver-dim);
  outline-offset: -1px;
}

.request-category-cell {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.client-flow-board {
  gap: 10px;
}

.client-flow-col {
  min-height: 210px;
}

.client-flow-card {
  cursor: grab;
}

.client-flow-card:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border);
}

.client-flow-card.dragging {
  cursor: grabbing;
}

.client-flow-card.is-clickable {
  cursor: pointer;
}

.client-flow-card.is-clickable:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.26);
  border-color: var(--silver-dim);
}

.client-flow-card.is-clickable:focus-visible {
  outline: 1px solid var(--silver-dim);
  outline-offset: -1px;
}

.client-flow-note {
  margin-top: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--silver-dim);
  line-height: 1.45;
}

.access-manager {
  margin-top: 14px;
}

.access-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.access-subtitle {
  color: var(--silver-dim);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
}

.access-tabs {
  display: flex;
  gap: 6px;
}

.access-create-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 12px;
  margin-top: 10px;
}

.access-create-actions {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-bottom: 0;
}

.form-status {
  min-height: 16px;
  margin-top: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--green-soft);
}

.form-status.error {
  color: var(--red-soft);
}

.access-helper {
  margin-top: 10px;
  color: var(--silver-dim);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  line-height: 1.5;
}

.req-status {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 3px 8px;
  white-space: nowrap;
}
.rs-submitted {
  color: var(--blue-soft);
  border-color: rgba(93,173,226,0.35);
  background: rgba(93,173,226,0.1);
}
.rs-in_review {
  color: var(--gold);
  border-color: rgba(184,168,120,0.35);
  background: rgba(184,168,120,0.1);
}
.rs-scheduled {
  color: var(--silver-bright);
  border-color: var(--silver-dim);
  background: rgba(232,232,232,0.08);
}
.rs-done {
  color: var(--green-soft);
  border-color: rgba(88,214,141,0.35);
  background: rgba(88,214,141,0.11);
}

.rs-archived {
  color: var(--silver-dim);
  border-color: var(--border);
  background: rgba(255,255,255,0.05);
}

tr.request-row-archived td {
  opacity: 0.58;
}

.request-row:hover td {
  background: var(--surface2);
}

.request-helper {
  margin-top: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--silver-dim);
  line-height: 1.4;
}

.request-attachment-list {
  display: grid;
  gap: 8px;
}

.request-attachment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255,255,255,0.02);
  text-decoration: none;
  color: var(--silver-bright);
}

.request-attachment-row:hover {
  border-color: var(--silver-dim);
}

.request-attachment-name {
  font-size: 12px;
  color: var(--white);
  line-height: 1.4;
}

.request-attachment-meta {
  margin-top: 4px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--silver-dim);
}

.timeline-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.request-timeline-shell {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  background: rgba(255,255,255,0.01);
  max-height: 340px;
  overflow: auto;
  transition: max-height 0.18s ease;
}

.request-timeline-shell.collapsed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  overflow: hidden;
}

.request-timeline-list {
  display: grid;
  gap: 8px;
}

.request-timeline-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
  padding: 10px;
}

.request-timeline-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.request-timeline-head-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.request-timeline-time,
.request-timeline-meta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--silver-dim);
}

.request-timeline-text {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--silver-bright);
  white-space: pre-wrap;
}

.timeline-chip {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 8px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.timeline-chip.client {
  color: var(--blue-soft);
  border-color: rgba(93,173,226,0.35);
  background: rgba(93,173,226,0.1);
}

.timeline-chip.internal {
  color: var(--silver-dim);
  background: rgba(255,255,255,0.04);
}

.timeline-chip.unpaid {
  color: var(--gold);
  border-color: rgba(184,168,120,0.35);
  background: rgba(184,168,120,0.1);
}

.timeline-chip.paid {
  color: var(--green-soft);
  border-color: rgba(88,214,141,0.35);
  background: rgba(88,214,141,0.1);
}

.request-title-cell {
  min-width: 0;
}

.request-title-text {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.request-title-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.decisions-log { max-width: 680px; }

.decision-entry {
  border-left: 2px solid var(--border);
  padding: 0 0 36px 28px;
  position: relative;
  margin-left: 8px;
}
.decision-entry::before {
  content: '';
  position: absolute;
  left: -5px; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--silver-dim);
  border: 2px solid var(--black);
}
.decision-entry:first-child::before { background: var(--silver-bright); }

/* Date header row */
.decision-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}

.decision-date-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.decision-title {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--silver-bright);
  text-transform: uppercase;
}

.decision-date-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--silver-dim);
}

/* Individual decision item */
.decision-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 13px 15px;
  margin-bottom: 8px;
}

.decision-item.is-editing {
  border-color: rgba(93,173,226,0.4);
  background: rgba(93,173,226,0.08);
}

.decision-item-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.decision-item-text-wrap { flex: 1; }

.decision-text {
  font-size: 13px;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.5;
  word-break: break-word;
}

.decision-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2px;
  text-transform: none;
  color: var(--silver-dim);
  line-height: 1.45;
  white-space: pre-wrap;
}

.decision-item-fields {
  display: grid;
  gap: 8px;
  width: 100%;
}

.decision-item-input,
.decision-item-owner-input {
  font-family: 'DM Sans', sans-serif;
}

.decision-item-owner-input,
.decision-row-owner {
  min-height: 86px;
  resize: vertical;
  line-height: 1.45;
}

.decision-item-actions {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: wrap;
}

.item-delete {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--silver-dim);
  background: none;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 3px 7px;
  cursor: pointer;
  transition: all 0.15s;
  flex-shrink: 0;
  align-self: flex-start;
}
.item-delete:hover { color: var(--red-soft); border-color: rgba(192,57,43,0.4); }

/* ─── EMPTY STATE ────────────────────────────────────────────────────────── */
.empty-state {
  border: 1px dashed var(--border);
  border-radius: 6px;
  padding: 32px;
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--silver-dim);
  letter-spacing: 1px;
}

/* ─── MODALS ─────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  padding: 1rem;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--deep);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 32px;
  width: 480px;
  max-width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: fadeUp 0.2s ease;
}

/* Wider variant for lead detail */
.modal-wide { width: 620px; }

.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--silver-bright);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }

/* 2-column grid inside lead detail */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}
.form-group-full { grid-column: 1 / -1; }

.form-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--silver-dim);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.form-input, .form-select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 10px 12px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.15s;
}
.form-input:focus, .form-select:focus { border-color: var(--silver-dim); }
.form-select option { background: var(--surface2); }

.form-textarea { resize: vertical; min-height: 88px; line-height: 1.55; }

.detail-meta-value {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--silver-dim);
  padding: 10px 0;
}

.modal-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .lead-list-filter-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .kanban { grid-template-columns: repeat(2, 1fr); }
  .my-work-grid { grid-template-columns: 1fr; }
  .clients-layout { grid-template-columns: 1fr; }
  .access-create-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .prototype-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  #app.visible { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}

@media (max-width: 680px) {
  .topbar  { padding: 16px; }
  .top-nav { padding: 0 16px; top: 57px; }
  .top-nav-item { padding: 12px; font-size: 9px; }
  .content { padding: 18px 14px 28px; }
  .pipeline-radar { padding: 12px; }
  .lead-list-builder { padding: 12px; }
  .lead-research-panel { padding: 10px; }
  .lead-list-actions { width: 100%; }
  .lead-list-actions .card-btn { flex: 1 1 100%; text-align: center; }
  .sales-brief-grid { grid-template-columns: 1fr; }
  .lead-list-filter-grid { grid-template-columns: 1fr; }
  .pipeline-radar-metric { min-width: 0; flex: 1 1 calc(50% - 8px); }
  .pipeline-radar-actions { align-items: stretch; }
  .pipeline-radar-action-btn { width: 100%; text-align: center; }
  .pipeline-radar-action-context { width: 100%; }
  .pipeline-focus-chip { width: calc(50% - 4px); justify-content: space-between; }
  .kanban  { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .client-detail-grid { grid-template-columns: 1fr; }
  .client-document-admin-row { grid-template-columns: 1fr; }
  .client-document-admin-actions { justify-content: flex-start; }
  .client-document-add-grid { grid-template-columns: 1fr; }
  .clients-list-tools { grid-template-columns: 1fr; }
  .inline-form-row { grid-template-columns: 1fr; }
  .billing-entry-edit { grid-template-columns: 1fr; }
  .request-timeline-head { flex-direction: column; align-items: flex-start; }
  .sort-bar { gap: 5px; }
  .access-create-grid { grid-template-columns: 1fr; }
  .prototype-toolbar { align-items: stretch; flex-direction: column; }
  .prototype-toolbar-actions { min-width: 0; grid-template-columns: 1fr; }
  .prototype-grid { grid-template-columns: 1fr; }
}
/* ─── DYNAMIC DECISION ROWS (modal) ─────────────────────────────────────── */
.decisions-rows-header {
  display: flex;
  align-items: center;
  margin: 4px 0 10px;
}

.decision-row {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.decision-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.btn-remove-row {
  display: none; /* shown via JS once there are 2+ rows */
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--silver-dim);
  font-size: 10px;
  cursor: pointer;
  transition: all 0.15s;
  flex-shrink: 0;
}
.btn-remove-row:hover {
  color: var(--red-soft);
  border-color: rgba(192,57,43,0.4);
}

.add-decision-row-btn {
  width: 100%;
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 1px;
  border-style: dashed;
  justify-content: center;
}
.add-decision-row-btn:hover {
  color: var(--silver);
  border-color: var(--silver-dim);
  border-style: dashed;
}
