/* Design tokens — light & dark via [data-theme] */
:root {
  --brand: #0F1B2D;
  --brand2: #C9A34A;
  --brand-soft: rgba(201,163,74,.15);
  --radius: 14px;
  --radius-sm: 10px;
  --gap: 14px;
  --hdr-h: 54px;
  --nav-h: 58px;
  --font: -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
:root[data-theme="light"] {
  --bg: #f3f5f9;
  --surface: #ffffff;
  --surface2: #eef1f6;
  --text: #121826;
  --muted: #6b7280;
  --border: #e2e6ee;
  --accent: var(--brand);
  --accent-fg: #fff;
  --accent2: var(--brand2);
  --danger: #dc2626;
  --ok: #16a34a;
  --amber: #d97706;
  --shadow: 0 1px 3px rgba(16,24,40,.08), 0 6px 20px -8px rgba(16,24,40,.14);
}
:root[data-theme="dark"] {
  --bg: #0b0f17;
  --surface: #141a26;
  --surface2: #1c2333;
  --text: #e8ecf3;
  --muted: #9aa3b2;
  --border: #262f40;
  --accent: #2a3f63;
  --accent-fg: #fff;
  --accent2: #d9b45c;
  --danger: #f87171;
  --ok: #4ade80;
  --amber: #fbbf24;
  --shadow: 0 1px 3px rgba(0,0,0,.4), 0 8px 24px -10px rgba(0,0,0,.6);
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); background: var(--bg); color: var(--text);
  min-height: 100dvh; -webkit-font-smoothing: antialiased;
}
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 16px; }