:root {
    --container: 1180px;
    --container-wide: 1320px;

    --color-text: #172033;
    --color-muted: #667085;
    --color-soft: #98a2b3;
    --color-border: #e5e7eb;
    --color-border-soft: #eef2f7;
    --color-bg: #f8fafc;
    --color-card: #ffffff;
    --color-primary: #2563eb;

    --radius-card: 24px;
    --radius-button: 14px;

    --shadow-card: 0 18px 50px rgba(16, 24, 40, .06);

    --font-main: "Onest", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--color-text);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}