:root {
    color-scheme: light;
    --bg: #f8f9f7;
    --paper: #ffffff;
    --text: #202426;
    --muted: #5f696f;
    --line: #dce1de;
    --accent: #0f766e;
    --accent-soft: #e9f5f2;
    --warm: #fff8e6;
    --shadow: 0 6px 18px rgba(32, 36, 38, 0.045);
}

* {
    box-sizing: border-box;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
    letter-spacing: 0;
}
