@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --orange: #E85D2A;
  --orange-dark: #D44E1E;
  --orange-soft: #FCEDE5;
  --bg: #F4F2EE;
  --surface: #FFFFFF;
  --border: #ECEAE5;
  --border-strong: #E0DDD6;
  --ink: #1F1E1B;
  --muted: #8A8782;
  --muted-2: #A8A39C;
  --label: #A8A39C;
  --green: #2F9E63;
  --green-soft: #E7F5EE;
  --red: #DC4B2E;
  --red-soft: #FBEAE5;
  --amber: #C98A22;
  --amber-soft: #FBF1DE;
  --blue: #3B7BC4;
  --blue-soft: #E8F0FA;
  --sidebar-w: 220px;
  --sidebar-w-collapsed: 60px;
  --radius: 14px;
  --radius-sm: 10px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
svg { display: block; }
