.btn--primary {
    -webkit-backdrop-filter: blur(4px) !important;
    backdrop-filter: blur(4px) !important;
    background: transparent !important;
    border-radius: 48px !important;
    box-shadow: inset 0 0 12px 2px rgb(148 184 204 / 33%) !important;
}

.btn--primary:hover {
    box-shadow: inset 0 0 8px 2px rgb(148 184 204 / 66%) !important;
}

.u-theme-inverted .btn--primary {
    box-shadow: inset 0 0 12px 2px rgb(175 198 208 / 40%) !important;
}

.u-theme-inverted .btn--primary:hover {
    box-shadow: inset 0 0 8px 2px rgb(175 198 208 / 60%) !important;
}

/**
 * Parallax backdrop layers
 */

@media (min-width: 1024px) {
    .u-theme-1.section__inner,
    .u-theme-inverted.section__inner,
    .u-theme-inverted.cta__content {
        overflow: hidden;
        position: relative;
    }

    .u-theme-1.section__inner::before,
    .u-theme-1.section__inner::after,
    .u-theme-inverted.section__inner::before,
    .u-theme-inverted.section__inner::after,
    .u-theme-inverted.cta__content::before,
    .u-theme-inverted.cta__content::after {
        background-position: center;
        background-size: 100% auto;
        bottom: 0;
        content: '';
        left: 0;
        width: 100%;
        opacity: .5;
        pointer-events: none;
        position: absolute;
        z-index: -1;
    }

    .u-theme-inverted.cta__content::before,
    .u-theme-inverted.cta__content::after {
        z-index: 1;
    }

    .u-theme-1.section__inner::before,
    .u-theme-inverted.section__inner::before,
    .u-theme-inverted.cta__content::before {
        background-image: url('/assets/img/bg-outline.png') !important;
        height: 125%;
        transform: translate3d(0, calc(var(--equinox-pos) * 20%), 0);
    }

    .u-theme-1.section__inner::after,
    .u-theme-inverted.section__inner::after,
    .u-theme-inverted.cta__content::after {
        background-image: url('/assets/img/bg-gradient.png') !important;
        height: 150%;
        transform: translate3d(0, calc(var(--equinox-pos) * 33.33333%), 0);
    }
}