:root {
    color-scheme: light;
    --ink: #111927;
    --muted: #667085;
    --line: #e4e8ef;
    --surface: #ffffff;
    --surface-soft: #f5f7fa;
    --navy: #10243e;
    --navy-2: #173a61;
    --accent: #c69b5b;
    --accent-soft: #f6efe4;
    --success: #16794b;
    --container: 1240px;
    --radius-lg: 32px;
    --radius-md: 22px;
    --shadow: 0 24px 70px rgba(16, 36, 62, .12);
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--surface-soft);
    color: var(--ink);
    line-height: 1.6;
    word-break: keep-all;
}

body.has-mobile-cta {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
}

a {
    color: inherit;
}

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

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

.v2-site-header {
    position: sticky;
    z-index: 40;
    top: 0;
    border-bottom: 1px solid rgba(228, 232, 239, .88);
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
}

.v2-site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 24px;
}

.v2-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-weight: 900;
    letter-spacing: -.04em;
    text-decoration: none;
}

.v2-brand__mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: linear-gradient(145deg, var(--navy), var(--navy-2));
    color: #fff;
    font-size: 13px;
    letter-spacing: -.02em;
}

.v2-header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v2-header-nav a {
    padding: 9px 13px;
    border-radius: 999px;
    color: #526071;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.v2-header-nav a:hover,
.v2-header-nav a:focus-visible {
    background: #edf1f6;
    color: var(--navy);
}

.v2-hero {
    position: relative;
    min-height: clamp(620px, 82svh, 880px);
    overflow: hidden;
    background: var(--navy);
    color: #fff;
}

.v2-hero__media,
.v2-hero__media::before,
.v2-hero__media::after {
    position: absolute;
    inset: 0;
}

.v2-hero__media {
    background:
        radial-gradient(circle at 82% 16%, rgba(198, 155, 91, .28), transparent 30%),
        linear-gradient(145deg, #0d1b2c, #173a61);
}

.v2-hero__media::before {
    content: "";
    background: linear-gradient(90deg, rgba(7, 18, 31, .94) 0%, rgba(7, 18, 31, .72) 45%, rgba(7, 18, 31, .20) 82%);
    z-index: 2;
}

.v2-hero__media::after {
    content: "";
    z-index: 3;
    background: linear-gradient(0deg, rgba(7, 18, 31, .56), transparent 45%);
}

.v2-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.v2-hero__media.is-fallback img {
    display: none;
}

.v2-hero__inner {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    min-height: inherit;
    padding-top: 100px;
    padding-bottom: 76px;
}

.v2-hero__content {
    width: min(760px, 100%);
}

.v2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .03em;
}

.v2-eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.v2-hero h1 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(42px, 7vw, 84px);
    line-height: 1.04;
    letter-spacing: -.065em;
}

.v2-hero__subtitle {
    max-width: 700px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(18px, 2.2vw, 25px);
    line-height: 1.55;
    letter-spacing: -.025em;
}

.v2-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.v2-pill {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.v2-pill--accent {
    border-color: rgba(198, 155, 91, .58);
    background: rgba(198, 155, 91, .24);
}

.v2-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.v2-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.v2-button:hover,
.v2-button:focus-visible {
    transform: translateY(-2px);
}

.v2-button--primary {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .22);
}

.v2-button--ghost {
    border-color: rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.v2-section {
    padding: 92px 0;
}

.v2-section--white {
    background: var(--surface);
}

.v2-section--navy {
    background: var(--navy);
    color: #fff;
}

.v2-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.v2-section-head__copy {
    max-width: 720px;
}

.v2-section-kicker {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.v2-section h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: -.05em;
}

.v2-section-head p {
    margin: 14px 0 0;
    color: var(--muted);
}

.v2-section--navy .v2-section-head p {
    color: rgba(255, 255, 255, .68);
}

.v2-stat-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: -54px;
}

.v2-stat-card {
    min-width: 0;
    padding: 25px;
    border: 1px solid rgba(228, 232, 239, .95);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 16px 44px rgba(16, 36, 62, .10);
    backdrop-filter: blur(16px);
}

