/* Plan comparison — solid columns + icons above (do not edit via style.css)
 *
 * REMEMBERED palette (approved gold PLUS, white text on BASIC/PLUS/PRO):
 *   FREE #fff / BASIC #198754 / PLUS #f0b429 / PRO #ff6b35
 *   See .cursor/rules/pricing-plan-compare-palette.mdc
 *
 * Current trial: BASIC #dbffdb / PLUS #ffc107 / dark-grey text + checks.
 */
.le-plan-compare-shell {
    margin: 0.35rem auto 0;
    max-width: 100%;
}

.le-plan-compare-wrap {
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    margin: 0 auto !important;
    padding: 3.25rem 0.35rem 0.55rem !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    scrollbar-width: thin;
    position: relative !important;
}

/* Mobile: ← finger → glued to table top (not billing toggle) */
.le-plan-compare-scroll-hint {
    display: none;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.45rem;
    margin: 0 auto 0.2rem;
    padding: 0.4rem 0.7rem;
    max-width: 36rem;
    text-align: center;
    font-size: 0.86rem;
    font-weight: 700;
    color: #4b5563;
    letter-spacing: 0.01em;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    user-select: none;
}
.le-scroll-hint-arrow {
    font-size: 1.1rem;
    font-weight: 900;
    color: #111827;
    line-height: 1;
}
.le-scroll-hint-finger {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
    animation: le-scroll-finger-nudge 1.4s ease-in-out infinite;
}
.le-scroll-hint-text {
    font-size: 0.84rem;
    font-weight: 700;
    color: #374151;
}
.le-plan-compare-scroll-hint.is-manual .le-scroll-hint-finger {
    animation: none;
}
.le-plan-compare-scroll-hint.is-manual {
    opacity: 0.72;
}
@keyframes le-scroll-finger-nudge {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}
@media (max-width: 991.98px) {
    .billing-toggle {
        margin-bottom: 1.85rem !important;
    }
    .le-plan-compare-shell {
        margin-top: 0.15rem;
        position: relative;
    }
    .le-plan-compare-scroll-hint {
        display: flex;
        margin: 0 auto 0.12rem;
        position: relative;
        z-index: 5;
    }
    /* Clip Y; no side padding (padding caused left color bleed) */
    .le-plan-compare-wrap {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        margin-top: 0 !important;
        padding-top: 0.85rem !important;
        padding-bottom: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        background: #fff !important;
        border-radius: 14px !important;
        border: 1px solid #e5e7eb !important;
        isolation: isolate;
    }
    /* Badges above icons; still under sticky feature column (z 40+) when sliding */
    .le-plan-compare .le-most-popular,
    .le-plan-compare .le-top-tier,
    .le-plan-compare .le-plan-badge {
        z-index: 10 !important;
    }
    /* Sticky feature column = opaque shield */
    .le-plan-compare th.le-feat,
    .le-plan-compare td.le-feat {
        position: sticky !important;
        left: 0 !important;
        z-index: 40 !important;
        background: #fff !important;
        /* solid shadows seal left edge + 12px column gap so plan colors never peek */
        box-shadow:
            -8px 0 0 0 #fff,
            14px 0 0 0 #fff,
            16px 0 10px -6px rgba(15, 23, 42, 0.14) !important;
    }
    .le-plan-compare thead th.le-feat {
        z-index: 42 !important;
        background: #fff !important;
        /* also seal upward over MOST POPULAR / TOP TIER */
        box-shadow:
            -8px 0 0 0 #fff,
            14px 0 0 0 #fff,
            0 -22px 0 0 #fff,
            14px -22px 0 0 #fff,
            -8px -22px 0 0 #fff,
            16px 0 10px -6px rgba(15, 23, 42, 0.14) !important;
    }
    .le-plan-compare tfoot td.le-feat {
        z-index: 42 !important;
        background: #fff !important;
        /* seal downward over upgrade / trial buttons */
        box-shadow:
            -8px 0 0 0 #fff,
            14px 0 0 0 #fff,
            0 28px 0 0 #fff,
            14px 28px 0 0 #fff,
            -8px 28px 0 0 #fff,
            16px 0 10px -6px rgba(15, 23, 42, 0.14) !important;
    }
    .le-plan-compare tr.le-sep td.le-feat {
        z-index: 41 !important;
        background: #f3f4f6 !important;
        box-shadow:
            -8px 0 0 0 #f3f4f6,
            14px 0 0 0 #f3f4f6,
            16px 0 10px -6px rgba(15, 23, 42, 0.14) !important;
    }
    /* Plan CTA buttons must not paint above sticky feat */
    .le-plan-compare tfoot td {
        z-index: 1 !important;
    }
    .le-plan-compare tfoot .btn {
        z-index: 1 !important;
    }
    .le-plan-compare .le-plan-icon {
        margin-bottom: -2.15rem !important;
        z-index: 2 !important;
    }
    .le-plan-compare .le-plan-icon.le-plan-icon-pro {
        margin-bottom: -2.25rem !important;
    }
    .le-plan-compare .le-plan-price-card {
        padding-top: 2.45rem !important;
    }
}

