:root {
  color-scheme: light;
  --ink: #1d2925;
  --muted: #68736f;
  --line: #dce4df;
  --paper: #f7faf8;
  --card: #ffffff;
  --accent: #2d6a4f;
  --accent-soft: #e5f0e9;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.55 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell { max-width: 760px; margin: 0 auto; padding: 12vh 24px 15vh; }
.intro { margin-bottom: 48px; }
.eyebrow { color: var(--accent); font-size: .76rem; font-weight: 700; letter-spacing: .14em; margin: 0 0 12px; text-transform: uppercase; }
h1 { font-size: clamp(2.2rem, 7vw, 4.4rem); letter-spacing: -.055em; line-height: .98; margin: 0 0 20px; }
.lede { color: var(--muted); font-size: 1.15rem; margin: 0; max-width: 38rem; }
.updated { color: var(--muted); font-size: .86rem; margin: 18px 0 0; }
.status-group { margin: 0 0 34px; }
.status-heading { align-items: center; display: flex; gap: 10px; font-size: .82rem; letter-spacing: .1em; margin: 0 0 11px; text-transform: uppercase; }
.status-heading::before { background: var(--accent); border-radius: 50%; content: ""; height: 9px; width: 9px; }
.status-heading[data-status="Done"]::before { background: #75a889; }
.status-heading[data-status="Canceled"]::before { background: #9aa39f; }
.issue { background: var(--card); border: 1px solid var(--line); border-radius: 10px; margin: 8px 0; padding: 15px 17px; }
.issue-title { margin: 0; }
.client-action { border-top: 1px solid var(--line); display: grid; gap: 9px; margin-top: 14px; padding-top: 14px; }
.client-action label { font-size: .9rem; }
.client-action textarea { border: 1px solid var(--line); border-radius: 6px; font: inherit; min-height: 70px; padding: 9px; resize: vertical; }
.client-action button { background: var(--accent); border: 0; border-radius: 6px; color: #fff; cursor: pointer; justify-self: start; padding: 9px 13px; }
.client-action button:disabled { cursor: default; opacity: .6; }
.action-message { color: var(--muted); font-size: .86rem; margin: 0; }
.message { color: var(--muted); }
.message.error { color: #9b3f35; }

@media (max-width: 520px) { .shell { padding-top: 9vh; } }
