.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    height: var(--header_height);
    padding: 15px 21px 14px var(--page_padding);
    background-color: var(--color_scrim);
    transition: background-color 0.25s ease;
}

.header.is_scrolled {
    background-color: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
}

/*
 * 헤더 기본 배경은 어두운 히어로 위를 전제로 한 반투명 스크림이다.
 * 로그인처럼 배경이 밝은 페이지에서는 흰 글자가 묻히므로 불투명하게 깐다.
 */
.header_solid {
    background-color: rgba(0, 0, 0, 0.9);
}

.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 29px;
}

.header_logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header_logo_symbol {
    height: 23px;
    width: auto;
}

.header_logo_text {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

/* 헤더 우측 액션 묶음 — 모바일은 계정 아이콘 + 햄버거, 768px부터는 로그인/회원가입 */
.header_actions {
    display: flex;
    align-items: center;
    gap: var(--space_3);
}

.header_menu_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
}

.header_account {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    color: #ffffff;
    transition: color 0.22s ease;
}

.header_account svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

/* 로그인·회원가입 텍스트 링크는 768px 이상에서만 노출한다. */
.auth_list {
    display: none;
    align-items: center;
    gap: var(--space_2);
}

.auth_link {
    display: inline-flex;
    align-items: center;
    padding: 7px 15px;
    border: 1px solid transparent;
    border-radius: var(--radius_pill);
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    white-space: nowrap;
    transition:
        color 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s var(--ease_out_soft);
}

.auth_link_signup {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

/*
 * 모바일 전체 메뉴는 헤더 아래로 펼쳐지는 드롭다운이다.
 * .header가 스크롤 시 backdrop-filter를 갖는데, backdrop-filter는 position:fixed의
 * 컨테이닝 블록이 되어 스크롤 전후로 기준이 바뀐다. absolute로 헤더 패딩 박스에
 * 고정해 두면 그 영향을 받지 않는다.
 */
.global_nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 29;
    padding: var(--space_4) var(--page_padding) var(--space_6);
    background-color: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
}

.global_nav_link {
    display: block;
    padding: var(--space_3) 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero {
    position: relative;
    min-height: 716px;
    display: flex;
    align-items: flex-end;
    padding: 0 var(--page_padding) 74px;
    overflow: hidden;
}

.hero_media {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero_media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.82) 82%, rgba(0, 0, 0, 0.9) 100%);
}

.intro {
    padding: var(--section_space) var(--page_padding) 0;
}

/* 메뉴 카드는 인트로 문구에 딸린 묶음이라 사이를 좁게 둔다. */
.menu_section {
    padding: var(--space_8) var(--page_padding) 0;
}

.about {
    position: relative;
    margin-top: var(--section_space);
    padding: 56px var(--page_padding);
    overflow: hidden;
}

.about_media {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.about_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_media::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.62);
}

/* 글래스 카드가 비칠 바탕이 필요해 옅은 파란 그라데이션을 깐다. */
.result {
    padding: var(--section_space) var(--page_padding);
    background:
        radial-gradient(90% 60% at 85% 0%, rgba(43, 161, 255, 0.12) 0%, rgba(43, 161, 255, 0) 60%),
        linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
}

.result_inner {
    width: 100%;
    max-width: var(--content_max);
    margin-inline: auto;
}

/* 보고서 띠는 화면 폭을 꽉 채우므로 좌우 여백을 스크롤러 안쪽에서 준다. */
.report {
    margin-top: var(--section_space);
    padding: 56px var(--page_padding);
    background: linear-gradient(135deg, var(--color_brand) 0%, var(--color_brand_light) 100%);
}

.field {
    padding: var(--section_space) var(--page_padding) 0;
}

.field_list {
    display: flex;
    flex-direction: column;
    gap: var(--space_4);
    margin-top: var(--space_8);
}

.link_section {
    padding: var(--section_space) var(--page_padding);
}

.footer {
    padding: 34px 31px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background-color: var(--color_surface);
}

.footer_inner {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