.le-plan-compare {
    width: 100% !important;
    min-width: 960px !important;
    border-collapse: separate !important;
    border-spacing: 12px 0 !important; /* gap so column borders don’t overlap */
    table-layout: fixed !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.le-plan-compare th.le-feat,
.le-plan-compare td.le-feat {
    width: 22% !important;
    background: #fff !important;
}

.le-plan-compare thead th.le-col-free,
.le-plan-compare thead th.le-col-basic,
.le-plan-compare thead th.le-col-plus,
.le-plan-compare thead th.le-col-pro,
.le-plan-compare tbody td.le-col-free,
.le-plan-compare tbody td.le-col-basic,
.le-plan-compare tbody td.le-col-plus,
.le-plan-compare tbody td.le-col-pro,
.le-plan-compare tfoot td.le-col-free,
.le-plan-compare tfoot td.le-col-basic,
.le-plan-compare tfoot td.le-col-plus,
.le-plan-compare tfoot td.le-col-pro {
    width: 19.5% !important;
}

/* Full-column solid fills (old card look) */
.le-plan-compare th.le-col-free,
.le-plan-compare td.le-col-free {
    background: #ffffff !important;
    color: #4b5563 !important;
}

/* Pricing_reg: FREE = light grey (readable grid). Must beat white FREE above. */
.le-plan-compare-wrap.le-plan-compare-reg th.le-col-free,
.le-plan-compare-wrap.le-plan-compare-reg td.le-col-free {
    background: #f3f4f6 !important;
    color: #4b5563 !important;
}
.le-plan-compare th.le-col-basic,
.le-plan-compare td.le-col-basic {
    background: #dbffdb !important;
    color: #4b5563 !important;
}
.le-plan-compare th.le-col-plus,
.le-plan-compare td.le-col-plus {
    background: #ffc107 !important;
    color: #4b5563 !important;
}
.le-plan-compare th.le-col-pro,
.le-plan-compare td.le-col-pro {
    background: #ff6b35 !important;
    color: #4b5563 !important;
}

.le-plan-compare thead th {
    vertical-align: top !important;
    padding: 0.25rem 0.55rem 1rem !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    overflow: visible !important;
}

/* Keep PLUS badge off the flow so icons stay level */
.le-plan-compare thead th.le-col-plus {
    padding-top: 0.25rem !important;
}

.le-plan-compare thead th.le-feat {
    background: #fff !important;
    vertical-align: bottom !important;
}

.le-plan-compare thead .le-plan-head {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative !important;
}

/* Icons ABOVE solid color — white ring so they do not blend */
.le-plan-compare .le-plan-icon {
    width: 140px !important;
    height: 140px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    margin: 0 auto -3.4rem !important;
    display: block !important;
    position: relative !important;
    z-index: 4 !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18) !important;
    background: #fff !important;
    border: 5px solid #fff !important;
}

