@charset "utf-8";

.page-hero {
    position: relative;
    z-index: 7;
    min-height: min(100dvh, 860rem);
    padding-top: clamp(120rem, calc(160 / var(--container) * 100vw), 160rem);
    padding-bottom: clamp(120rem, calc(140 / var(--container) * 100vw), 140rem);
    color: #fff;
    isolation: isolate;
    overflow: hidden;
}

.page-hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--black) no-repeat 50% / cover;
    content: "";
}

.page-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg,
            rgba(8, 18, 34, 0.18) 0%,
            rgba(8, 18, 34, 0.28) 100%),
        linear-gradient(90deg,
            rgba(8, 18, 34, 0.42) 0%,
            rgba(8, 18, 34, 0.12) 55%,
            rgba(8, 18, 34, 0.28) 100%);
    content: "";
}

.page-hero.nav-about::before {
    background-image: url("/assets/images/pages/sub-hero/bg-about.jpg");
}

.page-hero.nav-tech::before {
    background-image: url("/assets/images/pages/sub-hero/bg-tech.jpg");
}

.page-hero.nav-engine::before {
    background-image: url("/assets/images/pages/sub-hero/bg-engine.jpg");
}

.page-hero.nav-generators::before {
    background-image: url("/assets/images/pages/sub-hero/bg-generator.jpg");
}

.page-hero.nav-news::before {
    background-image: url("/assets/images/pages/sub-hero/bg-news.jpg");
}

.page-hero-container {
    display: flex;
    gap: 44px;
    flex-direction: column;
    height: calc(min(100dvh, 860rem) - clamp(249rem, calc(260 / var(--container) * 100vw), 249rem));
    justify-content: center;
}

.page-hero-copy {
    display: grid;
    justify-items: center;
    text-align: center;
}

.page-hero-eyebrow {
    margin-bottom: 18rem;
    font-size: clamp(18rem, calc(22 / var(--container) * 100vw), 22rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.92);
}

