/* Design tokens only – no component styles */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700&display=swap');

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    max-width: 100%;
}

:root {
    --font: 'Source Sans 3', system-ui, sans-serif;
    --bg: #f1f5f4;
    --surface: #ffffff;
    --surface-muted: #f8faf9;
    --border: #d8e2df;
    --text: #1a2e28;
    --text-muted: #5c6f68;
    --primary: #0f6b56;
    --primary-dark: #0a5242;
    --primary-soft: #e3f3ef;
    --accent: #c45c26;
    --danger: #b42318;
    --success: #067647;
    --sidebar-w: 260px;
    --topbar-h: 56px;
    --radius: 10px;
    --shadow: 0 1px 3px rgba(26, 46, 40, 0.08);
    --shadow-lg: 0 8px 24px rgba(26, 46, 40, 0.12);
}
