:root {
    --canvas: #f8fafd;
    --surface: #ffffff;
    --ink: #1f2b3f;
    --muted: #708098;
    --line: #dce4ee;
    --line-soft: #edf1f6;
    --primary: #2f6fed;
    --primary-soft: #edf3ff;
    --success: #14935f;
    --success-soft: #eaf7f1;
    --danger: #cf4c4c;
    --danger-soft: #fdeeee;
    --warning: #e69a18;
    font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--canvas);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    min-height: 100%;
    background: var(--canvas);
}

body {
    min-height: 100vh;
    margin: 0;
    background: var(--canvas);
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