.v2-stat-card__label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.v2-stat-card__value {
    display: block;
    margin-top: 9px;
    color: var(--navy);
    font-size: clamp(23px, 3vw, 34px);
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -.045em;
    overflow-wrap: anywhere;
}

.v2-stat-card__sub {
    display: block;
    margin-top: 7px;
    color: #8791a1;
    font-size: 12px;
}

.v2-feature-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
}

.v2-feature-list li {
    position: relative;
    min-height: 116px;
    padding: 22px 22px 22px 54px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    color: #263449;
    font-weight: 800;
}

.v2-feature-list li::before {
    position: absolute;
    top: 23px;
    left: 22px;
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-soft);
    box-shadow: inset 0 0 0 5px var(--accent);
}

.v2-rich-content {
    max-width: 920px;
    font-size: 17px;
    line-height: 1.85;
}

.v2-rich-content > :first-child {
    margin-top: 0;
}

.v2-rich-content > :last-child {
    margin-bottom: 0;
}

.v2-rich-content h2,
.v2-rich-content h3,
.v2-rich-content h4 {
    margin: 40px 0 14px;
    color: var(--navy);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.28;
    letter-spacing: -.04em;
}

.v2-rich-content p {
    margin: 14px 0;
    color: #435066;
}

.v2-rich-content ul,
.v2-rich-content ol {
    display: grid;
    gap: 9px;
    margin: 16px 0;
    padding-left: 22px;
    color: #435066;
}

.v2-rich-content .sector-intro {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.v2-rich-content .sector-intro > div {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
}

.v2-rich-content .sector-title {
    margin: 0 0 12px;
    font-size: 20px;
}

.v2-rich-content .sector-desc {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--navy);
}

.v2-gallery {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
}

.v2-gallery__item {
    position: relative;
    grid-column: span 4;
    min-height: 250px;
    overflow: hidden;
    border: 0;
    border-radius: var(--radius-md);
    background: #dfe5ec;
    cursor: zoom-in;
    padding: 0;
}

.v2-gallery__item:first-child {
    grid-column: span 8;
    grid-row: span 2;
    min-height: 514px;
}

.v2-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.v2-gallery__item:hover img,
.v2-gallery__item:focus-visible img {
    transform: scale(1.035);
}

.v2-gallery__caption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(8, 20, 35, .68);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-align: left;
    backdrop-filter: blur(8px);
}

.v2-fact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.v2-fact {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.v2-fact dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.v2-fact dd {
    margin: 8px 0 0;
    color: var(--navy);
    font-size: 19px;
    font-weight: 900;
    line-height: 1.35;
}

.v2-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.v2-info-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
}

.v2-info-card h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 21px;
    letter-spacing: -.035em;
}

.v2-info-card p {
    margin: 0;
    color: #4f5d70;
    white-space: pre-line;
}

.v2-address-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: linear-gradient(140deg, #fff, #f4f7fa);
    box-shadow: var(--shadow);
}

.v2-address-card h3 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: -.04em;
}

.v2-address-card address {
    margin-top: 12px;
    color: #4b596c;
    font-style: normal;
    font-size: 17px;
}

.v2-coordinates {
    display: inline-flex;
    margin-top: 10px;
    color: #8a94a3;
    font-size: 12px;
}

.v2-document-list,
.v2-video-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.v2-document-list a,
.v2-video-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 72px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: var(--navy);
    font-weight: 900;
    text-decoration: none;
}

.v2-document-list a::after,
.v2-video-list a::after {
    content: "↗";
    color: var(--accent);
    font-size: 20px;
}

.v2-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.v2-related-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.v2-related-card:hover,
.v2-related-card:focus-visible {
    transform: translateY(-5px);
    box-shadow: 0 18px 46px rgba(16, 36, 62, .12);
}

