@charset "utf-8";

/** Banner Carousel Animation **/
.main .inner_wrap {
    max-width: 75.5rem;
    padding: 0 5rem;
    box-sizing: border-box;
    overflow: hidden;
}

.sub_banner {
    margin-top: 8vh;
}

.sub_banner .visual_box {
    height: 80vh;
    max-height: 700px;
}

.joomed-description {
    padding: 48px 0 48px 0;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.sub_banner .figure_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sub_banner figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.figure_wrap figure:nth-child(1) {
    animation-duration: 18s;
    animation-name: slidein-1;
    animation-iteration-count: infinite;
}

.figure_wrap figure:nth-child(2) {
    animation-duration: 18s;
    animation-name: slidein-2;
    animation-iteration-count: infinite;
}

.figure_wrap figure:nth-child(3) {
    animation-duration: 18s;
    animation-name: slidein-3;
    animation-iteration-count: infinite;
}

@keyframes slidein-1 {
    from {
        transform: translateX(0vw);
    }
    10% {
        transform: translateX(0vw);
    }

    33% {
        transform: translateX(-100vw);
        opacity: 1;
    }
    43% {
        transform: translateX(-100vw);
        opacity: 0;
    }

    67% {
        transform: translateX(100vw);
        opacity: 0;
    }
    77% {
        transform: translateX(100vw);
        opacity: 1;
    }

    to {
        transform: translateX(0vw);
    }
}

@keyframes slidein-2 {
    from {
        transform: translateX(100vw);
    }
    10% {
        transform: translateX(100vw);
    }

    33% {
        transform: translateX(0vw);
    }
    43% {
        transform: translateX(0vw);
    }

    67% {
        transform: translateX(-100vw);
        opacity: 1;
    }
    77% {
        transform: translateX(-100vw);
        opacity: 0;
    }

    to {
        transform: translateX(100vw);
        opacity: 0;
    }
}

@keyframes slidein-3 {
    from {
        transform: translateX(200vw);
    }
    10% {
        transform: translateX(200vw);
    }

    33% {
        transform: translateX(100vw);
    }
    43% {
        transform: translateX(100vw);
    }

    67% {
        transform: translateX(0vw);
    }
    77% {
        transform: translateX(0vw);
    }

    to {
        transform: translateX(-100vw);
    }
}

/** 3D Volume Section **/
.volume-3d-section {
    margin: 60px auto 0;
    max-width: 900px;
    text-align: center;
    position: relative;
}

.volume-3d-title {
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.volume-3d-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.volume-3d-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: 800px;
    perspective: 1000px;
    z-index: 10;
}

.volume-slice {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 350px;
    transition: transform 0.6s ease, z-index 0s;
}

/* 슬라이스들을 위에서 아래로 약간씩 떨어뜨려서 배치 */
.volume-slice[data-slice="0"] {
    transform: translate(-50%, -50%) translateY(-110px);
    z-index: 5;
}

.volume-slice[data-slice="1"] {
    transform: translate(-50%, -50%) translateY(-55px);
    z-index: 4;
}

.volume-slice[data-slice="2"] {
    transform: translate(-50%, -50%) translateY(0px);
    z-index: 3;
}

.volume-slice[data-slice="3"] {
    transform: translate(-50%, -50%) translateY(55px);
    z-index: 2;
}

.volume-slice[data-slice="4"] {
    transform: translate(-50%, -50%) translateY(110px);
    z-index: 1;
}

.volume-slice[data-slice="5"] {
    transform: translate(-50%, -50%) translateY(170px);
    z-index: 0;
}

/* plat 이미지(2D)가 보일 때 간격 크게 벌림 */
.volume-slice[data-slice="0"].show-2d {
    transform: translate(-50%, -50%) translateY(-75px);
    z-index: 100;
}

.volume-slice[data-slice="1"].show-2d {
    transform: translate(-50%, -50%) translateY(40px);
    z-index: 100;
}

.volume-slice[data-slice="2"].show-2d {
    transform: translate(-50%, -50%) translateY(75px);
    z-index: 100;
}

.volume-slice[data-slice="3"].show-2d {
    transform: translate(-50%, -50%) translateY(110px);
    z-index: 100;
}

.volume-slice[data-slice="4"].show-2d {
    transform: translate(-50%, -50%) translateY(150px);
    z-index: 100;
}

.volume-slice[data-slice="5"].show-2d {
    transform: translate(-50%, -50%) translateY(190px);
    z-index: 100;
}

/* 3D 이미지들이 비어있는 공간으로 이동 - 극단적으로 멀리 */
.volume-slice.move-up[data-slice="0"] {
    transform: translate(-50%, -50%) translateY(-190px);
}

.volume-slice.move-up[data-slice="1"] {
    transform: translate(-50%, -50%) translateY(-150px);
}

.volume-slice.move-up[data-slice="2"] {
    transform: translate(-50%, -50%) translateY(-110px);
}

.volume-slice.move-up[data-slice="3"] {
    transform: translate(-50%, -50%) translateY(-75px);
}

.volume-slice.move-up[data-slice="4"] {
    transform: translate(-50%, -50%) translateY(-40px);
}

.volume-slice.move-down[data-slice="1"] {
    transform: translate(-50%, -50%) translateY(130px);
}

.volume-slice.move-down[data-slice="2"] {
    transform: translate(-50%, -50%) translateY(170px);
}

.volume-slice.move-down[data-slice="3"] {
    transform: translate(-50%, -50%) translateY(210px);
}

.volume-slice.move-down[data-slice="4"] {
    transform: translate(-50%, -50%) translateY(250px);
}

.volume-slice.move-down[data-slice="5"] {
    transform: translate(-50%, -50%) translateY(280px);
}

.slice-2d,
.slice-3d {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.5s ease;
}

/* 기본: 3D 이미지가 보임 */
.slice-2d {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.slice-3d {
    opacity: 1;
    display: block;
    margin: 0 auto;
}

/* 2D로 변환된 슬라이스 (스크롤 시 해당 이미지만) */
.volume-slice.show-2d .slice-3d {
    opacity: 0;
}

.volume-slice.show-2d .slice-2d {
    opacity: 1;
}

.volume-3d-description {
    margin-top: 300px;
    color: #fff;
}

.volume-3d-description p {
    font-size: 24px;
    font-weight: bold;
    margin: 5px 0;
    color: #D9D9DB;
}

/** Sequence Section **/
.sequence-section {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
    overflow: hidden;
    position: relative;
    min-height: 600px;
}

.sequence-section .second-human {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    z-index: 1;
}

.sequence-section .second-human-phase2 {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    z-index: 2;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* 활성화 클래스 */
.sequence-section .second-human-phase2.fade-in {
    opacity: 1;
}

.sequence-container {
    position: absolute;
    top: 75%;
    left: 0;
    transform: translate(41%, -70%);
    z-index: 10;
    transition: transform 0s, opacity 1s ease-in-out;
}

.sequence-container.appear {
    opacity: 1;
}

.sequence-slide-image {
    width: 100%;
    height: auto;
}

.sequence-description {
    color: #fff;
}

.sequence-description p {
    font-size: 24px;
    font-weight: bold;
    margin: 5px 0;
    color: #D9D9DB;
}

.challenges .sequence-slide-image {
    width: 275% !important;
    margin: 0 !important;
}

/** Challenge Box Animation **/
.challenge-box {
    position: relative;
    background-color: transparent !important;
}

.challenge-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #5ad9ff;
    border-radius: 48px;
    transform: scaleX(0.9);
    transform-origin: center;
    transition: transform 0.8s ease-out;
    z-index: 0;
}

.challenge-box.expand::before {
    transform: scaleX(1);
}

.challenge-box p {
    position: relative;
    z-index: 2;
}

/** Token Section Animation **/
.token-cards-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 60px 0;
    padding: 0 !important;
    height: auto !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
    text-align: inherit !important;
    gap: 2rem;
    width: 100% !important;
    max-width: 100%;
    justify-content: center !important;
    box-sizing: border-box;
}

.token-card {
    position: relative;
    width: 100% !important;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    overflow: hidden;
}

.token-card.show {
    opacity: 1;
    transform: translateY(0);
}

.token-back-image {
    width: 100% !important;
    height: auto;
    display: block;
    margin: 0 !important;
    position: static !important;
    top: auto !important;
    z-index: auto !important;
}

.token-text-overlay {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    text-align: left;
    padding: 2.1875rem;
    box-sizing: border-box;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.3s ease-out 0.15s, transform 0.3s ease-out 0.15s;
}

.token-text-overlay.show {
    opacity: 1;
    transform: translateX(0);
}

.token-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.token-description {
    font-size: 1rem;
    color: #FFFFFF;
    margin: 0;
    word-break: normal;
    overflow-wrap: break-word;
    line-height: 1.2;
}

.token-sheet-image {
    margin: 0 auto !important;
    opacity: 0;
    transform: scale(1);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    position: static !important;
    top: auto !important;
    z-index: auto !important;
}

.token-sheet-image.show {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/** Special Value Section **/
.special-value-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0 auto;
    max-width: 55.5rem;
    padding: 0 5rem;
    gap: 4rem;
}

.special-left-half {
    position: relative;
    flex: 5;
    height: 600px; /* ★중요: 이미지가 absolute라 부모 높이가 무너질 수 있어 높이 지정 권장 (또는 내용물에 맞게) */
}

.special-bg {
    width: 100%;
    height: auto;
    display: block;
}

.special-inner-content {
    position: absolute;
    padding: 0 2rem;
    top: 9%;
    left: 0%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.special-inner-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* ★수정: Phase 2, 3 컨테이너 위치만 잡아주고 숨김 처리는 GSAP에 맡김 (opacity:0 제거) */
.special-phase-2, .special-phase-3 {
    /* 기존 스타일 유지 */
}

.special-right-half {
    flex: 4;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    /* height: 100%;  필요시 높이 지정 */
}

.special-right-phase-1,
.special-right-phase-2,
.special-right-phase-3 {
    display: flex;
    flex-direction: column;
    gap: 2rem;

    /* ★추가: 모든 오른쪽 Phase들이 같은 위치에 겹쳐야 하므로 absolute로 통일 */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.special-right-phase-1 img,
.special-right-phase-2 img,
.special-right-phase-3 img {
    width: 100%;
    height: auto;
    display: block;
}

/** Align & Decoration **/
.txt_deco {
    background-image: linear-gradient(to right, #a98dff, #5ad9ff);
}

.sub_banner .title .logo img {
    width: 50%;
    max-width: 200px;
    margin: 0 0 1rem;
}

.sub_banner .title .description {
    font-size: 0.8rem;
    color: #ffffffcc;
    margin: 1.5rem 0;
}

.challenges {
    padding-bottom: 0;
    padding-top: 3rem;
}

.challenges .desc {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
}

.challenges .desc p:first-child {
    margin: 50px 0;
}

.challenges .desc p {
    word-break: keep-all;
    color: rgb(255, 255, 255, 0.8);
    line-height: 2;
}

.challenges .sub_title {
    text-align: center;
}

.challenges .button-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.challenges img {
    width: 90%;
    margin: 0 auto;
}

.challenges .ts-image-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 100px auto 0;
}

.challenges .ts-image-container img:nth-child(1) {
    margin-bottom: 20px;
}

.challenges .ts-image-container img:nth-child(3) {
    z-index: 1;
}

.challenges .ts-image-container img:nth-child(4) {
    margin-bottom: 20px;
    position: relative;
    top: -0.4rem;
}

.challenges .ts-image-container img:nth-child(5) {
    position: absolute;
    top: 8%;
}

.challenges .ts-image-container div {
    font-size: 60%;
    padding: 1% 0;
    font-weight: bold;
    color: white;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 100%;
    border-radius: 40px;
    background-color: #fff;
}

.scenario-button-1 {
    margin-right: 100px;
}

.scenario-button.active {
    background-color: rgb(16, 16, 110);
    color: #fff;
    padding: 10px 40px;
    border-radius: 8px;
}

.scenario-button {
    background-color: #666;
    color: #fff;
    padding: 10px 40px;
    border-radius: 8px;
}

.scenario {
    visibility: hidden;
    height: 0;
}

.scenario.active {
    visibility: visible;
    height: auto;
}

.scenario-img-wrapper img {
    margin: 0 auto;
}

/** Register **/
.register {
    padding: 0 0 10rem;
}

.register .link_wrap {
    text-align: center;
}

.register .link_wrap a {
    width: 80%;
    max-width: 12.5rem;
}

.service-structure {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    /* overflow-x: hidden; 좌우로 움직이는 애니메이션 시 스크롤바 방지 */
}

.service-structure .sub_title {
    text-align: center;
}

.service-structure .inner_wrapper {
    max-width: 97.5rem;
    padding: 0 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.service-structure .structure-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    /* ★수정: 초기 투명도/transition 제거 (GSAP가 제어) */
}

.service-structure .structure-header-container {
    position: relative;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-structure .structure-bg {
    width: 80%;
    height: auto;
}

.service-structure .structure-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;
    height: auto;
    z-index: 20;
}

.service-structure .structure-middle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
}

.service-structure .structure-middle img {
    flex: 1;
    max-width: 30%;
    height: auto;
}

/* ★수정: Item 스타일 초기화 */
.service-structure .structure-middle .structure-item {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 60%;
    /* transform, opacity, transition 모두 제거 */
}

.service-structure .structure-middle .structure-item img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
}

.service-structure .structure-middle .structure-item p {
    margin: 0;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.2;
    font-weight: bold;
}

/* ★수정: Arrow 스타일 초기화 */
.service-structure .structure-middle .structure-arrow {
    flex: 0.5;
    max-width: 8%;
    align-self: center;
    /* transform, opacity, transition 모두 제거 */
}

.structure-footer {
    flex-direction: column;
}

.service-structure .structure-footer {
    display: flex;
    justify-content: center;
    width: 100%;
    /* opacity, transition 제거 */
}

.service-structure .structure-footer-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-structure .structure-footer-container img {
    width: 100%;
    height: auto;
}

.service-structure .structure-footer-container i {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    font-style: normal;
    white-space: nowrap;
}

html[lang="en"] .service-structure .structure-footer-container i,
html[lang="ja"] .service-structure .structure-footer-container i {
    font-size: 0.7rem;
    white-space: normal;
    width: 90%;
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
}

.structure-footer-description {
    margin-top: 20px;
}

.key-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.key-features .sub_title {
    text-align: center;
}

.key-features .inner_wrapper {
    max-width: 97.5rem;
    padding: 0 5rem;
}

/* ================ [ 600px 이상 ] ================ */
@media (min-width: 600px) {
    .sub_banner .title .logo img {
        width: 300px;
        max-width: none;
    }

    .sub_banner .title .description {
        color: #ffffffcc;
        font-size: 1.1rem;
        margin: 2rem 0;
    }

    .challenges .ts-image-container div {
        font-size: 80%;
    }

    .special-value {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        margin: 0 auto;
    }

    .key-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        margin: 0 auto;
    }

    .key-features .sub_title {
        text-align: center;
    }

    .key-features .inner_wrapper {
        max-width: 97.5rem;
        padding: 0 5rem;
    }
}

