/* [project]/app/globals.css [app-client] (css) */
:root {
  --bg: #f6f7f9;
  --panel: #fff;
  --panel-2: #f1f3f6;
  --text: #171b22;
  --muted: #64707d;
  --line: #e2e6ea;
  --accent: #1769e0;
  --accent-hover: #1058c3;
  --accent-soft: #eaf2ff;
  --good: #16834f;
  --good-soft: #e4f5ec;
  --warn: #b56a00;
  --warn-soft: #fff2d8;
  --danger: #d43b45;
  --danger-soft: #ffe8eb;
  --neutral-soft: #eef1f4;
  --shadow: 0 1px 2px #0f172a0d, 0 10px 26px #0f172a0a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  overflow-x: hidden;
}

button, a, select, input {
  font: inherit;
}

button, select {
  cursor: pointer;
}

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

.sidebar {
  z-index: 20;
  border-right: 1px solid var(--line);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #fffffff5;
  flex-direction: column;
  gap: 18px;
  height: 100vh;
  padding: 16px 14px;
  display: flex;
  position: sticky;
  top: 0;
}

.brand {
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 0 4px 8px;
  display: flex;
}

.brandMark {
  background: var(--text);
  color: #fff;
  border-radius: 7px;
  place-items: center;
  width: 32px;
  height: 32px;
  font-weight: 800;
  display: grid;
}

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

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

.brand span, .smallLabel, .taskRow span, .timeline time, .decision time {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  gap: 4px;
  display: grid;
}

.navItem {
  min-height: 42px;
  color: var(--muted);
  border-left: 3px solid #0000;
  border-radius: 7px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  display: flex;
}

.navItem.active, .navItem:hover {
  background: var(--accent-soft);
  color: var(--text);
  border-left-color: var(--accent);
}

.sidebarFooter {
  border-top: 1px solid var(--line);
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  display: flex;
}

.notificationButton, .userMenu {
  min-height: 34px;
  color: var(--text);
  background: none;
  border: 0;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.notificationButton {
  border-radius: 7px;
  justify-content: flex-start;
  width: 100%;
  padding: 0 10px;
  position: relative;
}

.notificationButton span {
  background: var(--danger);
  color: #fff;
  border-radius: 999px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 800;
  line-height: 16px;
  position: absolute;
  top: 9px;
  right: 10px;
}

.workspaceState {
  background: var(--good-soft);
  min-height: 34px;
  color: var(--good);
  text-transform: capitalize;
  border-radius: 7px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 750;
  display: flex;
}

.userMenu {
  border-radius: 7px;
  justify-content: flex-start;
  gap: 7px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 750;
}

.content {
  width: 100%;
  min-width: 0;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 148px;
  padding: 26px 32px 20px;
  display: grid;
}

.eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 800;
}

h1, h2, h3, p {
  margin: 0;
}

h1 {
  letter-spacing: 0;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.1;
}

h2 {
  font-size: 18px;
}

h3 {
  font-size: 16px;
}

.topbar p, .metric p, .project p, .decision p, .memoryNote p {
  color: var(--muted);
  line-height: 1.48;
}

.topbar p {
  max-width: 620px;
  margin-top: 10px;
}

.topActions {
  place-items: center start;
  gap: 10px;
  display: grid;
}

.iconButton, .commandButton {
  border: 1px solid var(--line);
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  min-height: 38px;
  display: inline-flex;
}

.iconButton {
  background: var(--panel);
  width: 38px;
  color: var(--text);
}

.commandButton {
  gap: 8px;
  min-width: 0;
  padding: 0 16px;
  font-weight: 750;
}

.commandButton span {
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
}

.primaryButton {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.primaryButton:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
}

.secondaryButton {
  background: var(--panel);
  color: var(--text);
}

.filterBar {
  border: 1px solid var(--line);
  background: var(--panel);
  width: min(100% - 64px, 1180px);
  min-height: 70px;
  box-shadow: var(--shadow);
  border-radius: 8px;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin: 40px auto 24px;
  padding: 16px;
  display: grid;
}

.filterTitle {
  color: var(--muted);
  align-items: center;
  gap: 8px;
  font-weight: 750;
  display: inline-flex;
}

.filterTitle svg {
  color: var(--accent);
}

.filterControls {
  gap: 10px;
  display: flex;
}

.filterControls select {
  background: var(--panel-2);
  min-width: 154px;
  height: 40px;
  color: var(--text);
  border: 0;
  border-radius: 6px;
  padding: 0 12px;
}

.filterCount {
  color: var(--muted);
  white-space: nowrap;
  font-size: 13px;
}

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

.healthGrid, .workGrid, .memoryPanel {
  width: min(100% - 64px, 1180px);
  margin-left: auto;
  margin-right: auto;
}

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

