:root {
    --color-white: #ffffff;
    --color-bg: #f6fbff;
    --color-bg-soft: #eef8ff;
    --color-navy: #061b33;
    --color-navy-light: #0d2d52;
    --color-blue: #178bff;
    --color-sky: #70c8ff;
    --color-cyan: #dff5ff;
    --color-text: #142033;
    --color-muted: #64748b;
    --color-line: rgba(15, 35, 60, 0.12);

    --shadow-soft: 0 18px 50px rgba(15, 35, 60, 0.08);
    --shadow-card: 0 16px 36px rgba(15, 35, 60, 0.10);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;

    --container: 1180px;
    --header-height: 78px;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    /*font-family: -apple-system, BlinkMacSystemFont, "Pretendard", "Noto Sans KR", "Segoe UI", sans-serif;*/
    font-family: -apple-system, "Pretendard", "Noto Sans KR", "Segoe UI", sans-serif;
    color: var(--color-text);
    background: var(--color-white);
    word-break: keep-all;
}



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

img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}

.section--ice {
    background:
            radial-gradient(circle at top left, rgba(112, 200, 255, 0.28), transparent 34%),
            linear-gradient(180deg, #f7fcff 0%, #eef8ff 100%);
}

.section--navy {
    background:
            radial-gradient(circle at top right, rgba(112, 200, 255, 0.28), transparent 34%),
            linear-gradient(135deg, #061b33 0%, #0a294b 100%);
    color: var(--color-white);
}

.section-eyebrow,
.card-eyebrow {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-blue);
}

.section--navy .section-eyebrow {
    color: var(--color-sky);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 46px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.18;
    letter-spacing: -0.045em;
    color: var(--color-navy);
}

.section-heading p {
    margin: 18px 0 0;
    font-size: 18px;
    line-height: 1.75;
    color: var(--color-muted);
}

.section-heading--between {
    max-width: none;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: flex-end;
}

.section-heading--between > div {
    max-width: 760px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
    box-shadow: 0 12px 26px rgba(23, 139, 255, 0.26);
}

.button--outline {
    color: var(--color-navy);
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--color-line);
}

.button--light {
    color: var(--color-navy);
    background: #fff;
}

.is-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

.text-link,
.card-link {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    font-size: 15px;
    font-weight: 800;
    color: var(--color-blue);
}

.text-link::after,
.card-link::after {
    content: "→";
    margin-left: 8px;
}

/* Header */
/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 35, 60, 0.08);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(15, 35, 60, 0.08);
}

.site-header__inner {
    width: min(100% - 40px, 1440px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    height: 44px;
    object-fit: contain;
}

/* =========================
   DESKTOP NAV
   ========================= */

/*.desktop-nav {*/
/*    height: 100%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 0;*/
/*    margin-left: 24px;*/
/*}*/

/*.desktop-nav__item {*/
/*    height: 100%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    padding: 0 4px;*/
/*}*/

/*.desktop-nav__link {*/
/*    appearance: none;*/
/*    -webkit-appearance: none;*/
/*    border: 0;*/
/*    background: transparent;*/
/*    cursor: pointer;*/

/*    display: inline-flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/

/*    height: 44px;*/
/*    padding: 0 16px;*/
/*    border-radius: 10px;*/

/*    font-size: 15px;*/
/*    font-weight: 800;*/
/*    color: var(--color-navy);*/

/*    transition: background 0.18s ease, color 0.18s ease;*/
/*}*/

.desktop-nav {
    position: relative;

    height: 100%;
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 24px;

    /* 움직이는 강조 배경의 위치와 크기 */
    --nav-highlight-left: 0px;
    --nav-highlight-width: 0px;
}

/* 메뉴 사이를 이동하는 공통 강조 배경 */
.desktop-nav::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;

    width: var(--nav-highlight-width);
    height: 44px;

    border-radius: 10px;
    background: var(--color-bg-soft);

    transform:
            translateX(var(--nav-highlight-left))
            translateY(-50%);

    opacity: 0;
    pointer-events: none;

    transition:
            transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
            width 0.28s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.16s ease;
}

/* 활성 메뉴가 있을 때 강조 배경 표시 */
.desktop-nav.has-active-item::before {
    opacity: 1;
}

