.banner-section {
    position: relative;
    overflow: hidden;
    background-color: #151518
}

.banner-bg-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    transition: height .8s ease-out
}

.banner-bg-container.loaded {
    height: 100vh;
    z-index: 1
}

.banner-bg-glow {
    position: absolute;
    inset: 0;
    opacity: .3;
    animation: pulse .3s cubic-bezier(.4, 0, .6, 1) infinite;
    mix-blend-mode: screen
}

.banner-bg-svg-wrapper {
    position: absolute;
    inset: 0;
    mix-blend-mode: screen
}

.banner-bg-svg-wrapper>img,
.banner-bg-svg-wrapper>svg {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.banner-content-wrapper {
    position: relative;
    z-index: 1;
    padding-top: 150px;
    padding-bottom: 0
}

.banner-container {
    max-width: 1640px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px
}

.banner-tag-button {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 500;
    letter-spacing: .12px;
    border-radius: 20px;
    padding: .25rem 1rem .25rem 1.25rem;
    background: linear-gradient(180deg, rgba(30, 15, 10, .8) 0, rgba(15, 5, 0, .9) 100%) padding-box, linear-gradient(30deg, transparent 0, rgb(255 96 37 / 21%) 20%, rgb(255 96 37) 50%, rgb(255 96 37 / 30%) 80%, transparent 100%) border-box;
    border: 2px solid transparent;
    box-shadow: inset 0 2px 10px rgba(255, 96, 37, .1), 0 0 20px rgba(255, 96, 37, .15);
    backdrop-filter: blur(8px);
    transition: all .3s ease;
    text-decoration: none
}

.banner-tag-text {
    background: linear-gradient(271deg, #ffcebb 33.6%, #e85722 99.23%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.6;
    transform: translateY(1px)
}

.banner-tag-icon {
    margin-left: .75rem;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0
}

@keyframes sparkle-blink {

    0%,
    100% {
        opacity: .3;
        transform: scale(.8)
    }

    50% {
        opacity: 1;
        transform: scale(1.1)
    }
}

.banner-tag-icon path {
    transform-origin: center;
    animation: sparkle-blink 2s infinite ease-in-out
}

.banner-tag-icon .sparkle-1 {
    transform-origin: 10px 8px;
    animation-delay: 0s
}

.banner-tag-icon .sparkle-2 {
    transform-origin: 19px 13px;
    animation-delay: .6s
}

.banner-tag-icon .sparkle-3 {
    transform-origin: 17px 19px;
    animation-delay: 1.2s
}

.banner-main-title {
    margin-bottom: 1.5rem;
    font-size: clamp(32px, 5vw, 72px);
    max-width: clamp(500px, 75vw, 1080px);
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -.025em;
    color: #ebecf0;
    text-align: center;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-transform: capitalize
}

.banner-description {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(14px, 1.5vw, 18px);
    margin-bottom: 2.5rem;
    color: #d3d6df;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

.banner-description b,
.banner-description strong {
    color: #d3d6df;
    font-weight: 600
}

.banner-join-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem
}

.banner-join-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: #fff;
    font-weight: 600;
    font-size: clamp(12px, 3.6vw, 18px);
    padding: .875rem 2.5rem;
    box-shadow: 0 0 20px rgba(255, 96, 37, .3);
    transition: background-color .3s, transform .3s;
    border-radius: 12px;
    background: #ff6025
}

.banner-join-button:hover {
    background-color: #e5501b;
    transform: translateY(-2px)
}

.banner-offer-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: clamp(30px, 4vw, 60px)
}

.banner-offer-content {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: clamp(12px, 1.75vw, 18px);
    color: #c0c3cb;
    font-style: normal;
    font-weight: 400;
    line-height: 140%
}

.banner-offer-content b,
.banner-offer-content strong {
    color: #fff;
    font-weight: 700
}

.banner-offer-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #fff;
    opacity: .8;
    flex-shrink: 0
}

.banner-offer-text {
    letter-spacing: .025em
}

.banner-offer-text p {
    margin: 0;
    padding: 0
}

.banner-sticky-wrap {
    position: sticky;
    top: 150px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.banner-video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center
}

.banner-media-section {
    position: relative;
    z-index: 1;
    background: #151518;
    padding-inline: 1.5rem;
    padding-bottom: 2.5rem
}

@media (min-width:1024px) {
    .banner-sticky-wrap {
        top: 200px
    }

    .banner-content-wrapper {
        padding-bottom: 10px
    }

    .banner-media-sticky-wrap {
        position: sticky;
        top: calc(50% - 150px);
        min-height: 450px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
        max-width: 560px;
        margin-inline: auto
    }
}

.banner-media-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%
}

.banner-media-box {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 18/9;
    transform: scale(1);
    will-change: transform;
    z-index: 10;
    margin: 0 auto
}

@media (min-width:1024px) {
    .banner-media-box {
        width: 70%
    }
}

.banner-media-glow {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    z-index: 0;
    animation: banner-glow-pulse 2s infinite alternate;
    pointer-events: none;
    mix-blend-mode: screen;
    border-radius: 20px;
    border: 20px solid rgb(255 255 255 / 60%);
    filter: blur(20px)
}

@keyframes banner-glow-pulse {
    0% {
        opacity: .5;
        transform: translateX(-50%) scale(.95)
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05)
    }
}

.banner-media-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: clamp(10px, 2.75vw, 20px);
    border: 3px solid rgba(255, 255, 255, .12);
    background-color: #050505;
    box-shadow: 0 0 40px rgba(0, 0, 0, .8), 0 -10px 40px rgba(255, 255, 255, .1)
}

@media (min-width:1024px) {
    .banner-media-inner {
        border-radius: 32px
    }
}

.banner-media-image,
.banner-media-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

@media screen and (max-width:600px) {
    .banner-join-button {
        max-width: 100%;
        width: 100%;
        padding: 12px 24px
    }
}

.working-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #151518;
    position: relative;
    z-index: 1
}

@media (min-width:1024px) {
    .working-section {
        padding-top: clamp(5rem, 4vw, 6rem);
        padding-bottom: clamp(2rem, 4vw, 6rem)
    }
}

@media screen and (max-width:600px) {
    .working-section {
        padding-top: 2rem;
        padding-bottom: 2rem
    }
}

.working-container {
    max-width: 1640px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px
}

.working-tag-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem
}

.working-center-video {
    transform: scale(5) translateZ(0);
    -webkit-transform: scale(5) translateZ(0);
    margin-left: 2px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    will-change: transform
}

.behind-system-tag-button,
.join-training-tag-button,
.testimonial-tag-button,
.working-tag-button {
    display: block;
    padding: 5px 12px;
    width: max-content;
    margin-inline: auto;
    border-radius: 20px;
    background: rgba(255, 255, 255, .06)
}

.behind-system-tag-button span,
.join-training-tag-button span,
.testimonial-tag-button span,
.working-tag-button span {
    background: linear-gradient(271deg, #ffcebb 33.6%, #e85722 99.23%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-size: clamp(12px, 1.5vw, 14px);
    font-style: normal;
    font-weight: 500;
    line-height: 150%
}

.working-main-title {
    margin-bottom: 1.25rem;
    color: #e2e4ea;
    text-align: center;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    text-transform: capitalize;
    font-size: clamp(24px, 3.75vw, 56px)
}

.working-description {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    color: #c0c3cb;
    text-align: center;
    font-size: clamp(14px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 140%
}

.working-description p {
    margin: 0
}

.working-media-wrapper {
    justify-items: center
}

.working-diagram-wrapper {
    overflow: hidden
}

.working-diagram {
    position: relative;
    margin-top: 4rem;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden
}

@media (min-width:1024px) {
    .working-diagram-wrapper {
        margin-bottom: 60px
    }

    .working-diagram {
        padding-left: 2rem;
        padding-right: 2rem
    }
}

.working-diagram-grid {
    display: none;
    width: 100%;
    max-width: 1156px;
    margin-inline: auto
}

.working-training-card img {
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, .8))
}

@media (min-width:1024px) {
    .working-diagram-grid {
        display: grid;
        grid-template-columns: 29.5% 13.8% 12.4% 13.8% 29.5%;
        row-gap: 4rem;
        align-items: center;
        justify-content: center;
        margin-top: 60px
    }
}

