/**
 * 말투 분석기 디자인 토큰
 * git_rich_200 브랜드 디자인 시스템 연계 + 말투 분석기 전용 확장
 */

:root {
  /* ─── git_rich_200 브랜드 공통 ─── */
  --brand-bg: #ffffff;
  --brand-text: #1a1a2e;
  --brand-sub: #888780;
  --brand-border: #e8e8e4;

  /* ─── 말투 분석기 메인 컬러 (차분한 청록) ─── */
  --color-primary: #2E8B8B;
  --color-primary-light: #E1F0F0;
  --color-primary-dark: #1C6565;

  /* ─── 유형별 컬러 토큰 ─── */
  --type-avoider: #8B9DC3;
  --type-avoider-bg: #EDF1F8;
  --type-direct: #C94F4F;
  --type-direct-bg: #FBEAEA;
  --type-emotional: #E8A87C;
  --type-emotional-bg: #FDF2EA;
  --type-peoplepleaser: #C38D9E;
  --type-peoplepleaser-bg: #F9EEF2;
  --type-masker: #6B5B95;
  --type-masker-bg: #EFEBF7;
  --type-aggressive: #D64541;
  --type-aggressive-bg: #FBE9E8;
  --type-minimalist: #7D8C99;
  --type-minimalist-bg: #F0F2F4;
  --type-balanced: #88B04B;
  --type-balanced-bg: #EEF6E2;

  /* ─── 타이포 ─── */
  --font-display: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  /* ─── 간격 ─── */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;

  /* ─── 반경 ─── */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* ─── 그림자 ─── */
  --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 12px 40px rgba(0, 0, 0, 0.12);

  /* ─── 전환 ─── */
  --transition-fast: 150ms ease-out;
  --transition-base: 250ms ease-out;
}

/* ─── Reset ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  color: var(--brand-text);
  background: var(--brand-bg);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

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