.metric, .panel {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.metric {
  min-height: 110px;
  padding: 18px 16px;
}

.metricTop, .panelHeader, .taskRow, .project {
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  display: flex;
}

.metricTop {
  align-items: flex-start;
}

.metricTop svg {
  background: var(--accent-soft);
  width: 32px;
  height: 32px;
  color: var(--accent);
  border-radius: 7px;
  padding: 7px;
}

.metric h2 {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 28px;
}

.metric p {
  font-size: 12px;
}

.pill {
  white-space: nowrap;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
}

.statusOk {
  color: var(--good);
  background: var(--good-soft);
}

.statusWatch {
  color: var(--warn);
  background: var(--warn-soft);
}

.statusBuild, .statusNext {
  color: var(--accent);
  background: var(--accent-soft);
}

.statusLater {
  color: var(--muted);
  background: var(--neutral-soft);
}

.workGrid {
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, .75fr);
  gap: 16px;
  margin-bottom: 16px;
  display: grid;
}

.singleColumn {
  width: min(100% - 64px, 980px);
  margin: 0 auto;
}

.panel {
  padding: 18px;
}

.largePanel {
  min-height: 360px;
}

.panelHeader {
  margin-bottom: 16px;
}

.panelHeader h2 {
  margin-top: 3px;
}

.count {
  background: var(--panel-2);
  min-width: 34px;
  height: 26px;
  color: var(--text);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
}

.taskList, .timeline, .projectList, .decisionList {
  gap: 10px;
  display: grid;
}

.taskRow {
  border: 1px solid var(--line);
  background: #fbfcfe;
  border-radius: 8px;
  min-height: 74px;
  padding: 13px 14px;
}

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

.taskRow strong {
  margin-bottom: 6px;
}

.taskMeta {
  text-align: right;
  justify-items: end;
  gap: 7px;
  min-width: 96px;
  display: grid;
}

.timelineItem {
  border-left: 2px solid var(--line);
  padding: 4px 0 4px 14px;
}

.timelineItem p {
  margin-top: 4px;
  line-height: 1.45;
}

.project {
  border: 1px solid var(--line);
  background: #fbfcfe;
  border-radius: 8px;
  align-items: flex-start;
  padding: 14px;
}

.project p, .decision p, .memoryNote p {
  margin-top: 7px;
  font-size: 14px;
}

.decision {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.decision:first-child {
  padding-top: 0;
}

.decision:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.decision strong, .memoryNote strong {
  margin-top: 5px;
  display: block;
}

.memoryPanel {
  margin-bottom: 40px;
}

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

.memoryNote {
  border: 1px solid var(--line);
  background: #fbfcfe;
  border-radius: 8px;
  min-height: 170px;
  padding: 14px;
  overflow: hidden;
}

.loginShell {
  background: var(--bg);
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  display: grid;
}

.loginPanel {
  border: 1px solid var(--line);
  background: var(--panel);
  width: min(100%, 420px);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 22px;
}

.loginBrand {
  padding: 0 0 22px;
}

.loginTitle {
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  display: flex;
}

.loginTitle h1 {
  margin-top: 0;
  font-size: 24px;
}

.loginForm {
  gap: 10px;
  display: grid;
}

.loginForm label {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.loginForm input {
  border: 1px solid var(--line);
  height: 42px;
  color: var(--text);
  background: #fbfcfe;
  border-radius: 7px;
  padding: 0 12px;
}

.loginForm input:focus {
  border-color: var(--accent);
  outline: 3px solid var(--accent-soft);
}

.formError {
  color: var(--danger);
  font-size: 14px;
}

.loginButton {
  width: 100%;
  margin-top: 6px;
}

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

  .sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    flex-flow: wrap;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 100vw;
    height: auto;
    min-height: 48px;
    padding: 10px 18px;
    position: sticky;
    overflow: hidden;
  }

  .nav {
    scrollbar-width: none;
    flex: 1 0 100%;
    order: 3;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: flex;
    overflow-x: auto;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .navItem {
    white-space: nowrap;
    border-bottom: 2px solid #0000;
    border-left: 0;
  }

  .navItem.active, .navItem:hover {
    border-left-color: #0000;
    border-bottom-color: var(--accent);
  }

  .sidebarFooter {
    border-top: 0;
    flex-direction: row;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
  }

  .notificationButton {
    justify-content: center;
    width: 34px;
    padding: 0;
  }

  .notificationButton span {
    top: 4px;
    right: 3px;
  }

  .workspaceState {
    background: none;
  }

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

  .workGrid, .filterBar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .sidebar {
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand span, .sidebarFooter, .userMenu span, .workspaceState {
    display: none;
  }

  .topbar {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px 18px;
  }

  .topActions {
    justify-items: stretch;
    width: 100%;
    overflow: hidden;
  }

  .commandButton {
    width: 100%;
  }

  .filterBar, .healthGrid, .workGrid, .memoryPanel, .singleColumn {
    width: calc(100% - 28px);
  }

  .filterControls {
    flex-direction: column;
  }

  .filterControls select {
    width: 100%;
  }

  .healthGrid, .memoryGrid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 28px;
  }

  .taskRow, .project {
    flex-direction: column;
    align-items: flex-start;
  }

  .taskMeta {
    text-align: left;
    justify-items: start;
  }
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/