/* SafeGuard production site — base styles */
:root {
  --bg: hsl(216 28% 7%);
  --card: hsl(216 24% 11%);
  --border: hsl(216 22% 16%);
  --muted: hsl(215 14% 55%);
  --accent: hsl(25 95% 55%);
}
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: #e6eaf2;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 14px; line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
a:hover { color: #fff; }
button { font-family: inherit; }
input, textarea, select { font-family: inherit; }
input:focus, textarea:focus, select:focus { border-color: var(--accent) !important; }
::selection { background: var(--accent); color: #fff; }
/* Hide scrollbar styling but keep functionality */
body { overflow-x: hidden; }
.sg-site { min-height: 100vh; }
