:root {
    --polish-bg: #f9f9ff;
    --polish-surface: rgba(255, 255, 255, 0.8);
    --polish-surface-strong: #ffffff;
    --polish-surface-soft: #f2f3fc;
    --polish-text: #191c21;
    --polish-muted: #5f6778;
    --polish-line: rgba(114, 119, 132, 0.16);
    --polish-primary: #003f87;
    --polish-primary-strong: #0056b3;
    --polish-success: #16a34a;
    --polish-danger: #dc2626;
    --polish-shadow: 0 18px 40px rgba(25, 28, 33, 0.06);
    --polish-radius-xl: 24px;
    --polish-radius-lg: 18px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--polish-text);
    font-family: "Inter", sans-serif;
}

body[dir="rtl"] {
    font-family: "Tajawal", "Inter", sans-serif;
}

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

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

.polish-container {
    width: min(1120px, calc(100% - 24px));
    margin: 0 auto;
}
