:root {
  --bg: #eef2f6;
  --panel: #ffffff;
  --panel-soft: #f8fafc;
  --line: #dde3eb;
  --line-strong: #c7d0dc;
  --text: #17202c;
  --muted: #667085;
  --muted-light: #98a2b3;
  --nav: #0a2540;
  --nav-soft: #12395f;
  --blue: #1677ff;
  --green: #19a765;
  --gold: #b7791f;
  --red: #d92d20;
  --purple: #6f48eb;
  --shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
  --radius: 8px;
  color: var(--text);
  font-family:
    Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body,
#app {
  min-height: 100%;
}

body {
  margin: 0;
  min-width: 1180px;
  background: var(--bg);
}

button,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
}

.sidebar {
  background: var(--nav);
  color: #fff;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 4px 6px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #d4af37;
  color: #0a2540;
  font-weight: 900;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.role-switcher {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.role-chip {
  height: 30px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
}

.role-chip.active {
  color: #0a2540;
  background: #f5d773;
  font-weight: 700;
}

.nav {
  display: grid;
  gap: 16px;
  overflow-y: auto;
  padding-bottom: 18px;
}

.nav-group {
  display: grid;
  gap: 5px;
}

.nav-title {
  padding: 0 8px 5px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.nav-item {
  width: 100%;
  height: 36px;
  border: 0;
  border-radius: 6px;
  padding: 0 10px;
  text-align: left;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
}

.nav-item:hover,
.nav-item.active {
  color: #fff;
  background: var(--nav-soft);
}

.workspace {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.topbar {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.sync-strip {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.sync-strip div:first-child {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.sync-strip strong {
  font-size: 13px;
}

.sync-strip span {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}

.sync-strip div:last-child {
  flex: 0 0 auto;
  display: flex;
  gap: 8px;
}

.alert-center {
  display: grid;
  gap: 8px;
  padding: 10px 22px 0;
}

.alert-toast {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid #ffd6d1;
  border-left: 4px solid var(--red);
  border-radius: 7px;
  background: #fff7f5;
  box-shadow: 0 8px 20px rgba(217, 45, 32, 0.08);
}

.alert-toast.warning {
  border-color: #ffe0ad;
  border-left-color: var(--gold);
  background: #fffaf0;
}

.alert-toast strong,
.alert-toast span,
.alert-toast small {
  display: block;
}

.alert-toast strong {
  font-size: 14px;
}

.alert-toast span {
  margin-top: 4px;
  color: #344054;
  font-size: 13px;
}

.alert-toast small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.title-group {
  display: flex;
  align-items: baseline;
  gap: 14px;
  min-width: 0;
}

.title-group h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
}

.title-group span {
  color: var(--muted);
  font-size: 13px;
}

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

.user-badge {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 9px;
  color: #344054;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}

.ghost-button,
.primary-button,
.text-button {
  height: 34px;
  border-radius: 6px;
  padding: 0 13px;
  white-space: nowrap;
}

.ghost-button {
  border: 1px solid var(--line);
  color: #344054;
  background: #fff;
}

.primary-button {
  border: 1px solid var(--blue);
  color: #fff;
  background: var(--blue);
  font-weight: 700;
}

.primary-button.small {
  height: 30px;
  padding: 0 10px;
  font-size: 13px;
}

.text-button {
  height: auto;
  border: 0;
  padding: 0;
  color: var(--blue);
  background: transparent;
  font-weight: 700;
}

.mini-button,
.icon-button {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: #344054;
  font-weight: 700;
}

.mini-button {
  min-height: 26px;
  padding: 0 8px;
  font-size: 12px;
}

.mini-button:hover,
.icon-button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.icon-button {
  width: 30px;
  height: 30px;
  padding: 0;
  font-size: 20px;
  line-height: 1;
}

.page {
  min-height: 0;
  padding: 18px 22px 24px;
  overflow: auto;
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(10, 37, 64, 0.06), rgba(10, 37, 64, 0)),
    var(--bg);
}

.login-panel {
  width: min(420px, 100%);
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.login-brand {
  color: var(--text);
  padding: 0;
}

.login-brand span {
  color: var(--muted);
}

.login-copy h1 {
  margin: 0;
  font-size: 24px;
}

.login-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.login-form {
  display: grid;
  gap: 12px;
}

.login-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.login-form input {
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 10px;
  color: var(--text);
}

.login-form .primary-button {
  height: 40px;
}

.login-error {
  min-height: 34px;
  display: flex;
  align-items: center;
  border: 1px solid #ffd6d1;
  border-radius: 6px;
  padding: 0 10px;
  color: #b42318;
  background: #fff7f5;
  font-size: 13px;
  font-weight: 700;
}

.login-note {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.workflow div {
  min-height: 62px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel);
}

.workflow div:not(:last-child)::after {
  content: "";
  width: 16px;
  height: 1px;
  position: absolute;
  right: -12px;
  top: 50%;
  background: var(--line-strong);
}

.workflow span {
  color: var(--muted);
  font-size: 12px;
}

.workflow strong {
  font-size: 16px;
}

.kpi-card {
  min-height: 108px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.kpi-card span,
.kpi-card small {
  display: block;
}

.kpi-card span {
  color: var(--muted);
  font-size: 13px;
}

.kpi-card strong {
  display: block;
  margin: 10px 0 7px;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0;
}

.kpi-card small {
  color: var(--muted);
  font-size: 12px;
}

.kpi-card.blue strong {
  color: var(--blue);
}

.kpi-card.green strong {
  color: var(--green);
}

.kpi-card.gold strong {
  color: var(--gold);
}

.kpi-card.red strong {
  color: var(--red);
}

.grid {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  overflow: hidden;
}

.panel-head {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 15px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}

.panel-head h2 {
  margin: 0;
  font-size: 15px;
}

.insight-list,
.action-list,
.task-list,
.quote-list,
.activity-list {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.activity-list div {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #344054;
  background: #fff;
  font-size: 13px;
}

.insight,
.action-item,
.task-item,
.quote-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.insight {
  padding: 12px;
  border-left: 4px solid var(--blue);
}

.insight strong,
.action-item strong,
.task-item strong,
.quote-card strong {
  display: block;
  font-size: 14px;
}

.insight p,
.action-item span,
.task-item small,
.quote-card span,
.quote-card small {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.insight.danger {
  border-left-color: var(--red);
}

.insight.warning {
  border-left-color: var(--gold);
}

.insight.success {
  border-left-color: var(--green);
}

.action-item {
  padding: 12px;
}

.task-item,
.quote-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
}

.task-item.done {
  opacity: 0.58;
}

.task-item.done strong {
  text-decoration: line-through;
}

.task-meta,
.quote-card > div:last-child,
.quote-actions {
  display: grid;
  justify-items: end;
  gap: 6px;
  flex: 0 0 auto;
}

.quote-actions {
  grid-auto-flow: column;
  align-items: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  border-radius: 4px;
  padding: 0 7px;
  color: #344054;
  background: #f2f4f7;
  font-size: 12px;
  font-weight: 700;
}

.tag.danger {
  color: #b42318;
  background: #fff1f0;
}

.tag.warning {
  color: #b54708;
  background: #fff7e6;
}

.tag.neutral {
  color: #344054;
  background: #eef2f6;
}

.mini-table {
  display: grid;
}

.mini-row {
  display: grid;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
}

.mini-row:last-child {
  border-bottom: 0;
}

.mini-row span {
  min-width: 0;
  overflow: hidden;
  color: #344054;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.toolbar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  margin-bottom: 10px;
}

.toolbar > div:first-child {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  flex-wrap: wrap;
  font-size: 13px;
}

.toolbar strong {
  color: var(--text);
}

select {
  height: 32px;
  min-width: 140px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 10px;
  color: #344054;
  background: #fff;
}

.stage-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(175px, 1fr);
  gap: 0;
  margin-bottom: 10px;
  overflow-x: auto;
}

.stage-pill {
  min-height: 58px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  color: #fff;
  background: var(--green);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 18px 50%);
}

.stage-pill:first-child {
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
  border-radius: 6px 0 0 6px;
}

.stage-pill:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 18px 50%);
  border-radius: 0 6px 6px 0;
}

.stage-pill.blue {
  background: var(--blue);
}

.stage-pill.gray {
  color: #475467;
  background: #e7ebf1;
}

.stage-pill strong {
  font-size: 13px;
}

.stage-pill span {
  font-size: 12px;
  opacity: 0.92;
}

.board {
  height: calc(100vh - 244px);
  min-height: 560px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 286px;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
}

.lane {
  min-height: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #e9edf3;
  overflow: hidden;
}

.lane header {
  min-height: 54px;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.lane header strong {
  font-size: 14px;
}

.lane header span {
  color: var(--muted);
  font-size: 12px;
}

.cards {
  min-height: 0;
  overflow-y: auto;
  padding: 10px;
}

.deal-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #e8edf3;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.deal-card:hover {
  border-color: #b7d4ff;
  box-shadow: var(--shadow);
}

.deal-card.highlight {
  border-color: #ffb4ab;
  background: #fffafa;
  box-shadow: 0 10px 24px rgba(217, 45, 32, 0.12);
}

.deal-card.highlight .deal-top strong {
  color: var(--red);
}

.deal-top {
  display: grid;
  gap: 7px;
}

.deal-top strong {
  color: var(--blue);
  font-size: 14px;
  line-height: 1.35;
}

.deal-amount {
  color: #475467;
  font-size: 13px;
  font-weight: 700;
}

.deal-customer {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.deal-card dl {
  display: grid;
  gap: 4px;
  margin: 0;
}

.deal-card dl div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 6px;
  font-size: 12px;
}

.deal-card dt {
  color: var(--muted);
}

.deal-card dd {
  margin: 0;
  color: #344054;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deal-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid #eef2f6;
}

.deal-card footer span {
  color: var(--muted);
  font-size: 12px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 2px;
}

.empty-state {
  height: 120px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.calculator {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
}

.calculator div {
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel-soft);
}

.calculator span {
  color: var(--muted);
  font-size: 12px;
}

.calculator strong {
  font-size: 16px;
}

.ai-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.ai-input {
  flex: 1;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
}

.import-form,
.integration-guide {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.import-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.import-form textarea {
  width: 100%;
  min-height: 220px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
  color: var(--text);
  font: 13px/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.import-form footer {
  display: flex;
  justify-content: flex-end;
}

.integration-guide p {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel-soft);
  color: #475467;
  font-size: 13px;
  line-height: 1.55;
}

.integration-guide b {
  color: var(--text);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
}

.capability-grid span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel-soft);
  color: #344054;
  font-weight: 700;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.knowledge-card {
  min-height: 188px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.knowledge-card strong {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.35;
}

.knowledge-card p {
  margin: 0;
  color: #475467;
  font-size: 13px;
  line-height: 1.65;
}

.knowledge-card footer,
.button-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.knowledge-card footer span {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}

.health-board {
  display: grid;
  grid-template-columns: 158px 1fr;
  gap: 14px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.health-score {
  min-height: 138px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.health-score strong {
  font-size: 42px;
  line-height: 1;
}

.health-score span {
  color: var(--muted);
  font-size: 13px;
}

.health-score.success strong {
  color: var(--green);
}

.health-score.warning strong {
  color: var(--gold);
}

.health-score.danger strong {
  color: var(--red);
}

.health-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.health-metrics span {
  min-height: 64px;
  display: grid;
  align-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #344054;
  font-size: 13px;
  font-weight: 700;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 37, 64, 0.42);
}

.modal {
  width: min(620px, 100%);
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 24px 80px rgba(16, 24, 40, 0.28);
}

.modal.wide {
  width: min(860px, 100%);
}

.modal header,
.modal footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modal h2 {
  margin: 0;
  font-size: 18px;
}

.modal label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.modal input,
.modal select,
.modal textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: #fff;
}

.modal input,
.modal select {
  height: 38px;
  padding: 0 10px;
}

.modal textarea {
  min-height: 120px;
  resize: vertical;
  padding: 10px;
  font: 13px/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.detail-grid div {
  min-height: 66px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel-soft);
}

.detail-grid span {
  color: var(--muted);
  font-size: 12px;
}

.detail-grid strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.embedded-list {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfe;
}

.embedded-list h3 {
  margin: 0;
  font-size: 14px;
}

.embedded-list p {
  margin: 0;
  display: grid;
  gap: 4px;
  padding: 9px 10px;
  border-radius: 5px;
  background: #fff;
  color: #475467;
  font-size: 13px;
}

.embedded-list b {
  color: var(--text);
}

@media (max-width: 1440px) {
  .app-shell {
    grid-template-columns: 224px minmax(0, 1fr);
  }

  .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid.two {
    grid-template-columns: 1fr;
  }

  .board {
    grid-auto-columns: 270px;
  }

  .knowledge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
