:root {
    --bg: #eef8f6;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-strong: #ffffff;
    --text: #14323d;
    --muted: #5e7380;
    --line: #cfe6e2;
    --primary: #0dcf57;
    --primary-strong: #0f8f94;
    --primary-end: #1857c8;
    --danger: #c24141;
    --shadow: 0 24px 60px rgba(17, 99, 134, 0.14);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: "Pretendard Variable", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(13, 207, 87, 0.22), transparent 30%),
        radial-gradient(circle at bottom right, rgba(24, 87, 200, 0.18), transparent 34%),
        linear-gradient(135deg, #f2fbf8 0%, #e6f8f7 46%, #edf4ff 100%);
    color: var(--text);
}

body {
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}
