@charset "UTF-8";

@import url("https://cdn.jsdelivr.net/gh/fonts-archive/Paperlogy/Paperlogy.css");

/* Design tokens */
:root {
	--font-base: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
	--font-hero: Paperlogy, var(--font-base);

	--font-display-1-size: 40px;
	--font-display-1-weight: 700;
	--font-title-1-size: 32px;
	--font-title-1-weight: 700;
	--font-title-2-size: 24px;
	--font-title-2-weight: 700;
	--font-title-3-size: 20px;
	--font-title-3-weight: 700;
	--font-heading-1-size: 16px;
	--font-heading-1-weight: 700;
	--font-heading-2-size: 15px;
	--font-heading-2-weight: 600;
	--font-button-size: 18px;
	--font-button-weight: 700;
	--font-body-1-size: 18px;
	--font-body-1-weight: 500;
	--font-body-2-size: 16px;
	--font-body-2-weight: 500;
	--font-body-3-size: 15px;
	--font-body-3-weight: 500;
	--font-body-4-size: 14px;
	--font-body-4-weight: 600;
	--font-body-5-size: 14px;
	--font-body-5-weight: 400;
	--font-caption-size: 12px;
	--font-caption-weight: 500;

	--color-primary: #30B566;
	--color-secondary: #0A1C30;
	--color-success: #00DC59;
	--color-error: #FF4242;
	--color-warning: #FA8987;
	--color-line: #DFDFDF;
	--color-bg: #F2F3F5;
	--color-white: #FFFFFF;

	--bg-light-1: #F0FFEE;
	--bg-light-2: #D3FFE0;
	--bg-light-3: #96CDA9;
	--bg-info: #EDFEFF;
	--bg-benefit: #EDFFEA;
	--bg-hero-pure: #E8FFE5;
	--bg-hero-maturity: #FFFADE;
	--bg-section-3: #DAE7FF;
	--bg-section-4: #FFDFE7;

	--graph-bar-active: linear-gradient(180deg, #1EED86 0%, #14DC79 100%);
	--graph-bar-default: linear-gradient(180deg, #DFDFDF 0%, #C2C2C2 100%);

	--gray-900: #060B11;
	--gray-800: #2E3338;
	--gray-700: #555D65;
	--gray-600: #606A74;
	--gray-500: #707C87;
	--gray-400: #B2BAC2;
	--gray-300: #CED4DA;
	--gray-200: #E3E8EC;
	--gray-50: #F8F9FA;
}

/* Project aliases */
.lp-body {
	--main-color: var(--color-primary);
	--deep-color: var(--color-secondary);
}

/* Typography utilities */
.typo-display-1,
.typo-title-1,
.typo-title-2,
.typo-title-3,
.typo-heading-1,
.typo-heading-2,
.typo-button,
.typo-body-1,
.typo-body-2,
.typo-body-3,
.typo-body-4,
.typo-body-5,
.typo-caption {
	font-family: var(--font-base);
	line-height: 1.4;
	letter-spacing: 0;
}

.typo-display-1 {
	font-size: var(--font-display-1-size);
	font-weight: var(--font-display-1-weight);
}

.typo-title-1 {
	font-size: var(--font-title-1-size);
	font-weight: var(--font-title-1-weight);
}

.typo-title-2 {
	font-size: var(--font-title-2-size);
	font-weight: var(--font-title-2-weight);
}

.typo-title-3 {
	font-size: var(--font-title-3-size);
	font-weight: var(--font-title-3-weight);
}

.typo-heading-1 {
	font-size: var(--font-heading-1-size);
	font-weight: var(--font-heading-1-weight);
}

.typo-heading-2 {
	font-size: var(--font-heading-2-size);
	font-weight: var(--font-heading-2-weight);
}

.typo-button {
	font-size: var(--font-button-size);
	font-weight: var(--font-button-weight);
}

.typo-body-1 {
	font-size: var(--font-body-1-size);
	font-weight: var(--font-body-1-weight);
}

.typo-body-2 {
	font-size: var(--font-body-2-size);
	font-weight: var(--font-body-2-weight);
}

.typo-body-3 {
	font-size: var(--font-body-3-size);
	font-weight: var(--font-body-3-weight);
}

.typo-body-4 {
	font-size: var(--font-body-4-size);
	font-weight: var(--font-body-4-weight);
}

.typo-body-5 {
	font-size: var(--font-body-5-size);
	font-weight: var(--font-body-5-weight);
}

.typo-caption {
	font-size: var(--font-caption-size);
	font-weight: var(--font-caption-weight);
}

/* Text color utilities */
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-success { color: var(--color-success); }
.text-error { color: var(--color-error); }
.text-warning { color: var(--color-warning); }
.text-white { color: var(--color-white); }
.text-gray-900 { color: var(--gray-900); }
.text-gray-800 { color: var(--gray-800); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-400 { color: var(--gray-400); }
.text-gray-300 { color: var(--gray-300); }
.text-gray-200 { color: var(--gray-200); }
.text-gray-50 { color: var(--gray-50); }

/* Background color utilities */
.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-success { background-color: var(--color-success); }
.bg-error { background-color: var(--color-error); }
.bg-warning { background-color: var(--color-warning); }
.bg-page { background-color: var(--color-bg); }
.bg-white { background-color: var(--color-white); }
.bg-light-1 { background-color: var(--bg-light-1); }
.bg-light-2 { background-color: var(--bg-light-2); }
.bg-light-3 { background-color: var(--bg-light-3); }
.bg-hero-pure { background-color: var(--bg-hero-pure); }
.bg-hero-maturity { background-color: var(--bg-hero-maturity); }
.bg-section-3 { background-color: var(--bg-section-3); }
.bg-section-4 { background-color: var(--bg-section-4); }
.bg-gray-900 { background-color: var(--gray-900); }
.bg-gray-800 { background-color: var(--gray-800); }
.bg-gray-700 { background-color: var(--gray-700); }
.bg-gray-600 { background-color: var(--gray-600); }
.bg-gray-500 { background-color: var(--gray-500); }
.bg-gray-400 { background-color: var(--gray-400); }
.bg-gray-300 { background-color: var(--gray-300); }
.bg-gray-200 { background-color: var(--gray-200); }
.bg-gray-50 { background-color: var(--gray-50); }

/* Border color utilities */
.border-line { border-color: var(--color-line); }
.border-primary { border-color: var(--color-primary); }
.border-secondary { border-color: var(--color-secondary); }
.border-gray-300 { border-color: var(--gray-300); }
.border-gray-200 { border-color: var(--gray-200); }


@media (max-width: 460px) {
	:root {
	--font-display-1-size: 38px;
	--font-title-1-size: 30px;
	--font-title-2-size: 22px;
	--font-title-3-size: 20px;
	--font-heading-1-size: 16px;
	--font-heading-2-size: 15px;
	--font-button-size: 18px;
	--font-body-1-size: 18px;
	--font-body-2-size: 16px;
	--font-body-3-size: 15px;
	--font-body-4-size: 14px;
	--font-body-5-size: 14px;
	--font-caption-size: 12px;
	}

	.wide_br {
		display: none;
	}
}

.mo_br {
	display: none;
}

@media (max-width: 460px) {
	.mo_br {
		display: inline;
	}
}