.working-grid-cell-left {
    grid-column: 1;
    border-radius: 24px;
    padding: 3px;
    z-index: 10;
    width: 100%;
    mix-blend-mode: lighten;
    border: 1px solid rgba(255, 255, 255, .1);
    background: radial-gradient(96.95% 67.83% at 49.83% -7.93%, rgb(1 75 212 / 0%) 10.36%, rgb(18 91 226 / 14%) 41.11%, rgba(12, 85, 222, 0) 100%);
    box-shadow: 0 5.292px 31.75px -1.323px rgba(0, 0, 0, .2);
    backdrop-filter: blur(26px)
}

.working-grid-cell-left::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(circle at center right, #2196f3 4.58%, #2196f3ad 12%, rgb(33 150 243 / 10%) 32.81%, #f4433600 50%, #03a9f424 74%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}

.working-grid-cell-center {
    grid-column: 3;
    grid-row: 1/span 2;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    width: 100%;
    mix-blend-mode: lighten
}

.working-grid-cell-center video {
    mix-blend-mode: lighten
}

.working-grid-cell-right {
    grid-column: 5;
    border-radius: 24px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: radial-gradient(96.95% 67.83% at 49.83% -7.93%, rgb(1 75 212 / 0%) 10.36%, rgb(18 91 226 / 14%) 41.11%, rgba(12, 85, 222, 0) 100%);
    box-shadow: 0 5.292px 31.75px -1.323px rgba(0, 0, 0, .2);
    backdrop-filter: blur(26px)
}

.working-grid-cell-right::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(circle at center left, #2196f3 4.58%, #2196f3ad 12%, rgb(33 150 243 / 10%) 32.81%, #f4433600 50%, #03a9f424 74%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}

.animated-line-position-0 {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    left: -6px;
    top: 144px;
    transform: translateY(-50%)
}

.animated-line-position-1 {
    grid-column: 4;
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    right: -6px;
    top: 144px;
    transform: translateY(-50%)
}

.animated-line-position-2 {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    left: -6px;
    bottom: 142px;
    transform: translateY(50%)
}

.animated-line-position-3 {
    grid-column: 4;
    grid-row: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    right: -6px;
    bottom: 142px;
    transform: translateY(50%)
}

.working-training-card {
    width: 100%;
    height: 100%;
    padding: 1.5rem 1rem;
    position: relative;
    z-index: 30;
    border-radius: 20px;
    box-shadow: 0 5.292px 31.75px -1.323px rgba(0, 0, 0, .2);
    -webkit-backdrop-filter: blur(26px);
    backdrop-filter: blur(26px);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    min-height: 194px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.working-training-card::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 16px;
    border: 1px solid rgba(66, 175, 253, .3);
    pointer-events: none
}

.working-card-desc p {
    margin: 0
}

.working-card-icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 1.25rem
}

.working-card-title {
    margin-bottom: .5rem;
    color: #bde9ff;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px
}

.working-card-desc {
    color: #d3d6df;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.working-video {
    width: 100%;
    max-width: 380px;
    mix-blend-mode: screen;
    pointer-events: none
}

.working-mobile-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2.5rem
}

.working-mobile-video-wrapper {
    mix-blend-mode: lighten
}

.working-mobile-video {
    mix-blend-mode: lighten;
    aspect-ratio: 3/1;
    transform: scale(2.5)
}

@media (min-width:1024px) {
    .working-mobile-layout {
        display: none
    }
}

.working-mobile-video-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem
}

.working-mobile-video-wrap .working-video {
    transform: scale(1.1)
}

.working-mobile-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 480px;
    padding: 0
}

.working-mobile-card {
    display: grid;
    grid-template-columns: 32px 1fr;
    grid-column-gap: 1.25rem;
    grid-row-gap: 0.25rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(66, 175, 253, .4);
    background: radial-gradient(circle at 100% 50%, rgba(18, 55, 110, .8) 0, #0f1013 70%);
    box-shadow: inset 0 0 0 2px #0f1013, inset 0 0 0 3px rgba(66, 175, 253, .2), 0 4px 20px rgba(0, 0, 0, .5);
    backdrop-filter: blur(10px)
}

.working-mobile-card-icon {
    grid-column: 1;
    grid-row: 1/span 2;
    width: 32px;
    height: 32px;
    aspect-ratio: 1/1;
    object-fit: contain
}

.working-mobile-card-title {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    align-self: end;
    color: #bde9ff;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 157.143%
}

.working-mobile-card-desc {
    grid-column: 2;
    grid-row: 2;
    color: #c0c3cb;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    align-self: start
}

.working-mobile-card-desc p {
    margin: 0
}

.testimonial-section {
    padding-top: clamp(3.5rem, 3.5vw, 4rem);
    padding-bottom: clamp(1.5rem, 3.5vw, 4rem);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #151518
}

@media (min-width:1024px) {
    .testimonial-section {
        padding-top: 6rem;
        padding-bottom: 6rem
    }
}

.testimonial-container {
    max-width: 1680px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px
}

.testimonial-header-wrapper {
    text-align: center;
    margin-bottom: 3rem
}

@media (min-width:1024px) {
    .testimonial-header-wrapper {
        margin-bottom: 4rem
    }
}

.testimonial-tag-button {
    margin-bottom: 1.5rem
}

.testimonial-tag-icon {
    width: 1rem;
    height: 1rem;
    object-fit: contain
}

.testimonial-tag-link {
    transition: opacity .3s
}

.testimonial-tag-link:hover {
    opacity: .8
}

.testimonial-main-title {
    color: #e2e4ea;
    margin-bottom: 12px;
    font-size: clamp(24px, 3.75vw, 56px);
    font-weight: 600;
    line-height: 120%;
    text-transform: capitalize;
    text-align: center
}

.testimonial-description {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(14px, 1.75vw, 18px);
    padding-left: 1rem;
    padding-right: 1rem;
    color: #c0c3cb;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: 140%
}

.testimonial-description p {
    margin: 0
}

.testimonial-item {
    padding-left: .75rem;
    padding-right: .75rem;
    height: 100%
}

@media (min-width:768px) {
    .testimonial-item {
        padding-left: 1rem;
        padding-right: 1rem
    }
}

.testimonial-card {
    position: relative;
    border-radius: 16px;
    background: linear-gradient(326deg, rgba(255, 255, 255, .06) -.53%, rgba(255, 255, 255, 0) 54.83%, rgba(255, 255, 255, .06) 104.85%, rgba(255, 255, 255, .06) 104.85%);
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(326deg, rgb(255 255 255 / 5%) 0, rgb(255 255 255 / 8%) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}

.testimonial-rating-wrap {
    display: flex;
    align-items: center;
    gap: .375rem;
    margin-bottom: 1.5rem
}

.testimonial-text {
    color: #9ba1a6;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 500;
    line-height: 136.905%;
    margin-bottom: 2rem
}

.testimonial-text p {
    margin: 0
}

.testimonial-user-wrap {
    display: flex;
    align-items: center;
    gap: 1rem
}

.testimonial-user-img {
    width: 60px;
    height: 60px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 103.627px;
    background: #d3d3d3 -.984px -2.789px/127.972% 127.972% no-repeat
}

.testimonial-user-name {
    color: #e2e4ea;
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 600;
    margin-bottom: .125rem
}

.testimonial-user-role {
    color: #9ba1a6;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 500;
    line-height: 136.905%;
    margin: 0
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem
}

.testimonial-next,
.testimonial-prev {
    width: clamp(2.75rem, 3.8vw, 3.5rem);
    height: clamp(2.75rem, 3.8vw, 3.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: 0 0;
    border: none;
    cursor: pointer;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1)
}

.testimonial-next svg path:first-child,
.testimonial-prev svg path:first-child {
    transition: fill-opacity .3s ease
}

.testimonial-next svg g,
.testimonial-prev svg g {
    transition: opacity .3s ease
}

.testimonial-next:hover,
.testimonial-prev:hover {
    transform: scale(1.1)
}

.testimonial-next:hover svg path:first-child,
.testimonial-prev:hover svg path:first-child {
    fill-opacity: 0.6
}

.testimonial-next:hover svg g,
.testimonial-prev:hover svg g {
    opacity: 1
}

.testimonial-next:active,
.testimonial-prev:active {
    transform: scale(.95)
}

@media screen and (max-width:600px) {
    .testimonial-slider {
        padding-left: 16px
    }

    .testimonial-slider .slick-track {
        padding-left: 16px
    }

    .testimonial-item {
        padding-left: .5rem;
        padding-right: .5rem
    }

    .testimonial-nav-button svg {
        width: clamp(2.75rem, 3.8vw, 3.5rem);
        height: clamp(2.75rem, 3.8vw, 3.5rem)
    }

    .testimonial-container {
        padding-inline: 0
    }

    .testimonial-header-wrapper {
        padding-inline: 20px
    }
}

.join-training-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgb(21 21 22) 80.46%, rgba(242, 106, 33, .6) 101.5%)
}

