
.blossom-layer {
    pointer-events: none;
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 5;
}

.blossom {
    position: absolute;
    font-size: 20px;
    will-change: transform, opacity;
}

@media (max-width: 991px) {
    .live-demo {
        grid-template-columns: 1fr;
    }

    .live-demo__phone {
        order: 2;
    }

    .live-demo__panel {
        order: 1;
    }
}


.carousel-card {
    overflow: hidden;
}

.carousel-card .blossom-layer {
    z-index: 0;
}

.carousel-card .card-content,
.carousel-card .phone-content {
    position: relative;
    z-index: 1;
}

.snapchat-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1520px;
    
    height: 660px;
    margin: 4rem auto;
    
    padding: 0 24px;
    
    overflow: hidden;
    
    -webkit-mask-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 20px, rgba(255, 255, 255, 1) calc(100% - 20px), rgba(255, 255, 255, 0));
    mask-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 20px, rgba(255, 255, 255, 1) calc(100% - 20px), rgba(255, 255, 255, 0));
    mask-mode: luminance;
}

.carousel-background {
    position: absolute;
    display: flex;
    gap: 20px;
    top: 50%;
    left: 28%;
    --x: -156px;
    
    --uj-scale: 1;
    
    transform: translate(var(--x), -50%) scale(var(--uj-scale));
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: grab;
    user-select: none;
}

.carousel-background.grabbing {
    cursor: grabbing;
    transition: none;
}

