@charset "UTF-8";

/* Main page only */
.home-page {
    --home-bg: #f7f7f2;
    --home-soft: #f2f5ee;
    --home-dark: #203025;
    --home-brand: #669b45;
    --home-brand-light: #9fc582;
    --home-line: #dfe5dc;
    --home-line-strong: #c9daba;
    --home-text: #333;
    --home-copy: #555;
    --home-muted: #777;
    background: #fff;
    color: var(--home-text);
}

.home-page * {
    box-sizing: border-box;
}

.home-page #wrap {
    overflow: clip;
}

.home-page .header {
    background: transparent;
}

.home-page.home-intro-active {
    overflow: hidden;
}

.home-page.home-intro-active .header {
    opacity: 0;
    pointer-events: none;
}

.home-page .header {
    transition:
        opacity 0.55s ease,
        transform 0.45s cubic-bezier(.215, .61, .355, 1),
        height 0.35s ease,
        background-color 0.35s ease,
        backdrop-filter 0.35s ease,
        box-shadow 0.35s ease;
}

/* The home hero sits beneath the header. Keep only its top state transparent. */
.home-page .header:not(.is_scroll) .logo_pc,
.home-page .header:not(.is_scroll) .logo_m {
    filter: brightness(0) invert(1);
}

.home-page .header:not(.is_scroll) .gnb_main {
    color: #f5f5f5;
}

.home-page .header:not(.is_scroll):not(.is_language_open) .language_switcher_button {
    color: #f5f5f5;
}

.home-page .header:not(.is_scroll) .menu_btn span {
    background-color: #f5f5f5;
}

.home-page .header.is_scroll {
    background-color: #fff;
}

.home-page .header.is_language_open {
    background-color: #fff;
}

@media (hover: hover) and (pointer: fine) {
    .home-page .header:not(.is_scroll):hover {
        background-color: #fff;
    }

    .home-page .header:not(.is_scroll):hover .logo_pc,
    .home-page .header:not(.is_scroll):hover .logo_m {
        filter: none;
    }

    .home-page .header:not(.is_scroll):hover .gnb_main {
        color: #222;
    }

    .home-page .header:not(.is_scroll):hover .language_switcher_button {
        color: #222;
    }

    .home-page .header:not(.is_scroll):hover .language_switcher_button:hover,
    .home-page .header:not(.is_scroll):hover .language_switcher.is_open .language_switcher_button {
        color: var(--home-brand);
    }

    .home-page .header:not(.is_scroll):hover .gnb_item:hover .gnb_main {
        color: var(--home-brand);
    }
}

.home-frame {
    width: min(calc(100% - 80px), 1600px);
    margin-inline: auto;
}

.home-kicker {
    margin: 0;
    color: var(--home-brand);
    font-family: Bahnschrift, Pretendard, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0;
}

.home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    color: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.home-text-link span {
    transition: transform 0.35s ease;
}

.home-text-link:hover span {
    transform: translate(4px, -4px);
}

/* Intro and hero */
.home-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background: var(--home-dark);
    color: #f5f5f5;
}

.home-intro {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: transparent;
    color: var(--home-text);
}

.home-intro-copy,
.home-intro-brand {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 2;
}

.home-intro-word {
    position: absolute;
    margin: 0;
    opacity: 0;
    transform: translateY(38px);
    font-size: clamp(42px, 5.2vw, 88px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
    white-space: nowrap;
}

.home-intro-brand {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 34px);
    opacity: 0;
}

.home-intro-symbol {
    width: clamp(82px, 8.4vw, 142px);
    height: auto;
    flex: 0 0 auto;
}

.home-intro-wordmark-mask {
    display: block;
    width: clamp(180px, 18vw, 310px);
    overflow: hidden;
}

.home-intro-wordmark-mask img {
    display: block;
    width: 100%;
    height: auto;
    transform: translateX(-105%);
}

.home-intro-curtain {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 50.1%;
    background: var(--home-bg);
}

.home-intro-curtain-left { left: 0; }
.home-intro-curtain-right { right: 0; }