.join-training-section .background-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
    mix-blend-mode: normal;
    opacity: 1
}

.join-training-section .background-image>* {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    background-size: cover !important;
    background-position: center !important;
    display: block
}

.join-training-section .background-overlay {
    position: absolute;
    inset: 0;
    z-index: 1
}

.join-training-container {
    max-width: 1640px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px
}

.join-training-tag-button {
    margin-bottom: 2rem
}

.join-training-tag-button a:hover {
    opacity: .8
}

.join-training-title-wrap {
    margin-top: 1.5rem
}

.join-training-main-title {
    color: #fff;
    margin-bottom: 1.25rem;
    font-size: clamp(24px, 3.75vw, 56px);
    font-weight: 600;
    line-height: 120%;
    text-transform: capitalize;
    text-align: center
}

.join-training-description {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    color: #c0c3cb;
    font-size: clamp(14px, 1.5vw, 18px);
    text-align: center;
    font-weight: 400;
    line-height: 140%
}

.join-training-description p {
    margin: 0
}

.join-training-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto
}

.join-training-card-link {
    text-decoration: none;
    display: block
}

@media (min-width:768px) {
    .join-training-cards-grid {
        display: grid;
        grid-template-columns: 1fr auto 1fr
    }

    .join-training-card {
        padding: 1.75rem 2rem
    }
}

.join-training-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center
}

@media (max-width:767px) {
    .join-training-card-arrow svg {
        transform: rotate(90deg)
    }

    .join-training-section .background-image {
        background-size: cover
    }
}

.join-training-card {
    padding: 1.5rem 1.25rem;
    height: 100%;
    transition: all .3s ease;
    position: relative;
    border-radius: 20px;
    border: 1px solid #4a4e56;
    background: #101012;
    backdrop-filter: blur(25.717851638793945px)
}

.join-training-card:not(.join-training-card--highlight) .join-training-card-days {
    position: relative;
    color: #74767b;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    text-decoration: none
}

.join-training-card:not(.join-training-card--highlight) .join-training-card-days::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-2px);
    border-top: 2px solid #74767b
}

.join-training-card:not(.join-training-card--highlight) .join-training-card-text {
    color: #74767b
}

.join-training-card:not(.join-training-card--highlight) .join-training-card-pricing {
    color: #96989e;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06)
}

.join-training-card--highlight {
    position: relative;
    border: none;
    border-radius: 20px;
    background: linear-gradient(14deg, #17120b -9.32%, #0c0a09 66.18%);
    box-shadow: .827px .827px 22.4px 0 rgba(216, 91, 1, .42) inset, 0 0 0 .827px #311f15
}

.join-training-card--highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(180deg, #ff7c2ba5 0, rgba(255, 92, 43, 0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}

.join-training-card-tag {
    position: absolute;
    right: 16px;
    top: 16px;
    color: #ff6025;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 96, 37, .6);
    background: linear-gradient(357deg, rgba(11, 3, 0, .2) -53.07%, rgba(50, 23, 3, .28) 51.46%, rgba(13, 4, 0, .2) 129.82%);
    display: inline-flex;
    box-shadow: 2px 2px 16px 0 rgba(181, 68, 26, .1) inset;
    padding: 4px 12px;
    align-items: center;
    justify-content: center
}

.join-training-card-title {
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: #96989e;
    font-size: clamp(12px, 1.5vw, 16px);
    font-weight: 600;
    line-height: 120%
}

.join-training-card--highlight .join-training-card-title {
    color: #ff6025
}

.join-training-card-days {
    color: #d3d6df;
    font-size: clamp(24px, 2.5vw, 36px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: .5rem
}

.join-training-card-text {
    color: #d3d6df;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 1.5rem
}

.join-training-card-info-wrap {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 1.5rem
}

.join-training-card-info-wrap .join-training-card-days,
.join-training-card-info-wrap .join-training-card-text {
    margin-bottom: 0
}

@media (min-width:768px) {
    .join-training-card-info-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 0
    }

    .join-training-card-info-wrap .join-training-card-days {
        margin-bottom: .5rem
    }
}

.join-training-card-pricing {
    padding: .75rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, .09);
    color: #fff;
    font-size: clamp(12px, 1.5vw, 16px);
    font-weight: 600;
    line-height: 120%
}

.join-training-form-wrapper {
    margin-top: clamp(3rem, 8.79vw, 12rem);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1
}

.join-training-form-wrapper .wpcf7-form {
    max-width: 100%;
    margin: 0 auto
}

.join-training-form-wrapper .newsletter-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    margin: 0;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 12px
}

.join-training-form-wrapper .field-group {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 12px
}

.join-training-form-wrapper .field-email-submit,
.join-training-form-wrapper .field-goals {
    position: relative;
    padding: 6px;
    border-radius: clamp(10px, 2vw, 12px);
    background: rgb(34 34 34 / 10%);
    box-shadow: 0 4.464px 12.321px 0 rgba(158, 158, 158, .29) inset
}

.join-training-form-wrapper .field-email-submit::before,
.join-training-form-wrapper .field-goals::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(circle at top left, rgb(255 255 255 / 10%) 8%, rgb(255 255 255 / 20%) 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}

.join-training-form-wrapper .field-goals {
    flex: 1 1 38%
}

.join-training-form-wrapper .field-email-submit {
    flex: 2 1 50%;
    display: flex;
    align-items: stretch;
    gap: 12px
}

.join-training-form-wrapper .field-email-submit .wpcf7-form-control-wrap {
    flex: 1
}

.join-training-form-wrapper .field-email-submit input[type=submit] {
    flex-shrink: 0;
    height: 100%
}

.join-training-form-wrapper .wpcf7-form-control-wrap {
    position: relative;
    width: 100%
}

.join-training-form-wrapper input[type=email],
.join-training-form-wrapper input[type=text] {
    width: 100%;
    background: 0 0 !important;
    border: none !important;
    color: #fff !important;
    padding: .5rem .75rem;
    height: 100%;
    font-size: clamp(14px, 1.5vw, 18px);
    min-height: 36px;
    outline: 0 !important;
    box-shadow: none !important
}

.join-training-form-wrapper input[type=email]::placeholder,
.join-training-form-wrapper input[type=text]::placeholder {
    color: #96989e;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 500;
    line-height: 136.905%
}

.join-training-form-wrapper select.training-goals {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    background: 0 0 !important;
    border: none !important;
    color: #fff !important;
    padding: .5rem 2rem .5rem .75rem;
    height: 100%;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 500;
    outline: 0 !important;
    box-shadow: none !important;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2396989E' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important
}

.join-training-form-wrapper select.training-goals option[value=""],
.join-training-form-wrapper select.training-goals:invalid {
    color: #96989e
}

.join-training-form-wrapper select.training-goals option {
    background: #111318;
    color: #fff
}

.join-training-form-wrapper select.training-goals:focus-visible {
    box-shadow: none;
    border-radius: 0
}

.join-training-form-wrapper input[type=submit] {
    color: #000;
    border: none;
    padding: .85rem clamp(12px, 3.5vw, 32px) .75rem;
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 18px);
    cursor: pointer;
    transition: all .3s ease;
    white-space: nowrap;
    outline: 0;
    border-radius: clamp(10px, 1.5vw, 12px);
    background: #fbfbfc;
    margin: 0;
    flex-shrink: 0
}