.page-hero-title {
    font-size: clamp(56rem, calc(92 / var(--container) * 100vw), 92rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    text-wrap: balance;
}

.local-nav {
    position: relative;
    z-index: 7;
    font: var(--font-size-18-to-14) var(--font-sans);
}

.local-nav .container {
    display: flex;
    height: 3.88888889em;
}

.local-nav .home {
    display: grid;
    place-items: center;
    width: auto;
    height: 54rem;
    aspect-ratio: 1;
    background: var(--primary);
    border-radius: 16px;
}

.local-nav .home-icon {
    display: block;
    width: 1.05555556em;
    height: auto;
    fill: #fff;
}

.local-nav details {
    position: relative;
}

.local-nav summary {
    position: relative;
    display: block;
    align-content: center;
    height: 100%;
    padding-inline: 1.66666667em 3.83333333em;
    text-align: left;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(1px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.local-nav summary::after {
    position: absolute;
    inset: 0;
    width: 0.55555556em;
    aspect-ratio: 1;
    margin: auto 29rem auto auto;
    border: solid currentColor;
    border-width: 0 1px 1px 0;
    translate: 0 -25%;
    rotate: 45deg;
    content: "";
}

.local-nav [open] summary::after {
    translate: 0 25%;
    scale: -1;
}

.local-nav .nav-menu {
    position: absolute;
    inset: 100% 0 auto;
    color: #ffffff;
    background: rgb(0 0 0 / 36%);
    border: 1px solid var(--border-color);
    box-shadow: 0 10rem 30rem #0000000d;
    border-radius: 16px;
}

.local-nav .details-level-1 .nav-menu-level-2 {
    display: none;
}

.local-nav .details-level-2 .nav-menu-level-3 {
    display: none;
}

.local-nav .nav-link {
    display: block;
    padding: 1em 1.61111111em;
}

.local-nav--hero {
    display: flex;
    margin: 0 auto;
    width: fit-content;
    /* margin-top: 32px; */
}

.local-nav--hero .container {
    gap: 8px;
    justify-content: center;
}

.local-nav--hero summary {
    min-width: 240rem;
    height: 54rem;
}

@media (any-hover) {
    .local-nav .nav-link:hover {
        background: #e97e15;
        color: #fff;
        border-radius: 16px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .page-hero::before {
        animation: page-hero-bg 1.8s both;
    }

    .page-hero-title,
    .page-hero-eyebrow {
        opacity: 0;
        animation: page-hero-copy-in 0.8s 0.15s both;
    }
}

@keyframes page-hero-bg {
    0% {
        scale: 1.05;
    }

    100% {
        scale: 1;
    }
}

@keyframes page-hero-copy-in {
    0% {
        opacity: 0;
        transform: translateY(24rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (width < 1024px) {
    .page-hero {
        min-height: 720rem;
    }

    .page-hero-title {
        font-size: clamp(44rem, calc(64 / 768 * 100vw), 64rem);
    }

    .local-nav--hero summary {
        min-width: 200rem;
    }
}

@media (width < 767px) {
    .page-hero {
        min-height: 620rem;
        padding-top: 120rem;
        padding-bottom: 120rem;
    }

    .page-hero-container {
        min-height: auto;
    }

    .page-hero-eyebrow {
        margin-bottom: 12rem;
        font-size: 16rem;
    }

    .page-hero-title {
        font-size: clamp(34rem, calc(44 / 390 * 100vw), 44rem);
        line-height: 1.08;
    }

    .local-nav--hero {
        bottom: 22rem;
        width: calc(100% - 40rem);
    }

    .local-nav--hero .container {
        width: 100%;
    }

    .local-nav--hero .home {
        flex-shrink: 0;
    }

    .local-nav--hero details {
        flex: 1 1 0;
        min-width: 0;
    }

    .local-nav--hero summary {
        min-width: 0;
        padding-inline: 16rem 42rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.home-ko-hero-scroll {
    position: absolute;
    right: clamp(32rem, calc(48 / var(--container-wide) * 100vw), 100rem);
    bottom: clamp(32rem, calc(44 / var(--container-wide) * 100vw), 32rem);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.home-ko-hero-scroll:hover {
    transform: translateY(-2rem);
    opacity: 0.82;
}

.home-ko-hero-scroll:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 6px;
}

@media (prefers-reduced-motion: reduce) {
    .home-ko-hero-scroll-text {
        animation: none;
    }

    .home-ko-hero-scroll {
        transition: none;
    }
}

@media (width < 767) {
    .home-ko-hero-scroll {
        right: 16rem;
        bottom: 18rem;
    }

    .home-ko-hero-scroll-text {
        font-size: 12rem;
    }
}

.layout-interior {
    min-height: 300px;
    padding-block: clamp(60rem, calc(90 / var(--container) * 100vw), 90rem);

    .legal-document .page-heading,
    .page-heading-block {
        margin-bottom: calc(var(--font-size-35) * 2);
        text-align: center;
    }

    .page-heading {
        font-size: var(--font-size-35);
    }

    .page-subheading {
        margin-top: 0.125em;
        font-weight: 700;
        font-size: var(--font-size-16);
        color: #999;
    }

    /* 멤버 페이지는 각 페이지가 타이틀을 가진 경우가 많아서 공통 서브 타이틀 숨기기 */
    #main:has(.join_area) .sub_title {
        display: none;
    }
}

/* SUB PAGE */
.brand-story-page {
    background: #f6f7f9;
}

.brand-story-section .container {
    display: grid;
    gap: clamp(32rem, calc(48 / var(--container) * 100vw), 48rem);
}

.brand-story-visual {
    overflow: hidden;
    border-radius: 20rem;
    background: #111;
}

.brand-story-visual-main {
    position: relative;
    margin: 0;
    min-height: clamp(320rem, calc(520 / var(--container) * 100vw), 760rem);
}

.brand-story-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-story-message {
    margin-bottom: clamp(32rem, calc(48 / var(--container) * 100vw), 48rem);
}

.brand-story-message-line {
    display: block;
    width: 72rem;
    height: 2rem;
    margin-bottom: 20rem;
    background: currentColor;
    opacity: 0.86;
}

.brand-story-message strong {
    display: block;
    font-size: clamp(24rem, calc(38 / var(--container) * 100vw), 38rem);
    font-weight: 700;
    line-height: 1.48;
    letter-spacing: -0.04em;
    word-break: keep-all;
}

.brand-story-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280rem, 360rem);
    gap: clamp(20rem, calc(32 / var(--container) * 100vw), 32rem);
    align-items: stretch;
}

.brand-story-copy,
.brand-story-summary-item {
    border-radius: 20rem;
    background: #fff;
}

.brand-story-copy {
    padding: clamp(30rem, calc(48 / var(--container) * 100vw), 48rem);
}

.brand-story-copy p {
    margin: 0;
    font-size: clamp(18rem, calc(21 / var(--container) * 100vw), 21rem);
    font-weight: 600;
    line-height: 1.9;
    letter-spacing: -0.035em;
    color: #1f2933;
    word-break: keep-all;
}

.brand-story-copy p+p {
    margin-top: 26rem;
}

.brand-story-signature {
    color: #111;
}

.brand-story-summary {
    display: grid;
    gap: 12rem;
}

.brand-story-summary-item {
    display: flex;
    min-height: 128rem;
    flex-direction: column;
    justify-content: center;
    padding: 26rem 28rem;
    border: 1px solid rgba(17, 17, 17, 0.06);
}

.brand-story-summary-number {
    margin-bottom: 8rem;
    font-size: clamp(34rem, calc(44 / var(--container) * 100vw), 44rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--primary);
}

.brand-story-summary-label {
    font-size: 16rem;
    font-weight: 700;
    line-height: 1.35;
    color: #4b4b4b;
}

@media (width < 1024px) {
    .brand-story-content {
        grid-template-columns: 1fr;
    }

    .brand-story-summary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (width < 767px) {
    .brand-story-section .container {
        gap: 24rem;
    }

    .brand-story-visual,
    .brand-story-copy,
    .brand-story-summary-item {
        border-radius: 16rem;
    }

    .brand-story-visual-main {
        min-height: 360rem;
    }

    .brand-story-message {
        left: 22rem;
        right: 22rem;
        bottom: 28rem;
        width: auto;
    }

    .brand-story-message-line {
        width: 54rem;
        margin-bottom: 16rem;
    }

    .brand-story-message strong {
        font-size: 22rem;
        line-height: 1.55;
    }

    .brand-story-copy {
        padding: 26rem 22rem;
    }

    .brand-story-copy p {
        font-size: 16rem;
        line-height: 1.82;
    }

    .brand-story-copy p+p {
        margin-top: 22rem;
    }

    .brand-story-summary {
        grid-template-columns: 1fr;
    }

    .brand-story-summary-item {
        min-height: auto;
        padding: 24rem 22rem;
    }

    .brand-story-summary-number {
        font-size: 34rem;
    }

    .brand-story-summary-label {
        font-size: 15rem;
    }
}

/* SUB PAGE - HISTORY */
.history-page {
    background: #f6f7f9;
}

.history-section .container {
    display: grid;
    gap: clamp(44rem, calc(64 / var(--container) * 100vw), 64rem);
}

.history-board {
    display: grid;
    gap: 26rem;
}

.history-era {
    display: grid;
    grid-template-columns: 260rem minmax(0, 1fr);
    gap: 24rem;
    padding: clamp(24rem, calc(34 / var(--container) * 100vw), 34rem);
    border-radius: 24rem;
    background: #fff;
}

.history-era-head {
    align-self: start;
    position: sticky;
    top: 120rem;
}

.history-era-label {
    display: block;
    margin-bottom: 12rem;
    font-size: clamp(42rem, calc(58 / var(--container) * 100vw), 58rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.06em;
    color: var(--primary);
}

.history-era-head strong {
    display: block;
    font-size: 18rem;
    font-weight: 700;
    line-height: 1.35;
    color: #111;
}

.history-card-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14rem;
}

.history-card {
    min-height: 150rem;
    padding: 24rem;
    border-radius: 18rem;
    background: #f6f7f9;
    border: 1px solid rgba(17, 17, 17, 0.06);
}

.history-card-wide,
.history-card-featured {
    grid-column: span 2;
}

.history-card-featured {
    background: #252b2f;
}

.history-year {
    display: inline-flex;
    align-items: center;
    height: 34rem;
    margin-bottom: 18rem;
    padding: 0 14rem;
    border-radius: 999px;
    background: rgba(233, 126, 21, 0.12);
    color: var(--primary);
    font-size: 15rem;
    font-weight: 800;
}

.history-card-featured .history-year {
    background: var(--primary);
    color: #fff;
}

.history-card p,
.history-card li {
    margin: 0;
    font-size: clamp(17rem, calc(19 / var(--container) * 100vw), 19rem);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: -0.035em;
    color: #374151;
    word-break: keep-all;
}

.history-card-featured p,
.history-card-featured li {
    color: #fff;
}

.history-card ul {
    display: grid;
    gap: 12rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.history-card li+li {
    padding-top: 12rem;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.history-card-featured li+li {
    border-top-color: rgba(255, 255, 255, 0.16);
}

@media (hover: hover) and (pointer: fine) {
    .history-card {
        transition:
            transform 0.25s ease,
            border-color 0.25s ease,
            box-shadow 0.25s ease;
    }

    .history-card:hover {
        transform: translateY(-3rem);
        border-color: rgba(233, 126, 21, 0.35);
        box-shadow: 0 18rem 40rem rgba(17, 17, 17, 0.06);
    }
}

@media (width < 1024px) {
    .history-era {
        grid-template-columns: 1fr;
    }

    .history-era-head {
        position: static;
    }
}

@media (width < 767px) {
    .history-section .container {
        gap: 34rem;
    }

    .history-era {
        gap: 22rem;
        padding: 22rem;
        border-radius: 18rem;
    }

    .history-era-label {
        font-size: 38rem;
    }

    .history-era-head strong {
        font-size: 16rem;
    }

    .history-card-list {
        grid-template-columns: 1fr;
    }

    .history-card,
    .history-card-wide,
    .history-card-featured {
        grid-column: auto;
    }

    .history-card {
        min-height: auto;
        padding: 22rem;
        border-radius: 16rem;
    }

    .history-year {
        height: 32rem;
        margin-bottom: 14rem;
        font-size: 14rem;
    }

    .history-card p,
    .history-card li {
        font-size: 16rem;
        line-height: 1.65;
    }
}

/* TECHNOLOGY STATUS */
.technology-status-page {
    background: #f6f7f9;
}

.technology-status-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.technology-status-card {
    position: relative;
    min-height: 220rem;
    padding: 34rem;
    border-radius: 22rem;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.06);
    overflow: hidden;
}

.technology-status-card::after {
    position: absolute;
    right: 16rem;
    bottom: -32rem;
    font-size: 150rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.08em;
    color: #f4f4f4;
    content: attr(data-number);
}

.technology-status-card:nth-child(1)::after {
    content: "01";
}

.technology-status-card:nth-child(2)::after {
    content: "02";
}

.technology-status-card:nth-child(3)::after {
    content: "03";
}

.technology-status-card:nth-child(4)::after {
    content: "04";
}

.technology-status-card:nth-child(5)::after {
    content: "05";
}

.technology-status-card-featured {
    grid-column: span 2;
    min-height: 260rem;
    background: #252b2f;
}

.technology-status-number {
    display: inline-flex;
    align-items: center;
    height: 38rem;
    margin-bottom: 34rem;
    padding: 0 16rem;
    border-radius: 999px;
    background: rgba(233, 126, 21, 0.12);
    color: var(--primary);
    font-size: 16rem;
    font-weight: 800;
    line-height: 1;
}

.technology-status-card-featured .technology-status-number {
    background: var(--primary);
    color: #fff;
}

.technology-status-card p {
    position: relative;
    z-index: 1;
    max-width: 760rem;
    margin: 0;
    font-size: clamp(24rem, calc(32 / var(--container) * 100vw), 32rem);
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.045em;
    color: #111;
    word-break: keep-all;
}

.technology-status-card:not(.technology-status-card-featured) p {
    font-size: clamp(21rem, calc(26 / var(--container) * 100vw), 26rem);
}

.technology-status-card-featured p {
    color: #fff;
}

@media (hover: hover) and (pointer: fine) {
    .technology-status-card {
        transition:
            transform 0.25s ease,
            border-color 0.25s ease,
            box-shadow 0.25s ease;
    }

    .technology-status-card:hover {
        transform: translateY(-4rem);
        border-color: rgba(233, 126, 21, 0.35);
        box-shadow: 0 20rem 48rem rgba(17, 17, 17, 0.07);
    }
}

@media (width < 767px) {
    .technology-status-list {
        grid-template-columns: 1fr;
        gap: 14rem;
    }

    .technology-status-card,
    .technology-status-card-featured {
        grid-column: auto;
        min-height: auto;
        padding: 26rem 22rem;
        border-radius: 18rem;
    }

    .technology-status-card::after {
        right: -22rem;
        bottom: -34rem;
        font-size: 104rem;
    }

    .technology-status-number {
        height: 34rem;
        margin-bottom: 26rem;
        padding: 0 14rem;
        font-size: 14rem;
    }

    .technology-status-card p,
    .technology-status-card:not(.technology-status-card-featured) p {
        font-size: 21rem;
        line-height: 1.5;
    }
}

/* SUB PAGE - PATENT APPLICATIONS */
.patent-applications-page {
    background: #f6f7f9;
}

.patent-applications-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420rem;
    gap: clamp(32rem, calc(56 / var(--container) * 100vw), 56rem);
    align-items: center;
    min-height: 520rem;
    padding: clamp(38rem, calc(70 / var(--container) * 100vw), 70rem);
    border-radius: 28rem;
    background: #fff;
    overflow: hidden;
}

.patent-applications-panel::before {
    position: absolute;
    right: -120rem;
    top: -120rem;
    width: 360rem;
    height: 360rem;
    border-radius: 50%;
    background: rgba(233, 126, 21, 0.16);
    content: "";
}

.patent-applications-copy {
    position: relative;
    z-index: 1;
}

.patent-applications-line {
    display: block;
    width: 72rem;
    height: 3rem;
    margin-bottom: 34rem;
    background: var(--primary);
}

.patent-applications-text {
    margin: 0;
    font-size: clamp(34rem, calc(52 / var(--container) * 100vw), 52rem);
    font-weight: 700;
    line-height: 1.34;
    letter-spacing: -0.055em;
    color: #333;
    word-break: keep-all;
}

.patent-applications-result {
    display: flex;
    align-items: flex-end;
    gap: 16rem;
    margin: 36rem 0 0;
    color: #fff;
    word-break: keep-all;
}

.patent-applications-result strong {
    font-size: clamp(68rem, calc(118 / var(--container) * 100vw), 118rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.07em;
    color: var(--primary);
}

.patent-applications-result span {
    padding-bottom: 10rem;
    font-size: clamp(32rem, calc(48 / var(--container) * 100vw), 48rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #ddd;
}

.patent-applications-media {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-height: 380rem;
    margin: 0;
    border-radius: 24rem;
    background: #fafafa;
}

.patent-applications-image {
    display: block;
    width: 100%;
    height: auto;
}

@media (width < 1024px) {
    .patent-applications-panel {
        grid-template-columns: 1fr;
    }

    .patent-applications-media {
        order: -1;
    }
}

@media (width < 767px) {
    .patent-applications-panel {
        min-height: auto;
        padding: 24rem;
        border-radius: 20rem;
    }

    .patent-applications-line {
        width: 54rem;
        margin-bottom: 24rem;
    }

    .patent-applications-text {
        font-size: 28rem;
        line-height: 1.42;
    }

    .patent-applications-result {
        display: block;
        margin-top: 28rem;
    }

    .patent-applications-result strong {
        display: block;
        margin-bottom: 8rem;
        font-size: 64rem;
    }

    .patent-applications-result span {
        padding-bottom: 0;
        font-size: 30rem;
    }

    .patent-applications-media {
        min-height: 300rem;
        border-radius: 16rem;
    }

    .patent-applications-image {
        width: min(76%, 250rem);
    }
}

/* SUB PAGE - PRODUCTION STATUS */
.production-status-page {
    background: #f6f7f9;
}

.production-status-list {
    counter-reset: production-step;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.production-status-item {
    counter-increment: production-step;
    position: relative;
    min-height: 280rem;
    padding: 32rem;
    border-radius: 22rem;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.06);
    overflow: hidden;
}

.production-status-item::after {
    position: absolute;
    right: 22rem;
    bottom: 18rem;
    font-size: 82rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.08em;
    color: rgba(233, 126, 21, 0.08);
    content: counter(production-step, decimal-leading-zero);
}

.production-status-step {
    display: inline-flex;
    align-items: center;
    height: 34rem;
    margin-bottom: 44rem;
    padding: 0 14rem;
    border-radius: 999px;
    background: rgba(233, 126, 21, 0.12);
    color: var(--primary);
    font-size: 14rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
}

.production-status-item h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 18rem;
    font-size: clamp(24rem, calc(30 / var(--container) * 100vw), 30rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.045em;
    color: #111;
    word-break: keep-all;
}

.production-status-item p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(17rem, calc(20 / var(--container) * 100vw), 20rem);
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: -0.035em;
    color: #4b5563;
    word-break: keep-all;
}

.production-status-item:nth-child(1) {
    background: #252b2f;
}

.production-status-item:nth-child(1) .production-status-step {
    background: var(--primary);
    color: #fff;
}

.production-status-item:nth-child(1) h2,
.production-status-item:nth-child(1) p {
    color: #fff;
}

.production-status-item:nth-child(1)::after {
    color: rgba(255, 255, 255, 0.08);
}

.production-status-item:nth-child(5),
.production-status-item:nth-child(6) {
    grid-column: span 1;
}

@media (hover: hover) and (pointer: fine) {
    .production-status-item {
        transition:
            transform 0.25s ease,
            border-color 0.25s ease,
            box-shadow 0.25s ease;
    }

    .production-status-item:hover {
        transform: translateY(-4rem);
        border-color: rgba(233, 126, 21, 0.35);
        box-shadow: 0 20rem 48rem rgba(17, 17, 17, 0.07);
    }
}

@media (width < 1024px) {
    .production-status-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (width < 767px) {
    .production-status-list {
        grid-template-columns: 1fr;
        gap: 14rem;
    }

    .production-status-item {
        min-height: auto;
        padding: 26rem 22rem;
        border-radius: 18rem;
    }

    .production-status-item::after {
        right: 16rem;
        bottom: 14rem;
        font-size: 66rem;
    }

    .production-status-step {
        height: 32rem;
        margin-bottom: 34rem;
        font-size: 13rem;
    }

    .production-status-item h2 {
        margin-bottom: 14rem;
        font-size: 23rem;
    }

    .production-status-item p {
        font-size: 16rem;
        line-height: 1.7;
    }

    .production-status-item p br {
        display: none;
    }
}

/* SUB PAGE - PRODUCT GRID */
.product-grid-page {
    background: #fff;
}

.product-grid-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24rem;
}

.product-grid-item {
    min-width: 0;
}

.product-grid-page .home-ko-products-card {
    height: 100%;
    min-height: 374rem;
}

.product-grid-page .home-ko-products-card-title {
    margin-bottom: 65rem;
}

.product-grid-page .home-ko-products-card-body .intro-action {
    margin-top: auto;
}

@media (width < 1280px) {
    .product-grid-list {
        gap: 20rem;
    }

    .product-grid-page .home-ko-products-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .product-grid-page .home-ko-products-card-title {
        margin-bottom: 0;
    }
}

@media (width < 767px) {
    .product-grid-list {
        grid-template-columns: 1fr;
        gap: 16rem;
    }

    .product-grid-page .home-ko-products-card {
        padding: 18rem;
        border-radius: 16rem;
    }
}

/* Product detail */
/* SUB PAGE - PRODUCT DETAIL */
.product-detail-page {
    background: #f6f7f9;
}

.product-detail-section .container {
    display: grid;
    gap: clamp(36rem, calc(56 / var(--container) * 100vw), 56rem);
}

.product-detail-overview {
    display: grid;
    grid-template-columns: minmax(320rem, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(28rem, calc(48 / var(--container) * 100vw), 48rem);
    align-items: stretch;
    padding: clamp(24rem, calc(36 / var(--container) * 100vw), 36rem);
    border-radius: 24rem;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.06);
}

.product-detail-gallery {
    display: grid;
    gap: 18rem;
}

.product-detail-main-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: clamp(320rem, calc(460 / var(--container) * 100vw), 460rem);
    margin: 0;
    border-radius: 20rem;
    background: #fff;
    overflow: hidden;
    border: 2px solid #f3f4f6;
}

.product-detail-main-image img {
    display: block;
    width: min(88%, 520rem);
    height: auto;
}

.product-detail-thumbs {
    display: flex;
    gap: 10rem;
}

.product-detail-thumb {
    display: flex;
    align-items: center;
    width: 92rem;
    height: 72rem;
    padding: 8rem;
    border: 1px solid #ddd;
    border-radius: 12rem;
    background: #fff;
    cursor: pointer;
    justify-content: center;
}

.product-detail-thumb.is-active {
    border-color: var(--primary);
}

.product-detail-thumb img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-detail-category {
    display: inline-flex;
    align-items: center;
    height: 34rem;
    margin-bottom: 20rem;
    padding: 0 14rem;
    border-radius: 999px;
    background: rgba(233, 126, 21, 0.12);
    color: var(--primary);
    font-size: 14rem;
    font-weight: 800;
}

.product-detail-title {
    margin: 0;
    font-size: clamp(42rem, calc(64 / var(--container) * 100vw), 54rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.06em;
    color: #111;
}

.product-detail-title span {
    color: var(--primary);
}

.product-detail-key-specs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10rem;
    width: 100%;
    margin-top: 32rem;
}

.product-detail-key-spec {
    padding: 18rem;
    border-radius: 16rem;
    background: #f6f7f9;
}

.product-detail-key-spec strong {
    display: block;
    margin-bottom: 6rem;
    font-size: 28rem;
    font-weight: 800;
    line-height: 1;
    color: #111;
}

.product-detail-key-spec span {
    font-size: 14rem;
    font-weight: 700;
    color: #6b7280;
}

.product-detail-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12rem;
    width: 100%;
    margin-top: 28rem;
}

.product-detail-feature {
    padding: 24rem;
    border-radius: 18rem;
    background: #f6f7f9;
}

.product-detail-feature h3 {
    margin: 0 0 14rem;
    font-size: 20rem;
    font-weight: 800;
    color: #111;
}

.product-detail-feature ul {
    display: grid;
    gap: 8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-detail-feature li {
    position: relative;
    padding-left: 14rem;
    font-size: 16rem;
    font-weight: 500;
    line-height: 1.55;
    color: #4b5563;
    word-break: keep-all;
}

.product-detail-feature li::before {
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--primary);
    content: "";
}

.product-detail-actions {
    display: flex;
    width: 100%;
    margin-top: auto;
    padding-top: 28rem;
}

.product-detail-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 54rem;
    border: 1px solid var(--primary);
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
    font-size: 17rem;
    font-weight: 800;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.product-detail-button-primary,
.product-detail-button:hover {
    background: var(--primary);
    color: #fff;
}

.product-detail-spec-section {
    display: grid;
    padding: clamp(28rem, calc(40 / var(--container) * 100vw), 40rem);
    border-radius: 24rem;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.06);
}

.product-detail-section-head {
    margin-bottom: 28rem;
}

.product-detail-section-head span {
    display: block;
    margin-bottom: 10rem;
    font-size: 13rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--primary);
}

.product-detail-section-head h2 {
    margin: 0;
    font-size: clamp(30rem, calc(44 / var(--container) * 100vw), 44rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #111;
}

.product-detail-table-wrap {
    overflow-x: auto;
}

.product-detail-table {
    width: 100%;
    min-width: 450rem;
    border-collapse: collapse;
    border-top: 2px solid #252b2f;
}

.product-detail-table th,
.product-detail-table td {
    padding: 20rem 22rem;
    border-bottom: 1px solid #e5e7eb;
    font-size: 16rem;
    line-height: 1.55;
    letter-spacing: -0.025em;
    text-align: left;
    word-break: keep-all;
}

.product-detail-table th {
    width: 30%;
    background: #f6f7f9;
    color: #111;
    font-weight: 800;
}

.product-detail-table td {
    color: #374151;
    font-weight: 500;
}

.product-detail-nav {
    display: flex;
    justify-content: center;
    gap: 8rem;
}

.product-detail-nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 94rem;
    height: 46rem;
    padding: 0 18rem;
    border-radius: 999px;
    background: #252b2f;
    color: #fff;
    font-size: 15rem;
    font-weight: 800;
}

.product-detail-nav-button-list {
    background: var(--primary);
}

@media (hover: hover) and (pointer: fine) {

    .product-detail-thumb,
    .product-detail-nav-button {
        transition:
            transform 0.25s ease,
            border-color 0.25s ease,
            background-color 0.25s ease,
            color 0.25s ease;
    }

    .product-detail-thumb:hover,
    .product-detail-nav-button:hover {
        transform: translateY(-2rem);
    }
}

@media (width < 1024px) {
    .product-detail-overview {
        grid-template-columns: 1fr;
    }

    .product-detail-key-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail-actions {
        margin-top: 28rem;
    }
}

@media (width < 767px) {

    .product-detail-overview,
    .product-detail-spec-section {
        padding: 20rem;
        border-radius: 18rem;
    }

    .product-detail-main-image {
        min-height: 280rem;
        border-radius: 16rem;
    }

    .product-detail-thumbs {
        overflow-x: auto;
        padding-bottom: 2rem;
    }

    .product-detail-thumb {
        flex: 0 0 auto;
        width: 78rem;
        height: 62rem;
    }

    .product-detail-title {
        font-size: 38rem;
    }

    .product-detail-key-specs {
        margin-top: 24rem;
    }

    .product-detail-key-spec {
        padding: 16rem;
    }

    .product-detail-key-spec strong {
        font-size: 24rem;
    }

    .product-detail-feature {
        padding: 20rem;
        border-radius: 16rem;
    }

    .product-detail-actions {
        grid-template-columns: 1fr;
    }

    .product-detail-table th,
    .product-detail-table td {
        /* display: block; */
        /* width: 100%; */
        padding: 14rem 16rem;
        font-size: 14rem;
    }

    .product-detail-table th {
        border-bottom: 0;
    }

    .product-detail-nav {
        flex-wrap: wrap;
    }

    .product-detail-nav-button {
        flex: 1 1 0;
        min-width: 0;
    }
}

/* Pop up product image zoom */
.product-detail-main-image {
    cursor: zoom-in;
}

.product-detail-main-image img {
    pointer-events: none;
}

.product-zoom-lock {
    overflow: hidden;
}

.product-zoom-modal[hidden] {
    display: none;
}

.product-zoom-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: grid;
    place-items: center;
    padding: 32rem;
    background: rgba(0, 0, 0, 0.78);
}

.product-zoom-modal__overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background: transparent;
    cursor: zoom-out;
}

.product-zoom-modal__content {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: min(1280rem, 88vw);
    height: min(780rem, 82vh);
    padding: 36rem;
    border-radius: 24rem;
    background: #fff;
    overflow: hidden;
}

.product-zoom-modal__content img {
    display: block;
    width: auto;
    height: auto;
    max-width: 82%;
    max-height: 82%;
    object-fit: contain;
    transform: scale(1.4);
    transform-origin: center;
}

.product-zoom-modal__close {
    position: absolute;
    top: 16rem;
    right: 16rem;
    z-index: 2;
    width: 44rem;
    height: 44rem;
    border: 0;
    border-radius: 999px;
    background: #252b2f;
    color: #fff;
    font-size: 32rem;
    line-height: 1;
    cursor: pointer;
}

@media (width < 767px) {
    .product-zoom-modal {
        padding: 14rem;
    }

    .product-zoom-modal__content {
        width: 100%;
        height: 76vh;
        padding: 24rem;
        border-radius: 18rem;
    }

    .product-zoom-modal__close {
        top: 10rem;
        right: 10rem;
        width: 40rem;
        height: 40rem;
        font-size: 28rem;
    }
}