.home-intro-skip {
    position: fixed;
    right: max(40px, calc((100vw - 1600px) / 2));
    bottom: clamp(24px, 4vh, 48px);
    z-index: 1600;
    display: inline-block;
    padding: 0 0 10px;
    border: 0;
    border-bottom: 1px solid currentColor;
    border-radius: 0;
    background: transparent;
    color: var(--home-dark);
    font-family: Pretendard, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        color 0.25s ease;
}

.home-intro-skip:hover {
    opacity: 0.65;
}

.home-intro-skip:focus-visible {
    outline: 2px solid var(--home-brand);
    outline-offset: 3px;
}

.home-page:not(.home-intro-active) .home-intro-skip {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.home-hero-media,
.home-hero-shade {
    position: absolute;
    inset: 0;
}

.home-hero-media {
    z-index: 0;
}

.home-hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inset(0);
    will-change: clip-path;
}

.home-hero-visual.is-active {
    z-index: 1;
    animation: home-hero-wipe 1.2s cubic-bezier(.65, 0, .35, 1) both;
}

@keyframes home-hero-wipe {
    from {
        clip-path: inset(0 0 0 100%);
    }

    to {
        clip-path: inset(0);
    }
}

.home-hero-shade {
    z-index: 1;
    background: linear-gradient(90deg, rgba(14, 28, 21, 0.76) 0%, rgba(14, 28, 21, 0.34) 60%, rgba(14, 28, 21, 0.18) 100%);
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-visual.is-active {
        animation: none;
    }
}

.home-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    grid-template-rows: auto 1fr auto;
    width: min(calc(100% - 80px), 1600px);
    min-height: 100vh;
    min-height: 100svh;
    margin-inline: auto;
    padding: 120px 0 60px;
}

.home-hero-meta {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    padding: 0 6px 10px;
    border-bottom: 1px solid rgba(245, 245, 245, 0.34);
    color: rgba(245, 245, 245, 0.8);
    font-family: Bahnschrift, Pretendard, sans-serif;
    font-size: 13px;
    letter-spacing: 0;
}

.home-hero-title {
    align-self: end;
    margin: 0;
    font-size: clamp(54px, 5.6vw, 104px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: 0;
    word-break: keep-all;
}

.home-hero-title span {
    display: block;
}

.home-hero-copy {
    align-self: end;
    justify-self: end;
    margin: 0 0 10px;
    color: rgba(245, 245, 245, 0.82);
    font-size: 17px;
    line-height: 1.8;
    word-break: keep-all;
}

.home-scroll-guide {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 14px;
    margin-top: 50px;
    color: rgba(245, 245, 245, 0.76);
    font-family: Bahnschrift, Pretendard, sans-serif;
    font-size: 12px;
    letter-spacing: 0;
}

.home-scroll-line {
    position: relative;
    display: block;
    width: 64px;
    height: 1px;
    overflow: hidden;
    background: rgba(245, 245, 245, 0.32);
}

.home-scroll-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #f5f5f5;
    transform: translateX(-100%);
    animation: homeScrollLine 1.8s ease-in-out infinite;
}

@keyframes homeScrollLine {
    0% { transform: translateX(-100%); }
    55%, 100% { transform: translateX(100%); }
}

/* Journey */
.home-journey {
    position: relative;
    height: 420vh;
    background: var(--home-bg);
}

.home-journey-sticky {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
}

.home-journey-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(300px, 0.78fr) minmax(420px, 1.15fr);
    gap: clamp(42px, 5vw, 92px);
    align-items: center;
}

.home-journey-heading h2,
.home-products-heading h2,
.home-system-heading h2,
.home-partners-heading h2,
.home-contact h2 {
    margin: 24px 0 0;
    font-size: clamp(46px, 4.3vw, 78px);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: 0;
    word-break: keep-all;
}

.home-journey-progress {
    position: relative;
    width: 1px;
    height: 210px;
    margin-top: 54px;
    overflow: hidden;
    background: var(--home-line-strong);
}

.home-journey-progress-fill {
    position: absolute;
    inset: 0;
    background: var(--home-brand);
    transform: scaleY(0);
    transform-origin: top;
}

.home-journey-copy {
    position: relative;
    min-height: 390px;
}

.home-journey-step {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    align-content: center;
    column-gap: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(28px);
}

