/* ===== CSS Variables ===== */
:root {
  /* ── Colors ── */
  --bg-primary: #ffffff;
  --bg-packet: rgba(255, 255, 255, 0.55);
  --bg-modal-overlay: rgba(0, 0, 0, 0.4);
  --bg-modal: #ffffff;

  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-muted: #aaaaaa;

  --border-light: rgba(0, 0, 0, 0.05);
  --border-medium: rgba(0, 0, 0, 0.1);

  /* ── Pill Colors ── */
  --pill-red: #d94f4f;
  --pill-orange: #e8943a;
  --pill-yellow: #e6d44a;
  --pill-green: #5ab879;
  --pill-blue: #5a9fd4;
  --pill-purple: #9a7cbf;
  --pill-pink: #d47ea0;
  --pill-teal: #4ab8a1;
  --pill-white: #eae7e2;
  --pill-cream: #ddd0b8;
  --pill-darkgreen: #3a7a5a;
  --pill-navy: #3a5a8a;

  /* ── Typography ── */
  --font-primary: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;

  --fs-xs: 0.625rem;
  --fs-sm: 0.75rem;
  --fs-base: 0.875rem;
  --fs-md: 1rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;

  /* ── Spacing ── */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-base: 16px;
  --space-lg: 20px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 48px;

  /* ── Border Radius ── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-fab: 0 4px 16px rgba(0, 0, 0, 0.2);

  /* ── Transitions ── */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* ── Layout ── */
  --max-width: 100%;
  --fab-size: 56px;
}