.join-training-form-wrapper input[type=submit]:hover {
    background-color: #f3f4f6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, .15);
    color: #000 !important
}

.join-training-form-wrapper input[type=submit]:focus,
.join-training-form-wrapper input[type=submit]:focus-visible {
    background-color: #f3f4f6;
    transform: translateY(-1px);
    box-shadow: 0 0 0 3px rgba(255, 96, 37, .5);
    color: #000 !important
}

.join-training-form-wrapper input[type=submit]:active {
    transform: translateY(0);
    box-shadow: none;
    color: #000 !important
}

.join-training-form-wrapper input:-webkit-autofill,
.join-training-form-wrapper input:-webkit-autofill:active,
.join-training-form-wrapper input:-webkit-autofill:focus,
.join-training-form-wrapper input:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 50px #11131800 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s
}

.join-training-form-wrapper .wpcf7-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(163, 163, 163, .346);
    border-top-color: #ff6025;
    border-radius: 50%;
    background: 0 0;
    position: absolute !important;
    right: clamp(42px, 7.25vw, 80px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    margin: 0;
    padding: 0;
    animation: cf7-custom-spin .8s linear infinite !important
}

@keyframes cf7-custom-spin {
    0% {
        transform: translateY(-50%) rotate(0)
    }

    100% {
        transform: translateY(-50%) rotate(360deg)
    }
}

.wpcf7-spinner::before {
    background: 0 0 !important
}

.join-training-form-wrapper form.submitting input[type=submit] {
    color: transparent !important
}

.join-training-form-wrapper .wpcf7-not-valid-tip {
    color: #fff !important;
    background-color: #ff6025 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    position: absolute;
    bottom: -2.5rem;
    left: 1rem;
    white-space: nowrap;
    z-index: 1;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(255, 96, 37, .3);
    margin-top: 0
}

.join-training-form-wrapper .wpcf7-not-valid-tip::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 16px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #ff6025
}

.join-training-form-wrapper .wpcf7 form .wpcf7-response-output {
    margin: 1.5rem 0 0 0;
    padding: .875rem 1.25rem;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    line-height: 1.4
}

@keyframes cf7SlideFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px)
    }

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

.join-training-form-wrapper form.aborted .wpcf7-response-output,
.join-training-form-wrapper form.failed .wpcf7-response-output,
.join-training-form-wrapper form.invalid .wpcf7-response-output,
.join-training-form-wrapper form.spam .wpcf7-response-output,
.join-training-form-wrapper form.unaccepted .wpcf7-response-output {
    background: rgba(255, 96, 37, .08) !important;
    border: 1px solid rgba(255, 96, 37, .4) !important;
    color: #ff8555 !important;
    box-shadow: 0 4px 15px rgba(255, 96, 37, .1), inset 0 0 10px rgba(255, 96, 37, .05) !important;
    animation: cf7SlideFadeIn .4s ease-out forwards
}

.join-training-form-wrapper form.sent .wpcf7-response-output {
    background: rgba(16, 185, 129, .08) !important;
    border: 1px solid rgba(16, 185, 129, .4) !important;
    color: #34d399 !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, .1), inset 0 0 10px rgba(16, 185, 129, .05) !important;
    animation: cf7SlideFadeIn .4s ease-out forwards
}

.join-training-footer {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: .5rem
}

.join-training-footer-text {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    line-height: 140%;
    color: #96989e
}

.join-training-footer-text b,
.join-training-footer-text strong {
    color: #fff;
    font-weight: 600
}

.phone-images-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    position: relative;
    margin-top: 2rem;
    margin-bottom: -70px;
    z-index: 1
}

.phone-image-item {
    grid-area: 1/1;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative
}

.phone-image-inner {
    width: 100%;
    display: flex;
    justify-content: center;
    transition: all .6s cubic-bezier(.25, .8, .25, 1);
    transform-origin: center bottom;
    max-width: 400px
}

.join-training-phone-img {
    width: 100%;
    height: auto;
    max-width: 300px;
    object-fit: contain
}

@media (min-width:768px) {
    .join-training-phone-img {
        max-width: 420px
    }
}

@media (min-width:1024px) {
    .join-training-phone-img {
        max-width: clamp(420px, 35vw, 550px)
    }
}

@media screen and (max-width:1023px) {
    .phone-images-wrapper {
        max-width: clamp(160px, 40vw, 300px);
        position: relative;
        margin-top: 2rem;
        margin-bottom: -30px
    }
}

@media (max-width:640px) {
    .newsletter-wrapper {
        flex-direction: column;
        align-items: stretch
    }

    .newsletter-wrapper .field-email-submit,
    .newsletter-wrapper .field-goals {
        flex: 1 1 100%;
        flex-direction: column
    }

    .newsletter-wrapper .field-email-submit input[type=submit] {
        flex-shrink: 0;
        height: 100%;
        position: absolute;
        bottom: -4rem;
        width: 100%;
        left: 50%;
        transform: translateX(-50%)
    }

    .join-training-footer {
        margin-top: 7rem
    }

    .newsletter-wrapper .wpcf7-spinner {
        right: 50%;
        top: calc(100% + 40px)
    }
}

.phone-image-item:first-child {
    z-index: 1
}

.phone-image-item:first-child .phone-image-inner {
    transform: translate(-60%, 25%) scale(1.25) rotate(8deg);
    filter: brightness(.9) drop-shadow(0 20px 30px rgba(0, 0, 0, .5))
}

.phone-image-item:nth-child(2) {
    z-index: 3
}

.phone-image-item:nth-child(2) .phone-image-inner {
    transform: translate(0, 0) scale(.95) rotate(0);
    filter: brightness(1) drop-shadow(0 30px 40px rgba(0, 0, 0, .8))
}

.phone-image-item:nth-child(3) {
    z-index: 2
}

.phone-image-item:nth-child(3) .phone-image-inner {
    transform: translate(60%, 15%) scale(1.025) rotate(-2deg);
    filter: brightness(.9) drop-shadow(0 20px 30px rgba(0, 0, 0, .5))
}

.behind-system-section {
    padding-top: 4rem;
    padding-bottom: 0;
    position: relative;
    background-color: #151518;
    z-index: 1
}

.behind-system-container {
    max-width: 1640px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0
}

.behind-system-header-wrapper {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    padding-left: 20px;
    padding-right: 20px
}

.behind-system-tag-button {
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem
}

.behind-system-main-title {
    color: #e2e4ea;
    margin-bottom: 1.25rem;
    font-size: clamp(24px, 3.75vw, 56px);
    font-weight: 600;
    line-height: 120%;
    text-transform: capitalize;
    text-align: center
}

.pill-container {
    display: flex;
    gap: 10px;
    margin-top: 40px
}

.pill {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08)
}

.pill-outline {
    border: 1px solid rgba(4, 165, 245, .6)
}

.pill-filled {
    background: rgba(255, 255, 255, .08)
}

.pill-value {
    color: #ebecf0;
    text-align: center;
    font-size: clamp(12px, 2vw, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.2
}

.pill-label {
    margin-top: 6px;
    color: #d3d6df;
    text-align: center;
    font-size: clamp(10px, 2vw, 12px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.2
}

.virtfit-graph-box {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem 1.75rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .25);
    user-select: none
}

.virtfit-graph-subtitle {
    margin-bottom: 14px;
    color: #55c6ff;
    font-size: clamp(10px, 2vw, 12px);
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.virtfit-graph-title {
    color: #ebecf0;
    font-size: clamp(16px, 4vw, 22.006px);
    font-style: normal;
    font-weight: 600;
    line-height: normal
}

.virtfit-graph-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 20px
}

.virtfit-graph-metric {
    color: #fff;
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 600;
    line-height: 1
}

.stacked-cards-container {
    max-width: 1640px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 4vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem
}

.stacked-card {
    width: 100%;
    min-height: clamp(450px, 55vw, 750px);
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
    border-radius: clamp(20px, 1.5vw, 40px);
    padding-top: clamp(3.25rem, 5.75vw, 4rem);
    padding-bottom: clamp(3.25rem, 5.75vw, 4rem);
    transition: opacity .5s, background-color .5s, box-shadow .5s;
    overflow: hidden;
    transform-origin: top center;
    will-change: transform
}

@media (min-width:768px) {
    .stacked-card {
        top: 0
    }

    .stacked-cards-container {
        padding-inline: 20px
    }
}

@media (max-width:767px) {
    .stacked-card {
        border-radius: 0;
        border: none;
        box-shadow: none
    }

    .stacked-cards-container {
        gap: 0;
        padding-bottom: 0
    }

    .stacked-card:has(.behind-system-fallback-image) {
        padding-bottom: 0
    }

    .virtfit-graph-box {
        padding: 1.25rem 1rem;
        border-radius: 16px
    }
}

.stacked-card--has-bg {
    background-color: transparent;
    transform: translateZ(0)
}

.stacked-card--bg-solid {
    background-color: #111
}

.behind-system-card-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none
}