.home-journey-step.is-active {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.home-journey-number {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    color: rgba(101, 155, 69, 0.75);
    font-family: Bahnschrift, Pretendard, sans-serif;
    font-size: 90px;
    font-stretch: condensed;
    font-weight: 310;
    line-height: 0.72;
}

.home-journey-label {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin: 0 0 2px;
    color: rgba(101, 155, 69, 0.75);
    font-family: Bahnschrift, Pretendard, sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.home-journey-step h3 {
    grid-column: 1 / -1;
    margin: 30px 0 0;
    font-size: clamp(34px, 3vw, 54px);
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: 0;
    word-break: keep-all;
}

.home-journey-step > p:last-of-type {
    grid-column: 1 / -1;
    max-width: 470px;
    margin: 30px 0 0;
    color: var(--home-copy);
    font-size: 17px;
    line-height: 1.8;
    word-break: keep-all;
}

.home-journey-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #e7ebe4;
}

.home-journey-media::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    height: 32%;
    background: linear-gradient(180deg, rgba(24, 32, 26, 0) 0%, rgba(24, 32, 26, 0.58) 100%);
    pointer-events: none;
}

.home-journey-image {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    will-change: clip-path;
}

.home-journey-image.is-active {
    opacity: 1;
    visibility: visible;
}

.home-journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-journey-image-index {
    position: absolute;
    right: 24px;
    bottom: 22px;
    z-index: 5;
    color: #f5f5f5;
    font-family: Bahnschrift, Pretendard, sans-serif;
    font-size: 14px;
}

.home-journey-mobile-media {
    display: none;
}

/* Products */
.home-products {
    position: relative;
    background: #fff;
}

.home-product-pin {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    padding: 104px 0 48px;
}

.home-products-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 58px;
}

.home-products-heading h2 {
    font-size: clamp(42px, 4vw, 70px);
}

.home-products-heading > p {
    margin: 0 0 8px;
    color: var(--home-copy);
    font-size: 16px;
    line-height: 1.75;
    text-align: right;
}

.home-product-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding-left: max(40px, calc((100vw - 1600px) / 2));
    padding-right: max(40px, calc((100vw - 1600px) / 2));
    will-change: transform;
}

.home-product-item {
    position: relative;
    display: block;
    width: min(67vw, 1080px);
    height: clamp(430px, 56vh, 650px);
    overflow: hidden;
    color: #f5f5f5;
    background: var(--home-dark);
}

.home-product-image,
.home-product-image::after {
    position: absolute;
    inset: 0;
}

.home-product-image::after {
    content: "";
    background: linear-gradient(180deg, rgba(9, 17, 13, 0.04) 30%, rgba(9, 17, 13, 0.78) 100%);
}

.home-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-product-item:hover .home-product-image img {
    transform: scale(1.025);
}

.home-product-number {
    position: absolute;
    top: 30px;
    left: 34px;
    z-index: 2;
    font-family: Bahnschrift, Pretendard, sans-serif;
    font-size: 18px;
    color: #fff;
}

.home-product-info {
    position: absolute;
    right: 36px;
    bottom: 34px;
    left: 36px;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
}

.home-product-info p {
    grid-column: 1 / -1;
    margin: 0 0 10px;
    color: var(--home-brand-light);
    font-family: Bahnschrift, Pretendard, sans-serif;
    font-size: 14px;
    font-weight: 350;
}

.home-product-info h3 {
    margin: 0;
    font-size: clamp(36px, 3.5vw, 62px);
    font-weight: 650;
    line-height: 1.1;
}

.home-product-info > span {
    padding-bottom: 5px;
    font-size: 14px;
}

