:root {
  --navy: #172239;
  --ink: #20293a;
  --muted: #778195;
  --line: #e7eaf0;
  --bg: #f5f7fa;
  --blue: #526fe8;
  --green: #279670;
  --amber: #d98b2b;
  --red: #d85a62;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font:
    14px Inter,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
}
button,
input,
select,
textarea {
  font: inherit;
}
.hidden {
  display: none !important;
}
.overline {
  color: #8290a7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.7px;
}
.overline.light {
  color: #93a2bc;
}
.logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(145deg, #5d79ef, #7755d0);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.login-screen {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
.login-brand {
  padding: 45px 8vw;
  background: radial-gradient(circle at 80% 20%, #344c7a, #18243c 55%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
}
.login-brand h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
  margin: 18px 0 25px;
  letter-spacing: -3px;
}
.login-brand h1 {
  color: #ffffff;
}
.login-brand h1 em {
  color: #8da5ff;
}
.login-brand > div:nth-child(2) > p {
  font-size: 17px;
}
.login-card h2 {
  font-size: 32px;
}
.role-options .admin-role-link b {
  font-size: 14px;
}
.role-options .admin-role-link small {
  font-size: 12px;
}
.login-brand h1 em {
  font-style: normal;
  color: #8da5ff;
}
.login-brand > div:nth-child(2) > p {
  max-width: 560px;
  color: #b6c1d4;
  font-size: 16px;
  line-height: 1.8;
}
.login-proof {
  display: flex;
  align-items: center;
  gap: 20px;
}
.proof-avatars {
  display: flex;
}
.proof-avatars span {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #536fe8;
  border: 2px solid #18243c;
  font-size: 10px;
  margin-left: -7px;
}
.login-proof p {
  color: #9eabc1;
  font-size: 11px;
  line-height: 1.6;
}
.login-proof b {
  color: white;
}
.login-card-wrap {
  display: grid;
  place-items: center;
  padding: 30px;
}
.login-card {
  width: min(440px, 100%);
}
.mobile-logo {
  display: none;
}
.login-card h2 {
  font-size: 30px;
  margin: 10px 0;
}
.login-card > p:not(.overline) {
  color: var(--muted);
  margin-bottom: 30px;
}
.role-options {
  display: grid;
  gap: 12px;
}
.role-options button {
  display: grid;
  grid-template-columns: 46px 1fr 20px;
  gap: 13px;
  align-items: center;
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: 0.2s;
}
.role-options button:hover {
  border-color: #7c91ea;
  box-shadow: 0 8px 30px #23345a14;
  transform: translateY(-2px);
}
.role-options b,
.role-options small {
  display: block;
}
.role-options small {
  color: #8791a2;
  font-size: 11px;
  margin-top: 5px;
}
.role-icon {
  width: 43px;
  height: 43px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.role-icon.navy {
  background: #e9edf5;
  color: #202b43;
}
.role-icon.blue {
  background: #ebefff;
  color: #526fe8;
}
.role-icon.green {
  background: #e6f6ef;
  color: #279670;
}
.demo-note {
  display: block;
  text-align: center;
  color: #9aa3b0;
  margin-top: 25px;
}
.app {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 235px;
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  z-index: 5;
}
.side-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 8px 28px;
}
.side-brand strong,
.side-brand small {
  display: block;
}
.side-brand strong {
  font-size: 18px;
}
.side-brand small {
  font-size: 9px;
  color: #9aa3b1;
  margin-top: 2px;
}
.sidebar nav p {
  font-size: 9px;
  color: #a4adba;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin: 20px 12px 8px;
}
.sidebar nav button {
  width: 100%;
  border: 0;
  background: transparent;
  color: #687488;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
}
.sidebar nav button.active,
.sidebar nav button:hover {
  background: #eef2ff;
  color: #4968d4;
}
.sidebar nav button > span {
  font-size: 17px;
  width: 18px;
}
.sidebar nav button i {
  margin-left: auto;
  background: #e7edff;
  color: #526fe8;
  border-radius: 10px;
  padding: 2px 6px;
  font-style: normal;
  font-size: 9px;
}
.side-foot {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.profile {
  border: 0;
  background: none;
  width: 100%;
  display: grid;
  grid-template-columns: 35px 1fr 15px;
  align-items: center;
  text-align: left;
  gap: 9px;
  cursor: pointer;
}
.profile > span:first-child,
.avatar {
  width: 35px;
  height: 35px;
  border-radius: 9px;
  color: white;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
}
.profile b,
.profile small {
  display: block;
}
.profile b {
  font-size: 11px;
}
.profile small {
  font-size: 9px;
  color: #929cab;
  margin-top: 3px;
}
.app main {
  margin-left: 235px;
  width: calc(100% - 235px);
}
.topbar {
  height: 70px;
  background: white;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 35px;
  position: sticky;
  top: 0;
  z-index: 4;
}
.crumb {
  display: flex;
  gap: 10px;
  font-size: 11px;
}
.crumb span,
.crumb b {
  color: #9ba4b2;
}
.top-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-search {
  background: #f5f7fa;
  border-radius: 8px;
  padding: 9px 11px;
  color: #95a0af;
}
.top-search input {
  border: 0;
  background: transparent;
  outline: none;
  width: 180px;
}
.primary,
.secondary,
.link-btn,
.icon-btn {
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 11px;
  cursor: pointer;
}
.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 12px #526fe82e;
}
.secondary,
.icon-btn {
  background: white;
  color: #667286;
  border: 1px solid var(--line);
}
.link-btn {
  background: none;
  color: #526fe8;
}
.icon-btn {
  padding: 9px 11px;
  position: relative;
}
.notify-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #e15e64;
  border-radius: 50%;
  right: 7px;
  top: 6px;
}
.mobile {
  display: none;
}
.view {
  padding: 34px 38px 60px;
  max-width: 1500px;
  margin: auto;
}
.page-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.page-head h1 {
  font-size: 25px;
  margin: 7px 0;
}
.page-head p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 16px;
  display: flex;
  gap: 11px;
  align-items: center;
}
.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.stat-icon.blue {
  color: #4e6cdf;
  background: #eaf0ff;
}
.stat-icon.amber {
  color: #cc8424;
  background: #fff1dc;
}
.stat-icon.purple {
  color: #805fc1;
  background: #f1ebff;
}
.stat-icon.red {
  color: #d65b61;
  background: #ffeaec;
}
.stat-icon.green {
  color: #258d69;
  background: #e7f7f0;
}
.stat b,
.stat small {
  display: block;
}
.stat b {
  font-size: 20px;
}
.stat small {
  font-size: 9px;
  color: #8993a2;
  margin-top: 3px;
}
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr;
  gap: 18px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}
