:root {
  color-scheme: light;
  --bg: #eef3f8;
  --panel: #ffffff;
  --panel-soft: #f7fafc;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #d9e2ec;
  --brand: #0f766e;
  --brand-dark: #115e59;
  --blue: #2563eb;
  --amber: #b45309;
  --red: #b91c1c;
  --green: #047857;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 18px;
}
.login-card, .shell-card, .metric, .item-card, .vps-card, .jira-card, .kanban-column {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  border-radius: 8px;
}
.login-card {
  width: min(520px, 100%);
  padding: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 950;
}
.brand strong, .brand span { display: block; }
.brand span { margin-top: 2px; color: var(--muted); font-size: 13px; font-weight: 700; }
.login-card h1 {
  margin: 26px 0 10px;
  font-size: clamp(30px, 8vw, 46px);
  line-height: 1.02;
}
.login-card p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 650;
}
.login-form {
  display: grid;
  gap: 10px;
}
.login-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}
.login-form input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
  outline: none;
}
.login-form input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.12);
}

.app-shell { min-height: 100vh; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
}
.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.user-chip {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}
.content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 16px 34px;
}
.hero {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: stretch;
}
.shell-card { padding: 18px; }
.eyebrow {
  margin: 0;
  color: var(--brand);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 950;
}
.hero h1 {
  margin: 8px 0 8px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.03;
}
.hero p, .shell-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.6;
}
.cost-note {
  border-color: #99f6e4;
  background: #ecfdf5;
}
.cost-note strong {
  display: block;
  margin-bottom: 8px;
  color: #064e3b;
}

.metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 14px 0;
}
.metric {
  padding: 14px;
  box-shadow: none;
}
.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0;
}
.main-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}
.tab {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
  font-weight: 950;
}
.tab.active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.migration-note, .project-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.migration-note {
  margin: 14px 0;
  border-color: #bfdbfe;
  background: #eff6ff;
}
.migration-note strong {
  display: block;
  color: #1e3a8a;
  margin-bottom: 6px;
}
.migration-note p {
  margin: 0 0 6px;
  color: #334155;
  font-weight: 700;
  line-height: 1.5;
}
.project-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}
.project-tab {
  min-height: 70px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  text-align: left;
  padding: 10px;
}
.project-tab strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}
.project-tab span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}
.project-tab.active {
  border-color: var(--brand);
  background: #ecfdf5;
  box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.1);
}
.project-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}
.project-head h2 {
  margin: 5px 0 8px;
  font-size: 28px;
}
.project-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}
.project-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}
.project-meta-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  padding: 10px;
}
.project-meta-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.project-meta-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
}
.progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
  margin-top: 12px;
}
.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
}
.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}
.project-actions span, .project-actions code {
  border: 1px solid var(--line);
  background: var(--panel-soft);
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.project-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.project-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  padding: 12px;
}
.project-list h3, .mini-title {
  margin: 0 0 8px;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--ink);
}
.project-list ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.5;
}
.project-list li + li { margin-top: 6px; }
.project-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}
.project-refresh {
  margin-top: 14px;
}