/* One-stop system */
.home-system {
    padding: clamp(150px, 13vw, 240px) 0;
    background: linear-gradient(180deg, #203025 0%, #1c2b21 55%, #18251d 100%);
    color: #f5f5f5;
}

.home-system .home-kicker {
    color: var(--home-brand-light);
}

.home-system-layout {
    display: grid;
    grid-template-columns: minmax(340px, 0.8fr) minmax(560px, 1.2fr);
    gap: clamp(80px, 10vw, 180px);
}

.home-system-heading {
    align-self: start;
    position: sticky;
    top: 150px;
}

.home-system-heading h2 {
    --home-system-heading-fill: 100%;
    color: transparent;
    background: linear-gradient(90deg,
        #f5f5f5 0%,
        #f5f5f5 var(--home-system-heading-fill),
        rgba(245, 245, 245, 0.24) var(--home-system-heading-fill),
        rgba(245, 245, 245, 0.24) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-system-heading > p:not(.home-kicker) {
    max-width: 530px;
    margin: 42px 0 0;
    color: rgba(245, 245, 245, 0.68);
    font-size: 17px;
    line-height: 1.85;
    word-break: keep-all;
}

.home-system-heading .home-text-link {
    margin-top: 54px;
}

.home-system-list {
    --home-system-progress: 0;
    position: relative;
    display: grid;
    grid-template-rows: repeat(6, minmax(190px, 1fr));
}

.home-system-rail {
    position: absolute;
    z-index: 2;
    top: calc(100% / 12);
    bottom: calc(100% / 12);
    left: 5px;
    width: 1px;
    background: rgba(201, 218, 186, 0.2);
    pointer-events: none;
}

.home-system-rail-progress {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--home-brand-light), var(--home-brand));
    transform: scaleY(var(--home-system-progress));
    transform-origin: center top;
    will-change: transform;
}

.home-system-item {
    --home-system-dot-opacity: 0.32;
    --home-system-dot-scale: 0.7;
    --home-system-text-fill: 0;
    position: relative;
    display: grid;
    grid-template-columns: 64px minmax(220px, 0.85fr) minmax(240px, 1.15fr);
    gap: clamp(28px, 3vw, 54px);
    align-items: center;
    min-height: 190px;
    padding: clamp(42px, 4vw, 66px) 16px clamp(42px, 4vw, 66px) 58px;
}

.home-system-item::after {
    content: "";
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--home-brand-light);
    box-shadow: 0 0 0 7px rgba(159, 197, 130, 0.1);
    opacity: var(--home-system-dot-opacity);
    transform: translateY(-50%) scale(var(--home-system-dot-scale));
    transform-origin: center;
    will-change: opacity, transform;
}

.home-system-item > * {
    position: relative;
}

