/* Reclamo shared design foundation — source v1 */
:root {
  --primary: #2c546b;
  --accent: #22c3d2;
  --surface: #eff8f9;
  --page-bg: #f3fbfb;
  --brand: var(--primary);
  --brand2: #3d7085;
  --accent-dark: #118a95;
  --accent-soft: #dcf8fa;
  --ink: #17242c;
  --muted: #667780;
  --line: #dce7e9;
  --soft: var(--surface);
  --paper: #fff;
  --ok: #2f7d61;
  --danger: #a94343;
  --shadow: 0 16px 45px rgba(20, 34, 43, .13);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { background: var(--page-bg); }
body {
  margin: 0;
  background: var(--page-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; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(34, 195, 210, .28);
  outline-offset: 2px;
}

/* Shared state language used by every task-based Reclamo product. */
.task { transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.task.next {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(34, 195, 210, .12);
}
.task.next .task-icon {
  background: var(--accent-soft);
  color: var(--accent-dark);
}
.state {
  justify-self: end;
  padding: 6px 8px;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}
.done .state { background: var(--accent-soft); color: var(--ok); }
.next-state { background: var(--accent) !important; color: #123b43 !important; }
.pending-state { color: var(--muted); }

.next-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.next-card-head span:first-child {
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.next-card-head span:last-child {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
}

.micro-actions.single-action,
.sheet-actions.single-action { grid-template-columns: 1fr; }

@media (max-width: 480px) {
  .state { padding: 5px 7px; font-size: 10px; }
}