.jira-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-end;
  margin: 14px 0 10px;
}
.jira-head h2 {
  margin: 4px 0 6px;
  font-size: 26px;
}
.jira-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.multiagent-note {
  margin-top: 6px !important;
  color: #6d28d9 !important;
  font-size: 12px;
  font-weight: 900 !important;
}
.area-strip {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}
.area-strip button {
  min-width: 0;
  min-height: 62px;
  display: grid;
  gap: 4px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  text-align: left;
  padding: 9px;
}
.area-strip button.active {
  border-color: var(--brand);
  background: #ecfdf5;
}
.area-strip strong, .area-strip span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.area-strip strong { font-size: 12px; }
.area-strip span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}
.filters-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 10px;
  margin: 12px 0;
}
.filter-field {
  min-width: 0;
  display: grid;
  gap: 5px;
}
.filter-field span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.filter-field select {
  min-width: 0;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 9px;
  font-weight: 800;
}
.kanban-board {
  display: grid;
  grid-template-columns: repeat(7, minmax(260px, 1fr));
  gap: 10px;
  align-items: start;
  overflow-x: auto;
  padding-bottom: 8px;
}
.kanban-column {
  min-height: 220px;
  box-shadow: none;
  background: #f8fafc;
}
.kanban-column-head {
  position: sticky;
  top: 73px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 46px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
  padding: 10px;
}
.kanban-column-head strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}
.kanban-column-head span {
  display: inline-grid;
  min-width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: #e2e8f0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}
.kanban-items {
  display: grid;
  gap: 8px;
  padding: 8px;
}
.jira-card {
  padding: 11px;
  box-shadow: none;
  background: var(--panel);
}
.jira-card-head {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  align-items: center;
}
.jira-card h3 {
  margin: 9px 0 6px;
  font-size: 15px;
  line-height: 1.25;
}
.jira-card p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}
.blocker-reason {
  border: 1px solid #fecaca;
  border-radius: 8px;
  background: #fef2f2;
  color: var(--red) !important;
  padding: 8px;
}
.jira-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin: 8px 0;
}
.jira-meta span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  color: var(--muted);
  padding: 6px 7px;
  font-size: 11px;
  font-weight: 850;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 8px 0;
}
.tag-row span {
  border-radius: 999px;
  background: #e0f2fe;
  color: #075985;
  padding: 4px 7px;
  font-size: 11px;
  font-weight: 900;
}
.dependency-box {
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: #fff7ed;
  padding: 8px;
  margin: 8px 0;
}
.dependency-box ul {
  margin: 7px 0 0;
  padding-left: 16px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
}
.dependency-box small {
  color: var(--muted);
  font-weight: 800;
}
.jira-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.compact {
  min-height: 36px;
  padding: 0 10px;
  font-size: 12px;
}
.danger {
  border-color: #fecaca;
  color: var(--red);
}
.primary:disabled, .secondary:disabled, .ghost:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.audit-box {
  display: grid;
  gap: 5px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}
