/* Homi base — tokens & resets */
:root{
  /* Brand */
  --homi-forest:#1B4332;
  --homi-mid:#2D6A4F;
  --homi-gold:#D4A017;
  --homi-mint:#EEF7F1;

  /* Neutrals */
  --bg:#F5F8F6;
  --surface:#FFFFFF;
  --surface-alt:#FBFDFC;
  --border:#E2E8E4;
  --border-strong:#CBD5D0;
  --text:#1F2A24;
  --text-muted:#5B6B63;
  --text-faint:#8A968F;

  /* Semantic */
  --success:#2D6A4F;
  --warning:#B45309;
  --danger:#B91C1C;
  --info:#0E7490;

  /* Type */
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  --radius-sm:6px;
  --radius:10px;
  --radius-lg:14px;
  --shadow-sm:0 1px 2px rgba(15,30,22,.06);
  --shadow:0 6px 24px rgba(15,30,22,.08);
}

*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);
  font-family:var(--font-sans);font-size:14px;line-height:1.5;-webkit-font-smoothing:antialiased}
h1,h2,h3,h4{margin:0 0 .5em;color:var(--text);font-weight:600;line-height:1.25}
h1{font-size:22px}h2{font-size:18px}h3{font-size:16px}h4{font-size:14px}
p{margin:0 0 1em}
a{color:var(--homi-mid);text-decoration:none}
a:hover{color:var(--homi-forest);text-decoration:underline}
small,.small{font-size:12px}
.muted{color:var(--text-muted)}
.faint{color:var(--text-faint)}
hr{border:0;border-top:1px solid var(--border);margin:16px 0}
code,kbd{font-family:var(--font-mono);font-size:12.5px;background:#F1F5F2;padding:1px 5px;border-radius:4px;color:#0F2A1F}
.tabular{font-variant-numeric:tabular-nums}
.text-right{text-align:right}
.text-center{text-align:center}
.nowrap{white-space:nowrap}
.hidden{display:none !important}