.behind-system-card-glow {
    position: absolute;
    inset: 0;
    opacity: .4;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 1
}

.behind-system-card-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 10, 10, 0);
    pointer-events: none;
    z-index: 2
}

.behind-system-card-content {
    width: 100%;
    margin: 0 auto;
    max-width: 1380px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    position: relative;
    z-index: 3
}

@media (min-width:1024px) {
    .behind-system-card-content {
        padding-left: 4rem;
        padding-right: 4rem
    }
}

.behind-system-card-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem
}

@media (min-width:1024px) {
    .behind-system-card-layout {
        flex-direction: row
    }
}

.behind-system-card-layout.layout-reversed {
    flex-direction: column
}

@media (min-width:1024px) {
    .behind-system-card-layout.layout-reversed {
        flex-direction: row-reverse
    }
}

.behind-system-card-text {
    width: 100%;
    display: flex;
    flex-direction: column
}

@media (min-width:1024px) {
    .behind-system-card-text {
        width: 50%
    }

    .behind-system-fallback-image {
        align-items: center;
        justify-content: center;
        flex: 1 1 50%;
        display: inline-grid
    }
}

.behind-system-fallback-image {
    position: relative
}

#bench-press-lottie {
    position: absolute;
    top: clamp(155px, 49.773vw, 200px);
    width: 100%;
    max-width: clamp(220px, 79.164vw, 290px);
    left: 50%;
    transform: translateX(-50%);
    border-radius: clamp(12px, 1.5vw, 20px);
    overflow: hidden;
    background: #fff
}

#bench-press-lottie video {
    aspect-ratio: 16 / 8;
}

.behind-system-card-tag {
    position: relative;
    border: 1px solid transparent;
    letter-spacing: .25px;
    margin-bottom: clamp(1.25rem, 1.75rem, 2rem);
    width: max-content;
    color: rgba(255, 255, 255, .7);
    text-align: center;
    font-size: clamp(12px, 1.5vw, 14px);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-transform: uppercase;
    border-radius: 20px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    padding: 6px 12px 4px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-box-trim: trim-both
}

.behind-system-card-tag::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .4) 0, rgba(255, 255, 255, .05) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}

.behind-system-card-title {
    color: #ebecf0;
    font-size: clamp(20px, 2.75vw, 40px);
    font-weight: 600;
    line-height: 120%;
    margin-bottom: .5rem
}

.behind-system-card-desc {
    color: #e2e4ea;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    line-height: 157.143%;
    margin-bottom: 2.25rem
}

.behind-system-card-desc p {
    margin: 0;
    max-width: 540px
}

.behind-system-phone-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

@media (max-width:1440px) {
    .behind-system-phone-wrapper {
        width: 50%;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem
    }
}

@media (min-width:1024px) {
    .behind-system-phone-wrapper {
        width: 40%
    }
}

.behind-system-phone {
    position: relative;
    width: 100%;
    max-width: 346px;
    max-height: 686px;
    height: 100%;
    aspect-ratio: 15/31;
    border-radius: 38.211px;
    border: 2.729px solid rgba(255, 255, 255, .1);
    background: #020100;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.behind-system-phone-status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2.5rem;
    z-index: 60;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: .5rem;
    pointer-events: none
}

.behind-system-phone-time {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em
}

.behind-system-phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 1.5rem;
    background-color: #000;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem
}

.behind-system-phone-icons {
    display: flex;
    align-items: center;
    gap: .375rem;
    opacity: .9
}

.behind-system-phone-screen {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 96%;
    display: flex;
    flex-direction: column;
    transition: all .5s ease-in-out
}

.behind-system-phone-screen-top {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative
}

.behind-system-phone-screen-title {
    color: #fbfbfc;
    margin-bottom: 1rem;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 15.425px
}

.behind-system-phone-screen-image-wrapper {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    top: 3rem;
    height: 100%;
    display: flex;
    justify-content: center;
    width: 100%
}

.behind-system-phone-screen-image {
    width: 100%;
    min-height: 200px;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    mix-blend-mode: lighten
}

.behind-system-phone-screen-image-overlay {
    position: absolute;
    inset: 0
}

.behind-system-phone-screen-bottom {
    padding: 1rem;
    width: 100%;
    position: relative;
    z-index: 2;
    height: 100%;
    max-height: calc(100% - 300px)
}

.behind-system-phone-screen-bottom-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px
}

.behind-system-features-box {
    width: 100%;
    border-radius: 12px;
    border: .857px solid #452203;
    background: linear-gradient(324deg, #0b0500 0, #331b02 57.15%, #0d0600 100%);
    box-shadow: 0 1.714px 3.428px 0 rgba(0, 0, 0, .25);
    display: flex;
    padding: 16px 10px;
    flex-direction: column;
    gap: 2px;
    text-align: left;
    height: 100%;
    justify-content: flex-start
}

.behind-system-features-title {
    color: #fbfbfc;
    text-transform: capitalize;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px
}

.behind-system-features-subtitle {
    margin: 0;
    color: #96989e;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px
}

.behind-system-features-list {
    display: flex;
    flex-direction: column;
    gap: 6.764px;
    margin-top: 6px
}

.behind-system-feature-item {
    align-items: flex-start;
    gap: .75rem;
    transition: background-color .3s;
    border-radius: 13.528px;
    border: .845px solid #ff60253b;
    background: rgba(27, 28, 31, .3);
    display: flex;
    padding: 13.528px;
    align-self: stretch
}

.behind-system-feature-item:hover {
    background-color: rgba(0, 0, 0, .5)
}

.behind-system-feature-icon {
    width: 1rem;
    height: 1rem;
    opacity: .5;
    filter: invert(1)
}

.behind-system-feature-content {
    flex: 1
}

.behind-system-feature-title {
    color: #d3d6df;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: .25rem
}

.behind-system-feature-desc {
    color: #96989e;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px
}

.behind-system-feature-badge {
    padding: .25rem .625rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, .1);
    background-color: rgba(255, 255, 255, .05);
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: middle;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 2px 8px rgba(0, 0, 0, .15);
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px
}

.behind-system-grid-title {
    color: #fff;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 16px
}

.behind-system-interactive-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 5px;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.behind-system-interactive-grid::-webkit-scrollbar {
    display: none
}

.behind-system-interactive-grid>* {
    scroll-snap-align: start
}

@media (min-width:991px) {
    .behind-system-interactive-grid {
        grid-auto-flow: row;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-auto-columns: auto;
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 0
    }

    .behind-system-grid-title {
        color: #96989e
    }
}

.behind-system-grid-item {
    position: relative;
    cursor: pointer;
    background-color: hidden;
    transition: all .3s;
    justify-content: space-between;
    display: flex;
    width: 100%;
    height: 110px;
    padding: 10px;
    gap: 8.569px;
    flex-shrink: 0;
    aspect-ratio: 69/55;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12)
}

.behind-system-grid-item:hover {
    background-color: rgba(255, 255, 255, .05)
}

.behind-system-grid-item.active {
    border-color: #26272c;
    background-color: #26272c
}

.behind-system-grid-icon img {
    width: 18px;
    height: 18px;
    aspect-ratio: 1/1
}

.behind-system-grid-text {
    margin-top: .5rem;
    color: #96989e;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    font-size: clamp(12px, 1vw, 14px);
    max-width: 120px
}

.behind-system-grid-indicator {
    position: absolute;
    bottom: .75rem;
    right: .75rem;
    width: 1rem;
    height: 1rem;
    border-radius: .35rem;
    border: 1px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .3s
}

