@import url("/business/demo-standard.css?v=1");

:root {
  --brand: #a88449;
  --brand-dark: #765b2e;
  --brand-soft: #f5eee1;
  --brand-border: #e4d5b8;
  --page: #fbfaf7;
  --surface-soft: #f6f1e8;
}

.premium-shell .app-header,
.premium-shell .sidebar {
  background: #fffdf9;
}

.premium-shell .sidebar {
  border-right-color: #e8dfd0;
}

.premium-shell .sidebar-intro {
  border-bottom: 1px solid #eee6d8;
}

.premium-shell .nav-group,
.premium-shell .eyebrow {
  color: #80653a;
}

.premium-shell .nav-button:hover {
  background: #f7f0e5;
}

.premium-shell .nav-button.active {
  background: #ad8a4f;
  color: white;
}

.premium-shell .nav-count,
.premium-shell .tier-badge {
  background: #ad8a4f;
}

.premium-shell .brand-subtitle {
  color: #80653a;
}

.premium-shell .brand-mark {
  background: #f4ecdd;
}

.premium-shell .executive-hero {
  border-color: #dfcfb1;
  background: linear-gradient(150deg, #f7f0e3 0%, #fffdf9 68%);
}

.premium-shell .recommendation {
  border-color: #e1d1b3;
  background: #f7f0e4;
}

.premium-shell .primary-button {
  border-color: #a88449;
  background: #a88449;
}

.premium-shell .primary-button:hover {
  background: #765b2e;
}

.premium-shell .action-button {
  border-color: #e4d5b8;
  background: #f5eee1;
  color: #765b2e;
}

.premium-shell .progress > span,
.premium-shell .trend-bar {
  background: linear-gradient(90deg, #8d6e3b, #bd9a60);
}

.premium-shell .metric-ring {
  background: conic-gradient(#a88449 var(--ring, 75%), #eee7da 0);
}

.premium-shell .priority-number {
  background: #a88449;
}

.premium-shell .tag {
  background: #f5eee1;
  color: #765b2e;
}

.premium-shell .text-link {
  color: #80653a;
}

.premium-shell .schedule-row {
  border-left-color: #a88449;
}

.executive-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 16px;
}

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

.pulse-card {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
}

.pulse-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.health-score {
  display: grid;
  min-height: 100%;
  place-items: center;
  text-align: center;
}

.health-score .metric-ring {
  width: 138px;
  height: 138px;
  flex-basis: 138px;
}

.health-score .metric-ring::before {
  width: 98px;
  height: 98px;
}

.health-score .metric-ring strong {
  font-size: 30px;
}

.alert-strip {
  padding: 13px 16px;
  border: 1px solid #eadbbd;
  border-radius: 13px;
  background: #faf5ea;
  color: #5f4b2f;
  font-size: 13px;
  line-height: 1.5;
}

.module-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.data-bars {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}

.data-bar-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
  font-size: 12px;
}

.data-bar-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #ece7df;
}

.data-bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #92723e, #c09d63);
}

.search-box {
  display: flex;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  background: var(--brand-soft);
}

.search-box .field {
  flex: 1;
}

.demo-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid #e3d7c3;
  border-radius: 999px;
  background: #fffdf9;
  color: #6b5636;
  font-size: 11px;
  font-weight: 700;
}

.agenda-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

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

.agenda-time {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.theme-preview {
  min-height: 128px;
  padding: 20px;
  border: 2px solid #ad8a4f;
  border-radius: 16px;
  background: linear-gradient(140deg, #fffdf9, #f2e7d4);
}

@media (max-width: 900px) {
  .executive-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .pulse-grid {
    grid-template-columns: 1fr;
  }

  .agenda-row {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .agenda-row .badge {
    display: none;
  }

  .search-box {
    flex-direction: column;
  }
}