.carousel-card {
    width: 420px;
    height: 420px;
    flex-shrink: 0;
    border-radius: 12px;
    color: #f0e9e4;
    font-family: 'Karla', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    transform: scale(0.95);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.carousel-card:not(.active-card):hover {
    transform: scale(0.98) translateY(-2px);
}

.carousel-card.active-card {
    transform: scale(1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.card-1 {
    background-color: #1e1e1e;
}

.card-2 {
    background-color: #90c0ff;
}

.card-3 {
    background-color: #a9a6e6;
}

.card-4 {
    background-color: #dc8db6;
}

.card-5 {
    background-color: #1e1e1e;
}

.card-content {
    transition: opacity 0.3s ease;
}

.card-content h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.card-content i {
    font-size: 1.8rem;
    margin-bottom: 15px;
    opacity: 0.6;
}

.card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.mobile-phone {
    width: 312px;
    height: 624px;
    background: #111;
    border: 14px solid #111;
    border-radius: 48px;
    position: absolute;
    top: 50%;
    left: 28%;
    transform: translate(-50%, -50%);
    z-index: 12;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    pointer-events: none;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 24px;
    background: #111;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 12;
}

.phone-screen {
    background: #1e1e1e;
    height: 100%;
    width: 100%;
    border-radius: 34px;
    overflow: hidden;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
}

.phone-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.phone-screen .phone-content {
    opacity: 1;
    pointer-events: auto;
}

.phone-content .text-screen {
    padding: 50px 25px;
    font-size: 16px;
    line-height: 1.6;
    flex: 1;
    overflow-y: auto;
}

.phone-content .text-screen h3 {
    margin-top: 0;
}

.carousel-video-card {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    background-size: cover;
}


.carousel-card {
    position: relative;
}

.carousel-video-card .card-content {
    flex-grow: 1;
    position: static !important;
    
}

.carousel-card .play-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    
}

.carousel-card:hover .play-icon {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

.phone-modal__close {
    display: none;
}

@media (max-width: 767px) {

    .phone-modal {
        position: fixed;
        inset: 0;
        z-index: 10050;
        pointer-events: auto;
    }

    
    .phone-modal__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(10, 12, 16, 0.65);
        opacity: 0;
        transition: opacity 200ms ease;
        pointer-events: auto;
        -webkit-tap-highlight-color: transparent;
        cursor: pointer;
    }

    
    .phone-modal__dialog {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 92vw;
        width: min(70vw, 320px);
        
        max-width: 320px;
        transform: translate(-50%, -50%) scale(0.96);
        opacity: 0;
        pointer-events: auto;
        transition: opacity 200ms ease, transform 200ms ease;
    }



    .phone-modal__dialog .mobile-phone.phone-overlay {
        margin: 0 auto;
        display: block;
        max-height: 78vh;
    }

    .snapchat-carousel-container {
        margin: 2rem auto !important;
    }


    .card-content h3 {
        font-size: 1.4rem;
    }

    .card-content p {
        font-size: .95rem;
    }

    
    .carousel-card .play-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

    .snapchat-carousel-container {
        height: 380px;
    }

    .carousel-background {
        left: 50%;
        
        --uj-scale: 0.9;
        
    }


    
    .phone-modal__dialog .mobile-phone.phone-overlay {
        position: static;
        top: auto;
        left: auto;
        transform: none;

        width: 100%;
        height: auto;
        aspect-ratio: 312 / 624;
        margin: 0 auto;
        max-height: 78vh;
    }

    
    .phone-modal__dialog .phone-screen {
        width: 100%;
        height: 100%;
        border-radius: 34px;
    }
}

.carousel-background {
    touch-action: pan-y;
}

@media (max-width: 767px) {

    .aurablooms-hero-subtitle {
        font-size: 12px !important;
    }

    .snapchat-carousel-container {
        --uj-scale: .68;
        
        height: 480px;
        
    }

    .carousel-background {
        left: 50%;
        
        
        
    }

    
    .lm-card {
        transform: rotate(var(--rot, 0deg)) translateY(var(--y, 0px));
        transition: transform .28s ease, box-shadow .28s ease;
        will-change: transform;
    }

    
    .lm-card.is-center {
        transform: rotate(var(--rot, 0deg)) translateY(calc(var(--y, 0px) - 4px)) scale(1.03);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
        z-index: 2;
    }

    .live-moments {
        justify-content: center !important;
        padding: 0 8px !important;
    }

    .live-moments>figure.lm-card {
        flex: 0 0 200px !important;
        
        max-width: 200px !important;
        margin-left: -24px !important;
        
    }

    .lm-card {
        padding: 10px 10px 36px;
        
    }

    .lm-caption {
        font-size: .95rem;
        
    }

    
    .project-video {
        padding: 0 8px;
        
        margin-top: 16px;
    }

    .project-video__media {
        aspect-ratio: 5 / 3 !important;
        
        border-radius: 14px;
    }

}


.snapchat-audio-player {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    padding: 14px;
    max-width: 740px;
    margin: 20px 0;
    background: rgba(255, 255, 255, .6);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px)
}

.snapchat-audio-player .ap-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: inset 0 0 0 1.5px rgba(0, 0, 0, .08);
    transition: transform .12s ease
}

.snapchat-audio-player .ap-btn:hover {
    transform: translateY(-1px)
}

.snapchat-audio-player .ap-btn i {
    font-size: 16px
}

.snapchat-audio-player .ap-mute {
    width: 40px;
    height: 40px
}

.snapchat-audio-player .ap-meta {
    flex: 1;
    min-width: 0;
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 6px
}

.snapchat-audio-player .ap-title {
    font-weight: 600;
    letter-spacing: .2px;
    margin: 0;
    line-height: 1.2
}

.snapchat-audio-player .ap-time {
    font-size: .85rem;
    opacity: .8;
    margin: 0;
    line-height: 1.2
}

.snapchat-audio-player .ap-bar {
    position: relative;
    height: 8px;
    border-radius: 6px;
    background: rgba(0, 0, 0, .09);
    overflow: hidden;
    cursor: pointer
}

.snapchat-audio-player .ap-bar-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0%;
    background: linear-gradient(90deg, #a2d2ff, #cdb4db, #bde0fe, #ffc8dd)
}


.snapchat-audio-player .ap-sr-only {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
    white-space: nowrap
}

