@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --font-body: "Inter", "Segoe UI", sans-serif;
    --font-display: "ITC Avant Garde Gothic Std Bold", "ITC Avant Garde Gothic Std", "ITC Avant Garde Gothic", "ITC Avant Garde", "Avant Garde", "Century Gothic", sans-serif;
    --bg: #f3f3f3;
    --surface: #ffffff;
    --surface-soft: #f7f7f7;
    --line: #dedede;
    --line-strong: #c9c9c9;
    --text: #222222;
    --muted: #666666;
    --topbar: #1f2327;
    --topbar-muted: #bbbbbb;
    --brand: #e04a1a;
    --brand-text: #f7f7f7;
    --action: #0099ff;
    --action-hover: #0088ff;
    --accent: #0099ff;
    --accent-hover: #0088ff;
    --success: #2e7d32;
    --ok: #2e7d32;
    --danger: #c24342;
    --warning: #f59f00;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
}

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