@media (min-width:1024px) {
    .behind-system-grid-indicator {
        bottom: 1rem;
        right: 1rem
    }

    .behind-system-grid-icon.icon svg {
        filter: brightness(0) invert(1)
    }

    .behind-system-grid-item.active .behind-system-grid-icon svg {
        filter: none
    }

    .behind-system-grid-item.active .behind-system-grid-text {
        color: #ffff
    }
}

.behind-system-grid-item.active .behind-system-grid-indicator {
    border-color: #ff6025
}

.behind-system-grid-dot {
    width: .5rem;
    height: .5rem;
    border-radius: .125rem;
    background-color: #ff6025;
    transition: opacity .3s;
    opacity: 0
}

.behind-system-grid-item.active .behind-system-grid-dot {
    opacity: 1
}

.behind-system-highlight-box {
    padding: 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1);
    border-radius: 12px;
    border: 1px solid #031a45;
    background: linear-gradient(324deg, #00030b 0, #031942 57.15%, #00040d 100%)
}

.behind-system-highlight-icon {
    flex-shrink: 0;
    display: flex;
    width: 24px
}

.behind-system-highlight-text {
    color: #fbfbfc;
    font-size: clamp(12px, 2vw, 18px);
    font-weight: 600;
    line-height: 150%
}

.behind-system-highlight-text span {
    color: #04a5f5;
    display: block
}

.behind-system-feature-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin-top: 1.5rem
}

@media (min-width:1280px) {
    .behind-system-feature-boxes-grid {
        gap: 1rem
    }
}

.behind-system-feature-box {
    transition: background-color .3s;
    border-radius: 12px;
    border: 1px solid #031a45;
    background: linear-gradient(324deg, rgba(0, 3, 11, .5) 0, rgba(3, 25, 66, .5) 57.15%, rgba(0, 4, 13, .5) 100%);
    display: flex;
    padding: 16px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
}

.behind-system-feature-box:hover {
    background-color: rgba(255, 255, 255, .05)
}

.behind-system-feature-box-icon {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain
}

@media (min-width:1024px) {
    .behind-system-feature-box-icon {
        width: 1.5rem;
        height: 1.5rem
    }
}

.behind-system-feature-box-title {
    color: #dcdee5;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 500;
    line-height: 157.143%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.behind-system-media-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 542px
}

@media (min-width:1024px) {
    .behind-system-media-wrapper {
        width: 50%;
        min-height: 500px;
        align-items: center
    }
}

.behind-system-desktop-img,
.behind-system-image,
.behind-system-video {
    width: 90%;
    height: 100%;
    object-fit: contain;
    max-width: clamp(300px, 95%, 597px)
}

.behind-system-mobile-img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: contain
}

@media (max-width:1023px) {
    .behind-system-media-wrapper:has(.behind-system-mobile-img) .behind-system-desktop-img {
        display: none
    }

    .behind-system-mobile-img {
        display: block
    }
}

.behind-system-fallback-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 350px
}

.swap-ui-container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: clamp(16px, 1.768vw, 20px);
    padding: clamp(12px, 1.768vw, 24px);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, .12);
    background: linear-gradient(180deg, rgba(16, 16, 18, .7) 0, rgba(0, 0, 0, 0) 100%)
}

.swap-ui-title {
    color: #ebecf0;
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 600;
    margin-bottom: 1rem
}

.swap-ui-card {
    position: relative;
    padding: clamp(12px, 1vw, 16px);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .75rem;
    border-radius: 10px;
    background: radial-gradient(56.8% 54.3% at 49.88% 40.32%, rgba(16, 16, 17, .08) 0, rgba(0, 18, 51, .2) 100%);
    box-shadow: 0 .67px 7.155px -2.68px rgba(132, 99, 251, 0) inset, 0 .67px 1.027px -2.68px rgba(93, 139, 255, .64) inset, 0 0 2.972px -1.34px rgba(170, 206, 254, .74) inset;
    border: none
}

.swap-ui-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: .638px;
    background: linear-gradient(180deg, rgb(170 206 254 / 3%) 0, rgb(170 206 254 / 15%) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}

.source-card {
    border-color: rgba(255, 255, 255, .1);
    margin-bottom: 2rem
}

.swap-ui-card-img {
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6.221px;
    border: 1.555px solid #4a4e56;
    background: #fbfbfc;
    display: flex;
    align-items: center;
    justify-content: center
}

.swap-ui-card-img video {
    mix-blend-mode: multiply
}

.swap-ui-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.swap-ui-card-info {
    display: flex;
    flex-direction: column
}

.swap-ui-card-name {
    margin-bottom: .25rem;
    color: #fbfbfc;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 23.119px
}

.swap-ui-card-reps {
    color: #fbfbfc;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18.495px
}

.swap-ui-icon-wrapper {
    position: absolute;
    top: clamp(7.125rem, 10vw, 8.5rem);
    left: 50%;
    transform: translateX(-50%);
    right: 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .5);
    overflow: hidden;
    padding: 2px;
    transition: transform .3s
}

@keyframes spin-arrow {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.swap-ui-icon-wrapper svg {
    animation: spin-arrow 4s linear infinite
}

.swap-ui-subtitle {
    letter-spacing: .05em;
    margin-bottom: 1rem;
    color: #c5c1c1;
    font-variant-numeric: lining-nums proportional-nums;
    font-feature-settings: 'dlig' on;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 13.454px;
    text-transform: uppercase
}

.swap-ui-list {
    padding-bottom: 5rem
}

.swap-ui-card-tag {
    padding: .125rem .5rem;
    width: max-content;
    margin-bottom: .375rem;
    border-radius: 13.871px;
    background: rgba(255, 255, 255, .08);
    color: #e2e4ea;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px
}

.swap-ui-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    display: flex;
    align-items: flex-end;
    padding: clamp(16px, 1.768vw, 24px);
    border-bottom-left-radius: clamp(16px, 1.768vw, 24px);
    border-bottom-right-radius: clamp(16px, 1.768vw, 24px);
    z-index: 1
}

.swap-ui-confirm-btn {
    width: 100%;
    padding: .875rem;
    font-size: clamp(14px, 1.75vw, 16px);
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #d3d6df;
    text-align: center;
    font-weight: 500;
    line-height: 24px
}

.swap-ui-confirm-btn svg {
    display: flex;
    align-items: center;
    margin-top: -3px
}

.play-mode-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 96, 37, .4) 0, rgba(255, 96, 37, 0) 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none
}

.play-mode-screen {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 3.5rem 1.25rem 1.5rem;
    background-color: #0d0d0d;
    z-index: 10
}

.play-mode-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem
}

.play-mode-duration-pill {
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 9999px;
    padding: .25rem .75rem;
    display: flex;
    flex-direction: column;
    align-items: center
}

.play-mode-duration-pill .dur-time {
    color: #fff;
    font-size: .75rem;
    font-weight: 600
}

.play-mode-duration-pill .dur-label {
    color: rgba(255, 255, 255, .5);
    font-size: .5rem;
    text-transform: uppercase
}

.play-mode-header-icons {
    display: flex;
    gap: .75rem
}

.play-mode-title-section {
    margin-bottom: 1rem
}

.play-mode-tags {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .5rem
}

.play-mode-badge {
    background-color: rgba(60, 120, 255, .2);
    color: #4dabf7;
    font-size: .5rem;
    font-weight: 700;
    padding: .125rem .375rem;
    border-radius: .25rem;
    text-transform: uppercase
}

.play-mode-set-count {
    color: rgba(255, 255, 255, .6);
    font-size: .625rem
}

.play-mode-tags .info-icon {
    margin-left: auto
}

.play-mode-exercise-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .25rem
}

.play-mode-exercise-count {
    color: rgba(255, 255, 255, .5);
    font-size: .625rem
}

