/* The five supplied illustrations carry the progressively filled cycle ring. */
.ct-cycle {
    position: relative;
    height: 520svh;
    min-height: 3300px;
    overflow: clip;
    background: radial-gradient(ellipse 72% 660px at 0% 0%, #daeaa9 0%, #eff6d2 45%, rgba(255, 255, 255, 0) 90%), linear-gradient(180deg, #fff 0%, #fff 18%, #e8e9ea 100%);
    color: #252729;
}

.ct-cycle__sticky {
    position: sticky;
    top: 0;
    display: flex;
    height: 100svh;
    min-height: 640px;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 56px 0 28px;
}

.ct-cycle h2 {
    position: relative;
    z-index: 1;
    margin: 0 24px 12px;
    font-family: "Helvena", Arial, sans-serif;
    font-size: clamp(3rem, 6.6vw, 5.9375rem);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.035em;
    text-align: center;
}

.ct-cycle__viewport {
    position: relative;
    width: 100%;
    min-height: 410px;
    overflow: hidden;
}

.ct-cycle__track {
    position: relative;
    width: 100%;
    min-height: 410px;
}

.ct-cycle__step {
    position: absolute;
    inset: 0;
    display: grid;
    width: 100vw;
    min-height: 410px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 370px) minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(18px, 3vw, 48px);
    padding: 0 max(4vw, calc((100vw - 1280px) / 2));
    box-sizing: border-box;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0s linear .58s;
}

.ct-cycle__step.is-active {
    z-index: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
}

.ct-cycle__stage,
.ct-cycle__illustration,
.ct-cycle__description {
    opacity: 0;
    filter: blur(6px);
    will-change: opacity, filter, transform;
}

.ct-cycle__stage {
    transform: translateY(14px);
    transition: opacity .42s ease, filter .42s ease, transform .52s cubic-bezier(.22, 1, .36, 1);
}

.ct-cycle__illustration {
    transform: translateY(10px) scale(.985);
    transition: opacity .46s ease, filter .46s ease, transform .56s cubic-bezier(.22, 1, .36, 1);
}

.ct-cycle__description {
    transform: translateY(12px);
    transition: opacity .42s ease, filter .42s ease, transform .52s cubic-bezier(.22, 1, .36, 1);
}

.ct-cycle__step.is-active .ct-cycle__stage,
.ct-cycle__step.is-active .ct-cycle__illustration,
.ct-cycle__step.is-active .ct-cycle__description {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

.ct-cycle__step.is-active .ct-cycle__stage {
    transition-delay: .04s;
}

.ct-cycle__step.is-active .ct-cycle__illustration {
    transition-delay: .1s;
}

.ct-cycle__step.is-active .ct-cycle__description {
    transition-delay: .16s;
}

.ct-cycle__stage {
    position: relative;
    left: -13px;
    display: flex;
    min-height: 270px;
    align-items: center;
    justify-content: center;
}

.ct-cycle__number {
    position: absolute;
    top: -20px;
    left: calc(50% - 6px);
    color: rgba(80, 159, 255, .21);
    font-family: "Helvena", Arial, sans-serif;
    font-size: clamp(10rem, 17.5vw, 15.75rem);
    font-weight: 700;
    line-height: 1;
    transform: translateX(-50%);
}

.ct-cycle__stage h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: "Helvena", Arial, sans-serif;
    font-size: clamp(2rem, 3.333vw, 3rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.025em;
}

.ct-cycle__illustration {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
}

.ct-cycle__description {
    max-width: 330px;
    margin: 0 0 0 clamp(24px, 2.5vw, 36px);
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    line-height: 1.25;
}

.ct-cycle__hint {
    z-index: 1;
    margin: 0;
    color: #526160;
    font-size: .9rem;
    text-align: center;
}

.ct-cycle__hint span {
    display: inline-block;
    margin-left: 3px;
    transform: translateY(1px);
}

/* Static mode is used when the user asks for reduced motion. */
.ct-cycle.ct-cycle--static {
    height: auto;
    min-height: 0;
    overflow: hidden;
}

.ct-cycle--static .ct-cycle__sticky {
    position: relative;
    height: auto;
    min-height: 0;
    padding-block: 84px;
}

.ct-cycle--static .ct-cycle__viewport,
.ct-cycle--static .ct-cycle__track {
    min-height: 0;
    overflow: visible;
}

.ct-cycle--static .ct-cycle__track {
    display: grid;
    gap: 72px;
}

.ct-cycle--static .ct-cycle__step {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 380px;
    pointer-events: auto;
    visibility: visible;
}

.ct-cycle--static .ct-cycle__stage,
.ct-cycle--static .ct-cycle__illustration,
.ct-cycle--static .ct-cycle__description {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
}

.ct-cycle--static .ct-cycle__hint {
    display: none;
}

@media (max-width: 900px) {
    .ct-cycle {
        height: 400svh;
        min-height: 0;
        overflow: clip;
    }

    .ct-cycle__sticky {
        position: sticky;
        height: 100svh;
        min-height: 0;
        padding: clamp(16px, 3svh, 28px) 0;
    }

    .ct-cycle h2 {
        margin: 0 16px 12px;
        font-size: clamp(2.15rem, 8vw, 4rem);
    }

    .ct-cycle__viewport {
        width: 100%;
        height: min(70svh, 520px);
        min-height: 0;
        overflow: hidden;
    }

    .ct-cycle__track {
        width: 100%;
        height: 100%;
        min-height: 0;
    }

    .ct-cycle__step {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 0;
        grid-template-columns: 1fr;
        justify-items: center;
        align-content: center;
        row-gap: 8px;
        padding: 0 6vw;
    }

    .ct-cycle__stage {
        left: 0;
        width: min(78vw, 360px);
        min-height: 70px;
        justify-content: center;
    }

    .ct-cycle__number {
        top: -18px;
        left: 10%;
        font-size: 7.5rem;
        transform: none;
    }

    .ct-cycle__stage h3 {
        font-size: clamp(1.9rem, 5vw, 2.8rem);
    }

    .ct-cycle__illustration {
        width: min(68vw, 270px, 37svh);
    }

    .ct-cycle__description {
        max-width: 34ch;
        min-height: 0;
        margin-left: 0;
        line-height: 1.4;
        text-align: center;
    }

    .ct-cycle--static .ct-cycle__sticky {
        height: auto;
        padding-block: 58px 48px;
    }

    .ct-cycle--static .ct-cycle__viewport,
    .ct-cycle--static .ct-cycle__track {
        height: auto;
        overflow: visible;
    }

    .ct-cycle--static .ct-cycle__track {
        gap: 36px;
    }

    .ct-cycle--static .ct-cycle__step {
        height: auto;
        padding-block: 0;
    }
}

@media (max-width: 480px) {
    .ct-cycle__stage {
        min-height: 72px;
    }

    .ct-cycle__number {
        top: -12px;
        left: 12%;
        font-size: 5.6rem;
    }

    .ct-cycle__illustration {
        width: min(72vw, 270px, 37svh);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ct-cycle *,
    .ct-cycle *::before,
    .ct-cycle *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        transition-delay: 0s !important;
    }
}