.desktop-nav__item {
    position: relative;

    height: 100%;
    display: flex;
    align-items: center;
}

.desktop-nav__link {
    position: relative;
    z-index: 1;

    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 44px;
    padding: 0 20px;
    border-radius: 10px;

    font-size: 15px;
    font-weight: 800;
    color: var(--color-navy);

    transition: color 0.18s ease;
}

/* 배경은 desktop-nav::before가 담당하고 글자색만 변경 */
.desktop-nav__item.is-active > .desktop-nav__link {
    color: var(--color-blue);
}

/*.desktop-nav__item:hover > .desktop-nav__link {*/
/*    background: var(--color-bg-soft);*/
/*    color: var(--color-blue);*/
/*}*/

/*.desktop-dropdown {*/
/*    position: fixed;*/
/*    left: 0;*/
/*    right: 0;*/
/*    top: calc(var(--header-height) - 1px);*/
/*    z-index: 990;*/

/*    display: none;*/

/*    background: rgba(255, 255, 255, 0.98);*/
/*    border-top: 1px solid rgba(15, 35, 60, 0.08);*/
/*    border-bottom: 1px solid rgba(15, 35, 60, 0.12);*/
/*    box-shadow: 0 18px 36px rgba(15, 35, 60, 0.08);*/
/*}*/
/*.desktop-dropdown {*/
/*    position: fixed;*/
/*    left: 0;*/
/*    right: 0;*/
/*    top: calc(var(--header-height) - 1px);*/
/*    z-index: 990;*/

/*    display: block;*/

/*    background: rgba(255, 255, 255, 0.98);*/
/*    border-top: 1px solid rgba(15, 35, 60, 0.08);*/
/*    border-bottom: 1px solid rgba(15, 35, 60, 0.12);*/
/*    box-shadow: 0 18px 36px rgba(15, 35, 60, 0.08);*/

/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    pointer-events: none;*/

/*    transform: translateY(-8px);*/

/*    transition:*/
/*            opacity 0.18s ease,*/
/*            transform 0.22s ease,*/
/*            visibility 0s linear 0.22s;*/
/*}*/

/*!* JS가 활성화한 메뉴만 드롭다운 표시 *!*/
/*.desktop-nav__item.is-active .desktop-dropdown {*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*    pointer-events: auto;*/

/*    transform: translateY(0);*/

/*    transition:*/
/*            opacity 0.18s ease,*/
/*            transform 0.22s ease,*/
/*            visibility 0s;*/
/*}*/
.desktop-dropdown {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(var(--header-height) - 1px);
    z-index: 990;

    display: none;

    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(15, 35, 60, 0.08);
    border-bottom: 1px solid rgba(15, 35, 60, 0.12);
    box-shadow: 0 18px 36px rgba(15, 35, 60, 0.08);

    /* 상세 메뉴에는 어떠한 전환 효과도 적용하지 않음 */
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
}

.desktop-nav__item.is-active > .desktop-dropdown {
    display: block;
}
/*.desktop-nav__item:hover .desktop-dropdown {*/
/*    display: block;*/
/*}*/

.desktop-dropdown__inner {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
    padding: 28px 0;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 28px;
}

.desktop-dropdown__inner--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.desktop-dropdown__link {
    display: block;
    padding: 18px 20px;
    border-radius: 16px;

    transition: background 0.18s ease, transform 0.18s ease;
}

.desktop-dropdown__link:hover {
    background: var(--color-bg-soft);
    transform: translateY(-1px);
}

.desktop-dropdown__link strong {
    display: block;
    font-size: 17px;
    font-weight: 900;
    color: var(--color-navy);
    letter-spacing: -0.035em;
}

.desktop-dropdown__link span {
    display: block;
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--color-muted);
}

/* =========================
   MOBILE NAV 기본값
   ========================= */

.mobile-nav,
.site-menu-button {
    display: none;
}

.site-menu-button {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    outline: 0;
}

.site-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--color-navy);
    transition: transform 0.2s ease, opacity 0.2s ease;
}
/* Desktop dropdown */