/* ================ [ 768px 이상 ] ================ */
@media (min-width: 768px) {
    .sub_banner .title .logo img {
        width: 300px;
        max-width: none;
    }

    .sub_banner .title .description {
        color: #ffffffcc;
        font-size: 1.1rem;
        margin: 2rem 0;
    }

    .challenges .ts-image-container div {
        font-size: 100%;
    }

    .key-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        margin: 0 auto;
    }

    .key-features .sub_title {
        text-align: center;
    }

    .key-features .inner_wrapper {
        max-width: 97.5rem;
        padding: 0 5rem;
    }
}

/* ================ [ 1025px 이상 ] ================ */
@media (min-width: 1025px) {
    .sub_banner .title .logo img {
        width: 300px;
        max-width: none;
    }

    .sub_banner .title .description {
        color: #ffffffcc;
        font-size: 1.1rem;
        margin: 2rem 0;
    }

    /** Game Changer (Challenges 대응) **/
    .challenges img {
        width: 800px;
        margin: 0 auto;
    }

    .challenges .desc {
        flex-direction: row;
        width: 800px;
        margin: 60px auto 0 auto;
    }

    .challenges .desc p {
        width: 400px;
    }

    .challenges .desc p:nth-child(1) {
        position: relative;
        left: -60px;
        margin: 0;
    }

    .challenges .desc p:nth-child(2) {
        position: relative;
        left: 110px;
    }

    .challenges .ts-image-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 800px;
        margin: 100px auto 0;
        gap: 80px;
    }

    .challenges .ts-image-container img:nth-child(1) {
        margin-bottom: 50px;
    }

    .challenges .ts-image-container img:nth-child(3) {
        z-index: 1;
    }

    .challenges .ts-image-container img:nth-child(4) {
        margin-bottom: 50px;
        position: relative;
        top: -14px;
    }

    .challenges .ts-image-container img:nth-child(5) {
        position: absolute;
        top: 70px;
    }

    .challenges .ts-image-container div {
        font-size: 1rem;
        font-weight: bold;
        color: white;
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 800px;
        height: 60px;
        border-radius: 40px;
        padding: 40px 0;
        background-color: #fff;
    }

    /** Challenges (원본에 있던 추가 스타일) **/
    .challenges {
        padding-bottom: 0;
        padding-top: 3rem;
    }

    .challenges .desc {
        display: flex;
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
    }

    .challenges .desc p:first-child {
        margin: 50px 0;
    }

    .challenges .desc p {
        word-break: keep-all;
        color: rgb(255, 255, 255, 0.8);
        line-height: 2;
    }

    .challenges .sub_title {
        text-align: center;
    }

    .challenges .button-wrapper {
        display: flex;
        justify-content: center;
        margin: 40px 0;
    }

    .challenges img {
        width: 90%;
        margin: 0 auto;
    }

    .challenges .ts-image-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 100px auto 0;
    }

    .challenges .ts-image-container img:nth-child(1) {
        margin-bottom: 20px;
    }

    .challenges .ts-image-container img:nth-child(3) {
        z-index: 1;
    }

    .challenges .ts-image-container img:nth-child(4) {
        margin-bottom: 20px;
        position: relative;
        top: -0.4rem;
    }

    .challenges .ts-image-container img:nth-child(5) {
        position: absolute;
        top: 8%;
    }

    .challenges .ts-image-container div {
        font-size: 60%;
        padding: 1% 0;
        font-weight: bold;
        color: white;
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 70%;
        height: 100%;
        border-radius: 40px;
        background-color: #fff;
    }

    /** Special Value, Service Structure, Key Features **/
    .special-value {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        margin: 0 auto;
    }

    .special-value .sub_title {
        text-align: center;
    }

    .special-value .inner_wrapper {
        max-width: 97.5rem;
        padding: 0 5rem;
    }

    .service-structure {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        margin: 0 auto;
    }

    .service-structure .sub_title {
        text-align: center;
    }

    .service-structure .inner_wrapper {
        max-width: 97.5rem;
        padding: 0 5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .service-structure .structure-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        opacity: 1;
        transition: opacity 0.15s ease, transform 0.15s ease;
    }

    .service-structure .structure-header-container {
        position: relative;
        width: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .service-structure .structure-bg {
        width: 80%;
        height: auto;
    }

    .service-structure .structure-logo {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 40%;
        height: auto;
        z-index: 20;
    }

    .service-structure .structure-middle {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        width: 100%;
    }

    .service-structure .structure-middle img {
        flex: 1;
        max-width: 30%;
        height: auto;
    }

    .service-structure .structure-middle .structure-item {
        flex: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 60%;
        opacity: 0;
        transition: opacity 0.15s ease, transform 0.15s ease;
    }

    .service-structure .structure-middle .structure-item:nth-child(1) {
        transform: translateX(145%);
    }

    .service-structure .structure-middle .structure-item:nth-child(3) {
        transform: translateX(145%);
    }

    .service-structure .structure-middle .structure-item:nth-child(5) {
        transform: translateX(72.5%);
    }

    .service-structure .structure-middle .structure-item img {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .service-structure .structure-middle .structure-item p {
        margin: 0;
        text-align: center;
        font-size: 1.2rem;
        line-height: 1.2;
        font-weight: bold;
    }

    .service-structure .structure-middle .structure-arrow {
        flex: 0.5;
        max-width: 8%;
        align-self: center;
        opacity: 0;
        transition: opacity 0.15s ease, transform 0.15s ease;
    }

    .service-structure .structure-middle .structure-arrow:nth-child(2) {
        transform: translateX(445%);
    }

    .service-structure .structure-middle .structure-arrow:nth-child(4) {
        transform: translateX(223%);
    }

    .service-structure .structure-footer {
        display: flex;
        justify-content: center;
        width: 100%;
        opacity: 0;
        transition: opacity 0.15s ease, transform 0.15s ease;
    }

    .structure-footer-description {
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        color: #D9D9DB;
        word-break: keep-all;
    }

    .service-structure .structure-footer-container {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .service-structure .structure-footer-container img {
        width: 100%;
        height: auto;
    }

    .service-structure .structure-footer-container i {
        position: absolute;
        bottom: 30%;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.5rem;
        font-weight: bold;
        text-align: center;
        color: #fff;
        font-style: normal;
        white-space: nowrap;
    }

    html[lang="en"] .service-structure .structure-footer-container i,
    html[lang="ja"] .service-structure .structure-footer-container i {
        font-size: 1rem;
        white-space: normal;
        width: 90%;
        bottom: auto;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .key-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        margin: 0 auto;
    }

    .key-features .sub_title {
        text-align: center;
    }

    .key-features .inner_wrapper {
        max-width: 97.5rem;
        padding: 0 5rem;
    }
}

/* ================ [ 1200px 이상 ] ================ */
@media (min-width: 1200px) {
    /** Challenges **/
    .challenges {
        padding-bottom: 0;
        padding-top: 3rem;
    }

    .challenges .desc {
        display: flex;
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
    }

    .challenges .desc p:first-child {
        margin: 50px 0;
    }

    .challenges .desc p {
        word-break: keep-all;
        color: rgb(255, 255, 255, 0.8);
        line-height: 2;
    }

    .challenges .sub_title {
        text-align: center;
    }

    .challenges .button-wrapper {
        display: flex;
        justify-content: center;
        margin: 40px 0;
    }

    .challenges img {
        width: 90%;
        margin: 0 auto;
    }

    /** Token Section - Override **/
    .token-back-image {
        width: 100% !important;
        margin: 0 !important;
        margin-bottom: 0 !important;
        position: static !important;
        top: auto !important;
        z-index: auto !important;
    }

    .challenges .ts-image-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin: 100px auto 0;
    }

    .challenges .ts-image-container img:nth-child(1) {
        margin-bottom: 20px;
    }

    .challenges .ts-image-container img:nth-child(3) {
        z-index: 1;
    }

    .challenges .ts-image-container img:nth-child(4) {
        margin-bottom: 20px;
        position: relative;
        top: -0.4rem;
    }

    .challenges .ts-image-container img:nth-child(5) {
        position: absolute;
        top: 8%;
    }

    .challenges .ts-image-container div {
        font-size: 60%;
        padding: 1% 0;
        font-weight: bold;
        color: white;
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 70%;
        height: 100%;
        border-radius: 40px;
        background-color: #fff;
    }

    /** Special Value, Service Structure, Key Features **/
    .special-value {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        margin: 0 auto;
    }

    .special-value .sub_title {
        text-align: center;
    }

    .special-value .inner_wrapper {
        max-width: 97.5rem;
        padding: 0 5rem;
    }

    .service-structure {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        margin: 0 auto;
    }

    .service-structure .sub_title {
        text-align: center;
    }

    .service-structure .inner_wrapper {
        max-width: 97.5rem;
        padding: 0 5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .service-structure .structure-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        opacity: 1;
        transition: opacity 0.15s ease, transform 0.15s ease;
    }

    .service-structure .structure-header-container {
        position: relative;
        width: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .service-structure .structure-bg {
        width: 80%;
        height: auto;
        z-index: 10;
    }

    .service-structure .structure-logo {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 40%;
        height: auto;
        z-index: 20;
    }

    .service-structure .structure-middle {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        width: 100%;
    }

    .service-structure .structure-middle img {
        flex: 1;
        max-width: 30%;
        height: auto;
    }

    .service-structure .structure-middle .structure-item {
        flex: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 60%;
        opacity: 0;
        transition: opacity 0.15s ease, transform 0.15s ease;
    }

    .service-structure .structure-middle .structure-item:nth-child(1) {
        transform: translateX(145%);
    }

    .service-structure .structure-middle .structure-item:nth-child(3) {
        transform: translateX(145%);
    }

    .service-structure .structure-middle .structure-item:nth-child(5) {
        transform: translateX(72.5%);
    }

    .service-structure .structure-middle .structure-item img {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .service-structure .structure-middle .structure-item p {
        margin: 0;
        text-align: center;
        font-size: 1.5rem;
        line-height: 1.2;
        font-weight: bold;
    }

    .service-structure .structure-middle .structure-arrow {
        flex: 0.5;
        max-width: 8%;
        align-self: center;
        opacity: 0;
        transition: opacity 0.15s ease, transform 0.15s ease;
    }

    .service-structure .structure-middle .structure-arrow:nth-child(2) {
        transform: translateX(445%);
    }

    .service-structure .structure-middle .structure-arrow:nth-child(4) {
        transform: translateX(223%);
    }

    .service-structure .structure-footer {
        display: flex;
        justify-content: center;
        width: 100%;
        opacity: 0;
        transition: opacity 0.15s ease, transform 0.15s ease;
    }

    .service-structure .structure-footer-container {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .service-structure .structure-footer-container img {
        width: 100%;
        height: auto;
    }

    .service-structure .structure-footer-container i {
        position: absolute;
        bottom: 30%;
        left: 50%;
        transform: translateX(-50%);
        font-size: 2.25rem;
        font-weight: bold;
        text-align: center;
        color: #fff;
        font-style: normal;
        white-space: nowrap;
    }

    html[lang="en"] .service-structure .structure-footer-container i,
    html[lang="ja"] .service-structure .structure-footer-container i {
        font-size: 1.4rem;
        white-space: normal;
        width: 90%;
        bottom: auto;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .key-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        margin: 0 auto;
    }

    .key-features .sub_title {
        text-align: center;
    }

    .key-features .inner_wrapper {
        max-width: 97.5rem;
        padding: 0 5rem;
    }
}

/* UI Section */
.ui-section {
    text-align: center;
}

.ui-divider {
    width: 100%;
    border: 1px solid #CDCECF;
}

.ui-description {
    font-size: 1.5rem;
    font-weight: 400;
    color: #FFF;
    margin: 3rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ui-description.visible {
    opacity: 1;
    transform: translateY(0);
}

.ui-images-wrapper {
    position: relative;
    width: 100%;
    display: inline-block;
}

.ui-image-base,
.ui-image-overlay {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 4rem;
}

.ui-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.ui-image-overlay.visible {
    opacity: 1;
}

/* Dataset Management Horizontal Scroll Setup */
.dataset-management .ui-images-wrapper {
    overflow: hidden; /* 넘치는 이미지 숨김 */
    width: 100%;
}

#dataset_management_image {
    width: 415%;
    max-width: none; /* 반응형 제한 해제 */
}

/* ================ [ 태블릿: 768px ~ 1024px - 토큰 카드 스택 ] ================ */
@media (min-width: 768px) and (max-width: 1024px) {
    .token-cards-container {
        flex-direction: column !important;
        gap: 1rem;
        margin: 30px auto;
        align-items: center;
        max-width: 480px;
    }

    .token-card {
        max-width: 100%;
        width: 100%;
        border-radius: 12px;
    }

    .token-back-image {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: unset;
        object-fit: cover;
        border-radius: 12px;
    }

    .token-text-overlay {
        position: relative;
        padding: 1.25rem;
    }

    .token-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .token-description {
        font-size: 0.875rem;
    }
}

/* ================ [ 태블릿: 768px ~ 1199px ] ================ */
@media (min-width: 768px) and (max-width: 1199px) {
    .volume-3d-container {
        max-width: 480px;
        height: 700px;
        overflow: hidden;
    }

    .volume-slice {
        max-width: 350px;
        top: 45%;
    }

    .volume-slice[data-slice="0"] { transform: translate(-50%, -50%) translateY(-110px); }
    .volume-slice[data-slice="1"] { transform: translate(-50%, -50%) translateY(-55px); }
    .volume-slice[data-slice="2"] { transform: translate(-50%, -50%) translateY(0px); }
    .volume-slice[data-slice="3"] { transform: translate(-50%, -50%) translateY(55px); }
    .volume-slice[data-slice="4"] { transform: translate(-50%, -50%) translateY(110px); }
    .volume-slice[data-slice="5"] { transform: translate(-50%, -50%) translateY(170px); }

    .volume-slice[data-slice="0"].show-2d { transform: translate(-50%, -50%) translateY(-75px); }
    .volume-slice[data-slice="1"].show-2d { transform: translate(-50%, -50%) translateY(40px); }
    .volume-slice[data-slice="2"].show-2d { transform: translate(-50%, -50%) translateY(75px); }
    .volume-slice[data-slice="3"].show-2d { transform: translate(-50%, -50%) translateY(110px); }
    .volume-slice[data-slice="4"].show-2d { transform: translate(-50%, -50%) translateY(150px); }
    .volume-slice[data-slice="5"].show-2d { transform: translate(-50%, -50%) translateY(190px); }

    .volume-slice.move-up[data-slice="0"] { transform: translate(-50%, -50%) translateY(-190px); }
    .volume-slice.move-up[data-slice="1"] { transform: translate(-50%, -50%) translateY(-150px); }
    .volume-slice.move-up[data-slice="2"] { transform: translate(-50%, -50%) translateY(-110px); }
    .volume-slice.move-up[data-slice="3"] { transform: translate(-50%, -50%) translateY(-75px); }
    .volume-slice.move-up[data-slice="4"] { transform: translate(-50%, -50%) translateY(-40px); }

    .volume-slice.move-down[data-slice="1"] { transform: translate(-50%, -50%) translateY(130px); }
    .volume-slice.move-down[data-slice="2"] { transform: translate(-50%, -50%) translateY(170px); }
    .volume-slice.move-down[data-slice="3"] { transform: translate(-50%, -50%) translateY(210px); }
    .volume-slice.move-down[data-slice="4"] { transform: translate(-50%, -50%) translateY(250px); }
    .volume-slice.move-down[data-slice="5"] { transform: translate(-50%, -50%) translateY(280px); }

    .volume-3d-description {
        margin-top: 240px;
    }
}

/* ================ [ 모바일: 767px 이하 ] ================ */
@media (max-width: 767px) {
    .inner_wrap {
        padding: 0 1.5rem;
    }

    /* Banner */
    .sub_banner .visual_box {
        height: 50vh;
        max-height: 400px;
    }

    .sub_banner .title .logo img {
        width: 150px !important;
    }

    .sub_banner .title .description {
        font-size: 0.75rem;
        margin: 1rem 0;
    }

    .sub_banner .title .description em i {
        display: block;
    }

    .joomed-description {
        font-size: 0.85rem;
        padding: 24px 0;
    }

    /* Challenge Box - 인라인 font-size 오버라이드 */
    .challenge-box {
        padding: 4px 20px !important;
        margin: 24px auto !important;
    }

    .challenge-box p {
        font-size: 1.1rem !important;
    }

    /* 섹션 h3 인라인 font-size 오버라이드 */
    .challenges h3,
    .volume-3d-title h3,
    #sequenceSection h3,
    #miseSection h3,
    #domainShiftSection h3,
    #tokenSection h3 {
        font-size: 1.25rem !important;
    }

    /* 3D Volume Section */
    .volume-3d-container {
        height: 500px;
        max-width: 300px;
        overflow: hidden;
    }

    .volume-slice {
        width: 90%;
        max-width: 180px;
        top: 30%;
    }

    .volume-slice[data-slice="0"] { transform: translate(-50%, -50%) translateY(-90px); }
    .volume-slice[data-slice="1"] { transform: translate(-50%, -50%) translateY(-45px); }
    .volume-slice[data-slice="2"] { transform: translate(-50%, -50%) translateY(0px); }
    .volume-slice[data-slice="3"] { transform: translate(-50%, -50%) translateY(45px); }
    .volume-slice[data-slice="4"] { transform: translate(-50%, -50%) translateY(90px); }
    .volume-slice[data-slice="5"] { transform: translate(-50%, -50%) translateY(135px); }

    .volume-slice[data-slice="0"].show-2d { transform: translate(-50%, -50%) translateY(-60px); }
    .volume-slice[data-slice="1"].show-2d { transform: translate(-50%, -50%) translateY(30px); }
    .volume-slice[data-slice="2"].show-2d { transform: translate(-50%, -50%) translateY(60px); }
    .volume-slice[data-slice="3"].show-2d { transform: translate(-50%, -50%) translateY(90px); }
    .volume-slice[data-slice="4"].show-2d { transform: translate(-50%, -50%) translateY(120px); }
    .volume-slice[data-slice="5"].show-2d { transform: translate(-50%, -50%) translateY(150px); }

    .volume-slice.move-up[data-slice="0"] { transform: translate(-50%, -50%) translateY(-85px); }
    .volume-slice.move-up[data-slice="1"] { transform: translate(-50%, -50%) translateY(-65px); }
    .volume-slice.move-up[data-slice="2"] { transform: translate(-50%, -50%) translateY(-45px); }
    .volume-slice.move-up[data-slice="3"] { transform: translate(-50%, -50%) translateY(-25px); }
    .volume-slice.move-up[data-slice="4"] { transform: translate(-50%, -50%) translateY(-10px); }

    .volume-slice.move-down[data-slice="1"] { transform: translate(-50%, -50%) translateY(70px); }
    .volume-slice.move-down[data-slice="2"] { transform: translate(-50%, -50%) translateY(100px); }
    .volume-slice.move-down[data-slice="3"] { transform: translate(-50%, -50%) translateY(130px); }
    .volume-slice.move-down[data-slice="4"] { transform: translate(-50%, -50%) translateY(160px); }
    .volume-slice.move-down[data-slice="5"] { transform: translate(-50%, -50%) translateY(190px); }

    .total_solution_img {
        width: 70% !important;
    }

    .volume-3d-description {
        margin-top: 320px;
    }

    .volume-3d-description p {
        font-size: 0.9rem;
    }

    /* Sequence Section */
    .sequence-section {
        min-height: 350px;
        margin: 40px auto;
    }

    .sequence-description p {
        font-size: 0.9rem;
    }

    .challenges .sequence-slide-image {
        width: 275% !important;
    }

    /* 미세 병변 */
    #miseSection > div {
        width: 90% !important;
        padding: 12px 16px 30px !important;
    }

    #miseSection {
        margin-top: 40px !important;
    }

    /* 도메인 시프트 */
    #domainShiftSection {
        margin-top: 40px !important;
    }

    #domainShiftSection .domain-shift-container {
        padding: 20px 0 !important;
    }

    #domainShiftSection .sequence-description {
        margin-top: 40px !important;
    }

    /* Token Section */
    #tokenSection {
        margin-top: 40px !important;
    }

    .token-cards-container {
        flex-direction: column !important;
        gap: 1rem;
        margin: 30px auto;
        align-items: center;
    }

    .token-card {
        max-width: 100%;
        width: 100%;
        border-radius: 12px;
    }

    .token-back-image {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: unset;
        object-fit: cover;
        border-radius: 12px;
    }

    .token-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .token-description {
        font-size: 0.85rem;
    }

    .token-text-overlay {
        position: relative;
        padding: 1.25rem;
    }

    /* LLM Hallucination Section */
    .llm-back-section .challenge-box p {
        font-size: 0.95rem !important;
    }

    .llm-back-container {
        min-height: auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative !important;
    }

    .llm-back-image {
        position: relative !important;
        width: 100% !important;
    }

    .llm-back-2 {
        position: absolute !important;
    }

    .llm-chat-image {
        width: 55% !important;
    }

    .llm-chat-image[data-chat="1"] { top: 30% !important; left: 35% !important; }
    .llm-chat-image[data-chat="2"] { top: 32% !important; left: 10% !important; }
    .llm-chat-image[data-chat="3"] { top: 36% !important; left: 35% !important; }
    .llm-chat-image[data-chat="4"] { top: 34% !important; left: 10% !important; width: 55% !important; }
    .llm-chat-image[data-chat="5"] { top: 36% !important; left: 45% !important; width: 40% !important; }

    /* LLM 아이콘: 세로 배치 */
    .llm-icon-image,
    .llm-icon-text {
        position: relative !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        opacity: 0;
    }

    .llm-icon-image {
        width: 60px !important;
        margin: 0 auto;
    }

    .llm-icon-text {
        width: 80% !important;
        margin: 0 auto 24px;
        text-align: center !important;
    }

    .llm-icon-text p:first-child {
        font-size: 0.95rem !important;
        margin-bottom: 6px !important;
    }

    .llm-icon-text p:last-child {
        font-size: 0.8rem !important;
    }

    /* Special Value Section */
    .special-value .sub_title h3 em i {
        font-size: 1.25rem !important;
    }

    .special-value-container {
        flex-direction: column !important;
        padding: 0 0.5rem !important;
        gap: 1.5rem !important;
    }

    .special-left-half {
        height: auto;
        overflow: hidden;
    }

    .special-bg {
        border-radius: 12px;
    }

    .special-inner-content {
        padding: 0 0.5rem;
        gap: 0.5rem;
        top: 5%;
    }

    .special-inner-content img {
        max-height: 45vw;
        object-fit: contain;
    }

    .special-right-half {
        min-height: 200px;
        position: relative;
    }

    .special-right-phase-1,
    .special-right-phase-2,
    .special-right-phase-3 {
        gap: 1rem;
    }

    /* Service Structure Section */
    .service-structure {
        width: 100%;
    }

    .service-structure .inner_wrapper {
        padding: 0 1rem;
    }

    .service-structure .structure-header-container {
        width: 100%;
    }

    .service-structure .structure-bg {
        width: 100%;
    }

    .service-structure .structure-middle {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .service-structure .structure-middle .structure-item {
        max-width: 80%;
        opacity: 1;
        transform: none !important;
    }

    .service-structure .structure-middle .structure-item img {
        max-width: 60%;
    }

    .service-structure .structure-middle .structure-arrow {
        max-width: 15%;
        transform: rotate(90deg) !important;
        opacity: 1;
    }

    .service-structure .structure-middle .structure-item p {
        font-size: 0.85rem;
    }

    .service-structure .structure-footer {
        flex-direction: column;
        opacity: 1;
        transform: none !important;
    }

    .service-structure .structure-footer-container i {
        font-size: 0.65rem;
        white-space: normal;
        width: 80%;
    }

    .structure-footer-description {
        font-size: 0.85rem !important;
        padding: 0 0.5rem;
    }

    /* Key Features */
    .key-features {
        width: 100%;
    }

    .key-features .sub_title h3 em i {
        font-size: 1.25rem !important;
    }

    .key-features .inner_wrapper {
        padding: 0 1rem;
    }

    .ui-description {
        font-size: 0.9rem;
        margin: 1.5rem 0;
    }

    .ui-image-base,
    .ui-image-overlay {
        margin-bottom: 2rem;
    }

    /* Dataset Management */
    .dataset-management .sub_title h3 em i {
        font-size: 1.25rem !important;
    }

    /* Web & Mobile */
    .web-mobile .sub_title h3 em i {
        font-size: 1.25rem !important;
    }

    /* Register */
    .register {
        padding: 0 0 5rem;
    }
}

