:root {
    --bg-page: rgb(229, 235, 242);
    --bg-card: #ffffff;
    --bg-muted: #f3f5f8;

    --accent-start: #7b3cff;
    --accent-end: #ff5ed2;
    --accent: #7b3cff;

    --text-main: #111827;
    --text-muted: #6b7280;
    --text-light: #f9fafb;

    --border-soft: #e5e7eb;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;

    --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;

    --transition-fast: 0.18s ease-out;
    --transition-normal: 0.25s ease-out;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

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

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

ul {
    margin: 0;
    padding-left: 1.5rem;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    margin: 0;
    letter-spacing: 0.01em;
}

.page {
    min-height: 100vh;
}