.job-mode-box {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}
.job-mode-box small {
  border-radius: 999px;
  background: #f5f3ff;
  color: #6d28d9;
  padding: 4px 7px;
  font-size: 10px;
  font-weight: 900;
}
.stage-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.stage-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-soft);
  color: var(--muted);
  padding: 4px 7px;
  font-size: 10px;
  font-weight: 950;
}
.stage-row span.running { border-color: #c4b5fd; background: #f5f3ff; color: #6d28d9; }
.stage-row span.done { border-color: #bbf7d0; background: #f0fdf4; color: var(--green); }
.stage-row span.failed { border-color: #fecaca; background: #fef2f2; color: var(--red); }
.audit-box p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}
.audit-box p strong { color: var(--ink); }
.audit-box p span { color: #94a3b8; }
.audit-box code {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 8px;
  background: #f1f5f9;
  color: #334155;
  padding: 7px;
  font-size: 11px;
}
.badge.status-ready, .badge.status-waiting_validation { border-color: #bfdbfe; background: #eff6ff; color: var(--blue); }
.badge.status-waiting_implementation, .badge.wait { border-color: #fed7aa; background: #fff7ed; color: var(--amber); }
.badge.status-implementing { border-color: #c4b5fd; background: #f5f3ff; color: #6d28d9; }
.badge.status-blocked, .badge.status-cancelled { border-color: #fecaca; background: #fef2f2; color: var(--red); }
.badge.status-approved, .badge.status-done { border-color: #bbf7d0; background: #f0fdf4; color: var(--green); }
.badge.mode-multiagente { border-color: #c4b5fd; background: #f5f3ff; color: #6d28d9; }
.empty.small {
  padding: 10px;
  font-size: 12px;
}

.lane-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin: 18px 0 10px;
}
.lane-head h2 {
  margin: 0;
  font-size: 22px;
}
.lane-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 650;
}
.actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.primary, .secondary, .ghost {
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 14px;
  font-weight: 950;
}
.primary { background: var(--brand); color: #fff; }
.primary:hover { background: var(--brand-dark); }
.secondary { background: #fff; border-color: var(--line); color: var(--ink); }
.ghost { background: transparent; color: var(--muted); border-color: transparent; }

.item-grid {
  display: grid;
  gap: 12px;
}
.item-card {
  padding: 16px;
  box-shadow: none;
}
.item-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.item-card h3 {
  margin: 4px 0 7px;
  font-size: 18px;
}
.item-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 650;
}
.badge {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  color: var(--muted);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 950;
}
.badge.high { border-color: #fecaca; background: #fef2f2; color: var(--red); }
.badge.medium { border-color: #fed7aa; background: #fff7ed; color: var(--amber); }
.badge.done, .badge.approved { border-color: #bbf7d0; background: #f0fdf4; color: var(--green); }
.badge.denied { border-color: #fecaca; background: #fef2f2; color: var(--red); }
.badge.review { border-color: #bfdbfe; background: #eff6ff; color: var(--blue); }

.answer-box {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}
.decision-options {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.decision-options legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}
.decision-option {
  min-height: 132px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  gap: 4px 8px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  padding: 11px;
}
.decision-option input {
  grid-row: 1 / span 3;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--brand);
}
.decision-option:has(input:checked) {
  border-color: var(--brand);
  background: #ecfdf5;
  box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.12);
}
.decision-option.denied:has(input:checked) {
  border-color: #fca5a5;
  background: #fef2f2;
  box-shadow: 0 0 0 2px rgba(185, 28, 28, 0.1);
}
.decision-option.in_review:has(input:checked) {
  border-color: #93c5fd;
  background: #eff6ff;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}
.choice-label {
  color: var(--brand);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.decision-option strong {
  display: block;
  min-width: 0;
  font-size: 14px;
  line-height: 1.25;
}
.decision-option small {
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 750;
}
.custom-answer {
  display: grid;
  gap: 6px;
}
.custom-answer span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}
.answer-box textarea {
  width: 100%;
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  resize: vertical;
  outline: none;
  background: #fff;
}
.answer-box textarea:focus { border-color: var(--brand); }
.answer-history {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}
.answer {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  border-radius: 8px;
  padding: 10px;
}
.answer strong {
  display: block;
  color: #064e3b;
  font-size: 12px;
  text-transform: uppercase;
}
.answer p {
  margin-top: 6px;
  color: var(--ink);
}

.vps-card {
  margin: 14px 0;
  padding: 16px;
  box-shadow: none;
  border-color: #bfdbfe;
  background: #eff6ff;
}
.vps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.vps-stat {
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dbeafe;
  padding: 10px;
}
.vps-stat span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.vps-stat strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}
.process-list {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}
.process-list code {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dbeafe;
  padding: 8px;
  color: #1e3a8a;
  font-size: 12px;
}
.container-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}
.container-list span {
  min-width: 0;
  display: grid;
  gap: 3px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dbeafe;
  padding: 8px;
}
.container-list strong, .container-list small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.container-list strong {
  color: #1e3a8a;
  font-size: 12px;
}
.container-list small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}
.alert {
  margin: 12px 0;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: var(--red);
  font-weight: 800;
}
.empty {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

@media (max-width: 860px) {
  .topbar-inner { align-items: flex-start; }
  .hero { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jira-head { display: block; }
  .area-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .filters-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-meta-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-columns { grid-template-columns: 1fr 1fr; }
  .decision-options { grid-template-columns: 1fr; }
  .decision-option { min-height: 0; }
  .vps-grid { grid-template-columns: 1fr; }
  .container-list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .topbar-inner { flex-direction: column; }
  .brand-mark { width: 40px; height: 40px; }
  .content { padding: 12px 10px 26px; }
  .shell-card, .item-card, .vps-card { padding: 14px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .main-tabs, .tabs { position: sticky; top: 77px; z-index: 15; background: var(--bg); padding: 8px 0; }
  .main-tabs { grid-template-columns: 1fr; }
  .tab { min-height: 44px; font-size: 13px; }
  .area-strip, .filters-panel { grid-template-columns: 1fr; }
  .kanban-board { grid-template-columns: repeat(7, minmax(246px, 86vw)); }
  .kanban-column-head { top: 190px; }
  .jira-actions .primary, .jira-actions .secondary { width: 100%; }
  .jira-meta { grid-template-columns: 1fr; }
  .project-tabs { grid-template-columns: 1fr; }
  .project-head { display: block; }
  .project-head .badge { margin-top: 10px; }
  .project-meta-grid, .project-columns { grid-template-columns: 1fr; }
  .project-actions .link-button, .project-actions span, .project-actions code { width: 100%; }
  .lane-head { display: block; }
  .actions-row { margin-top: 10px; }
  .item-top { display: block; }
  .item-top .badge { margin-top: 8px; }
  .primary, .secondary, .ghost { width: 100%; }
}