.live-moments {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.live-moments>figure.lm-card {
    position: relative;
    flex: 0 0 360px;
    margin-left: -60px;
    z-index: var(--z, 1);
}

.live-moments>figure.lm-card:first-child {
    margin-left: 0;
}

.live-moments>figure.lm-card {
    transform: rotate(var(--rot, 0deg)) translateY(var(--y, 0px));
    transition: transform .35s cubic-bezier(.2, .9, .3, 1), box-shadow .35s;
    will-change: transform;
}

.live-moments>figure.lm-card:hover {
    transform: rotate(0deg) translateY(calc(var(--y, 0px) - 6px)) scale(1.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
    z-index: 9;
}


.live-moments>figure.lm-card:nth-child(1) {
    --rot: -6deg;
    --y: 0px;
    --z: 1;
}

.live-moments>figure.lm-card:nth-child(2) {
    --rot: 3.5deg;
    --y: 12px;
    --z: 2;
}

.live-moments>figure.lm-card:nth-child(3) {
    --rot: -2deg;
    --y: -10px;
    --z: 3;
}

.live-moments>figure.lm-card:nth-child(4) {
    --rot: 5deg;
    --y: 16px;
    --z: 4;
}


.lm-item {
    position: relative;
    flex: 0 0 360px;
    margin-left: -60px;
    z-index: var(--z, 1);
}

.lm-item:first-child {
    margin-left: 0;
}

.lm-card {
    position: relative;
    background: #fff;
    
    border-radius: 4px;
    
    
    padding: 15px 15px 60px;
    
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transform-origin: center;
    transition: transform .35s cubic-bezier(.2, .9, .3, 1), box-shadow .35s;
    
    max-width: 300px;
    
    
}

.lm-media {
    width: 100%;
    aspect-ratio: 1/1;
    
    object-fit: cover;
    border-radius: 0;
    
    display: block;
}

.lm-caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 12px;
    color: #2b2b2b;
    font-family: "Covered By Your Grace", cursive;
    font-size: 1.25rem;
    letter-spacing: .3px;
    opacity: .95;
}


.lm-card {
    transform: rotate(var(--rot, 0deg)) translateY(var(--y, 0px));
}

.lm-item:hover {
    z-index: 99;
}

.lm-card:hover {
    transform: rotate(0deg) translateY(calc(var(--y, 0px) - 6px)) scale(1.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
}


.lm-item:nth-child(1) {
    --rot: -6deg;
    --y: 0px;
    --z: 1;
}

.lm-item:nth-child(2) {
    --rot: 3.5deg;
    --y: 12px;
    --z: 2;
}

.lm-item:nth-child(3) {
    --rot: -2deg;
    --y: -10px;
    --z: 3;
}

.lm-item:nth-child(4) {
    --rot: 5deg;
    --y: 16px;
    --z: 4;
}


.project-video {
    max-width: 980px;
    margin: 32px auto 0;
    padding: 0 24px;
}

.project-video__figure {
    margin: 0;
}

.project-video__media {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    background: #000;
}

.project-video__caption {
    margin-top: 12px;
    color: #444;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Karla', sans-serif;
    letter-spacing: .2px;
    opacity: .9;
}


@media (max-width: 991px) {
    .lm-item {
        flex: 0 0 300px;
        margin-left: -40px;
    }
}


#future-developments .chapter-divider__inner {
    position: relative;
}




.fd-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    vertical-align: middle;
    
}

.fd-feature .fd-text {
    position: relative;
    font-weight: 600;
    letter-spacing: .2px;
    background-image: linear-gradient(90deg, rgba(162, 210, 255, .5), rgba(205, 180, 219, .6), rgba(255, 200, 221, .5));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 100% 2px;
    
}

.fd-icon {
    display: inline-block;
    line-height: 0;
    opacity: .85;
}

.fd-icon svg {
    width: 16px;
    height: 16px;
    stroke: #6b6b6b;
}

.cta-container {
    display: none;
}

.snapcode-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.snapcode-container img {
    display: block;
    
    margin-top: 15px;
    
    
    width: 55%;
    
    height: auto;
}

.inst--desktop {
    display: block;
}

.inst--mobile {
    display: none;
}

.only-mobile {
    display: none;
}

.only-desktop-tablet {
    display: block;
}


