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

:root {
    --bg-main: #f8fafc;
    --bg-white: #ffffff;

    --text-main: #0f172a;
    --text-muted: #64748b;

    --accent: #2563eb;
    --border-soft: rgba(15, 23, 42, 0.06);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background: var(--bg-main);
}

h1,
h2,
h3 {
    margin: 0;
}

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