.play-mode-media {
    background-color: #fff;
    border-radius: .75rem;
    height: 120px;
    margin-bottom: .5rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.play-mode-media-labels {
    position: absolute;
    bottom: -1.25rem;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: rgba(255, 255, 255, .5);
    font-size: .5rem
}

.play-mode-sets {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: 1.5rem;
    flex: 1
}

.play-mode-set {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem .75rem;
    border-radius: .5rem;
    border: 1px solid rgba(255, 255, 255, .1);
    background-color: rgba(255, 255, 255, .02)
}

.play-mode-set.active-set {
    border-color: rgba(255, 96, 37, .5)
}

.set-col {
    display: flex;
    flex-direction: column;
    align-items: center
}

.set-col .val {
    color: #fff;
    font-size: .75rem;
    font-weight: 600
}

.set-col .lbl {
    color: rgba(255, 255, 255, .5);
    font-size: .5rem
}

.set-prev .lbl,
.set-prev .val {
    color: rgba(255, 255, 255, .5)
}

.set-check {
    width: 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.check-green svg {
    stroke: #10b981
}

.check-orange {
    background-color: #ff6025;
    border-radius: .25rem;
    padding: .5rem;
    margin-left: .5rem
}

.play-mode-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to top, rgba(20, 50, 150, .3), transparent);
    border: 1px solid rgba(40, 80, 200, .5);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 0 30px rgba(40, 80, 200, .4) inset;
    margin-top: auto
}

.play-mode-btn {
    background-color: rgba(255, 255, 255, .1);
    border: none;
    border-radius: .5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.play-mode-center {
    display: flex;
    flex-direction: column;
    align-items: center
}

.play-mode-center .lbl {
    color: rgba(255, 255, 255, .6);
    font-size: .625rem
}

.play-mode-center .val {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1
}

.play-mode-center .sub {
    color: rgba(255, 255, 255, .5);
    font-size: .75rem
}

@media (max-width:1023px) {
    .behind-system-card-layout {
        display: flex;
        align-items: center;
        gap: 2.5rem
    }

    .behind-system-phone-wrapper {
        width: 100%;
        padding-top: 0;
        padding-bottom: 0;
        max-width: 460px
    }

    .behind-system-phone {
        background: 0 0;
        border: none;
        box-shadow: none;
        max-width: 100%;
        max-height: none;
        height: auto;
        border-radius: 0;
        aspect-ratio: unset;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr
    }

    .behind-system-phone-screen {
        grid-column: 1/-1;
        grid-row: 1/-1;
        position: relative;
        height: auto;
        padding: 16px 12px 40px 12px;
        display: grid;
        grid-template-columns: 1fr;
        overflow: hidden;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, .1);
        background: #020100
    }

    .behind-system-phone-status-bar {
        display: none
    }

    .behind-system-features-box,
    .behind-system-phone-screen-bottom,
    .behind-system-phone-screen-top {
        display: contents
    }

    .behind-system-phone-screen-title {
        display: none
    }

    .behind-system-features-title {
        grid-column: 1/-1;
        grid-row: 2;
        margin-top: 16px;
        margin-bottom: 4px;
        font-size: 1.25rem
    }

    .behind-system-features-subtitle {
        grid-column: 1/-1;
        grid-row: 3;
        margin-bottom: 24px;
        font-size: .9rem
    }

    .behind-system-features-list {
        grid-column: 1/-1;
        grid-row: 4;
        margin-top: 0;
        gap: .75rem;
        display: flex;
        flex-direction: column;
        z-index: 2
    }

    .behind-system-phone-screen-image-wrapper {
        grid-column: 1/-1;
        grid-row: 1;
        position: relative;
        inset: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        z-index: 1;
        padding: 0;
        margin-inline: -20px;
        width: calc(100% + 40px);
        margin-top: -15px
    }

    .behind-system-phone-screen-image {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: contain;
        object-position: bottom
    }

    .behind-system-phone-screen-image-overlay {
        display: none
    }

    .behind-system-feature-item {
        position: relative;
        padding: 1rem;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 6px;
        border-radius: 12px;
        background: rgba(27, 28, 31, .3);
        border: none
    }

    .behind-system-feature-item::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: .845px;
        background: linear-gradient(135deg, rgba(255, 96, 37, .4) 0, rgba(255, 255, 255, .08) 100%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none
    }

    .behind-system-feature-icon {
        display: none
    }

    .behind-system-feature-badge {
        padding: 5px 14px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, .15);
        background: linear-gradient(180deg, rgba(255, 255, 255, .1) 0, rgba(255, 255, 255, .02) 100%);
        box-shadow: inset 0 1px 1px rgba(255, 255, 255, .1);
        margin-top: 2px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        max-width: 100%
    }

    .behind-system-interactive-grid {
        margin-inline: -20px;
        margin-left: 0;
        padding-left: 20px
    }

    .behind-system-interactive-grid:first-child {
        padding-left: 20px
    }

    .behind-system-interactive-grid:last-child {
        padding-right: 20px
    }

    .behind-system-grid-item {
        background-color: transparent;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: row;
        width: 100%;
        height: auto;
        padding: 14px 24px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, .12);
        aspect-ratio: unset
    }

    .behind-system-grid-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px
    }

    .behind-system-grid-icon {
        display: flex;
        align-items: center;
        justify-content: center
    }

    .behind-system-grid-icon img,
    .behind-system-grid-icon svg {
        width: 18px;
        height: 18px;
        aspect-ratio: 1/1
    }

    .behind-system-grid-text {
        margin-top: 0;
        font-size: clamp(12px, 1.2vw, 16px);
        white-space: nowrap;
        color: #fbfbfc;
        font-style: normal;
        font-weight: 600;
        line-height: 20px
    }

    .behind-system-grid-dot,
    .behind-system-grid-indicator {
        display: none !important
    }

    .behind-system-grid-item:hover {
        background-color: rgba(255, 255, 255, .05)
    }

    .behind-system-grid-item.active {
        border-color: #ff6025;
        background: rgba(255, 95, 37, 0);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px)
    }

    .behind-system-grid-item.active .behind-system-grid-text {
        color: #fff;
        font-weight: 600
    }

    .behind-system-grid-icon img,
    .behind-system-grid-icon svg {
        transition: all .3s ease;
        filter: brightness(0) invert(1);
        opacity: .5
    }

    .behind-system-grid-item.active .behind-system-grid-icon img,
    .behind-system-grid-item.active .behind-system-grid-icon svg {
        filter: brightness(1) invert(0) drop-shadow(0 2px 8px rgba(255, 96, 37, .6));
        transform: scale(1.1);
        opacity: 1
    }

    .behind-system-feature-boxes-grid {
        grid-template-columns: 1fr;
        margin-top: 0
    }

    .behind-system-feature-box {
        flex-direction: row;
        align-items: center;
        padding: 16px 20px
    }

    .behind-system-card-layout {
        flex-direction: column-reverse
    }

    .behind-system-card-text {
        order: 1
    }

    .behind-system-card-layout.layout-reversed {
        flex-direction: column-reverse
    }

    .join-training-section {
        padding-bottom: 1.25rem
    }

    .behind-system-card-layout.layout-reversed .behind-system-card-desc {
        margin-bottom: 0
    }

    .behind-system-header-wrapper {
        margin-bottom: 2rem
    }

    .behind-system-tag-button {
        margin-bottom: 1.25rem
    }
}

@media (max-width:600px) {
    .behind-system-feature-boxes-grid {
        grid-template-columns: 1fr
    }

    .behind-system-phone-screen-bottom-line {
        display: none
    }

    .behind-system-grid-item {
        padding: 10px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        align-self: stretch
    }

    .behind-system-card-layout {
        gap: 2rem
    }

    .behind-system-feature-box-title {
        color: #fff
    }

    .stacked-card:has(.mob-ui-space) {
        padding-top: 5rem
    }

    .testimonial-nav {
        margin-top: 2rem
    }
}

@media (max-width:380px) {

    .behind-system-tag-button span,
    .join-training-tag-button span,
    .testimonial-tag-button span,
    .working-tag-button span {
        font-size: 10px
    }
}

video::-webkit-media-controls,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none
}

.testimonial-banner-media-inner {
    position: relative;
    isolation: isolate;
    display: block;
    margin-inline: auto;
    background: 0 0
}

.testimonial-section-Banner .banner-content-wrapper {
    padding-bottom: 5rem
}

.testimonial-section-Banner .banner-main-title {
    margin-bottom: 1rem
}