.span2 {
  grid-column: span 2;
}
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.card-head h3 {
  margin: 0 0 5px;
  font-size: 14px;
}
.card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 60px 18px 1fr;
}
.time b,
.time small {
  display: block;
  font-size: 10px;
}
.time small {
  color: #9aa3b1;
  margin-top: 4px;
}
.line-dot {
  width: 9px;
  height: 9px;
  background: #c8cfda;
  border-radius: 50%;
  margin-top: 7px;
  position: relative;
}
.line-dot:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 90px;
  background: #e1e5eb;
  left: 4px;
  top: 10px;
}
.timeline-item:last-child .line-dot:after {
  display: none;
}
.line-dot.live {
  background: #526fe8;
  box-shadow: 0 0 0 4px #e9edff;
}
.timeline-card {
  display: flex;
  justify-content: space-between;
  padding: 0 0 20px;
}
.timeline-card h4 {
  margin: 7px 0 5px;
  font-size: 12px;
}
.timeline-card p {
  margin: 0;
  color: #7f8999;
  font-size: 10px;
}
.timeline-card button {
  display: block;
  border: 0;
  background: none;
  color: #5471dd;
  font-size: 9px;
  margin-top: 10px;
  margin-left: auto;
}
.badge {
  display: inline-block;
  border-radius: 11px;
  padding: 4px 8px;
  font-size: 8px;
  font-weight: 800;
}
.scheduled {
  background: #edf1ff;
  color: #4d6bd8;
}
.mom-pending {
  background: #fff1dc;
  color: #c57c1d;
}
.completed,
.closed {
  background: #e7f7f0;
  color: #278a68;
}
.action-pending {
  background: #ffeaec;
  color: #ce555b;
}
.ongoing {
  background: #eee8ff;
  color: #765bc0;
}
.avatar-stack {
  display: inline-flex;
}
.avatar.tiny {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -5px;
  font-size: 7px;
}
.donut-wrap {
  display: grid;
  place-items: center;
  padding: 10px;
}
.donut {
  --value: 50;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: conic-gradient(var(--blue) calc(var(--value) * 1%), #e9edf3 0);
  display: grid;
  place-content: center;
  position: relative;
}
.donut:after {
  content: "";
  position: absolute;
  inset: 13px;
  background: white;
  border-radius: 50%;
}
.donut b,
.donut small {
  z-index: 1;
  text-align: center;
}
.donut b {
  font-size: 23px;
}
.donut small {
  font-size: 9px;
  color: #8c96a5;
}
.legend-row {
  display: flex;
  justify-content: center;
  gap: 13px;
  font-size: 8px;
  color: #8290a1;
}
.decision-list button {
  width: 100%;
  display: flex;
  gap: 10px;
  text-align: left;
  background: none;
  border: 0;
  padding: 11px 0;
  border-bottom: 1px solid #eff1f4;
  cursor: pointer;
}
.decision-list i {
  background: #e5f6ee;
  color: #288e69;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}
.decision-list b,
.decision-list small {
  display: block;
}
.decision-list b {
  font-size: 10px;
}
.decision-list small {
  font-size: 8px;
  color: #929ba9;
  margin-top: 4px;
}
.toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.table-search {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 11px;
  color: #929daa;
}
.table-search input {
  border: 0;
  outline: 0;
  width: 210px;
}
.segmented {
  display: flex;
  margin-left: auto;
  background: #f2f4f7;
  padding: 3px;
  border-radius: 8px;
}
.segmented button,
.tabs button {
  border: 0;
  background: none;
  padding: 7px 11px;
  color: #7e899a;
  font-size: 10px;
  font-weight: 700;
  border-radius: 6px;
}
.segmented .active,
.tabs .active {
  background: white;
  color: #405fcd;
  box-shadow: 0 2px 5px #1f2b4414;
}
.table-wrap {
  overflow: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th {
  text-align: left;
  color: #929baa;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 11px;
  border-bottom: 1px solid var(--line);
}
td {
  padding: 14px 11px;
  border-bottom: 1px solid #edf0f3;
  font-size: 10px;
}
td > b,
td > small {
  display: block;
}
td > small {
  color: #929ba9;
  margin-top: 5px;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
tbody tr {
  cursor: pointer;
}
tbody tr:hover {
  background: #fafbfc;
}
.calendar-head {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}
.calendar-head button {
  border: 1px solid var(--line);
  background: white;
  border-radius: 6px;
}
.weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.weekdays b {
  text-align: center;
  padding: 17px;
  font-size: 9px;
  color: #9099a7;
}
.calendar-day {
  min-height: 105px;
  border: 1px solid #eef0f3;
  padding: 8px;
  font-size: 10px;
}
.calendar-day.today > span {
  background: var(--blue);
  color: white;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.calendar-day.muted {
  background: #fafbfc;
}
.cal-event {
  display: block;
  border: 0;
  border-left: 3px solid #526fe8;
  border-radius: 4px;
  background: #eef2ff;
  color: #465fc1;
  width: 100%;
  margin-top: 7px;
  padding: 5px;
  text-align: left;
  font-size: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tabs {
  display: flex;
  gap: 5px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 17px;
}
.tabs i {
  font-style: normal;
  background: #e9edfa;
  padding: 2px 6px;
  border-radius: 8px;
}
.meeting-cards {
  display: grid;
  gap: 12px;
}
.meeting-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 18px;
  display: grid;
  grid-template-columns: 55px 1fr auto;
  gap: 18px;
  align-items: center;
  cursor: pointer;
}
.meeting-date {
  border-right: 1px solid var(--line);
  text-align: center;
}
.meeting-date b,
.meeting-date small {
  display: block;
}
.meeting-date b {
  font-size: 23px;
}
.meeting-date small {
  font-size: 8px;
  color: #8792a3;
}
.meeting-info h3 {
  font-size: 13px;
  margin: 7px 0;
}
.meeting-info p {
  font-size: 10px;
  color: #7f8998;
}
.meeting-info > div {
  display: flex;
  gap: 20px;
  font-size: 9px;
  color: #8791a0;
}
.meeting-people {
  text-align: right;
}
.meeting-people button {
  display: block;
  margin-top: 10px;
}
.record-list article {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}
.record-icon,
.notification-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #edf1ff;
  color: #536fe8;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.record-list b,
.record-list small {
  display: block;
}
.record-list small {
  font-size: 9px;
  color: #8b95a4;
  margin-top: 5px;
}
.board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  align-items: start;
}
.board-col {
  background: #eef1f5;
  border-radius: 12px;
  padding: 12px;
  min-height: 300px;
}
.board-col > header {
  display: flex;
  justify-content: space-between;
  padding: 5px 4px 13px;
  font-size: 11px;
  font-weight: 700;
}
.board-col > header i {
  font-style: normal;
  background: white;
  border-radius: 10px;
  padding: 2px 7px;
}
.board-col article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 14px;
  margin-bottom: 10px;
}
.board-col h4 {
  font-size: 11px;
  margin: 9px 0 5px;
}
.board-col p {
  font-size: 9px;
  color: #8c96a5;
}
.board-col footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 8px;
  color: #8792a3;
}
.board-col select {
  margin-left: auto;
  max-width: 90px;
  border: 1px solid var(--line);
  font-size: 8px;
}
.priority-label {
  font-size: 8px;
  font-weight: 800;
}
.priority-label.high {
  color: #d3565b;
}
.priority-label.medium {
  color: #c17b20;
}
.priority-label.low {
  color: #298d6a;
}
.notifications article {
  display: flex;
  gap: 14px;
  padding: 17px;
  border-bottom: 1px solid var(--line);
}
.notifications article.unread {
  background: #f7f9ff;
}
.notifications b {
  font-size: 11px;
}
.notifications p,
.notifications small {
  color: #8791a1;
  font-size: 9px;
}
.empty {
  text-align: center;
  color: #99a2af;
  padding: 30px;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: #18223799;
  backdrop-filter: blur(3px);
}
.modal-box {
  position: relative;
  background: white;
  border-radius: 15px;
  width: min(670px, calc(100% - 30px));
  max-height: 90vh;
  overflow: auto;
  padding: 28px;
  box-shadow: 0 30px 80px #0d15283d;
}
.modal-close {
  position: absolute;
  right: 20px;
  top: 18px;
  border: 0;
  background: #f1f3f6;
  border-radius: 7px;
  width: 30px;
  height: 30px;
  font-size: 19px;
  cursor: pointer;
}
.modal-box h2 {
  margin: 8px 0;
  font-size: 22px;
}
.form-intro,
.detail-desc {
  color: #7d8797;
  line-height: 1.6;
}
.modal-box form > label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  margin-top: 14px;
}
.modal-box input,
.modal-box textarea,
.modal-box select {
  border: 1px solid #dfe3e9;
  border-radius: 7px;
  padding: 10px;
  outline: none;
  background: white;
}
.modal-box textarea {
  min-height: 75px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.check-grid label {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
}
.check-grid label > span:last-child,
.check-grid small {
  display: block;
}
.check-grid small {
  color: #8e98a7;
  margin-top: 3px;
}
.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 24px;
}
.detail-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #778296;
  font-size: 10px;
  margin: 15px 0;
}
.workflow {
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
}
.workflow div {
  flex: 1;
  text-align: center;
  position: relative;
}
.workflow div:after {
  content: "";
  height: 2px;
  background: #e4e7ec;
  position: absolute;
  left: 60%;
  right: -40%;
  top: 13px;
}
.workflow div:last-child:after {
  display: none;
}
.workflow i {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #edf0f4;
  color: #8893a3;
  display: grid;
  place-items: center;
  margin: auto;
  font-style: normal;
  font-size: 9px;
  position: relative;
  z-index: 1;
}
.workflow .done i {
  background: #e5f5ed;
  color: #278e69;
}
.workflow .current i {
  background: #526fe8;
  color: white;
}
.workflow span {
  font-size: 8px;
  color: #7e8999;
  display: block;
  margin-top: 7px;
}
.section-title {
  font-size: 12px;
  border-top: 1px solid var(--line);
  padding-top: 17px;
  margin-top: 18px;
}
.attendee-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.attendee-list > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.attendee-list b,
.attendee-list small {
  display: block;
}
.attendee-list b {
  font-size: 9px;
}
.attendee-list small {
  font-size: 8px;
  color: #8b95a4;
}
.attendee-list i {
  margin-left: auto;
  color: #298d69;
  font-size: 8px;
}
.mom-box {
  background: #f7f9fb;
  border-radius: 9px;
  padding: 15px;
}
.mom-box p {
  font-size: 10px;
  color: #6e798a;
  line-height: 1.6;
}
.mom-box label {
  font-size: 8px;
  color: #9099a6;
  text-transform: uppercase;
}
.action-form {
  display: grid;
  grid-template-columns: 20px 1.5fr 1fr 0.7fr 1fr 28px;
  gap: 6px;
  margin: 8px 0;
}
.action-form > * {
  min-width: 0;
}
.action-form b {
  padding-top: 10px;
}
.action-form button {
  border: 0;
  background: #ffedef;
  color: #ce555b;
  border-radius: 6px;
}
.toast {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: #1c273d;
  color: white;
  padding: 14px 18px;
  border-radius: 10px;
  z-index: 30;
  box-shadow: 0 15px 40px #1520384d;
  transform: translateY(100px);
  opacity: 0;
  transition: 0.25s;
}
.toast.show {
  transform: none;
  opacity: 1;
}
.toast b,
.toast span {
  display: block;
}
.toast b {
  font-size: 11px;
}
.toast span {
  font-size: 9px;
  color: #b7c1d3;
  margin-top: 4px;
}
@media (max-width: 1100px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .dash-grid {
    grid-template-columns: 1fr 1fr;
  }
  .span2 {
    grid-column: span 2;
  }
  .dash-grid > .card:not(.span2) {
    grid-column: span 1;
  }
  .board {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 800px) {
  .login-screen {
    grid-template-columns: 1fr;
  }
  .login-brand {
    display: none;
  }
  .mobile-logo {
    display: block;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 50px;
  }
  .sidebar {
    transform: translateX(-100%);
    transition: 0.2s;
  }
  .sidebar.open {
    transform: none;
    box-shadow: 10px 0 40px #1a24363d;
  }
  .app main {
    margin-left: 0;
    width: 100%;
  }
  .mobile {
    display: block;
  }
  .topbar {
    padding: 0 15px;
  }
  .crumb,
  .top-search {
    display: none;
  }
  .view {
    padding: 25px 15px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .dash-grid {
    display: block;
  }
  .dash-grid > .card {
    margin-bottom: 14px;
  }
  .meeting-card {
    grid-template-columns: 45px 1fr;
  }
  .meeting-people {
    display: none;
  }
  .calendar-day {
    min-height: 75px;
  }
  .cal-event {
    font-size: 0;
  }
  .cal-event:before {
    content: "•";
    font-size: 13px;
  }
  .page-head {
    align-items: flex-start;
  }
  .page-head .primary {
    font-size: 0;
    padding: 11px;
  }
  .page-head .primary:first-letter {
    font-size: 15px;
  }
  .action-form {
    grid-template-columns: 20px 1fr;
  }
  .action-form select,
  .action-form input[type="date"] {
    grid-column: 2;
  }
  .attendee-list {
    grid-template-columns: 1fr;
  }
}

.role-options .admin-role-link {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: inherit;
  display: grid;
  gap: 13px;
  grid-template-columns: 46px 1fr 20px;
  padding: 16px;
  text-align: left;
  text-decoration: none;
  transition: 0.2s;
}
.role-options .admin-role-link:hover {
  border-color: #7c91ea;
  box-shadow: 0 8px 30px #23345a14;
  transform: translateY(-2px);
}
.role-options .admin-role-link b,
.role-options .admin-role-link small {
  display: block;
}
.landing-flow {
  align-items: center;
  background: #f7f9fd;
  border: 1px solid #e5e9f1;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  padding: 12px;
}
.landing-flow span {
  color: #59677d;
  font-size: 9px;
  font-weight: 700;
}
.landing-flow i {
  color: #9aa5b5;
  font-style: normal;
}
.role-options .admin-role-link small {
  color: #8791a2;
  font-size: 11px;
  margin-top: 5px;
}

/* Bootstrap component integration: custom rules below are brand-level overrides only. */
.modal {
  display: none;
}
.modal.show {
  display: block;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
}
.modal-content {
  border-radius: 15px;
}
.modal-body h2 {
  margin: 8px 0;
  font-size: 22px;
}
.modal-body form > label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  margin-top: 14px;
}
.modal-body textarea {
  min-height: 75px;
  resize: vertical;
}
.modal-body .form-control:focus,
.modal-body .form-select:focus {
  border-color: #8297ee;
  box-shadow: 0 0 0 0.2rem rgba(82, 111, 232, 0.14);
}
.btn-primary {
  --bs-btn-bg: #526fe8;
  --bs-btn-border-color: #526fe8;
  --bs-btn-hover-bg: #435fd2;
  --bs-btn-hover-border-color: #435fd2;
}
.table > :not(caption) > * > * {
  background: transparent;
  box-shadow: none;
}
.card.shadow-sm {
  box-shadow: 0 3px 12px rgba(28, 39, 61, 0.035) !important;
}

/* Readable enterprise typography */
html {
  font-size: 16px;
}

body {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.overline,
.sidebar nav p {
  font-size: 0.6875rem;
}

.side-brand strong {
  font-size: 1.25rem;
}

.side-brand small,
.profile small {
  font-size: 0.75rem;
}

.sidebar nav button {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.profile b {
  font-size: 0.8125rem;
}

.crumb,
.primary,
.secondary,
.link-btn,
.icon-btn {
  font-size: 0.8125rem;
}

.top-search input {
  font-size: 0.875rem;
}

.page-head h1 {
  font-size: clamp(1.5rem, 2vw, 1.875rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.page-head p {
  font-size: 0.875rem;
  line-height: 1.6;
}

.stat b {
  font-size: 1.5rem;
}

.stat small,
.card-head p,
.timeline-card p,
.decision-list small,
.record-list small,
.meeting-info p,
.meeting-info > div,
.notifications p,
.notifications small {
  font-size: 0.75rem;
  line-height: 1.5;
}

.card-head h3 {
  font-size: 1rem;
}

.timeline-card h4,
.meeting-info h3,
.notifications b {
  font-size: 0.875rem;
}

.time b,
.time small,
.decision-list b,
.record-list b {
  font-size: 0.75rem;
}

.badge,
.priority-label {
  font-size: 0.6875rem;
  line-height: 1;
}

th {
  font-size: 0.6875rem;
  line-height: 1.4;
}

td {
  font-size: 0.8125rem;
  line-height: 1.45;
}

td > small {
  font-size: 0.75rem;
}

.segmented button,
.tabs button {
  font-size: 0.8125rem;
}

.meeting-date small,
.attendee-list small,
.workflow span {
  font-size: 0.6875rem;
}

.board-col > header,
.board-col h4 {
  font-size: 0.8125rem;
}

.board-col p,
.board-col footer,
.board-col select {
  font-size: 0.75rem;
}

.modal-body h2 {
  font-size: 1.5rem;
  line-height: 1.3;
}

.form-intro,
.detail-desc {
  font-size: 0.875rem;
}

.modal-body form > label,
.check-grid label,
.attendee-list b,
.mom-box p {
  font-size: 0.8125rem;
}

.modal-body .form-control,
.modal-body .form-select {
  min-height: 42px;
  font-size: 0.875rem;
}

.section-title {
  font-size: 0.9375rem;
}

@media (max-width: 800px) {
  body {
    font-size: 0.875rem;
  }

  .page-head h1 {
    font-size: 1.375rem;
  }

  .page-head p {
    font-size: 0.8125rem;
  }

  .stat b {
    font-size: 1.25rem;
  }
}
:root {
  --itnt-primary: #4f6de1;
  --itnt-primary-dark: #3e57c3;
  --itnt-primary-soft: #edf1ff;
  --itnt-ink: #20293a;
  --itnt-muted: #738095;
  --itnt-border: #e5e9f0;
  --itnt-page: #f5f7fa;
  --itnt-success: #258a66;
  --itnt-warning: #c47c20;
  --itnt-danger: #cf565c;
  --itnt-radius: 12px;
  --itnt-shadow: 0 5px 20px rgba(31, 42, 63, 0.055);
}

html {
  scroll-behavior: smooth;
}
body {
  background: var(--itnt-page);
  color: var(--itnt-ink);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--itnt-ink);
  letter-spacing: -0.018em;
}
.text-secondary {
  color: var(--itnt-muted) !important;
}
.app-nav,
.navbar {
  min-height: 70px;
}
.app-nav {
  box-shadow: 0 1px 0 var(--itnt-border);
}
.navbar-brand {
  color: var(--itnt-ink);
}
.navbar .btn {
  white-space: nowrap;
}
.nav-link {
  border-radius: 7px;
  color: #68758a;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px !important;
}
.nav-link:hover,
.nav-link.active {
  background: var(--itnt-primary-soft);
  color: var(--itnt-primary) !important;
}
.btn {
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  min-height: 36px;
}
.btn-sm {
  min-height: 32px;
}
.btn-primary {
  --bs-btn-bg: var(--itnt-primary);
  --bs-btn-border-color: var(--itnt-primary);
  --bs-btn-hover-bg: var(--itnt-primary-dark);
  --bs-btn-hover-border-color: var(--itnt-primary-dark);
}
.btn:focus-visible,
.form-control:focus,
.form-select:focus {
  border-color: #8b9dec;
  box-shadow: 0 0 0 0.2rem rgba(79, 109, 225, 0.13);
}
.card {
  border-color: var(--itnt-border) !important;
  border-radius: var(--itnt-radius);
  box-shadow: var(--itnt-shadow) !important;
}
.card-header {
  border-color: var(--itnt-border) !important;
}
.eyebrow,
.overline {
  color: #8792a4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.45px;
  text-transform: uppercase;
}
.form-label {
  color: #4e5b70;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
}
.form-control,
.form-select {
  border-color: #dbe1e9;
  border-radius: 8px;
  color: #293448;
  font-size: 14px;
  min-height: 41px;
}
.form-control::placeholder {
  color: #a2aab6;
}
.table {
  --bs-table-bg: transparent;
}
.table thead th {
  background: #fafbfc !important;
  border-bottom-color: var(--itnt-border);
  color: #7d899b !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.45px;
  padding: 13px 16px !important;
  text-transform: uppercase;
}
.table tbody td {
  border-bottom-color: #edf0f4;
  color: #344055;
  font-size: 13px;
  padding: 15px 16px !important;
}
.table-hover > tbody > tr:hover > * {
  --bs-table-bg-state: #f8f9fd;
}
.badge,
.status,
.status-badge {
  letter-spacing: 0.01em;
}
.empty,
.empty-state,
.detail-placeholder {
  color: var(--itnt-muted);
}
.demo-badge {
  align-items: center;
  background: #fff5dd;
  border: 1px solid #f1ddb1;
  border-radius: 12px;
  color: #a96b18;
  display: inline-flex;
  font-size: 9px;
  font-weight: 700;
  gap: 5px;
  padding: 5px 8px;
  text-transform: uppercase;
}
.demo-badge::before {
  background: #e59a2a;
  border-radius: 50%;
  content: "";
  height: 6px;
  width: 6px;
}
.page-note {
  align-items: center;
  background: #eef2ff;
  border: 1px solid #dce4ff;
  border-radius: 10px;
  color: #566682;
  display: flex;
  font-size: 13px;
  gap: 10px;
  padding: 11px 14px;
}
.page-note strong {
  color: #405bc0;
}

/* Shared readability upgrades for role-specific components */
.metric small,
.ceo-metric small,
.summary-card small {
  font-size: 12px !important;
}
.metric strong,
.ceo-metric strong,
.summary-card strong {
  font-size: 24px !important;
}
.meeting-item h3,
.ceo-meeting h3,
.action-card h3 {
  font-size: 14px !important;
}
.meeting-item p,
.ceo-meeting p,
.action-source,
.meeting-description {
  font-size: 11px !important;
}
.workflow-step span {
  font-size: 11px !important;
}
.action-row strong {
  font-size: 13px !important;
}
.action-row small,
.owner-info strong,
.due-date {
  font-size: 11px !important;
}
.owner-info small {
  font-size: 10px !important;
}
.status,
.status-badge,
.priority {
  font-size: 10px !important;
}
.card-header p.small,
.card p.small {
  font-size: 13px;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
  main.container-fluid {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .navbar .container-fluid {
    gap: 8px;
  }
  .navbar .d-flex.gap-2 {
    gap: 5px !important;
  }
  .navbar .d-flex.gap-2 .btn:not(.btn-primary) {
    display: none;
  }
  .card {
    border-radius: 10px;
  }
  .table thead th,
  .table tbody td {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}
