:root {
    --bg: #f7f8f5;
    --surface: #ffffff;
    --surface-muted: #eef2ea;
    --text-strong: #18201a;
    --text-muted: #5f675d;
    --border: #dfe5d9;
    --accent: #12664f;
    --shadow: 0 18px 50px rgba(22, 35, 28, 0.12);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-muted);
    background: var(--bg);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100svh;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

.app-shell {
    min-height: 100svh;
}
