:root {
  --bg: #080a0a;
  --sidebar: #101313;
  --stage: #0d1010;
  --surface: #15191a;
  --surface-2: #1b2022;
  --surface-3: #23292c;
  --ink: #f6f8f4;
  --muted: #99a39f;
  --quiet: #68736f;
  --line: #2a3133;
  --line-strong: #3a4447;
  --green: #10c46a;
  --green-soft: rgba(16, 196, 106, 0.14);
  --amber: #f2b84b;
  --amber-soft: rgba(242, 184, 75, 0.13);
  --red: #ff5f73;
  --red-soft: rgba(255, 95, 115, 0.13);
  --blue: #68a7ff;
  --blue-soft: rgba(104, 167, 255, 0.13);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  color: var(--ink);
  background: var(--bg);
  font-family: "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(880px 460px at 36% -12%, rgba(16, 196, 106, 0.17), transparent 62%),
    linear-gradient(180deg, #101313 0, var(--bg) 520px);
}

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

button {
  cursor: pointer;
}

.app-frame {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  transition: grid-template-columns 180ms ease;
}

.app-frame.sidebar-collapsed {
  grid-template-columns: 78px minmax(0, 1fr);
}

.mobile-bar,
.nav-scrim {
  display: none;
}

.app-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  background: rgba(16, 19, 19, 0.92);
  border-right: 1px solid var(--line);
  backdrop-filter: blur(16px);
  overflow-y: auto;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px 18px;
  border-bottom: 1px solid var(--line);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #06100a;
  background: var(--green);
  border-radius: 14px;
  font-weight: 950;
}

.brand-copy {
  min-width: 0;
}

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

