/* ================================
   Global Font
================================ */
body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
  color: #000;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
}
p{
  margin: 0;
}
/* ================================
   Responsive Container Settings
================================ */
.container-main {
  margin: 0 auto;
  max-width: 960px; /* 고정 너비 960px */
  height: 100%;
  width: 100%;
}

/* ================================
   Typography Map
================================ */
.display-1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: -0.0319em;
}

.display-2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 62px;
  letter-spacing: -0.0300em;
}

.display-3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  letter-spacing: -0.0282em;
}

.title-1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.027em;
}

.title-2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -0.0236em;
}

.title-3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.023em;
}

.heading-1 {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.0194em;
}

.heading-2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.012em;
}

.body-1-bold {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.0057em;
}

.body-1 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.0057em;
}

.body-2 {
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.0096em;
}

.label-1-bold {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.0145em;
}

.label-1 {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.0145em;
}

.para-1 {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.012em;
}

.para-2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.0057em;
}

.para-3 {
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.0096em;
}

.para-4 {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.0145em;
}

/* ================================
   Color Palette Map
================================ */
.text-common-100 {
  color: #FFFFFF;
}
.text-neutral-40{
  color: #5C5C5C;
}
.text-neutral-20{
  color: #2A2A2A;
}
.text-neutral-5{
  color: #0F0F0F;
}
.text-neutral-95{
  color:#E2E2E2;
}
.bg-orange-50 {
  background-color: #FF5E00;
}
.bg-orange-60 {
  background-color: #FF7B2E;
}
.bg-orange-70 {
  background-color: #FF9B61;
}
.bg-neutral-60{
  background-color: #8A8A8A;
}
.bg-neutral-20{
  background-color: #2A2A2A;
}
.bg-neutral-5{
  background-color: #0F0F0F;
}
.bg-common-0{
  background-color: #000;
}
/* ================================
   Button – Default
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 20px;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.0145em;
  transition: transform 0.06s ease-out, filter 0.16s ease, background-color 0.16s ease;
}

.btn--default {
  background-color: #FF5E00;
  color: #FFFFFF;
}

.btn--default:hover {
  background-color: #FF7B2E;
}

.btn--default:active {
  transform: translateY(1px);
  background-color: #FF9B61;
}

.btn--default:focus-visible {
  outline: 2px solid #FF7B2E;
  outline-offset: 2px;
}

/* ================================
   Button Size Variants
================================ */
.btn--v2 {
  padding: 16px 28px;
  border-radius: 8px;
  min-height: 56px;
  width: 180px;
  /* font-size: 12px; */
  font-size: 14px;
}

.btn--v3 {
  padding: 14px 24px;
  border-radius: 6px;
  min-height: 48px;
}


/* ================================
   Landing Page Common Styles
================================ */

.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
  }
.flex{
    display: flex;
}
.flex-row{
  display: flex;
  flex-direction: row;
}
.flex-column{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gap-24{
  gap: 24px;
}
.gap-80{
  gap: 80px;
}
.gap-12{
  gap: 12px;
}
.gap-16{
  gap: 16px;
}