.v2-related-card__media {
    aspect-ratio: 16 / 10;
    background: linear-gradient(145deg, #dce3eb, #eef2f6);
}

.v2-related-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-related-card__body {
    padding: 20px;
}

.v2-related-card__body h3 {
    margin: 0;
    color: var(--navy);
    font-size: 20px;
    letter-spacing: -.035em;
}

.v2-related-card__body p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.v2-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    padding: clamp(32px, 6vw, 64px);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #173a61, #0e2036);
    color: #fff;
    box-shadow: var(--shadow);
}

.v2-cta-panel h2 {
    margin: 0;
    max-width: 700px;
    font-size: clamp(30px, 4vw, 52px);
}

.v2-cta-panel p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .72);
}

.v2-mobile-cta {
    position: fixed;
    z-index: 60;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    border-radius: 17px;
    background: var(--navy);
    color: #fff;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(6, 20, 37, .30);
}

.v2-site-footer {
    padding: 34px 0;
    border-top: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
    font-size: 13px;
}

.v2-site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.v2-lightbox {
    width: min(1120px, calc(100% - 32px));
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 24px;
    background: #0b111a;
    color: #fff;
    overflow: hidden;
}

.v2-lightbox::backdrop {
    background: rgba(4, 10, 18, .86);
    backdrop-filter: blur(6px);
}

.v2-lightbox__figure {
    margin: 0;
}

.v2-lightbox__figure img {
    width: 100%;
    max-height: 82svh;
    object-fit: contain;
    background: #080d14;
}

.v2-lightbox__caption {
    padding: 16px 20px;
    color: rgba(255, 255, 255, .82);
}

.v2-lightbox__close {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 50%;
    background: rgba(0, 0, 0, .48);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 980px) {
    .v2-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-feature-list,
    .v2-fact-grid,
    .v2-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-gallery__item,
    .v2-gallery__item:first-child {
        grid-column: span 6;
        grid-row: auto;
        min-height: 320px;
    }
}

@media (max-width: 720px) {
    body.has-mobile-cta {
        padding-bottom: calc(90px + env(safe-area-inset-bottom));
    }

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

    .v2-site-header__inner {
        min-height: 62px;
    }

    .v2-header-nav a:not(:last-child) {
        display: none;
    }

    .v2-hero {
        min-height: calc(100svh - 62px);
    }

    .v2-hero__inner {
        padding-top: 80px;
        padding-bottom: 48px;
    }

    .v2-hero__media::before {
        background: linear-gradient(0deg, rgba(7, 18, 31, .95) 0%, rgba(7, 18, 31, .62) 58%, rgba(7, 18, 31, .22) 100%);
    }

    .v2-hero h1 {
        font-size: clamp(42px, 14vw, 62px);
    }

    .v2-hero__subtitle {
        margin-top: 18px;
        font-size: 18px;
    }

    .v2-hero__actions .v2-button {
        width: 100%;
    }

    .v2-section {
        padding: 68px 0;
    }

    .v2-section-head {
        display: block;
    }

    .v2-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: -30px;
    }

    .v2-stat-card {
        padding: 19px;
    }

    .v2-feature-list,
    .v2-fact-grid,
    .v2-info-grid,
    .v2-related-grid,
    .v2-document-list,
    .v2-video-list {
        grid-template-columns: 1fr;
    }

    .v2-rich-content .sector-intro {
        grid-template-columns: 1fr;
    }

    .v2-gallery {
        display: flex;
        width: calc(100vw - 12px);
        margin-right: calc((100vw - 100%) / -2);
        padding-right: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .v2-gallery::-webkit-scrollbar {
        display: none;
    }

    .v2-gallery__item,
    .v2-gallery__item:first-child {
        flex: 0 0 min(82vw, 430px);
        min-height: 310px;
        scroll-snap-align: start;
    }

    .v2-address-card,
    .v2-cta-panel {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .v2-mobile-cta {
        display: flex;
    }

    .v2-site-footer__inner {
        display: block;
    }
}

@media (max-width: 430px) {
    .v2-stat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .v2-stat-card__value {
        font-size: 22px;
    }

    .v2-pill {
        max-width: 100%;
    }
}
