/* Copy Animation */
.base-color {
    color: hsl(var(--main)) !important;
}

.copyInput {
    display: inline-block;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.copied::after {
    position: absolute;
    top: 8px;
    right: 12%;
    width: 100px;
    display: block;
    content: "COPIED";
    font-size: 1em;
    padding: 5px 5px;
    color: #fff;
    background-color: #FF7000;
    border-radius: 3px;
    opacity: 0;
    will-change: opacity, transform;
    animation: showcopied 1.5s ease;
}

@keyframes showcopied {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    50% {
        opacity: 0.7;
        transform: translateX(40%);
    }

    70% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
    }
}




.cookies-card {
    width: 400px;
    padding: 25px;
    color: #1E2337;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999999;
    transition: all .5s;
    background: hsl(145.71deg 13.73% 10%);
    border-radius: 5px;
    box-shadow: 0 0 18px rgb(125 137 153);
    border-radius: 20px;
}

.cookies-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.cookies-card__title {
    font-size: inherit;

}

.cookies-card__close {
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    color: #797878;
    transition: all 0.2s;
}

.cookies-card__close:hover {
    color: #000;

}

.cookies-card__icon {
    color: hsl(var(--white));
    font-size: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
    font-size: 13px;
    margin-bottom: 24px;
}

.cookies-card__footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookies-card__btn-outline {
    /* text-decoration: none;
    padding: 12px 20px;
    color: #001E00; */

}

/* .cookies-card__btn {
    color: #fff !important;
    text-decoration: none;
    padding: 8px 35px;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 999px;
    background-color: #363636;
    transition: all 0.2s;
} */

/* .cookies-card__btn:hover {
    background-color: #0e0e0e;
} */


@media (max-width: 767px) {
    .cookies-card {
        width: calc(100% - 20px);
        left: 10px;
        bottom: 0;
        font-size: 14px;
        padding: 15px;
    }
}


.cookies-card.hide {
    bottom: -500px !important;
}

.radius--10px {
    border-radius: 10px;
}

.hover-input-popup {
    position: relative;
}

.input-popup {
    display: none;
}

.hover-input-popup .input-popup {
    display: block;
    position: absolute;
    bottom: 130%;
    left: 50%;
    width: 280px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.input-popup::after {
    position: absolute;
    content: '';
    bottom: -19px;
    left: 50%;
    margin-left: -5px;
    border-width: 10px 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #1a1a1a transparent;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.input-popup p {
    padding-left: 20px;
    position: relative;
}

.input-popup p::before {
    position: absolute;
    content: '';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    left: 0;
    top: 4px;
    line-height: 1;
    font-size: 18px;
}

.input-popup p.error {
    text-decoration: line-through;
}

.input-popup p.error::before {
    content: "\f057";
    color: #ea5455;
}

.input-popup p.success::before {
    content: "\f058";
    color: #28c76f;
}



.show-filter {
    display: none;
}

@media(max-width:767px) {
    .responsive-filter-card {
        display: none;
        transition: none;
    }

    .show-filter {
        display: block;
    }
}



.gateway-card {
    padding: 15px;
}

.payment-card-title {
    padding: 13px 25px;
    text-align: center;
    background-color: hsl(var(--base));
    border-radius: 5px;
    border: 0;
    margin-bottom: 0px;
    color: #fff;
}

.payment-system-list {
    --thumb-width: 100px;
    --thumb-height: 40px;
    --radio-size: 12px;
    --border-color: #cccccf59;
    --hover-border-color: rgb(var(--main));
    background-color: #fff;
    border-radius: 5px;
    height: 100%;

}


.payment-system-list.is-scrollable {
    max-height: min(388px, 70vh);
    overflow-x: auto;
    padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
    width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
    width: 5px;

}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
    background-color: rgb(var(--main));
    border-radius: 10px;
}

.payment-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 18px;
    border: 1px solid #fff;
    border-top-color: var(--border-color);
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.payment-item:first-child {
    border-top-color: #fff;
    border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
    border-left: 3px solid hsl(var(--base));
    border-radius: 0px;
}

.payment-item__check {
    border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
    border: 3px solid hsl(var(--base));
}

.payment-item__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
    width: var(--radio-size);
    height: var(--radio-size);
    border: 1px solid hsl(var(--base));
    display: inline-block;
    border-radius: 100%;

}

.payment-item__name {
    padding-left: 10px;
    width: calc(100% - var(--radio-size));
    transition: all 0.3s;
}

.payment-item__thumb {
    width: var(--thumb-width);
    height: var(--thumb-height);
    text-align: right;
    padding-left: 10px;

    &:has(.text) {
        width: fit-content;
    }
}

.payment-item__thumb img {
    max-width: var(--thumb-width);
    max-height: var(--thumb-height);
    object-fit: cover;
}


.deposit-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.deposit-info__title {
    max-width: 50%;
    margin-bottom: 0px;
    text-align: left;
}

.deposit-info__input {
    max-width: 50%;
    text-align: right;
    width: 100%;
}

.deposit-info__input-select {
    border: 1px solid var(--border-color);
    width: 100%;
    border-radius: 5px;
    padding-block: 6px;
}

