/*
|--------------------------------------------------------------------------
| Public Site Base CSS
|--------------------------------------------------------------------------
*/
:root {
  --bg: #f6f8fc;
  --card: #fff;
  --text: #172033;
  --muted: #667085;
  --border: #d8deea;
  --shadow: 0 18px 45px rgba(15, 23, 42, .08);
  --radius: 18px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: #1d4ed8; text-decoration: none; }
a:hover { text-decoration: underline; }
