* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f3f5f4;
  --panel: #ffffff;
  --panel-soft: #f7f8f6;
  --line: #d8ded8;
  --line-strong: #bdc9c3;
  --text: #182522;
  --sub: #64716d;
  --primary: #155f63;
  --primary-deep: #0d4347;
  --primary-soft: #e9f5f3;
  --navy: #28343a;
  --soft-blue: #f2f6f5;
  --accent: #9b2745;
  --accent-soft: #fbedf1;
  --gold: #9b7429;
  --shadow-sm: 0 10px 24px rgba(24, 37, 34, 0.06);
  --shadow-md: 0 18px 36px rgba(24, 37, 34, 0.1);
  --radius-xl: 8px;
  --radius-lg: 8px;
  --radius-md: 8px;
  --container: 1360px;
  --green-bg: #e8f7ee;
  --green-tx: #217a46;
  --yellow-bg: #fff4d6;
  --yellow-tx: #9a6b00;
  --red-bg: #ffe4e4;
  --red-tx: #c23b3b;
  --gray-bg: #edf1f6;
  --gray-tx: #5f6b7a;
  --font-body: "IBM Plex Sans KR", "Pretendard", "Noto Sans KR", sans-serif;
  --font-display: "IBM Plex Sans KR", "Pretendard", "Noto Sans KR", sans-serif;
}

html,
body {
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    linear-gradient(180deg, #f6f7f4 0%, #eef2ee 52%, #f7f7f2 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(21, 95, 99, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(21, 95, 99, 0.06) 0 1px, transparent 1px 100%);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 62%);
}

button,
input,
select {
  font: inherit;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-color: #fff;
  background-image:
    linear-gradient(45deg, transparent 50%, #466181 50%),
    linear-gradient(135deg, #466181 50%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px),
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
  cursor: pointer;
}

select:hover {
  border-color: #b9cbe0;
}

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

* {
  letter-spacing: 0;
}