.sidebar-brand span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.sidebar-toggle {
  width: 38px;
  height: 38px;
  margin-left: auto;
  display: grid;
  place-content: center;
  gap: 4px;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.sidebar-toggle span {
  width: 16px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
}

.sidebar-nav {
  display: grid;
  gap: 7px;
}

.nav-item {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  text-align: left;
  font-weight: 780;
}

.nav-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--quiet);
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.icon-board::before {
  inset: 2px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.icon-board::after {
  left: 8px;
  top: 3px;
  width: 2px;
  height: 12px;
  background: currentColor;
  box-shadow: -5px 5px 0 -0.5px currentColor, 5px -1px 0 -0.5px currentColor;
}

.icon-plus::before,
.icon-plus::after {
  left: 8px;
  top: 3px;
  width: 2px;
  height: 12px;
  background: currentColor;
  border-radius: 999px;
}

.icon-plus::after {
  transform: rotate(90deg);
}

.icon-check::before {
  left: 3px;
  top: 4px;
  width: 12px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.icon-close-day::before {
  inset: 2px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.icon-close-day::after {
  left: 5px;
  right: 5px;
  top: 7px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 4px 0 currentColor;
}

.icon-clients::before {
  left: 2px;
  top: 2px;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow: 7px 1px 0 -1px currentColor;
}

.icon-clients::after {
  left: 1px;
  bottom: 2px;
  width: 16px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 999px 999px 3px 3px;
}

.icon-bell::before {
  left: 4px;
  top: 2px;
  width: 10px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 9px 9px 4px 4px;
}

.icon-bell::after {
  left: 7px;
  bottom: 1px;
  width: 4px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.icon-history::before {
  inset: 2px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.icon-history::after {
  left: 8px;
  top: 5px;
  width: 5px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.nav-item .nav-icon {
  color: var(--quiet);
}

.nav-item:hover,
.nav-item.is-active {
  color: var(--ink);
  background: var(--surface-2);
  border-color: var(--line);
}

.nav-item.is-active .nav-icon {
  color: var(--green);
}

.sidebar-collapsed .app-sidebar {
  padding: 18px 12px;
  overflow-x: hidden;
}

.sidebar-collapsed .sidebar-brand {
  justify-content: center;
  padding-inline: 0;
}

.sidebar-collapsed .brand-copy,
.sidebar-collapsed .nav-label,
.sidebar-collapsed .sidebar-card {
  display: none;
}

.sidebar-collapsed .brand-mark {
  width: 42px;
  height: 42px;
}

.sidebar-collapsed .sidebar-toggle {
  position: fixed;
  left: 20px;
  bottom: 18px;
  z-index: 10;
  margin-left: 0;
}

.sidebar-collapsed .nav-item {
  justify-content: center;
  padding: 0;
}

.sidebar-card,
.quick-entry,
.side-section,
.board-main,
.metric,
.focus-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)), var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.sidebar-card {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.sidebar-card p {
  margin: 0;
}

.field span,
.eyebrow,
.chip,
.meta {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-stage {
  min-width: 0;
  padding: 22px clamp(18px, 3vw, 34px) 34px;
}

.stage-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.stage-topbar h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}

.top-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--green);
}

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

h2,
h3 {
  margin-bottom: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  font-size: 21px;
}

h3 {
  font-size: 15px;
}

p {
  color: var(--muted);
  line-height: 1.55;
}

.overview-strip {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.metric {
  min-height: 112px;
  padding: 16px;
  box-shadow: none;
}

.metric-primary {
  background:
    linear-gradient(135deg, rgba(16, 196, 106, 0.34), rgba(16, 196, 106, 0.06)),
    var(--surface);
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1;
}

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

.focus-card {
  min-height: 138px;
  padding: 14px;
  border-radius: 16px;
  box-shadow: none;
}

.focus-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 11px;
}

.focus-card strong {
  font-size: 14px;
}

.focus-card .count {
  min-width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #06100a;
  background: var(--green);
  border-radius: 999px;
  font-weight: 950;
}

.focus-list {
  display: grid;
  gap: 7px;
}

.focus-item {
  padding: 8px 9px;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.35;
}

.focus-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.board-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.board-main,
.quick-entry,
.side-section {
  padding: 16px;
}

.board-toolbar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}

.board-toolbar p {
  margin-bottom: 0;
}

.toolbar-controls {
  display: grid;
  gap: 10px;
}

.filter-row {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.chip {
  min-height: 34px;
  flex: 0 0 auto;
  padding: 0 11px;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
}

.chip.is-active {
  color: #06100a;
  background: var(--green);
  border-color: var(--green);
}

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

.kanban-board {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.kanban-column {
  flex: 0 0 268px;
  width: 268px;
  display: flex;
  flex-direction: column;
  max-height: 72vh;
  padding: 11px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-top: 3px solid var(--line);
  border-radius: 18px;
}

.kanban-column.col-todo { border-top-color: #4aa3ff; }
.kanban-column.col-doing { border-top-color: #f2c14e; }
.kanban-column.col-waiting { border-top-color: #ff8c42; }
.kanban-column.col-paused { border-top-color: #b07cff; }
.kanban-column.col-done { border-top-color: #10c46a; }
.kanban-column.col-todo .kanban-head strong { color: #8cc6ff; }
.kanban-column.col-doing .kanban-head strong { color: #f5d27a; }
.kanban-column.col-waiting .kanban-head strong { color: #ffb084; }
.kanban-column.col-paused .kanban-head strong { color: #c9a6ff; }
.kanban-column.col-done .kanban-head strong { color: #5fe0a0; }

.kanban-column.is-over {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 196, 106, 0.12);
}

.kanban-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 2px 2px 10px;
}

.kanban-head strong {
  font-size: 14px;
}

.kanban-head span {
  min-width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--surface-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.kanban-dropzone,
.recurring-list,
.close-form {
  display: grid;
  gap: 10px;
}

.kanban-dropzone {
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1 1 auto;
  min-height: 60px;
  align-content: start;
  padding-right: 3px;
}

.demand-card {
  cursor: pointer;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.demand-card h3,
.demand-card p,
.demand-card .next-action,
.demand-card .badge {
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.panel-head.compact {
  margin-bottom: 12px;
}

.panel-head p {
  margin-bottom: 0;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quick-entry .form {
  grid-template-columns: 1fr 1fr;
}

.span-2 {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 6px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 40px;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 9px 10px;
  outline: none;
}

textarea {
  min-height: 76px;
  resize: vertical;
}

textarea.small {
  min-height: 62px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 196, 106, 0.12);
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checks label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
}

.checks input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--green);
}

.button,
.icon-button,
.card-button {
  min-height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  font-weight: 850;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
}

.button-primary {
  color: #06100a;
  background: var(--green);
  border-color: var(--green);
}

.button-soft {
  color: var(--ink);
  background: var(--surface-2);
}

.icon-button {
  width: 42px;
  color: var(--ink);
  background: var(--surface-2);
  font-size: 18px;
}

.demand-card {
  padding: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)), var(--surface-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.demand-card.dragging {
  opacity: 0.55;
}

.demand-card.priority-Alta {
  border-left-color: var(--red);
}

.demand-card.priority-Media {
  border-left-color: var(--amber);
}

.demand-card.priority-Baixa {
  border-left-color: var(--blue);
}

.demand-card.done {
  opacity: 0.62;
}

.card-topline {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.priority-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.priority-Alta .priority-dot {
  background: var(--red);
}

.priority-Media .priority-dot {
  background: var(--amber);
}

.priority-Baixa .priority-dot {
  background: var(--blue);
}

.demand-title {
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
}

.demand-meta,
.demand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  color: var(--muted);
  background: var(--surface-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
}

.badge.late {
  color: var(--red);
  background: var(--red-soft);
  border-color: rgba(255, 95, 115, 0.32);
}

.badge.today {
  color: var(--amber);
  background: var(--amber-soft);
  border-color: rgba(242, 184, 75, 0.32);
}

.next-action {
  margin-top: 10px;
  color: var(--ink);
  font-size: 13px;
}

.demand-actions {
  justify-content: flex-start;
}

.status-select {
  min-width: 100%;
}

.card-button {
  min-width: 40px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--surface-3);
}

.card-button.danger {
  color: var(--red);
}

.empty {
  padding: 24px;
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.025);
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
}

.empty.small {
  padding: 14px;
  font-size: 13px;
}

.recurring-item {
  padding: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.recurring-item strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.recurring-item .meta {
  margin-top: 5px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  max-width: min(420px, calc(100vw - 36px));
  padding: 12px 14px;
  color: #06100a;
  background: var(--green);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: 180ms ease;
  font-weight: 850;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)), var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.modal-card.wide {
  width: min(980px, 100%);
}

.modal-card.narrow {
  width: min(560px, 100%);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.modal-head h2 {
  margin: 0;
}

.modal-form {
  grid-template-columns: 1fr 1fr;
}

.clients-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.client-list {
  display: grid;
  gap: 10px;
}

.client-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.client-card header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.client-card strong {
  font-size: 15px;
}

.client-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.client-links a {
  color: var(--green);
  font-size: 12px;
  text-decoration: none;
}

.client-actions {
  display: flex;
  gap: 8px;
}

@media (max-width: 1260px) {
  .app-frame {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    position: static;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
  }

  .sidebar-nav {
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  }

  .board-shell,
  .clients-layout {
    grid-template-columns: 1fr;
  }

  .filter-row {
    justify-content: flex-start;
  }

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

@media (max-width: 820px) {
  /* Layout vira coluna unica e ganha a barra mobile no topo */
  .app-frame {
    display: block;
    min-height: 100dvh;
  }

  .mobile-bar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    padding-top: max(10px, env(safe-area-inset-top));
    background: rgba(13, 16, 16, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }

  .mobile-brand {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    font-size: 15px;
  }

  .mobile-mark {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: #06100a;
    background: var(--green);
    border-radius: 9px;
    font-size: 13px;
    font-weight: 950;
  }

  .mobile-burger {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    color: var(--ink);
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .mobile-burger span {
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
  }

  .mobile-add {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    font-size: 26px;
    line-height: 0;
    color: #06100a;
    background: var(--green);
    border: none;
    border-radius: 12px;
    font-weight: 700;
  }

  /* Sidebar vira gaveta deslizante */
  .app-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: min(82vw, 320px);
    height: 100dvh;
    transform: translateX(-100%);
    transition: transform 220ms ease;
    box-shadow: 30px 0 60px rgba(0, 0, 0, 0.45);
  }

  .app-frame.mobile-nav-open .app-sidebar {
    transform: translateX(0);
  }

  .nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: block;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .app-frame.mobile-nav-open .nav-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  /* Dentro da gaveta o conteudo aparece inteiro, ignorando o estado recolhido do desktop */
  .app-frame.sidebar-collapsed .app-sidebar {
    padding: 18px;
  }

  .app-frame.sidebar-collapsed .brand-copy {
    display: block;
  }

  .app-frame.sidebar-collapsed .nav-label {
    display: inline;
  }

  .app-frame.sidebar-collapsed .sidebar-card {
    display: block;
  }

  .app-frame.sidebar-collapsed .nav-item {
    justify-content: flex-start;
    padding: 0 12px;
  }

  /* O toggle interno do desktop nao serve na gaveta */
  .sidebar-brand .sidebar-toggle {
    display: none;
  }

  .sidebar-nav {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .nav-item {
    min-height: 50px;
  }

  .main-stage {
    padding: 16px 14px 32px;
  }

  .stage-topbar,
  .top-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .stage-topbar h1 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .overview-strip,
  .focus-grid,
  .toolbar-grid,
  .form {
    grid-template-columns: 1fr;
  }

  .kanban-column {
    flex-basis: 82vw;
    width: 82vw;
    max-height: none;
  }
}
