*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Minimal Palette */
  --primary: #0071e3;
  --primary-soft: rgba(0, 113, 227, 0.08);
  --primary-border: rgba(0, 113, 227, 0.25);

  /* Background */
  --bg: #f5f5f7;
  --grd: #1d1d1f;
  --white: #ffffff;
  --border: #e5e5ea;

  /* Text */
  --text: #1d1d1f;
  --text-2: #6e6e73;
  --muted: #8e8e93;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* Sidebar */
  --sw: 256px;
  --sc: 66px;
}
body {
  font-family: "Pretendard Variable", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
}