.deposit-info__input-group {
    border: 1px solid var(--border-color);
    border-radius: 5px;

    .deposit-info__input-group-text {
        align-self: center;
        padding-left: 5px;
        background: hsl(var(--black)/.1);
    }

}


.deposit-info__input-group .form--control {
    border: 0;
    height: 100%;
    text-align: right;
}

.deposit-info__input-group .form--control:focus {
    box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
    font-size: 14px;

}

.deposit-info__title .text.has-icon {
    display: flex;
    align-items: center;
    gap: 5px
}

.total-amount {
    border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
    font-weight: 600;
}

.payment-item__btn {
    border: 0;
    border-block: 1px solid var(--border-color);
    border-bottom: 0;
    background: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 15px;
    font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
    border-top-color: #fff;
}

button .spinner-border {
    --bs-spinner-width: 1.5rem;
    --bs-spinner-height: 1.5rem;
}

.button-loader .spinner-border {
    --bs-spinner-width: 1rem;
    --bs-spinner-height: 1rem;
}

.purchase-option__card {
    display: flex;
    justify-content: space-around;
}

.purchase-option-card__item {
    padding: 40px 5px;
    border-radius: 5px;
    cursor: pointer;
    background-color: hsl(var(--secondary)/0.1);
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width:425px) {
    .purchase-option-card__item {
        padding: 20px 5px;
    }
}


.purchase-option-card__item:has(.method-input:checked) {
    background-color: hsl(var(--base));
}

.dark-modal .purchase-option-card__item:has(.method-input:checked) .purchase-option-card__title {
    color: hsl(var(--title-color));
}

.dark-modal .purchase-option-card__item:has(.method-input:checked) .balance {
    color: hsl(var(--title-color)) !important;
}

.purchase-option-card__item:has(.method-input:checked) .purchase-option-card__icon i {
    color: hsl(var(--white));
}

.dark-modal .purchase-option-card__item:has(.method-input:checked) .purchase-option-card__icon i {
    color: hsl(var(--black));
}

.purchase-option-card__item .purchase-option-card__icon {
    font-size: 2.2rem;
    margin-bottom: 5px;
    line-height: 1;
}

.purchase-option-card__item .purchase-option-card__icon i {
    color: hsl(var(--base));
}

.plan-details div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.note-wrapper__output {
    max-height: 450px !important;
    overflow: auto !important;
}

.note-wrapper__output::-webkit-scrollbar {
    width: 5px;
}

.note-wrapper__output::-webkit-scrollbar-thumb {
    background: hsl(var(--base));
    border-radius: 10px;
}

.skeleton-chat-item {
    display: flex;
    padding: 10px;
    margin-bottom: 10px;
    background: #f0f0f0;
    border-radius: 8px;
    animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-chat-item .thumb {
    width: 50px;
    height: 50px;
    background: #e0e0e0;
    border-radius: 50%;
    margin-right: 10px;
}

.skeleton-chat-item .content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.skeleton-chat-item .content div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skeleton-chat-item .content .name {
    height: 10px;
    width: 35%;
    border-radius: 20px;
    background: #e0e0e0;
    margin-bottom: 5px;
}

.skeleton-chat-item .content .text {
    height: 8px;
    width: 80%;
    border-radius: 20px;
    background: #e0e0e0;
}

.skeleton-chat-item .content .time {
    height: 8px;
    width: 14%;
    border-radius: 20px;
    background: #e0e0e0;
}



@keyframes pulse {
    0% {
        background-color: #f0f0f0;
    }

    50% {
        background-color: #e0e0e0;
    }

    100% {
        background-color: #f0f0f0;
    }
}


/* Skeleton for contact details */
.skeleton {
    background: #e0e0e0;
    border-radius: 4px;
    animation: shimmer 1.5s infinite linear;
}

.skeleton-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 10px auto;
}

.skeleton-text {
    height: 16px;
    margin: 10px 0;
}

.skeleton-text-md {
    width: 120px;
    height: 20px;
    margin: 10px auto;
}

.skeleton-text-sm {
    width: 100%;
    height: 14px;
}

.skeleton-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
}

.skeleton-btn {
    width: 70px;
    height: 28px;
    border-radius: 8px;
}

@keyframes shimmer {
    0% {
        background-color: #e0e0e0;
    }

    50% {
        background-color: #f0f0f0;
    }

    100% {
        background-color: #e0e0e0;
    }
}

.table-thumb {
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 100%;
}

.apexcharts-menu-item {
    color: #000;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 14px;
}

.apexcharts-menu-item:hover {
    background-color: #333;
    color: #fff;
    cursor: pointer;
}

.apexcharts-menu-item i {
    color: #fff;
}

.apexcharts-menu-item .apexcharts-menu-icon {
    color: #fff;
}

.download-document {
    padding: 5px 10px;
    color: #fff;
    cursor: pointer;
}

.crypto-message,
.crypto-message .gateway-currency {
    color: #606576 !important;
}

.pointer {
    cursor: pointer !important;
}

