:root {
    color-scheme: light;
    --bg: #f6f7f9;
    --panel: #ffffff;
    --line: #d9dee6;
    --text: #17202c;
    --muted: #667085;
    --green: #0b6b57;
    --green-strong: #075141;
    --amber: #b85c00;
    --red: #bd2b2b;
    --blue: #2563a7;
    --shadow: 0 10px 30px rgba(15, 23, 42, .08);
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}