.home-system-item > span {
    color: rgba(159, 197, 130, 0.26);
    font-family: Bahnschrift, Pretendard, sans-serif;
    font-size: clamp(18px, 1.35vw, 24px);
    font-weight: 600;
    line-height: 1;
    background: linear-gradient(90deg,
        var(--home-brand-light) 0%,
        var(--home-brand-light) calc(var(--home-system-text-fill) * 1%),
        rgba(159, 197, 130, 0.26) calc(var(--home-system-text-fill) * 1%),
        rgba(159, 197, 130, 0.26) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-system-item div p {
    margin: 0 0 8px;
    color: rgba(159, 197, 130, 0.28);
    font-family: Bahnschrift, Pretendard, sans-serif;
    font-size: 12px;
    background: linear-gradient(90deg,
        var(--home-brand-light) 0%,
        var(--home-brand-light) calc(var(--home-system-text-fill) * 1%),
        rgba(159, 197, 130, 0.28) calc(var(--home-system-text-fill) * 1%),
        rgba(159, 197, 130, 0.28) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-system-item h3 {
    margin: 0;
    color: rgba(245, 245, 245, 0.28);
    font-size: clamp(28px, 2.05vw, 38px);
    font-weight: 600;
    line-height: 1.2;
    word-break: keep-all;
    background: linear-gradient(90deg,
        #f5f5f5 0%,
        #f5f5f5 calc(var(--home-system-text-fill) * 1%),
        rgba(245, 245, 245, 0.28) calc(var(--home-system-text-fill) * 1%),
        rgba(245, 245, 245, 0.28) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-system-item > p {
    margin: 0;
    color: rgba(245, 245, 245, 0.26);
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.72;
    word-break: keep-all;
    background: linear-gradient(90deg,
        rgba(245, 245, 245, 0.76) 0%,
        rgba(245, 245, 245, 0.76) calc(var(--home-system-text-fill) * 1%),
        rgba(245, 245, 245, 0.26) calc(var(--home-system-text-fill) * 1%),
        rgba(245, 245, 245, 0.26) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Partners */
.home-partners {
    padding: clamp(120px, 10vw, 190px) 0;
    overflow: hidden;
    background: #fff;
}

.home-partners-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 90px;
}

.home-partner-marquee {
    --home-partners-line-progress: 100%;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--home-line);
}

.home-partner-marquee::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: var(--home-partners-line-progress);
    height: 1px;
    background: var(--home-line);
    pointer-events: none;
}

.home-partner-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: homePartnerFlow 64s linear infinite;
}

.home-partner-track img {
    width: 220px;
    height: 150px;
    padding: 42px 36px;
    object-fit: contain;
    filter: saturate(0.72);
    opacity: 0.8;
    transition: filter 0.35s ease, opacity 0.35s ease;
}

.home-partner-track img:hover {
    filter: saturate(1);
    opacity: 1;
}

@keyframes homePartnerFlow {
    to { transform: translateX(-50%); }
}

/* Contact */
.home-contact {
    padding: clamp(110px, 10vw, 180px) 0;
    background: var(--home-bg);
}

.home-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(430px, 0.9fr);
    gap: 100px;
    align-items: end;
}

.home-contact-links {
    border-top: 1px solid var(--home-line-strong);
}

.home-contact-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 105px;
    padding: 0 18px;
    border-bottom: 1px solid var(--home-line-strong);
    color: var(--home-text);
    font-size: 21px;
    font-weight: 600;
    transition: color 0.35s ease, background-color 0.35s ease;
}

.home-contact-links a:hover {
    color: var(--home-brand);
    background: var(--home-soft);
}

.home-contact-links a span:last-child {
    font-size: 18px;
    transition: transform 0.35s ease;
}

.home-contact-links a:hover span:last-child {
    transform: translate(5px, -5px);
}

/* Laptop */
@media screen and (min-width: 1025px) and (max-width: 1600px) {
    .home-intro-skip {
        right: 48px;
    }

    .home-frame,
    .home-hero-grid {
        width: calc(100% - 96px);
    }

    .home-hero-grid {
        padding-top: 128px;
    }

    .home-journey-layout {
        grid-template-columns: minmax(210px, 0.66fr) minmax(280px, 0.78fr) minmax(380px, 1.08fr);
        gap: clamp(34px, 4vw, 64px);
    }

    .home-product-track {
        padding-inline: 48px;
    }

    .home-system-layout {
        gap: 72px;
    }
}

/* Short desktop viewports (laptops and scaled Full HD displays) */
@media screen and (min-width: 1025px) and (max-height: 900px) {
    .home-product-pin {
        min-height: 0;
        height: 100vh;
        height: 100dvh;
        padding: clamp(64px, 8vh, 82px) 0 clamp(24px, 3.5vh, 34px);
    }

    .home-products-heading {
        margin-bottom: clamp(28px, 4vh, 40px);
    }

    .home-products-heading h2 {
        font-size: clamp(42px, 3.4vw, 58px);
    }

    .home-product-item {
        height: clamp(340px, calc(100dvh - 320px), 500px);
    }
}

/* Tablet and mobile use a stable vertical flow */
@media screen and (max-width: 1024px) {
    .home-intro-skip {
        right: clamp(24px, 4vw, 64px);
    }

    .home-hero-visual--product {
        object-position: 68% center;
    }

    .home-hero-visual--facility {
        object-position: 72% center;
    }

    .home-frame,
    .home-hero-grid {
        width: calc(100% - clamp(48px, 8vw, 96px));
    }

    .home-hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto auto;
        padding: 112px 0 48px;
    }

    .home-hero-title {
        align-self: end;
        font-size: clamp(48px, 8vw, 76px);
    }

    .home-hero-copy {
        justify-self: start;
        margin-top: 28px;
        font-size: 15px;
    }

    .home-scroll-guide {
        justify-self: start;
        margin-top: 38px;
    }

    .home-journey {
        height: auto;
        padding: 120px 0;
    }

    .home-journey-sticky {
        position: static;
        display: block;
        min-height: 0;
        overflow: visible;
    }

    .home-journey-layout {
        display: block;
    }

    .home-journey-progress,
    .home-journey-media {
        display: none;
    }

    .home-journey-copy {
        min-height: 0;
        margin-top: 76px;
    }

    .home-journey-step {
        position: static;
        display: grid;
        grid-template-columns: 82px minmax(0, 1fr);
        grid-template-rows: auto;
        align-content: normal;
        column-gap: 28px;
        padding: 42px 0 62px;
        border-top: 1px solid var(--home-line);
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .home-journey-number {
        grid-column: 1;
        grid-row: 1 / 5;
        align-self: start;
        font-size: 48px;
        line-height: 0.9;
    }

    .home-journey-label {
        grid-column: 2;
        grid-row: auto;
        align-self: auto;
        margin: 0 0 12px;
    }

    .home-journey-step h3 {
        grid-column: 2;
        margin-top: 0;
        font-size: clamp(30px, 5vw, 44px);
    }

    .home-journey-step > p:last-of-type {
        grid-column: 2;
        max-width: none;
        margin-top: 24px;
    }

    .home-journey-mobile-media {
        grid-column: 2;
        display: block;
        aspect-ratio: 16 / 9;
        margin: 34px 0 0;
        overflow: hidden;
    }

    .home-journey-mobile-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .home-product-pin {
        min-height: 0;
        overflow: visible;
        padding: 120px 0;
    }

    .home-products-heading {
        margin-bottom: 56px;
    }

    .home-product-track {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        width: calc(100% - clamp(48px, 8vw, 96px));
        margin-inline: auto;
        padding: 0;
        transform: none !important;
    }

    .home-product-item {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .home-product-number {
        top: 20px;
        left: 18px;
    }

    .home-product-info {
        right: 24px;
        bottom: 20px;
        left: 20px;
    }

    .home-system {
        padding-block: 140px;
    }

    .home-system-layout {
        display: block;
    }

    .home-system-heading {
        position: static;
    }

    .home-system-list {
        margin-top: 80px;
        grid-template-rows: repeat(6, minmax(160px, 1fr));
    }

    .home-system-item {
        grid-template-columns: 54px minmax(180px, 0.8fr) minmax(220px, 1.2fr);
        min-height: 160px;
        padding: 40px 12px 40px 48px;
    }

    .home-partners-heading,
    .home-contact-layout {
        gap: 56px;
    }

    .home-contact-layout {
        grid-template-columns: 1fr;
    }
}

/* Short-height tablets and unfolded foldables */
@media screen and (min-width: 600px) and (max-width: 1024px) and (max-height: 680px) {
    .home-hero-grid {
        padding: 92px 0 28px;
    }

    .home-hero-title {
        font-size: clamp(48px, 6.7vw, 56px);
    }

    .home-hero-copy {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.7;
    }

    .home-scroll-guide {
        margin-top: 20px;
    }

    .home-journey {
        padding: 84px 0;
    }

    .home-journey-heading h2,
    .home-system-heading h2,
    .home-partners-heading h2,
    .home-contact h2 {
        font-size: 40px;
    }

    .home-journey-copy {
        margin-top: 48px;
    }

    .home-journey-step {
        grid-template-columns: 72px minmax(0, 1fr);
        column-gap: 24px;
        padding: 32px 0 44px;
    }

    .home-journey-number {
        font-size: 42px;
    }

    .home-journey-step h3 {
        font-size: 34px;
    }

    .home-journey-step > p:last-of-type {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.7;
    }

    .home-journey-mobile-media {
        margin-top: 26px;
    }

    .home-product-pin {
        padding: 84px 0;
    }

    .home-products-heading {
        margin-bottom: 40px;
    }

    .home-products-heading h2 {
        font-size: 38px;
    }

    .home-products-heading > p {
        font-size: 14px;
        line-height: 1.65;
    }

    .home-system {
        padding-block: 90px;
    }

    .home-system-heading > p:not(.home-kicker) {
        margin-top: 28px;
        font-size: 15px;
        line-height: 1.75;
    }

    .home-system-heading .home-text-link {
        margin-top: 36px;
    }

    .home-system-list {
        margin-top: 56px;
        grid-template-rows: repeat(6, minmax(132px, 1fr));
    }

    .home-system-item {
        grid-template-columns: 48px minmax(170px, 0.8fr) minmax(210px, 1.2fr);
        min-height: 132px;
        padding: 28px 12px 28px 42px;
    }

    .home-system-item h3 {
        font-size: 24px;
    }

    .home-system-item > p {
        font-size: 14px;
        line-height: 1.65;
    }

    .home-partners,
    .home-contact {
        padding-block: 84px;
    }

    .home-partners-heading {
        margin-bottom: 56px;
    }

    .home-partners-heading,
    .home-contact-layout {
        gap: 36px;
    }

    .home-contact-links a {
        min-height: 84px;
        font-size: 18px;
    }
}

@media screen and (max-width: 599px) {
    .home-hero-visual--facility {
        object-position: 55% center;
    }

    .home-frame,
    .home-hero-grid {
        width: calc(100% - 40px);
    }

    .home-kicker {
        font-size: 12px;
    }

    .home-intro-word {
        font-size: 36px;
    }

    .home-intro-brand {
        gap: 14px;
    }

    .home-intro-symbol {
        width: 62px;
    }

    .home-intro-wordmark-mask {
        width: 144px;
    }

    .home-hero-grid {
        padding: 96px 0 34px;
    }

    .home-hero-meta {
        font-size: 11px;
    }

    .home-hero-title {
        font-size: clamp(36px, 10.8vw, 44px);
        line-height: 1.18;
    }

    .home-hero-copy {
        font-size: 13px;
        line-height: 1.7;
    }

    .home-scroll-line {
        width: 46px;
    }

    .home-journey,
    .home-product-pin,
    .home-system,
    .home-partners,
    .home-contact {
        padding-block: 88px;
    }

    .home-journey-heading h2,
    .home-products-heading h2,
    .home-system-heading h2,
    .home-partners-heading h2,
    .home-contact h2 {
        margin-top: 18px;
        font-size: 36px;
        line-height: 1.22;
    }

    .home-journey-copy {
        margin-top: 48px;
    }

    .home-journey-step {
        grid-template-columns: 52px minmax(0, 1fr);
        column-gap: 12px;
        padding: 34px 0 46px;
    }

    .home-journey-number {
        font-size: 38px;
    }

    .home-journey-step h3 {
        font-size: 27px;
    }

    .home-journey-step > p:last-of-type {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.75;
    }

    .home-journey-mobile-media {
        grid-column: 1 / -1;
        aspect-ratio: 4 / 3;
        margin-top: 28px;
    }

    .home-products-heading,
    .home-partners-heading {
        display: block;
    }

    .home-products-heading > p {
        margin-top: 24px;
        font-size: 14px;
        text-align: left;
    }

    .home-product-track {
        grid-template-columns: 1fr;
        width: calc(100% - 40px);
    }

    .home-product-item {
        aspect-ratio: 4 / 3;
    }

    .home-product-number {
        top: 16px;
        left: 16px;
        font-size: 14px;
    }

    .home-product-info {
        right: 16px;
        bottom: 18px;
        left: 16px;
    }

    .home-product-info p {
        font-size: 12px;
        letter-spacing: 0.015em;
    }

    .home-product-info h3 {
        font-size: 34px;
    }

    .home-product-info > span {
        display: none;
    }

    .home-system-heading > p:not(.home-kicker) {
        margin-top: 28px;
        font-size: 14px;
    }

    .home-system-heading .home-text-link {
        margin-top: 34px;
        font-size: 14px;
    }

    .home-system-list {
        margin-top: 58px;
        grid-template-rows: repeat(6, minmax(150px, 1fr));
    }

    .home-system-item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 14px;
        min-height: 150px;
        padding: 36px 4px 36px 36px;
    }

    .home-system-item > p {
        grid-column: 2;
        font-size: 13px;
    }

    .home-system-item h3 {
        font-size: 23px;
    }

    .home-partners-heading .home-text-link {
        margin-top: 32px;
    }

    .home-partner-track img {
        width: 160px;
        height: 112px;
        padding: 32px 26px;
    }

    .home-contact-layout {
        gap: 48px;
    }

    .home-contact-links a {
        min-height: 82px;
        padding-inline: 8px;
        font-size: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-partner-track,
    .home-scroll-line::after {
        animation: none;
    }

    .home-product-image img,
    .home-system-item::before,
    .home-page .header {
        transition: none;
    }
}