.template-requirements ul {
    list-style: disc !important;
}

.template-requirements ul li {
    font-size: 15px !important;
    color: #606576 !important;
}

.progressModal .progress {
    @apply w-full overflow-hidden rounded;
}

.progressModal .progress-bar {
    @apply transition-all duration-300 ease-linear;
}

.progressModal .bg-success {
    background-color: hsl(var(--base)) !important;
}

.progressModal .progress-bar-striped {
    background-image: linear-gradient(45deg,
            rgba(255, 255, 255, 0.15) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.15) 75%,
            transparent 75%,
            transparent);
    background-size: 1rem 1rem;
}

.progressModal .progress-bar-animated {
    animation: progressModal-progress-bar-stripes 1s linear infinite;
}

@keyframes progressModal-progress-bar-stripes {
    0% {
        background-position: 1rem 0;
    }

    100% {
        background-position: 0 0;
    }
}

.table-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name-short-form {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: hsl(var(--section-bg));
    border: 1px solid hsl(var(--border-color));
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: hsl(var(--black)/0.6);
}

.agent-info strong {
    font-weight: 600;
}

.agent-info .agent-url {
    color: hsl(var(--primary));
    font-weight: 500;
    font-size: 0.875rem;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 10px !important;
}

.select2+.select2-container .select2-selection.select2-selection--multiple {
    background: hsl(var(--section-bg));
    border-radius: 8px !important;
}

.dashboard-container .select2+.select2-container .select2-selection.select2-selection--multiple {
    border: 1px solid #c1c9d033 !important;
}

.dashboard-container .select2+.select2-container.select2-container--open .select2-selection__rendered,
.dashboard-container .select2+.select2-container.select2-container--focus .select2-selection.select2-selection--multiple,
.dashboard-container .select2+.select2-container.select2-container--open .select2-selection.select2-selection--multiple {
    border: 1px solid hsl(var(--base)) !important;
}

.select2+.select2-container .select2-selection--multiple .select2-search.select2-search--inline {
    line-height: 28px;
}

.select2+.select2-container .select2-selection--multiple .select2-selection__rendered {
    line-height: 25px;
    box-shadow: unset !important;
    background: transparent !important;
    padding-right: 8px;
}

.dashboard-container .select2+.select2-container .select2-selection--multiple .select2-selection__rendered {
    border: 0 !important;
}

.select2-container--default .select2-search__field {
    border-radius: 4px;
}

.select2-container--open .select2-dropdown {
    border-radius: 4px !important;
}

.select2-results__options::-webkit-scrollbar {
    width: 0px;
}

.select2-search__field {
    background-color: hsl(var(--section-bg)) !important;
}

.select2-selection--multiple .select2-search__field {
    background-color: transparent !important;
}

.select2+.select2-container:has(.select2-selection.select2-selection--multiple) {
    height: auto;
}


.coupon-apply-button {
    position: absolute;
    right: 0;
    top: 0;
    border-width: 0px;
    width: 25% !important;
    height: calc(100% - 10px);
    margin: 5px;
    border-radius: 4px !important;
    background-color: hsl(var(--success));
    color: hsl(var(--white)) !important;
    cursor: pointer;
    padding-block: 5px;
    display: flex;
    justify-content: center !important;
}

.coupon-apply-button.disable {
    background-color: hsl(var(--black)/0.3) !important;
    color: hsl(var(--secondary)) !important;
    pointer-events: none;
}

.coupon-apply-button.remove {
    background-color: hsl(var(--danger)) !important;
    color: hsl(var(--white)) !important;
}

/* Feature icons: dark rounded tiles holding 3D emoji PNGs (Fluent 3D).
   Doubled selectors beat main.css's rules, which load after this file. */
.feature-item .feature-item__icon {
    background-color: #222222;
    border: 1px solid #333333;
    border-radius: 14px;
    width: 60px;
    height: 60px;
}