.site-dropdown {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(var(--header-height) - 1px);
    z-index: 90;
    display: none;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(15, 35, 60, 0.08);
    border-bottom: 1px solid rgba(15, 35, 60, 0.12);
    box-shadow: 0 18px 36px rgba(15, 35, 60, 0.08);
}


.site-dropdown__inner {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
    padding: 28px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 28px;
}

.site-dropdown__inner--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-dropdown__link {
    display: block;
    padding: 18px 20px;
    border-radius: 16px;
    transition: background 0.18s ease, transform 0.18s ease;
}

.site-dropdown__link:hover {
    background: var(--color-bg-soft);
    transform: translateY(-1px);
}

.site-dropdown__link strong {
    display: block;
    font-size: 17px;
    font-weight: 900;
    color: var(--color-navy);
    letter-spacing: -0.035em;
}

.site-dropdown__link span {
    display: block;
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--color-muted);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--color-navy);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.site-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    /*border: 1px solid var(--color-line);*/
    /*border-radius: 999px;*/
    /*background: #fff;*/
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    outline: 0;
    /*transition: background 0.2s ease;*/
}

.site-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--color-navy);
}

/*!* Footer *!*/

/*.site-footer {*/
/*    background: #061b33;*/
/*    color: #fff;*/
/*    padding: 60px 0 28px;*/
/*}*/

/*.site-footer__inner {*/
/*    width: min(100% - 40px, var(--container));*/
/*    margin: 0 auto;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    gap: 40px;*/
/*}*/

/*.site-footer__brand strong {*/
/*    font-size: 24px;*/
/*}*/

/*.site-footer__brand p {*/
/*    margin: 8px 0 0;*/
/*    color: rgba(255, 255, 255, 0.68);*/
/*}*/

/*.site-footer__links {*/
/*    display: flex;*/
/*    gap: 18px;*/
/*    flex-wrap: wrap;*/
/*}*/

/*.site-footer__links a {*/
/*    color: rgba(255, 255, 255, 0.76);*/
/*    font-weight: 700;*/
/*}*/

/*.site-footer__bottom {*/
/*    width: min(100% - 40px, var(--container));*/
/*    margin: 42px auto 0;*/
/*    padding-top: 22px;*/
/*    border-top: 1px solid rgba(255, 255, 255, 0.12);*/
/*}*/

/*.site-footer__bottom p {*/
/*    margin: 0;*/
/*    color: rgba(255, 255, 255, 0.5);*/
/*    font-size: 13px;*/
/*}*/
/* =========================================================
   FOOTER
   Ethereum-like information footer
========================================================= */

.site-footer {
    color: var(--color-navy);
    background: #ffffff;
    border-top: 1px solid rgba(6, 27, 51, 0.12);
}

.site-footer__top,
.site-footer__main,
.site-footer__social,
.site-footer__legal {
    width: min(calc(100% - 64px), 1440px);
    margin-inline: auto;
}

/* 상단 업데이트 영역 */

.site-footer__top {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 30px 0;
}

.site-footer__updated {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
}

.site-footer__updated strong {
    font-weight: 700;
}

.site-footer__top-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid rgba(6, 27, 51, 0.5);
    border-radius: 5px;
    color: var(--color-navy);
    background: #ffffff;
    font-size: 14px;
    font-weight: 800;
    transition:
            background 0.18s ease,
            border-color 0.18s ease;
}

.site-footer__top-button:hover {
    background: var(--color-bg-soft);
    border-color: var(--color-blue);
}

.site-footer__top-button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.site-footer__social .footer-social-icon--x {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: none;
    stroke-width: 0;
}
.site-footer__social a:first-child svg path:first-child {
    fill: currentColor;
    stroke: none;
}

/* 메인 영역 */

.site-footer__main {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: clamp(50px, 7vw, 110px);
    padding: 54px 0 62px;
}

.site-footer__identity {
    min-width: 0;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
}

.site-footer__logo img {
    width: auto;
    height: 42px;
}

.site-footer__identity p {
    margin: 24px 0 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.8;
}

.site-footer__navigation {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 42px;
}

.site-footer__column {
    min-width: 0;
}

