/* 검진-360 design tokens */
:root {
  /* Colors — Neutrals (cool-neutral) */
  --c-bg: #f5f6f8;
  --c-surface: #ffffff;
  --c-surface-alt: #f9fafb;
  --c-line: #e6e8ec;
  --c-line-strong: #d7dce4;
  --c-ink-1: #0b1220;
  --c-ink-2: #4a5568;
  --c-ink-3: #8a95a5;
  --c-ink-4: #b4bcc7;

  /* Brand */
  --c-brand: #2563eb;
  --c-brand-pressed: #1d4ed8;
  --c-brand-50: #eef4ff;
  --c-brand-100: #dce8ff;

  /* Semantic */
  --c-success: #0f9d58;
  --c-warn: #e2a33a;
  --c-danger: #dc2626;

  /* Tag palette (subtle) */
  --c-tag-bg: #edeff3;
  --c-tag-ink: #4a5568;
  --c-tag-brand-bg: #eef4ff;
  --c-tag-brand-ink: #2563eb;
  /* --c-tag-brand-ink: #db05ad; */

  /* Type */
  --font-sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --fs-11: 11px;
  --fs-12: 12px;
  --fs-13: 13px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-17: 17px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-22: 22px;
  --fs-24: 24px;
  --fs-28: 28px;
  --fs-32: 32px;

  /* Radius */
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-pill: 999px;

  /* Spacing */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-7: 32px;
  --s-8: 40px;

  /* Shadow */
  --sh-card: 0 1px 2px rgba(17, 24, 39, 0.04), 0 1px 1px rgba(17, 24, 39, 0.02);
  --sh-sheet: 0 -8px 32px -8px rgba(17, 24, 39, 0.12);
  --sh-float: 0 8px 24px -8px rgba(17, 24, 39, 0.18);
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  color: var(--c-ink-1);
}
button {
  font-family: inherit;
}