@media (max-width: 767px) {
    .owl-stage {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .media-strip.owl-carousel {
        width: 100%;
    }

    
    .media-strip .owl-stage-outer {
        overflow: hidden;
    }

    
    .media-strip .owl-item,
    .media-strip .image-card,
    .media-strip .video-card {
        width: 100%;
    }

    
    .media-strip .image-frame,
    .media-strip .video-frame,
    .media-strip video.video-frame,
    .media-strip img.image-frame {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 0px;
    }
    .media-strip .owl-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }

    .media-strip .owl-dot span {
        width: 8px;
        height: 8px;
        display: block;
        border-radius: 50%;
        background: #bbb;
        opacity: .6;
        transition: .2s ease;
    }

    .media-strip .owl-dot.active span {
        background: #E3C749;
        opacity: 1;
        transform: scale(1.35);
    }

    .inst--desktop {
        display: none !important;
    }

    .inst--mobile {
        display: block !important;
    }

    .only-desktop-tablet {
        display: none !important;
    }

    .only-mobile {
        display: block !important;
    }

    .snapcode-container {
        display: none !important;
        
    }

    .cta-container {
        display: flex !important;
        justify-content: center;
        margin-top: 30px;
    }

    .cta-button {
        background: linear-gradient(135deg, #FFD54F, #E3C749);
        color: #111;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        padding: 14px 28px;
        border-radius: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .cta-button:hover,
    .cta-button:focus {
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    }

    .snapchat-carousel-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
        height: auto !important;
        overflow: visible !important;
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }

    
    .mobile-phone {
        width: 280px;
        
        height: 560px;
        
        border: 12px solid #111;
        
        border-radius: 44px;
        
        position: absolute;
        top: 50%;
        left: 28%;
        transform: translate(-50%, -50%);
        z-index: 12;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
        flex-shrink: 0;
        pointer-events: none;
        order: 1 !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: 1 !important;
        height: auto !important;
        aspect-ratio: 312 / 624 !important;
        margin: 0 auto !important;
    }

    .phone-screen {
        font-size: 13.5px !important;
        border-radius: 34px;
    }

    .phone-modal__dialog:focus {
        outline: none;
    }

    
    .carousel-background {
        order: 2 !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        --x: 0 !important;
        --uj-scale: 1 !important;

        width: 100% !important;
        margin: 6px auto 0 !important;
        display: flex !important;
        gap: 12px !important;
        padding: 4px 0 8px !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-x !important;
        cursor: auto !important;
        user-select: auto !important;
        z-index: 0 !important;
        scroll-padding-inline: 7% !important;
    }

    .carousel-background.grabbing {
        cursor: auto !important;
    }

    .carousel-card {
        flex: 0 0 86% !important;
        
        max-width: 80% !important;
        aspect-ratio: 1 / 1 !important;
        
        height: auto !important;
        padding: 12px !important;
        border-radius: 12px !important;
        transform: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .14) !important;
        scroll-snap-align: center !important;
        overflow: hidden !important;
    }

    .carousel-card.active-card {
        transform: none !important;
    }

    .carousel-card .card-content h3 {
        font-size: 1.2rem !important;
        margin-bottom: 8px !important;
    }

    .carousel-card .card-content p {
        font-size: .86rem !important;
        line-height: 1.5 !important;
    }

    
    .carousel-card .play-icon {
        right: 20px !important;
        bottom: 12px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1.25rem !important;
    }

    .carousel-card .snapcode-container img {
        width: 72% !important;
        max-width: 200px !important;
        height: auto !important;
    }
}


.project-section-title-bar {
    background-color: #f7c63e !important;
}

#section-nav a[aria-current="true"] {
    color: #f7c63e !important;
}

.card-1 .snapcode-container {
    display: grid;
    
    place-items: center;
    
    width: 100%;
    text-align: center;
    
}

.card-1 .snapcode-container>a {
    display: inline-block;
    
}

.card-1 .snapcode-container img {
    display: block;
    margin: 30px auto 0;
    
    max-width: 320px;
    
    width: 65%;
    height: auto;
}