:root {
  color-scheme: light;
  --bg: #f4f7f5;
  --ink: #14201b;
  --muted: #52615b;
  --line: #cbd8d1;
  --surface: #ffffff;
  --surface-two: #eef5f2;
  --hold: #8f2344;
  --accent: #0b6f68;
  --accent-two: #9b4d17;
  --accent-three: #2257b8;
  font-family: "Aptos", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); }
.shell { width: min(1380px, calc(100% - 32px)); margin: 0 auto; padding: 30px 0 56px; }
.topbar { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); padding-bottom: 22px; }
.label { margin: 0 0 8px; color: var(--accent); font-weight: 850; }
h1 { margin: 0; font-size: 3rem; line-height: 1.04; letter-spacing: 0; text-wrap: balance; }
h2 { margin: 0; font-size: 1.08rem; }
h3 { margin: 0 0 8px; font-size: 1.03rem; }
p { margin: 0; }
.lede { margin-top: 12px; max-width: 72ch; color: var(--muted); line-height: 1.55; }
nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; max-width: 460px; }
a { color: var(--ink); text-decoration: none; }
nav a { border: 1px solid var(--line); border-radius: 6px; padding: 9px 11px; background: var(--surface); font-weight: 800; }
.metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin-top: 18px; }
.metric, .row, .item { border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.metric { padding: 14px; }
.metric strong { display: block; font-size: 1.65rem; line-height: 1; color: var(--accent-two); }
.metric span, .muted, .section-head p { color: var(--muted); line-height: 1.45; }
.workbench { margin-top: 26px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 12px; }
.section-head p { max-width: 84ch; }
.rows { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 12px; }
.row { padding: 15px; min-height: 356px; }
.status { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 4px 8px; color: var(--accent-three); background: #f9fbfb; font-size: .78rem; font-weight: 850; margin-bottom: 10px; }
.copy { display: grid; gap: 8px; margin: 12px 0; }
.copy div { border: 1px solid var(--line); border-radius: 6px; padding: 8px; background: #fbfcfc; }
.tags, .flags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.tag, .flag { border: 1px solid var(--line); border-radius: 999px; padding: 5px 8px; background: #fbfcfc; font-size: .78rem; }
.flag { color: var(--hold); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stack { display: grid; gap: 10px; margin-top: 12px; }
.item { padding: 13px; background: var(--surface-two); }
@media (max-width: 900px) {
  .topbar, .section-head, .two-col { display: block; }
  nav { justify-content: flex-start; margin-top: 16px; }
  h1 { font-size: 2.08rem; }
  .shell { width: min(100% - 20px, 1380px); padding-top: 22px; }
}