.le-plan-compare .le-plan-icon.le-plan-icon-pro {
    border-radius: 0 !important;
    object-fit: contain !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
    width: 152px !important;
    height: 152px !important;
    margin-bottom: -3.65rem !important;
}

.le-plan-compare .le-plan-price-card {
    width: 100% !important;
    padding: 3.85rem 0.5rem 0.85rem !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.le-plan-compare .le-plan-price {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-end !important;
    gap: 0.12rem !important;
    margin: 0 auto !important;
    line-height: 1 !important;
    font-size: inherit !important;
    font-weight: inherit !important;
}

.le-plan-compare .le-plan-price .le-currency {
    align-self: flex-start !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-top: 0.45rem !important;
}

.le-plan-compare .le-plan-price .le-plan-amount,
.le-plan-compare .le-plan-price .display-4 {
    align-self: flex-start !important;
    font-size: 56px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    margin: 0 !important;
}

.le-plan-compare .le-plan-price .term {
    align-self: flex-end !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    padding-bottom: 0.45rem !important;
    white-space: nowrap !important;
}

.le-plan-compare .le-plan-name {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin: 0.45rem 0 0 !important;
    text-align: center !important;
    text-transform: none !important;
    line-height: 1.2 !important;
}

.le-plan-compare .le-plan-tag {
    font-size: inherit !important;
    font-weight: 700 !important;
    text-transform: none !important;
}

.le-plan-compare .le-col-free .le-plan-price,
.le-plan-compare .le-col-free .le-plan-name,
.le-plan-compare .le-col-free .le-currency,
.le-plan-compare .le-col-basic .le-plan-price,
.le-plan-compare .le-col-basic .le-plan-name,
.le-plan-compare .le-col-basic .le-plan-tag,
.le-plan-compare .le-col-basic .term,
.le-plan-compare .le-col-basic .le-currency,
.le-plan-compare .le-col-basic .plan-savings,
.le-plan-compare .le-col-plus .le-plan-price,
.le-plan-compare .le-col-plus .le-plan-name,
.le-plan-compare .le-col-plus .le-plan-tag,
.le-plan-compare .le-col-plus .term,
.le-plan-compare .le-col-plus .le-currency,
.le-plan-compare .le-col-plus .plan-savings,
.le-plan-compare .le-col-pro .le-plan-price,
.le-plan-compare .le-col-pro .le-plan-name,
.le-plan-compare .le-col-pro .le-plan-tag,
.le-plan-compare .le-col-pro .term,
.le-plan-compare .le-col-pro .le-currency,
.le-plan-compare .le-col-pro .plan-savings {
    color: #374151 !important;
}

.le-plan-compare .le-col-free .le-cell-text,
.le-plan-compare .le-col-basic .le-cell-text,
.le-plan-compare .le-col-plus .le-cell-text,
.le-plan-compare .le-col-pro .le-cell-text {
    color: #374151 !important;
    font-weight: 650 !important;
}

/* Darker grey check circles (readable, not pure black) */
.le-plan-compare .le-col-free .le-check,
.le-plan-compare .le-col-basic .le-check,
.le-plan-compare .le-col-plus .le-check,
.le-plan-compare .le-col-pro .le-check {
    background: #374151 !important;
    color: #fff !important;
}
.le-plan-compare .le-col-free .le-cross,
.le-plan-compare .le-col-basic .le-cross,
.le-plan-compare .le-col-plus .le-cross,
.le-plan-compare .le-col-pro .le-cross {
    color: rgba(55, 65, 81, 0.55) !important;
}

/* Diagonal strike (top-left → bottom-right) on promo list prices */
.le-plan-price.le-price-diag-strike {
    position: relative !important;
    display: inline-block !important;
}
.le-plan-price.le-price-diag-strike::after {
    content: "" !important;
    position: absolute !important;
    left: 16% !important;
    top: 50% !important;
    width: 68% !important;
    height: 2.5px !important;
    background: #111827 !important;
    border-radius: 2px !important;
    transform: rotate(-26deg) !important;
    transform-origin: center !important;
    pointer-events: none !important;
    z-index: 2 !important;
}

/* White round promo note under struck price (clickable → same as plan CTA) */
.le-promo-pill {
    display: inline-block !important;
    margin-top: 8px !important;
    padding: 0.35rem 0.85rem !important;
    border-radius: 9999px !important;
    background: #fff !important;
    color: #111827 !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    line-height: 1.25 !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12) !important;
    max-width: 100% !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    border: none !important;
    cursor: pointer !important;
    text-align: center !important;
    font-family: inherit !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}
button.le-promo-pill:hover,
button.le-promo-pill:focus-visible {
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2) !important;
    transform: translateY(-1px);
    outline: none !important;
}
button.le-promo-pill:active {
    transform: translateY(0);
}
.le-promo-pill.d-none {
    display: none !important;
}
.le-promo-limited {
    margin-top: 0.35rem !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    color: rgba(255, 255, 255, 0.95) !important;
    text-align: center !important;
    line-height: 1.2 !important;
}