.feature-item .feature-item__icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* Cards lift on hover so the grid never feels static */
.feature-section .feature-item {
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.feature-section .feature-item:hover {
    transform: translateY(-8px);
    border-color: hsl(var(--base) / 0.45);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.feature-item .feature-item__icon {
    transition: transform 0.35s ease;
}

.feature-section .feature-item:hover .feature-item__icon {
    transform: scale(1.12) rotate(-4deg);
}

/* Breathing room inside the cards: icon → title → description */
.feature-item .feature-item__icon {
    margin-bottom: 24px;
}

.feature-item .feature-item__title {
    margin-bottom: 12px;
}

.feature-item .feature-item__desc {
    line-height: 1.7;
    color: hsl(var(--white) / 0.72);
}

/* How-it-works steps: same card treatment as the features grid for visual unity */
.how-work-section .how-work-item {
    position: relative;
    background-color: hsl(var(--white) / 0.08);
    border: 1px solid hsl(var(--white) / 0.1);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    -webkit-backdrop-filter: blur(60px);
    backdrop-filter: blur(60px);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.how-work-section .how-work-item:hover {
    transform: translateY(-8px);
    border-color: hsl(var(--base) / 0.45);
}

/* Geometric connector: a small badge centred on the gap between cards.
   38% (not 50%) because the card content is top-heavy — this pins the badge
   to the visual centre of the icon+text block, not the empty bottom band. */
.how-work-section .how-work-item__shape {
    position: absolute;
    top: 38%;
    right: -12px;
    transform: translate(50%, -50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #222222;
    border: 1px solid #333333;
    color: hsl(var(--base));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 2;
}

[dir="rtl"] .how-work-section .how-work-item__shape {
    right: auto;
    left: -12px;
    transform: translate(-50%, -50%) rotate(180deg);
}

/* Stacked layouts below lg: connectors no longer sit between columns */
@media screen and (max-width: 991px) {
    .how-work-section .how-work-item__shape {
        display: none;
    }
}

/* How-it-works steps: same dark tile treatment as the feature icons */
.how-work-section .how-work-item__icon {
    background-color: #222222;
    border: 1px solid #333333;
    border-radius: 14px;
    width: 60px;
    height: 60px;
}

.how-work-section .how-work-item:hover .how-work-item__icon {
    background-color: #2a2a2a;
}

.how-work-section .how-work-item__icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

/* Pricing feature list: small inline 3D icons in place of the font glyphs */
.pricing-list__item-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    vertical-align: -3px;
}

/* Included-feature marker: subtle green check badge instead of a "Yes" label */
.pricing-card .ds-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: hsl(var(--base) / 0.15);
    color: hsl(var(--base));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

/* Excluded-feature marker, for plans that lack a line */
.pricing-card .ds-cross {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: hsl(var(--white) / 0.06);
    color: hsl(var(--white) / 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* Wide, comfortable plan CTA */
.pricing-card .pricing-card__btn .btn {
    padding-block: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
}

/* CTA box: the background artwork covers the box without stretching */
.cta-section .cta-section__shape img {
    object-fit: cover;
}

/* Neon circuit strip (transparent PNG) anchored bottom-LEFT, under the copy;
   masked so it fades out before reaching the right column */
.cta-section .cta-section__shape-two {
    top: auto;
    bottom: 0;
    left: 0;
    width: 55%;
    height: auto;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(90deg, #000 65%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 65%, transparent 100%);
}

.cta-section .cta-section__shape-two img {
    width: 100%;
    height: auto;
    display: block;
}

/* Fullscreen hero banner */
/* Copy column (title → description → CTA) on the left, image clean on the right */
.banner-section--fullscreen {
    /* header (93px) is in flow above the hero, so subtract it to land the copy on the fold */
    min-height: calc(100vh - 93px);
    display: flex;
    align-items: flex-end;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    padding-top: 100px;
    padding-bottom: 48px;
}

/* No wash over the image — just a subtle bottom fade under the copy */
.banner-section--fullscreen::before {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 10, 6, 0) 60%, rgba(3, 10, 6, 0.5) 100%);
    z-index: -1;
}

/* Kill the template's green blur wash so the hero image shows clean.
   Doubled class beats main.css's .banner-section::after, which loads after this file. */
.banner-section.banner-section--fullscreen::after {
    content: none;
}

.banner-section--fullscreen .banner-content__title {
    color: hsl(var(--white));
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}

/* Desktop: the whole copy column sits in the empty black area left of the
   tablet graphic — title, then description, then CTA. No overlay on the image. */
@media screen and (min-width: 992px) {
    .banner-section--fullscreen::before {
        content: none;
    }

    .banner-section--fullscreen .banner-content {
        position: absolute;
        left: 5vw;
        top: 50%;
        transform: translateY(-50%);
        max-width: 460px;
        text-align: left;
    }

    .banner-section--fullscreen .banner-content__title {
        font-size: 42px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .banner-section--fullscreen .banner-content__desc {
        margin: 0;
        max-width: 100%;
    }

    .banner-section--fullscreen .banner-content__button {
        margin-top: 28px;
    }
}

.banner-section--fullscreen .banner-content__desc {
    color: hsl(var(--white) / 0.85);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
    max-width: 680px;
}

@media screen and (max-width: 767px) {
    /* Mobile hero = pure top-to-bottom stack: TEXT first, then the real <img>.
       Drop the desktop background hero entirely and let the section be a plain
       block in normal flow. Compound selector + !important beat main.css's
       single-class .banner-section rules that load afterwards. */
    .banner-section.banner-section--fullscreen {
        display: flex !important;
        flex-direction: column !important;
        min-height: auto !important;
        background-image: none !important;
        background-color: #000 !important;
        padding-top: 0 !important;
        padding-bottom: 40px !important;
    }

    .banner-section.banner-section--fullscreen::before {
        content: none !important;
    }

    /* 1) Text block renders first, in normal flow, centered */
    .banner-section.banner-section--fullscreen .banner-content {
        position: static !important;
        transform: none !important;
        max-width: 100%;
        text-align: center;
    }

    /* Pull the text up into the image's bottom reflection to kill the empty gap.
       The text container is the flex item holding the copy; a negative top margin
       lifts it toward the mockup while staying horizontally centered. */
    .banner-section.banner-section--fullscreen > .container {
        margin-top: -120px;
    }

    .banner-section--fullscreen .banner-content__title {
        font-size: 27px;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .banner-section--fullscreen .banner-content__desc {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 18px;
    }

    /* Image renders FIRST (top) via flex order; text follows below it */
    .banner-section__mobile-media {
        display: block;
        order: -1;
        width: 100%;
        height: auto;
        margin-bottom: 0;
        border-radius: 16px;
    }
}

/* Image is desktop-hidden already via d-md-none; keep it out of the flow there too */
@media screen and (min-width: 768px) {
    .banner-section__mobile-media {
        display: none;
    }
}

/* Shorter laptop viewports: shrink the image and push it right so the copy
   column keeps clear of it */
@media screen and (min-width: 992px) and (max-width: 1499px) {
    .banner-section--fullscreen {
        background-size: 80% auto;
        background-position: right center;
    }

    .banner-section--fullscreen .banner-content {
        max-width: 360px;
        left: 4vw;
    }

    .banner-section--fullscreen .banner-content__title {
        font-size: 32px;
    }
}

/* Below lg the cover image sits behind the copy — stronger bottom fade for readability */
@media screen and (max-width: 991px) {
    .banner-section--fullscreen::before {
        background: linear-gradient(180deg, rgba(3, 10, 6, 0.1) 0%, rgba(3, 10, 6, 0.8) 100%);
    }
}

/* CTA artwork: single full-bleed render (3 phones + neon waves on black);
   copy and button sit in the dark left half of the image */
.cta-section--artwork {
    position: relative;
    overflow: hidden;
    background-color: #020503;
}

.cta-section--artwork .cta-artwork-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.cta-section--artwork .container {
    position: relative;
    z-index: 2;
}

.cta-artwork-content {
    min-height: clamp(440px, 40vw, 700px);
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-block: 60px;
}

.cta-artwork-content .section-heading {
    margin-bottom: 0;
}

.cta-artwork-content .cta-wrapper__btn {
    margin-top: 32px;
}

.cta-artwork-btn {
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.35);
}

/* Below lg the phones sit behind the copy — darken for readability */
@media screen and (max-width: 991px) {
    .cta-section--artwork::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(2, 5, 3, 0.88) 0%, rgba(2, 5, 3, 0.55) 100%);
        z-index: 1;
    }

    .cta-artwork-content {
        max-width: 100%;
        min-height: 420px;
    }
}

/* Phones: swap the desktop cover bg for a real portrait artwork with the copy
   overlaid INSIDE its empty black bands — heading/desc in the top band, button
   on the floor at the bottom. Grid stacks image + copy in the same cell so the
   section can never crop the image or clip long copy. */
@media screen and (max-width: 767px) {
    .cta-section--artwork {
        display: grid;
    }

    .cta-section--artwork .cta-artwork-bg {
        display: none;
    }

    .cta-section--artwork::before {
        content: none;
    }

    .cta-artwork-mobile {
        display: block;
        grid-area: 1 / 1;
        width: 100%;
        height: auto;
    }

    .cta-section--artwork .container {
        grid-area: 1 / 1;
        display: flex;
    }

    .cta-artwork-content {
        min-height: 100%;
        width: 100%;
        padding-block: 22px 26px;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }

    /* .style-left forces left alignment — recenter it on phones */
    .cta-artwork-content .section-heading.style-left {
        text-align: center;
    }

    .cta-artwork-content .section-heading__title {
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
    }

    .cta-artwork-content .section-heading__desc {
        text-shadow: 0 1px 10px rgba(0, 0, 0, 0.85);
    }

    .cta-artwork-content .cta-wrapper__btn {
        margin-top: 0;
    }
}

@media screen and (min-width: 768px) {
    .cta-artwork-mobile {
        display: none;
    }
}

/* ============================================================
   UX polish pass — spacing & readability tweaks
   ============================================================ */

/* --- Header: breathing room between the CTA button and the language switcher --- */
.header .top-button {
    column-gap: 22px;
}

/* Logo: a little vertical padding so it isn't flush against the header edges */
.header .navbar-brand.logo {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* --- Home "4 Steps" cards: let the description text breathe --- */
.how-work-section .how-work-item {
    padding: 36px 30px;
}

.how-work-section .how-work-item__desc {
    line-height: 1.7;
    max-width: 320px;
}

/* --- Pricing cards: de-emphasise non-popular borders so "Pro" stands out --- */
.pricing-section .pricing-card:not(.popular),
.pricing-card:not(.popular):not(.card-two) {
    border-color: hsl(var(--white) / 0.06);
}

/* --- FAQ answers: lighter, slightly smaller text for clearer contrast --- */
.custom--accordion .accordion-body .text {
    font-size: 15px;
    line-height: 1.72;
    font-weight: 400;
    color: hsl(var(--white) / 0.62);
}

/* --- Features "Word-Perfect Subtitles": separate the lead paragraph from the checklist --- */
.key-feature-wrapper__content .key-feature-wrapper__desc {
    margin-bottom: 26px;
}

/* --- Pricing page: give the table vertical breathing room under the hero --- */
.pricing-section--page {
    padding-top: 80px;
}

.pricing-section--page .section-heading {
    margin-bottom: 40px;
}

/* --- Blog cards: clamp long titles to 2 lines so columns keep equal height --- */
.blog-section .blog-item__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.9em;
}

/* --- Contact form: thinner, lighter placeholder text (modern look) --- */
.contact-form .form--control::-webkit-input-placeholder {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.55;
}

.contact-form .form--control::placeholder {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.55;
}

/* --- Footer: lift the copyright line off the bottom edge of the screen --- */
.footer-area .bottom-footer {
    padding-bottom: 48px;
}

/* ============================================================
   Mobile polish pass (phone version)
   ============================================================ */
@media screen and (max-width: 991px) {

    /* Hamburger: keep the icon off the right edge of the screen */
    .header .navbar-toggler.header-button {
        margin-right: 6px;
    }

    /* A touch more side breathing room across the mobile header */
    body .header .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Mobile menu: even, comfortable spacing between the CTA buttons row
       and the language switcher inside the opened menu */
    .header .nav-menu .top-button {
        row-gap: 14px;
        column-gap: 18px;
        padding-block: 6px 10px;
    }

    .header .nav-menu .language--dropdown {
        margin-left: 0;
    }
}

/* Steps & feature cards: more inner padding on phones so text isn't cramped */
@media screen and (max-width: 767px) {
    .how-work-section .how-work-item {
        padding: 28px 24px;
    }

    .feature-section .feature-item {
        padding: 26px 22px;
    }

    /* Steps grid stays 2×2 on phones — tighten cards so two fit per row cleanly */
    .how-work-section .row {
        row-gap: 16px;
    }

    .how-work-section .how-work-item {
        padding: 22px 16px;
        height: 100%;
    }

    .how-work-section .how-work-item__content {
        margin-top: 16px;
    }

    .how-work-section .how-work-item__title {
        font-size: 16px;
    }

    .how-work-section .how-work-item__desc {
        font-size: 13px;
        line-height: 1.55;
        max-width: 100%;
    }

    /* Pricing CTA: centre the "Get Started" button within each stacked card */
    .pricing-card .pricing-card__btn {
        max-width: 320px;
        margin-inline: auto;
    }
}

/* Footer: extra bottom room on phones (respects device safe-area) */
@media screen and (max-width: 767px) {
    .footer-area .bottom-footer {
        padding-bottom: 56px;
        padding-bottom: calc(56px + env(safe-area-inset-bottom));
    }
}

/* ============================================================
   Features grid → 3D rotary carousel (all screens)
   Everything is scoped to .row.feature-3d, a class added by the JS,
   which also sizes the cards and mounts them on the ring.
   ============================================================ */

    /* Stage: perspective gives the ring its depth */
    .feature-section .container {
        perspective: 1100px;
    }

    /* Ring: the rotating cylinder the cards are mounted on */
    .feature-section .row.feature-3d {
        position: relative;
        display: block;
        margin: 0;
        transform-style: preserve-3d;
        transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    }

    /* Cards: absolutely stacked at centre, each rotated onto the ring by JS.
       WOW.js is neutralised so every card (front, side, back) stays rendered. */
    .feature-section .row.feature-3d > [class*="col-"] {
        position: absolute;
        top: 0;
        left: 50%;
        padding: 0;
        transform-origin: center center;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        opacity: 0.28;
        transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
        visibility: visible !important;
        animation: none !important;
    }

    /* Front-facing card: fully opaque and lifted forward */
    .feature-section .row.feature-3d > .is-front {
        opacity: 1;
    }

    .feature-section .row.feature-3d > [class*="col-"] .feature-item {
        height: 100%;
        /* Glow fades out smoothly as a card leaves the centre */
        transition: box-shadow 0.6s ease, border-color 0.6s ease;
    }

    /* Active gate: animated pulsing neon-green aura */
    .feature-section .row.feature-3d > .is-front .feature-item {
        border-color: rgba(0, 255, 102, 0.85);
        animation: featureGateGlow 2.2s ease-in-out infinite;
    }

    @keyframes featureGateGlow {
        0%, 100% {
            border-color: rgba(0, 255, 102, 0.6);
            box-shadow: 0 0 14px rgba(0, 255, 102, 0.45),
                        inset 0 0 9px rgba(0, 255, 102, 0.2);
        }
        50% {
            border-color: rgba(0, 255, 102, 1);
            box-shadow: 0 0 30px rgba(0, 255, 102, 0.85),
                        0 0 60px rgba(0, 255, 102, 0.35),
                        inset 0 0 16px rgba(0, 255, 102, 0.38);
        }
    }

@media screen and (max-width: 767px) {

    /* Avatar sits neatly on top of the (already stacked) card */
    .testimonials .feedback-slider .feedback-left {
        width: 96px;
        margin: 0 auto 6px;
    }

    .testimonials .feedback-content .feedback-thumb {
        border-radius: 50%;
        aspect-ratio: 1 / 1;
    }

    /* Long reviews scroll inside the card instead of stretching its height,
       so every slide keeps the same height */
    .testimonials .feedback-content__text {
        max-height: 190px;
        overflow-y: auto;
        padding-right: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .testimonials .feedback-content__text::-webkit-scrollbar {
        width: 4px;
    }

    .testimonials .feedback-content__text::-webkit-scrollbar-thumb {
        background-color: hsl(var(--base) / 0.5);
        border-radius: 4px;
    }

    /* Reserve a control band under the card for arrows + dots */
    .testimonials .feedback-slider {
        position: relative;
        padding-bottom: 92px;
    }

    /* Arrows: pulled out of the side gutters into a centered row below the card */
    .testimonials .feedback-slider .slick-arrow {
        top: auto !important;
        bottom: 40px !important;
        transform: none !important;
        margin: 0 !important;
    }

    .testimonials .feedback-slider .slick-prev {
        left: 50% !important;
        right: auto !important;
        margin-left: -50px !important;
    }

    .testimonials .feedback-slider .slick-next {
        left: 50% !important;
        right: auto !important;
        margin-left: 10px !important;
    }

    /* Dots: pinned centered at the very bottom of the band, clearly visible */
    .testimonials .feedback-slider .slick-dots {
        position: absolute;
        left: 0;
        bottom: 4px;
        width: 100%;
        padding-top: 0;
        margin: 0;
    }
}

/* ============================================================
   Final mobile polish
   ============================================================ */

/* "From Upload to Viral in 4 Steps": shrink the heading on phones and let the
   browser balance the two lines so "Steps" never wraps alone. */
@media screen and (max-width: 767px) {
    .how-work-section .section-heading__title {
        font-size: 24px;
        line-height: 1.3;
        text-wrap: balance;
    }

    /* Navbar back into normal flow: main.css (loaded after this file) makes
       .header absolute on <=991px, which floats it OVER the hero and hides the
       top of the mockup image behind it. body-prefixed selector outranks that
       single-class rule while staying below .header.fixed-header, so the
       scroll-triggered fixed navbar keeps working. */
    body .header {
        position: relative;
        padding: 8px 0;
    }

    .header .navbar-brand.logo {
        padding-top: 4px;
        padding-bottom: 4px;
    }
}

/* Bottom CTA ("Get Your First 3 Viral Clips for Just $1"): pure-black premium
   backdrop with a soft, subtle neon-green radial glow behind the mockups. */
.cta-section--artwork {
    background-color: #000000;
}

.cta-section--artwork .cta-artwork-bg {
    opacity: 0.5;
    filter: saturate(0.85) brightness(0.8);
}

.cta-section--artwork::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 76% 52%,
                rgba(0, 255, 102, 0.13) 0%,
                rgba(0, 255, 102, 0.04) 34%,
                transparent 62%);
    z-index: 1;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   AUTH PAGES (login / register) — DimShip dark
   Scope: everything under .account. Aligns the auth shell with the dashboard
   (near-black surfaces, hairline strokes, #00FF66 accent, glass card) and
   replaces the murky translucent inputs with crisp bordered fields.
═══════════════════════════════════════════════════════════════════════════ */

.account.banner-bg::after {
    background-color: rgba(0, 60, 25, 0.22); /* calm the green haze */
}
.account.section-shape::before {
    background-color: rgba(0, 60, 25, 0.18);
}

/* ── Card shell: dashboard glass ── */
.account .account-inner {
    background: rgba(10, 10, 10, 0.86);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
@media screen and (max-width: 424px) {
    .account .account-inner { padding: 24px; }
}

.account .account-form__title { color: #F2F5F1; }
.account .account-form__desc  { color: #93A29A; }

/* ── Form fields: crisp borders, clear hover/focus ── */
.account .form-group label,
.account .form-label {
    color: #93A29A;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.account .form--control,
.account input.form--control,
.account select.form--control,
.account select.form--select {
    background-color: rgba(24, 24, 27, 0.85) !important;  /* zinc-900 */
    border: 1px solid rgba(63, 63, 70, 0.8);              /* zinc-700/80 */
    border-radius: 10px;
    color: #F4F4F5;                                       /* zinc-100 */
    transition: border-color .18s ease, box-shadow .18s ease;
}
.account .form--control::placeholder { color: #71717A; }  /* zinc-500 */
.account .form--control:hover { border-color: rgba(113, 113, 122, 0.9); } /* zinc-500/90 */
.account .form--control:focus,
.account select.form--select:focus {
    background-color: rgba(24, 24, 27, 0.95) !important;
    border-color: #10B981;                                /* emerald-500 */
    box-shadow: 0 0 0 1px #10B981;                        /* ring-1 emerald-500 */
    color: #F4F4F5;
    outline: none;
}
/* Chrome/Safari autofill paints a light field over everything — repaint it */
.account input.form--control:-webkit-autofill,
.account input.form--control:-webkit-autofill:hover,
.account input.form--control:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #18181B inset;
    box-shadow: 0 0 0 1000px #18181B inset;
    -webkit-text-fill-color: #F4F4F5;
    caret-color: #F4F4F5;
    border: 1px solid rgba(63, 63, 70, 0.8);
    transition: background-color 9999s ease-out;
}
.account input.form--control:-webkit-autofill:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 1000px #18181B inset, 0 0 0 1px #10B981;
}
.account .password-show-hide { color: #71717A; }
.account .form--check .form-check-input {
    background-color: rgba(24, 24, 27, 0.85);
    border: 1px solid rgba(63, 63, 70, 0.8);
}
.account .form--check .form-check-input:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 1px #10B981;
}
.account .form--check .form-check-input:checked {
    background-color: #10B981;
    border-color: #10B981;
}
.account .form--check .form-check-label,
.account .have-account__text { color: #93A29A; }
.account .forgot-password__link,
.account .have-account__link { color: #00FF66; }
.account .btn--base {
    box-shadow: 0 6px 24px rgba(0, 255, 102, 0.25);
}
.account .exists-error a { color: #00FF66; }
.account .social-link-wrapper .text { color: #5C6862; }

/* ═════════════════════════════════════════════════════════════════════
   Left panel — "live render" console (signature element)
   A miniature of the product itself: a 9:16 ad frame with burned
   word-highlight subtitles, the real pipeline stages, a render bar.
═════════════════════════════════════════════════════════════════════ */
.ds-authcon {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* image top sits level with the heading */
    gap: 18px;
    padding: 0 34px 0 6px;
}

.ds-authcon__eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #93A29A;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.ds-authcon__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #00FF66;
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.9);
    animation: ds-authcon-pulse 2.2s ease-in-out infinite;
}

/* Product shot replacing the CSS console */
.ds-authcon__shot {
    width: 100%;
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55),
                0 0 44px rgba(0, 255, 102, 0.08);
}

/* The frame: dark gradient stand-in for a video still + scanlines */
.ds-authcon__frame {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    background:
        repeating-linear-gradient(0deg,
            rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 4px),
        radial-gradient(circle at 22% 18%,
            rgba(0, 255, 102, 0.16) 0%, transparent 46%),
        linear-gradient(134deg, #07120B 0%, #041B10 46%, #050505 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 22px;
}
.ds-authcon__badge {
    position: absolute;
    top: 12px; left: 12px;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.45);
    color: #93A29A;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Burned-in word-by-word subtitle, one word carrying the highlight —
   exactly what the pipeline outputs. */
.ds-authcon__sub {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 7px;
    max-width: 86%;
}
.ds-authcon__word {
    color: #FFFFFF;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
.ds-authcon__word--hl {
    color: #031A0D;
    background: #00FF66;
    padding: 0 8px;
    border-radius: 7px;
    box-shadow: 0 0 22px rgba(0, 255, 102, 0.45);
    animation: ds-authcon-hl 3.4s ease-in-out infinite;
}

/* Pipeline stages — the real ones */
.ds-authcon__stages {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.ds-authcon__stages li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #93A29A;
    font-size: 13.5px;
}
.ds-authcon__stages li em {
    margin-left: auto;
    font-style: normal;
    color: #00FF66;
    font-size: 12px;
    font-weight: 700;
}
.ds-authcon__stages li i {
    flex: 0 0 auto;
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
}
.ds-authcon__stages li.is-done i {
    border-color: rgba(0, 255, 102, 0.55);
    background: rgba(0, 255, 102, 0.1);
}
.ds-authcon__stages li.is-done i::before {
    content: "";
    position: absolute;
    left: 5px; top: 3.5px;
    width: 6px; height: 9px;
    border: solid #00FF66;
    border-width: 0 2px 2px 0;
    transform: rotate(42deg);
}
.ds-authcon__stages li.is-live { color: #F2F5F1; }
.ds-authcon__stages li.is-live i {
    border-color: rgba(0, 255, 102, 0.25);
    border-top-color: #00FF66;
    animation: ds-authcon-spin 0.9s linear infinite;
}

/* Render bar */
.ds-authcon__bar {
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}
.ds-authcon__bar span {
    display: block;
    width: 84%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #059669, #00FF66);
    position: relative;
    overflow: hidden;
}
.ds-authcon__bar span::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent,
                rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-100%);
    animation: ds-authcon-sweep 2.6s ease-in-out infinite;
}

/* Output chips */
.ds-authcon__clips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ds-authcon__clip {
    padding: 5px 11px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #93A29A;
    font-size: 11.5px;
    font-weight: 600;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

@keyframes ds-authcon-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.35; }
}
@keyframes ds-authcon-hl {
    0%, 100% { box-shadow: 0 0 22px rgba(0, 255, 102, 0.45); }
    50%      { box-shadow: 0 0 34px rgba(0, 255, 102, 0.75); }
}
@keyframes ds-authcon-spin {
    to { transform: rotate(360deg); }
}
@keyframes ds-authcon-sweep {
    0%       { transform: translateX(-100%); }
    55%, 100% { transform: translateX(100%); }
}
@media (prefers-reduced-motion: reduce) {
    .ds-authcon__dot,
    .ds-authcon__word--hl,
    .ds-authcon__stages li.is-live i,
    .ds-authcon__bar span::after { animation: none; }
}
