@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

/* Design Token */
:root {
  /* Reference Token */
  /* Colors */
  /* Primary */
  --purple-100: #2563eb;
  --purple-200: #3c74ed;
  --purple-300: #5484ef;
  --purple-400: #6b95f1;
  --purple-500: #82a6f4;
  --purple-600: #9ab7f6;
  --purple-700: #b1c7f8;
  --purple-800: #c8d8fa;
  --purple-900: #e0e9fc;

  /* Gray */
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Semantic */
  --success-default: #86efac;
  --success-bg: #dcfce7;
  --success-text: #16a34a;

  --error-default: #fca5a5;
  --error-bg: #fee2e2;
  --error-text: #dc2626;

  --warning-default: #fcd34d;
  --warning-bg: #fef3c7;
  --warning-text: #f59e0b;

  --info-default: #93c5fd;
  --info-bg: #dbeafe;
  --info-text: #2563eb;

  /* Spacing */
  --spacing-4: 4px;
  --spacing-8: 8px;
  --spacing-12: 12px;
  --spacing-16: 16px;
  --spacing-18: 18px;
  --spacing-20: 20px;
  --spacing-24: 24px;

  /* Font Size */
  --font-sm: 14px;
  --font-md: 16px;
  --font-lg: 18px;
  --font-xl: 20px;
  --font-2xl: 22px;
  --font-3xl: 24px;
  --font-4xl: 28px;
  --font-5xl: 36px;
  --font-6xl: 48px;

  /* System Token */
  /* Background */
  --color-bg-primary: var(--gray-100);
  --color-bg-inverse: var(--gray-900);

  /* Text */
  --color-text-primary: var(--gray-900);
  --color-text-inverse: var(--gray-100);

  /* Accent */
  --accent-primary-default: #7c3aed;
  --accent-primary-soft: #ede9fe;
  --accent-primary-text: #5b21b6;

  --accent-success-default: #16a34a;
  --accent-success-soft: #dcfce7;
  --accent-success-text: #166534;

  /* Responsive */
  /* layout Spacing */
  --layout-padding-sm: 16px;
  --layout-padding-md: 24px;
  --layout-padding-lg: 40px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --shadow-card: 0 2px 8px rgba(17, 24, 39, 0.08);

  /* Container */
  --container-max: 1280px;
}

/* css 리셋 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
}
body {
  overflow-x: hidden;
  background-color: var(--color-bg-primary);
  font-family:
    "Pretendard Variable",
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    system-ui,
    Roboto,
    "Helvetica Neue",
    "Segoe UI",
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    "Malgun Gothic",
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    sans-serif;
  font-size: var(--font-md);
  line-height: 24px;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  min-width: 320px;
}
ul,
li {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}

/* Typography */
.heading-1 {
  font-size: var(--font-4xl);
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.02em;
}
.heading-2 {
  font-size: var(--font-2xl);
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.02em;
}
.heading-3 {
  font-size: var(--font-lg);
  font-weight: 600;
  line-height: 26px;
  letter-spacing: -0.02em;
}
.body {
}
.caption {
  font-size: var(--font-sm);
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.02em;
}

/* Component Token */
/* Layout */
.layout {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--layout-padding-sm);
}

@media screen and (min-width: 768px) {
  .container {
    padding: 0 var(--layout-padding-md);
  }
}

@media screen and (min-width: 1024px) {
  .container {
    padding: 0 var(--layout-padding-lg);
  }
}