.site-footer__column h2 {
    margin: 0 0 24px;
    color: var(--color-navy);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.site-footer__column ul {
    display: grid;
    gap: 17px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__column li {
    margin: 0;
}

.site-footer__column a {
    color: #5f6f82;
    font-size: 14px;
    line-height: 1.55;
    transition:
            color 0.16s ease,
            text-decoration-color 0.16s ease;
}

.site-footer__column a:hover {
    color: var(--color-blue);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* SNS */

.site-footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 30px 0 18px;
    border-top: 1px solid rgba(6, 27, 51, 0.08);
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--color-navy);
    border-radius: 8px;
    transition:
            color 0.18s ease,
            background 0.18s ease,
            transform 0.18s ease;
}

.site-footer__social a:hover {
    color: var(--color-blue);
    background: var(--color-bg-soft);
    transform: translateY(-2px);
}

.site-footer__social svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer__social a:first-child svg path:first-child {
    fill: currentColor;
    stroke: none;
}

.site-footer__social a:first-child svg path:last-child {
    fill: #ffffff;
    stroke: none;
}

/* 하단 정책 */

.site-footer__legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 0 0 38px;
}

.site-footer__legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.site-footer__legal-links a {
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
}

.site-footer__legal-links a:hover {
    color: var(--color-blue);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-footer__legal p {
    margin: 0;
    color: #8995a5;
    font-size: 12px;
}

@media (max-width: 1180px) {
    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .site-footer__identity p br {
        display: none;
    }

    .site-footer__navigation {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 52px;
    }
}

@media (max-width: 760px) {
    .site-footer__top,
    .site-footer__main,
    .site-footer__social,
    .site-footer__legal {
        width: calc(100% - 40px);
    }

    .site-footer__top {
        min-height: auto;
        align-items: flex-start;
        padding: 28px 0 34px;
    }

    .site-footer__updated {
        max-width: 200px;
        font-size: 12px;
    }

    .site-footer__top-button {
        flex: 0 0 auto;
        min-height: 42px;
        padding: 0 14px;
        font-size: 12px;
    }

    .site-footer__main {
        display: block;
        padding: 38px 0 54px;
    }

    .site-footer__logo img {
        height: 38px;
    }

    .site-footer__identity p {
        margin-top: 20px;
        font-size: 13px;
    }

    .site-footer__navigation {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 50px;
    }

    .site-footer__column {
        padding: 0 0 46px;
    }

    .site-footer__column:last-child {
        padding-bottom: 0;
    }

    .site-footer__column h2 {
        margin-bottom: 21px;
        font-size: 15px;
    }

    .site-footer__column ul {
        gap: 15px;
    }

    .site-footer__column a {
        font-size: 14px;
    }

    .site-footer__social {
        justify-content: flex-start;
        gap: 12px;
        padding: 26px 0 20px;
    }

    .site-footer__social a {
        width: 36px;
        height: 36px;
    }

    .site-footer__social svg {
        width: 25px;
        height: 25px;
    }
    .site-footer__social .footer-social-icon--x {
        width: 18px;
        height: 18px;
    }

    .site-footer__legal {
        align-items: flex-start;
        padding-bottom: 32px;
    }

    .site-footer__legal-links {
        justify-content: flex-start;
        gap: 10px 16px;
    }

    .site-footer__legal-links a {
        font-size: 12px;
    }
}


/* Reusable */

.check-list {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-sky));
}