/* Top-of-table CTA row (first row in tbody — easy parent access) */
.le-plan-compare tr.le-plan-cta-top td {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    vertical-align: middle !important;
}
.le-plan-compare tr.le-plan-cta-top .btn {
    position: relative !important;
    z-index: 1 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    white-space: normal !important;
    line-height: 1.3 !important;
    padding: 0.65rem 0.75rem !important;
    min-height: 2.85rem !important;
}

/* PLUS highlight */
.le-plan-compare thead th.le-col-plus {
    border: 3px solid #e0a800 !important;
    border-bottom: none !important;
    border-radius: 16px 16px 0 0 !important;
    position: relative !important;
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.4) !important;
}
.le-plan-compare tbody td.le-col-plus {
    border-left: 3px solid #e0a800 !important;
    border-right: 3px solid #e0a800 !important;
}
.le-plan-compare tfoot td.le-col-plus {
    border: 3px solid #e0a800 !important;
    border-top: none !important;
    border-radius: 0 0 16px 16px !important;
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.4) !important;
}

/* FREE — rounded ends so gaps look like separate cards */
.le-plan-compare thead th.le-col-free {
    border-radius: 16px 16px 0 0 !important;
}
.le-plan-compare tfoot td.le-col-free {
    border-radius: 0 0 16px 16px !important;
}

/* BASIC — rounded top/bottom only (no outer brand border) */
.le-plan-compare thead th.le-col-basic {
    border: none !important;
    border-radius: 16px 16px 0 0 !important;
    position: relative !important;
    box-shadow: none !important;
}
.le-plan-compare tbody td.le-col-basic {
    border-left: none !important;
    border-right: none !important;
}
.le-plan-compare tfoot td.le-col-basic {
    border: none !important;
    border-radius: 0 0 16px 16px !important;
    box-shadow: none !important;
}

/* PRO — same rounded column frame as PLUS (was sharp) */
.le-plan-compare thead th.le-col-pro {
    border: 3px solid #e85d04 !important;
    border-bottom: none !important;
    border-radius: 16px 16px 0 0 !important;
    position: relative !important;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.38) !important;
}
.le-plan-compare tbody td.le-col-pro {
    border-left: 3px solid #e85d04 !important;
    border-right: 3px solid #e85d04 !important;
}
.le-plan-compare tfoot td.le-col-pro {
    border: 3px solid #e85d04 !important;
    border-top: none !important;
    border-radius: 0 0 16px 16px !important;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.38) !important;
}

