:root {
  --bg: #071019;
  --bg-elevated: #0c1622;
  --bg-soft: #101d2b;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.05);
  --border: rgba(184, 145, 77, 0.18);
  --border-strong: rgba(184, 145, 77, 0.34);
  --text: #f1f5fb;
  --text-soft: #b7c2d3;
  --text-muted: #7d8a9d;
  --primary: #4b88d9;
  --primary-soft: rgba(75, 136, 217, 0.14);
  --gold: #b8914d;
  --gold-soft: rgba(184, 145, 77, 0.10);
  --gold-line: rgba(184, 145, 77, 0.28);
  --danger: #ff7a7a;
  --success: #63cf9b;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --sidebar-width: 292px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(75, 136, 217, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(184, 145, 77, 0.07), transparent 18%),
    linear-gradient(180deg, #071019 0%, #09131d 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

h1, h2, h3, .brand-name, .topbar__title {
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: 0.01em;
}