.testimonial-section-Banner .banner-description {
    margin-bottom: 3rem
}

.testimonial-section-Banner .banner-tag-text {
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    text-transform: uppercase
}

.testimonial-banner-media-inner img {
    width: 100%;
    mix-blend-mode: multiply;
    aspect-ratio: 5/3;
    object-fit: contain
}

.banner-image-icon {
    display: flex;
    max-width: 300px;
    margin-inline: auto;
    margin-bottom: 1.5rem
}

.testimonial-banner-media-inner .banner-video {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    mix-blend-mode: screen
}

.video-container {
    max-width: 1640px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px
}

.instagram-container {
    max-width: 1160px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px
}

.instagram-section {
    background: #151518
}

.instagram-header-wrapper {
    margin-bottom: 60px
}

.choose-plan-container {
    max-width: 1640px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px
}

.join-training-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.pricing-programs-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px
}

.pricing-program-item {
    backdrop-filter: blur(10px);
    color: #d3d6df;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .013);
    background: linear-gradient(326deg, rgba(255, 255, 255, .08) -.53%, rgba(255, 255, 255, 0) 54.83%, rgba(255, 255, 255, .08) 104.85%, rgba(255, 255, 255, .08) 104.85%);
    display: flex;
    padding: 12px 24px;
    min-height: 56px;
    align-items: center;
    gap: 16px
}

.banner-pricing-title {
    max-width: clamp(500px, 91vw, 1280px)
}

.program-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    aspect-ratio: 1/1
}

.program-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.program-name {
    color: #d3d6df;
    font-size: clamp(12px, 1.5vw, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: 140%
}

.pricing-plans-section {
    z-index: 1;
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
    background: #151518
}

.pricing-banner-section .banner-content-wrapper {
    padding-bottom: 3rem
}

@media screen and (min-width:1024px) {
    .pricing-banner-section .banner-content-wrapper {
        padding-bottom: 5rem
    }

    .pricing-plans-section {
        padding-top: 6rem;
        padding-bottom: 6rem
    }
}

@media (max-width:991px) {
    .pricing-programs-wrapper {
        grid-template-columns: repeat(2, 1fr)
    }

    .program-icon {
        width: 24px;
        height: 24px
    }

    .pricing-program-item {
        padding: 12px;
        align-items: flex-start;
        gap: 8px;
        flex-direction: column;
        justify-content: center
    }
}

.pricing-plans-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px
}

.pricing-plans-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 920px;
    margin: 0 auto;
    margin-top: 5rem
}

@media (max-width:768px) {
    .pricing-plans-card-grid {
        grid-template-columns: 1fr;
        margin-top: 2.5rem
    }
}

.pricing-plans-card-link {
    display: block;
    text-decoration: none;
    color: inherit
}

.pricing-plans-card {
    position: relative;
    border-radius: 32px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    text-align: left;
    gap: 2.5rem
}

.pricing-plans-card--normal {
    border: 1px solid #4a4e56;
    background: #1b1c1f;
    backdrop-filter: blur(25.717851638793945px)
}

.pricing-plans-card--highlight {
    background: linear-gradient(14deg, #131b21 -9.32%, #101012 66.18%);
    box-shadow: .827px .827px 12.398px 0 rgba(1, 151, 216, .42) inset, 0 0 0 .827px #152831;
    border: none
}

@property --border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn
}

@keyframes borderSpin {
    100% {
        --border-angle: 1turn
    }
}

.pricing-plans-card--highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: conic-gradient(from var(--border-angle, 0turn) at 50% 50%, transparent 0, #36c3ff 20%, transparent 40%);
    animation: borderSpin 8s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}

.pricing-plans-card--highlight::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 40px -80px 80px rgb(76 154 255 / 10%);
    z-index: 0
}

.pricing-plans-card>* {
    position: relative;
    z-index: 1
}

.pricing-plans-card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    letter-spacing: .5px;
    display: inline-flex;
    padding: 8px 12px 6px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #9ddeff;
    color: #101012;
    font-size: clamp(14px, 1.25vw, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: 140%
}

.pricing-plans-card img {
    width: 60px;
    height: auto;
    margin-bottom: 24px
}

.pricing-plans-card-title {
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(20px, 1.8vw, 26px);
    font-style: normal;
    font-weight: 700;
    line-height: 140%
}

.pricing-plans-card-info-wrap {
    margin-bottom: clamp(20px, 2.75vw, 48px)
}

.pricing-plans-card-price {
    margin-bottom: clamp(8px, 1.75vw, 18px);
    color: #96989e;
    font-size: clamp(20px, 1.75vw, 36px);
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    text-decoration-line: line-through
}

.pricing-plans-card-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: rgba(255, 255, 255, .8);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px
}

.pricing-plans-offer-price {
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 3vw, 56px);
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    text-transform: capitalize
}

.pricing-plans-card-pricing {
    margin-top: auto;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    transition: all .3s ease;
    color: #fbfbfc;
    leading-trim: both;
    text-edge: cap;
    font-size: clamp(14px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    line-height: 1;
    padding: 20px 0;
    justify-content: center;
    align-items: center;
    gap: 6.612px;
    border-radius: 12px;
    border: 1px solid #9b9c9e;
    background: #26272c
}

.pricing-plans-card-pricing a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%
}

.pricing-plans-card-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3)
}

.pricing-plans-card--normal .pricing-plans-card-pricing:hover {
    background: #33343a;
    border-color: #b5b6b8
}

.pricing-plans-card--highlight .pricing-plans-card-pricing {
    background: #fff;
    color: #000;
    border-color: #fff
}

.pricing-plans-card--highlight .pricing-plans-card-pricing:hover {
    background: #e6e6e6;
    border-color: #e6e6e6;
    box-shadow: 0 8px 25px rgba(255, 255, 255, .15)
}

.port-video-section {
    padding-top: clamp(3.5rem, 3.5vw, 4rem);
    padding-bottom: clamp(1.5rem, 3.5vw, 4rem);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #151518;
    z-index: 1;
    position: relative
}

.port-video-container {
    max-width: 1640px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px
}

.port-video-header {
    text-align: center;
    margin-bottom: 50px
}

.port-testimonial-tag {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff6b00;
    margin-bottom: 15px;
    font-weight: 600
}

.port-testimonial-heading {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px
}

.port-testimonial-description {
    font-size: 16px;
    color: #ccc
}

.port-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.port-video-wrapper {
    display: contents
}

.port-video-card {
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: clamp(1rem, 2vw, 1.5rem);
    border: 2px solid transparent;
    aspect-ratio: 5/7
}

.port-video-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(180deg, rgb(255 255 255 / 20%) 0, rgb(255 255 255 / 30%) 100%);
    -webkit-mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#000000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}

.port-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer
}

.port-youtube-player {
    width: 100%;
    height: 100%
}

.port-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0, rgba(0, 0, 0, 0) 50%);
    pointer-events: none
}

.port-video-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2
}

.port-video-text {
    flex: 1;
    padding-right: 15px;
    text-align: left
}

.port-video-text h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600
}

.port-video-text p {
    margin: 5px 0 0;
    color: #ccc;
    font-size: 13px
}

.port-play-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 5;
    flex-shrink: 0
}

.port-play-btn img,
.port-play-btn svg {
    width: 100%;
    height: 100%;
    object-fit: contain
}

@media (min-width:1280px) {
    .port-video-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media (min-width:1024px) {
    .port-video-section {
        padding-top: 6rem;
        padding-bottom: 6rem
    }

    .port-video-container {
        width: 96%
    }
}

@media (max-width:991px) {
    .port-video-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .pricing-plans-card {
        padding: 2rem 1.5rem;
        gap: 2.5rem
    }

    .pricing-plans-card-pricing {
        padding: 16px 0
    }
}

@media (max-width:767px) {
    .port-video-grid {
        display: block;
        overflow: hidden;
        padding: 0 0;
        margin-inline: -15px;
    }

    .port-video-wrapper {
        display: block
    }

    .port-video-grid.slick-initialized {
        display: block;
        padding: 30px 0 30px 20px
    }

    .port-video-grid .slick-slide {
        margin-right: 15px
    }

    .port-video-wrapper .slick-list {
        padding-left: 15px;
    }
}