:root {
    --bg: #0e1a14;
    --bg-soft: #14241b;
    --surface: #f8f4ea;
    --surface-muted: #ede6d6;
    --ink: #102018;
    --ink-soft: #496154;
    --muted: #718076;
    --line: #d8cfbd;
    --line-dark: #284033;
    --green: #1f6f43;
    --green-bright: #28a06a;
    --amber: #c99700;
    --red: #9b2c2c;
    --indigo: #4f46e5;
    --slate: #475569;
    --blue: #2563eb;
    --radius: 6px;
    --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-ledger: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--surface);
    font-family: var(--font-body);
    line-height: 1.5;
}

a {
    color: inherit;
}