/* Mobile */
@media (max-width: 900px) {
    :root {
        --header-height: 68px;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        height: var(--header-height);
    }

    .site-header__inner {
        width: auto;
        max-width: var(--container);
        margin-left: 14px;
        margin-right: 14px;
        justify-content: space-between;
    }

    .site-logo img {
        height: 35px;
    }

    .desktop-nav {
        display: none;
    }

    .site-menu-button {
        display: block;
        position: relative;
        z-index: 1200;
        flex-shrink: 0;
    }

    .site-menu-button.is-open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-menu-button.is-open span:nth-child(2) {
        opacity: 0;
    }

    .site-menu-button.is-open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;

        width: min(86vw, 360px);
        max-width: 360px;
        height: 100dvh;


        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;

        padding: calc(var(--header-height) + 20px) 18px 24px;

        background: rgba(255, 255, 255, 0.98);
        border-left: 1px solid var(--color-line);

        transform: translate3d(100%, 0, 0);
        transition: transform 0.25s ease;

        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        z-index: 400;
    }

    .mobile-nav.is-open {
        transform: translate3d(0, 0, 0);
        box-shadow: -24px 0 50px rgba(15, 35, 60, 0.14);
    }

    .mobile-nav__item {
        border-bottom: 1px solid rgba(15, 35, 60, 0.08);
    }

    .mobile-nav__trigger {
        appearance: none;
        -webkit-appearance: none;
        border: 0;
        background: transparent;
        cursor: pointer;

        width: 100%;
        min-height: 56px;
        padding: 0 4px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        font-size: 18px;
        font-weight: 900;
        color: var(--color-navy);
        text-align: left;
    }

    .mobile-nav__trigger::after {
        content: "+";
        font-size: 22px;
        font-weight: 700;
        color: var(--color-blue);
    }

    .mobile-nav__item.is-open .mobile-nav__trigger {
        color: var(--color-blue);
    }

    .mobile-nav__item.is-open .mobile-nav__trigger::after {
        content: "−";
    }

    .mobile-nav__panel {
        display: none;
        padding: 0 0 14px;
    }

    .mobile-nav__item.is-open .mobile-nav__panel {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .mobile-nav__panel a {
        display: block;
        padding: 12px 14px;
        border-radius: 12px;
        background: rgba(238, 248, 255, 0.64);

        font-size: 15px;
        font-weight: 800;
        color: var(--color-navy);
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 76px 0;
    }

    .section-heading--between {
        display: block;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .site-footer__inner {
        width: min(100% - 28px, var(--container));
        display: block;
    }

    .site-footer__links {
        margin-top: 28px;
    }

    .site-footer__bottom {
        width: min(100% - 28px, var(--container));
    }
}
@media (max-width: 900px) {
    :root {
        --header-height: 68px;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 76px 0;
    }


    .site-logo {
        min-width: auto;
    }

    .site-logo__text small {
        display: none;
    }

    .site-header__cta,
    .site-header__login {
        display: none;
    }


    .site-nav__mobile-cta,
    .site-nav__mobile-login {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 800;
    }

    .site-nav__mobile-cta {
        background: var(--color-navy);
        color: #fff;
    }

    .site-nav__mobile-login {
        border: 1px solid rgba(6, 27, 51, 0.16);
        background: #fff;
        color: var(--color-navy);
    }

    .site-menu-button {
        display: block;
    }

    .section-heading--between {
        display: block;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .site-footer__inner {
        width: min(100% - 28px, var(--container));
        display: block;
    }

    .site-footer__links {
        margin-top: 28px;
    }

    .site-footer__bottom {
        width: min(100% - 28px, var(--container));
    }
}
html,
body {
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow: clip) {
    html,
    body {
        overflow-x: hidden;
    }
}

html.is-nav-open {
    overflow: hidden;
}

body.is-nav-open {
    touch-action: none;
}


@media (max-width: 900px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1300;
    }

    .site-menu-button {
        position: relative;
        z-index: 1400;
    }

    .mobile-nav {
        position: fixed;

        /* 헤더를 덮지 말고, 헤더 아래에서 시작 */
        top: var(--header-height);
        right: 0;
        left: auto;

        width: min(86vw, 360px);
        max-width: 360px;
        height: calc(100dvh - var(--header-height));

        z-index: 1200;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;

        /* 이제 top에서 이미 헤더 높이만큼 내려왔으니까 padding에서 header-height 제거 */
        padding: 20px 18px 24px;

        background: rgba(255, 255, 255, 0.98);
        border-left: 1px solid var(--color-line);

        /* 닫혔을 때 완전히 밖으로 */
        transform: translate3d(calc(100% + 64px), 0, 0);
        transition: transform 0.25s ease;

        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;

        /* 닫혔을 때 그림자 안 보이게 */
        box-shadow: none;
    }

    .mobile-nav.is-open {
        transform: translate3d(0, 0, 0);

        /* 열렸을 때만 그림자 */
        box-shadow: -24px 0 50px rgba(15, 35, 60, 0.14);
    }
}

@media (min-width: 901px) {
    .desktop-dropdown {
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .desktop-nav__item.is-active > .desktop-dropdown {
        display: block !important;
    }
}