:root {
  color-scheme: light;
  --bg: #f6f7f3;
  --ink: #17201c;
  --muted: #59645e;
  --line: #d8ded8;
  --surface: #ffffff;
  --soft: #eef4f0;
  --warn: #fff2de;
  --accent: #245f4a;
  --accent-two: #8c4f24;
  --accent-three: #2e5f8c;
  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); }
.horizon-command { width: min(1240px, calc(100% - 32px)); margin: 0 auto; padding: 32px 0 56px; }
.command-head { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
.crumb { margin: 0 0 10px; color: var(--accent); font-weight: 800; letter-spacing: 0; }
h1 { margin: 0; font-size: 4rem; line-height: 1.02; letter-spacing: 0; text-wrap: balance; }
h2 { margin: 0 0 14px; font-size: 1.04rem; }
p { margin: 0; }
a { color: var(--accent-three); }
.lede { max-width: 76ch; margin-top: 16px; color: var(--muted); font-size: 1.03rem; line-height: 1.58; }
.route-link { border: 1px solid var(--ink); color: var(--ink); text-decoration: none; padding: 10px 14px; border-radius: 6px; white-space: nowrap; font-weight: 800; }
.summary-grid, .board-grid, .product-grid, .policy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px; }
.summary-grid, .panel { margin-top: 20px; }
.metric, .panel { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 18px; }
.metric strong { display: block; color: var(--accent-two); font-size: 1.9rem; line-height: 1; overflow-wrap: anywhere; }
.metric span, .muted { color: var(--muted); line-height: 1.45; }
.product, .policy, .source, .watch { border: 1px solid var(--line); border-radius: 8px; padding: 14px; min-height: 132px; background: var(--soft); }
.product[data-blocked="true"] { background: var(--warn); }
.product strong, .source strong, .watch strong { display: block; margin-bottom: 6px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.badge { border: 1px solid var(--line); border-radius: 999px; padding: 5px 8px; background: #fbfbf8; font-size: 0.82rem; color: var(--ink); }
.item { display: grid; gap: 6px; padding: 12px 0; border-top: 1px solid var(--line); }
.item:first-child { border-top: 0; padding-top: 0; }
.flag-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 8px; }
.flag { border: 1px solid var(--line); border-radius: 6px; padding: 9px 12px; background: #fbfbf8; color: var(--ink); overflow-wrap: anywhere; }
@media (max-width: 720px) {
  .command-head { display: block; }
  h1 { font-size: 2.35rem; }
  .route-link { display: inline-block; margin-top: 18px; }
  .horizon-command { width: min(100% - 20px, 1240px); padding-top: 22px; }
}
