.__front {
    padding-top: 64px;
}

.__front-inner {
    max-width: 1440px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.__front-intra {
    height: calc(100vh - 240px);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.__front-desc {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-row-gap: var(--space-md);
    position: relative;
    padding: 5%;
    z-index: 2;
}

.__front-heading {
    color: var(--v3-white);
    font-family: var(--ff-satoshi);
    font-size: var(--fs);
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}

.__front-heading span {
    display: block;
    color: var(--v3-accent);
}

.__front-links {
    display: flex;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
}

.__identity {
    padding-top: var(--space);
}

.__identity-desc {
    display: flex;
    flex-direction: column;
    grid-row-gap: 10px;
    text-align: center;
}

.__identity-desc h2 {
    color: var(--v3-accent);
    font-family: var(--ff-satoshi);
    font-size: var(--fs-lg);
    font-weight: 500;
    line-height: 1.3;
}

.__identity-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-column-gap: 40px;
    grid-row-gap: 64px;
    margin-top: 64px;
}

.__identity-cart {
    height: max-content;
    display: flex;
    flex-direction: column;
    background: var(--v3-white-1);
    border-radius: 16px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.12);
    padding: 12px;
}

.__identity-cart-head {
    position: relative;
    padding-right: 100px;
}

.__identity-cart-head svg {
    position: absolute;
    bottom: 0;
    right: 0;
}

.__identity-cart-head figure {
    position: absolute;
    top: -50px;
    right: 0;
}

.__identity-cart-head h2,
.__identity-cart-head h3 {
    font-family: var(--ff-satoshi);
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 500;
    line-height: 1.3;
}

.__identity-cart-inner {
    max-height: 0;
    color: var(--v3-dark);
    font-size: 16px;
    background: var(--v3-accent-1);
    border: 1px solid var(--v3-accent-1);
    border-radius: 12px;
    margin-top: auto;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    overflow: hidden;
    opacity: 0;
}

.__identity-cart-open .__identity-cart-inner {
    max-height: 500px;
    padding: 12px;
    margin-top: clamp(18px, 3vw, 28px);
    opacity: 1;
}

.__identity-cart svg {
    transition: transform 0.3s ease;
}

.__identity-cart-open svg {
    transform: rotate(180deg);
}


.__platform {
    padding-top: var(--space);
}

.__platform-desc {
    max-width: 637px;
    display: flex;
    flex-direction: column;
    grid-row-gap: var(--space-xs);
    text-align: center;
    margin: 0 auto 0;
}

.__platform-desc h2 {
    color: var(--v3-accent);
    font-family: var(--ff-satoshi);
    font-size: var(--fs-lg);
    font-weight: 500;
    line-height: 1.3;
}

.__platform-more {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.__platform .__particle {
    height: 100px;
    justify-content: center;
}


.__platform .__particle-detail {
    margin-top: 0;
}

.swiper-platform {
    padding: clamp(36px, 5vw, 48px) 0 clamp(40px, 5vw, 52px);
}

.swiper-button-next, .swiper-button-prev {
    width: 48px;
    height: 48px;
    color: var(--v3-dark-1);
    background: var(--v3-accent-1);
    border-radius: 50%;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
}


.__inventory-cart {
    display: flex;
    grid-column-gap: 108px;
    grid-row-gap: var(--space-md);
    position: relative;
    padding-top: var(--space);
}

.__inventory-cart:nth-child(even) {
    flex-direction: row-reverse;
}

.__inventory-cart:nth-child(even) .__inventory-thumbnail {
    align-items: flex-end;
}

.__inventory-cart:nth-child(1)::after {
    content: "";
    position: absolute;
    top: 0;
    left: -4%;
    background-image: url(/assets/img/vector-middle.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

.__inventory-cart:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 0;
    background-image: url(/assets/img/vector-right.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

.__inventory-thumbnail {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
}

.__inventory-thumbnail img {
    /*border: 1px solid var(--v3-accent);*/
    /*border-radius: var(--radius);*/
    /*padding: 24px;*/
}

.__inventory-desc {
    display: flex;
    flex-direction: column;
    grid-row-gap: clamp(24px, 3.5vw, 32px);
    flex: 1;
}

.__inventory-desc h3 {
    color: var(--v3-dark);
    font-family: var(--ff-satoshi);
    font-weight: 500;
    /*font-size: clamp(22px, 4vw, 48px);*/
    font-size: 38px;
    line-height: 1.2;
}

.__inventory-list {
    display: flex;
    flex-direction: column;
    grid-row-gap: clamp(10px, 2vw, 16px);
}

.__inventory-list-item {
    display: flex;
    flex-direction: column;
    grid-row-gap: 8px;
    padding-left: 30px;
}

.__inventory-list-item h4 {
    position: relative;
    color: var(--v3-dark);
    font-family: var(--ff-satoshi);
    font-weight: 500;
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.3;
}

.__inventory-list-item h4::after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 10px;
    left: -24px;
    background: var(--v3-accent);
    border-radius: 50%;
}

.__inventory-list-item p {
    color: var(--v3-dark);
    font-size: clamp(16px, 2vw, 18px);
}


.__partners {
    padding: var(--space) 5% 0 5%;
}

.__partners-slide img {
    width: 100%;
    aspect-ratio: 300 / 100;
    object-fit: contain;
}

@media only screen and (max-width: 767px) {
    .__identity-inner {
        grid-template-columns: 1fr
    }

    .__identity-cart-icon img {
        width: 58px;
        height: 58px;
    }
}

@media only screen and (min-width: 1200px) {
    .__inventory-cart {
        align-items: center;
    }

    .__inventory-cart:nth-child(1)::after {
        width: 503px;
        height: 775px;
    }

    .__inventory-cart:nth-child(2)::after {
        width: 403px;
        height: 595px;
        right: -5%;
    }
}

@media only screen and (min-width: 566px) {
    .__inventory-thumbnail img {
        width: 415px;
        height: 401px;
    }
}

@media only screen and (max-width: 1366px) {
    .__inventory-cart {
        grid-column-gap: 64px;
    }
}

@media only screen and (max-width: 1199px) {
    .__inventory-cart:nth-child(1)::after {
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 1;
    }

    .__inventory-cart:nth-child(2)::after {
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 1;
        left: 0;
    }

    .__inventory-cart {
        flex-direction: column;
        padding-top: clamp(48px, 6vw, 64px);
    }

    .__inventory-cart:nth-child(even) {
        flex-direction: column;
    }
}

@media only screen and (max-width: 565px) {
    .__front-links {
        flex-direction: column;
    }

    .__identity-cart-head figure {
        right: 20px;
    }

    .__inventory-list-item {
        padding-left: 24px;
    }

    .__inventory-list-item h4::after {
        width: 10px;
        height: 10px;
        top: 8px;
    }
}