/* ================ [ 소형 모바일: 480px 이하 ] ================ */
@media (max-width: 480px) {
    .inner_wrap {
        padding: 0 1rem;
    }

    .sub_banner .visual_box {
        height: 40vh;
    }

    .sub_banner .title .logo img {
        width: 120px !important;
    }

    .sub_banner .title .description {
        font-size: 0.65rem;
    }

    .joomed-description {
        font-size: 0.75rem;
    }

    .challenge-box p {
        font-size: 0.95rem !important;
    }

    .challenges h3,
    .volume-3d-title h3,
    #sequenceSection h3,
    #miseSection h3,
    #domainShiftSection h3,
    #tokenSection h3 {
        font-size: 1.1rem !important;
    }

    .volume-3d-container {
        height: 400px;
        max-width: 250px;
        overflow: hidden;
    }

    .volume-slice {
        width: 90%;
        max-width: 140px;
        top: 30%;
    }

    .volume-slice[data-slice="0"] { transform: translate(-50%, -50%) translateY(-72px); }
    .volume-slice[data-slice="1"] { transform: translate(-50%, -50%) translateY(-36px); }
    .volume-slice[data-slice="2"] { transform: translate(-50%, -50%) translateY(0px); }
    .volume-slice[data-slice="3"] { transform: translate(-50%, -50%) translateY(36px); }
    .volume-slice[data-slice="4"] { transform: translate(-50%, -50%) translateY(72px); }
    .volume-slice[data-slice="5"] { transform: translate(-50%, -50%) translateY(108px); }

    .volume-slice[data-slice="0"].show-2d { transform: translate(-50%, -50%) translateY(-48px); }
    .volume-slice[data-slice="1"].show-2d { transform: translate(-50%, -50%) translateY(24px); }
    .volume-slice[data-slice="2"].show-2d { transform: translate(-50%, -50%) translateY(48px); }
    .volume-slice[data-slice="3"].show-2d { transform: translate(-50%, -50%) translateY(72px); }
    .volume-slice[data-slice="4"].show-2d { transform: translate(-50%, -50%) translateY(96px); }
    .volume-slice[data-slice="5"].show-2d { transform: translate(-50%, -50%) translateY(120px); }

    .volume-slice.move-up[data-slice="0"] { transform: translate(-50%, -50%) translateY(-128px); }
    .volume-slice.move-up[data-slice="1"] { transform: translate(-50%, -50%) translateY(-104px); }
    .volume-slice.move-up[data-slice="2"] { transform: translate(-50%, -50%) translateY(-80px); }
    .volume-slice.move-up[data-slice="3"] { transform: translate(-50%, -50%) translateY(-56px); }
    .volume-slice.move-up[data-slice="4"] { transform: translate(-50%, -50%) translateY(-32px); }

    .volume-slice.move-down[data-slice="1"] { transform: translate(-50%, -50%) translateY(58px); }
    .volume-slice.move-down[data-slice="2"] { transform: translate(-50%, -50%) translateY(82px); }
    .volume-slice.move-down[data-slice="3"] { transform: translate(-50%, -50%) translateY(106px); }
    .volume-slice.move-down[data-slice="4"] { transform: translate(-50%, -50%) translateY(130px); }
    .volume-slice.move-down[data-slice="5"] { transform: translate(-50%, -50%) translateY(154px); }

    .volume-3d-description {
        margin-top: 240px;
    }

    .volume-3d-description p {
        font-size: 0.8rem;
    }

    .sequence-section {
        min-height: 280px;
    }

    .sequence-description p {
        font-size: 0.8rem;
    }

    .special-left-half {
        min-height: 220px;
    }

    .special-right-half {
        min-height: 160px;
    }

    .token-card {
        border-radius: 12px;
    }

    .token-back-image {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: unset;
        object-fit: cover;
        border-radius: 12px;
    }

    .token-text-overlay {
        position: relative;
        padding: 1.5rem;
    }

    .token-title {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }

    .token-description {
        font-size: 0.85rem;
    }

    .llm-icon-image {
        width: 48px !important;
    }

    .llm-icon-text p:first-child {
        font-size: 0.8rem !important;
    }

    .llm-icon-text p:last-child {
        font-size: 0.7rem !important;
    }

    .service-structure .structure-footer-container i {
        font-size: 0.55rem;
    }

    .structure-footer-description {
        font-size: 0.75rem !important;
    }

    .ui-description {
        font-size: 0.8rem;
    }
}