.le-most-popular {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10 !important;
    margin: 0 !important;
    pointer-events: none !important;
}

.le-top-tier {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10 !important;
    margin: 0 !important;
    pointer-events: none !important;
    display: inline-block !important;
    background: #111827 !important;
    color: #ff6b35 !important;
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    padding: 0.4rem 0.85rem !important;
    border-radius: 9999px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18) !important;
}

.le-plan-compare thead th.le-col-pro {
    position: relative !important;
}

/* Advice glow: OUTER frame only — no black row dividers (tbody sides only) */
@keyframes le-advice-inset-grow {
    0%, 100% {
        box-shadow: inset 0 3px 0 0 #111827, inset 3px 0 0 0 #111827, inset -3px 0 0 0 #111827;
    }
    50% {
        box-shadow: inset 0 7px 0 0 #111827, inset 7px 0 0 0 #111827, inset -7px 0 0 0 #111827;
    }
}
@keyframes le-advice-inset-grow-foot {
    0%, 100% {
        box-shadow: inset 0 -3px 0 0 #111827, inset 3px 0 0 0 #111827, inset -3px 0 0 0 #111827;
    }
    50% {
        box-shadow: inset 0 -7px 0 0 #111827, inset 7px 0 0 0 #111827, inset -7px 0 0 0 #111827;
    }
}
.le-plan-compare thead th.le-col-plus.le-advice-glow,
.le-plan-compare thead th.le-col-pro.le-advice-glow {
    border: 5px solid #111827 !important;
    border-bottom: none !important;
    outline: none !important;
    animation: le-advice-inset-grow 2.8s ease-in-out infinite;
}
.le-plan-compare tbody td.le-col-plus.le-advice-glow,
.le-plan-compare tbody td.le-col-pro.le-advice-glow {
    /* sides only — keep soft row lines, never black cell boxes */
    border-left: 5px solid #111827 !important;
    border-right: 5px solid #111827 !important;
    border-top: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    outline: none !important;
    box-shadow: none !important;
    animation: none !important;
}
.le-plan-compare tfoot td.le-col-plus.le-advice-glow,
.le-plan-compare tfoot td.le-col-pro.le-advice-glow {
    border: 5px solid #111827 !important;
    border-top: none !important;
    outline: none !important;
    animation: le-advice-inset-grow-foot 2.8s ease-in-out infinite;
}
.le-plan-compare tr.le-sep td.le-col-plus.le-advice-glow,
.le-plan-compare tr.le-sep td.le-col-pro.le-advice-glow {
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-left: 5px solid #111827 !important;
    border-right: 5px solid #111827 !important;
    outline: none !important;
    box-shadow: none !important;
    animation: none !important;
}

.le-plan-compare tr.le-sep td.le-col-basic {
    background: #dbffdb !important;
}
.le-plan-compare tr.le-sep td.le-col-plus {
    background: #ffc107 !important;
}
.le-plan-compare tr.le-sep td.le-col-pro {
    background: #ff6b35 !important;
}
.le-plan-compare tr.le-sep td.le-col-free {
    background: #fff !important;
}
.le-plan-compare-wrap.le-plan-compare-reg tr.le-sep td.le-col-free {
    background: #f3f4f6 !important;
}
.le-plan-compare tr.le-sep td.le-feat {
    background: #f3f4f6 !important;
}

.le-plan-compare tfoot td.le-feat {
    background: #fff !important;
    z-index: 22;
}

.le-plan-compare tfoot td {
    position: relative !important;
    z-index: 1 !important;
}

.le-plan-compare tfoot .btn {
    position: relative !important;
    z-index: 1 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Active plan: black pill, white label — stays clear on coloured columns */
.le-plan-compare .btn.le-plan-cta-current,
.le-plan-compare .btn.le-plan-cta-current:disabled,
.le-plan-compare .btn.le-plan-cta-current.disabled {
    background: #111827 !important;
    border-color: #111827 !important;
    color: #fff !important;
    opacity: 1 !important;
    font-weight: 700 !important;
    cursor: default !important;
    box-shadow: none !important;
}

.le-plan-compare .btn.le-plan-cta-current:hover,
.le-plan-compare .btn.le-plan-cta-current:focus,
.le-plan-compare .btn.le-plan-cta-current:active {
    background: #111827 !important;
    border-color: #111827 !important;
    color: #fff !important;
}

/* Positive light-green check on current-plan pill */
.le-plan-compare .btn.le-plan-cta-current .le-plan-current-inner {
    gap: 0.45rem;
}
.le-plan-compare .btn.le-plan-cta-current .le-plan-current-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}
.le-plan-compare .btn.le-plan-cta-current .le-plan-current-check svg {
    width: 0.72rem;
    height: 0.72rem;
    display: block;
}

@media (max-width: 991.98px) {
    .le-plan-compare .le-plan-icon {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: -2.5rem !important;
    }
    .le-plan-compare .le-plan-icon.le-plan-icon-pro {
        width: 112px !important;
        height: 112px !important;
        margin-bottom: -2.7rem !important;
    }
    .le-plan-compare .le-plan-price-card {
        padding-top: 2.9rem !important;
    }
    .le-plan-compare .le-plan-price .le-plan-amount,
    .le-plan-compare .le-plan-price .display-4 {
        font-size: 42px !important;
    }
    .le-plan-compare .le-plan-price .le-currency {
        font-size: 1.05rem !important;
        margin-top: 0.3rem !important;
    }
    .le-plan-compare .le-plan-price .term {
        font-size: 0.95rem !important;
        padding-bottom: 0.3rem !important;
    }
    .le-plan-compare .le-plan-name {
        font-size: 1.15rem !important;
    }
}

/* Golden plan-compare footer CTA (account modal + Pricing BASIC panel) */
.le-upgrade-footer-btn {
  border-radius: 25px !important;
  font-weight: 700 !important;
  font-size: 0.98rem !important;
  line-height: 1.35 !important;
  min-height: calc(40px + 1.3rem);
}
.le-upgrade-footer-btn--gold {
  position: relative;
  overflow: hidden;
  color: #5c2f00 !important;
  background: linear-gradient(135deg, #fff6c8 0%, #ffd54f 28%, #ffb300 55%, #ffe082 78%, #fff8e1 100%) !important;
  background-size: 220% 220% !important;
  animation: leUpgradeGoldShift 5.5s ease-in-out infinite;
  border: 2px solid #e0a800 !important;
  box-shadow:
    0 4px 14px rgba(255, 179, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
  text-decoration: none !important;
  padding: 0.7rem 1rem !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.le-upgrade-footer-btn--gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.55) 45%, transparent 100%);
  transform: skewX(-18deg);
  animation: leUpgradeGoldShine 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.le-upgrade-footer-btn--gold:hover {
  color: #4a2400 !important;
  filter: brightness(1.04);
  box-shadow:
    0 6px 18px rgba(255, 167, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}
.le-upgrade-footer-btn-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
}
.le-upgrade-footer-btn-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.le-upgrade-footer-tier-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 8px rgba(92, 47, 0, 0.22);
  background: #fff;
}
.le-upgrade-footer-vs {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #8a5a00;
  text-transform: lowercase;
  opacity: 0.9;
}
.le-upgrade-footer-btn-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  text-align: center;
}
.le-upgrade-footer-btn-prompt {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  color: #5c2f00;
}
.le-upgrade-footer-btn-sub {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  color: #7a4a00;
  opacity: 0.95;
}
@keyframes leUpgradeGoldShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes leUpgradeGoldShine {
  0% { left: -120%; }
  35% { left: 130%; }
  100% { left: 130%; }
}
