/* Framer CTA — orbit glow + dark inner (shared with navbar) */

.ks-framer-btn {
    --ks-framer-btn-ease: cubic-bezier(0.44, 0, 0.56, 1);
    --ks-framer-btn-dur: 0.35s;
    --ks-framer-btn-orbit-dur: 3.2s;
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: max-content;
    min-height: 36px;
    padding: 1px;
    border: none;
    border-radius: 7px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    background-color: rgb(32, 32, 32);
    box-shadow: 0 0 14px rgba(158, 100, 46, 0.12);
    font: inherit;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.ks-framer-btn--block {
    width: 100%;
}

.ks-framer-btn--block .ks-framer-btn__inner {
    justify-content: center;
    width: 100%;
}

.ks-framer-btn__orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    width: 240%;
    height: 240%;
    pointer-events: none;
    background: radial-gradient(20.7% 50% at 0% 0%, rgb(158, 100, 46) 0%, rgba(255, 255, 255, 0) 65%);
    filter: blur(8px);
    -webkit-filter: blur(8px);
    transform: translate(-50%, -50%);
    animation: ks-framer-btn-orbit var(--ks-framer-btn-orbit-dur) linear infinite;
    will-change: transform;
}

.ks-framer-btn__inner {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-flow: row;
    align-items: center;
    gap: 8px;
    padding: 10px 27px;
    border-radius: 6px;
    background-color: rgb(13, 13, 13);
    color: rgb(222, 222, 222);
}

@keyframes ks-framer-btn-orbit {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ks-framer-btn__orbit {
        animation: none;
    }
}

.ks-framer-btn__text {
    font-family: "Manrope", "Manrope Placeholder", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: rgb(222, 222, 222);
    white-space: pre;
}

.ks-framer-btn__icon-flip {
    position: relative;
    flex: none;
    width: 18px;
    height: 18px;
    overflow: hidden;
}

.ks-framer-btn__icon {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: rgb(222, 222, 222);
    transform: translate(0, 0);
    transition: transform var(--ks-framer-btn-dur) var(--ks-framer-btn-ease);
    will-change: transform;
}

.ks-framer-btn__icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.ks-framer-btn__icon--out {
    transform: translate(0, 0);
}

.ks-framer-btn__icon--in {
    transform: translate(22px, -22px);
}

.ks-framer-btn:hover,
.ks-framer-btn:focus-visible {
    --ks-framer-btn-orbit-dur: 2.4s;
    box-shadow: 0 0 24px rgba(158, 100, 46, 0.35);
}

.ks-framer-btn:hover .ks-framer-btn__icon--out,
.ks-framer-btn:focus-visible .ks-framer-btn__icon--out {
    transform: translate(22px, -22px);
}

.ks-framer-btn:hover .ks-framer-btn__icon--in,
.ks-framer-btn:focus-visible .ks-framer-btn__icon--in {
    transform: translate(0, 0);
}

.ks-framer-btn.is-loading {
    opacity: 0.72;
    pointer-events: none;
}

.ks-framer-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

.ks-landing-cta-row .ks-framer-btn--block,
.ks-landing-final-card .ks-framer-btn--block {
    width: 100%;
}

/* Hero / large CTAs */
.ks-framer-btn.ks-btn-hero {
    min-height: 52px;
}

.ks-framer-btn.ks-btn-hero .ks-framer-btn__inner {
    padding: 0.85rem 2.2rem;
}

.ks-framer-btn.ks-btn-hero .ks-framer-btn__text {
    font-size: 1.05rem;
    font-weight: 600;
}

/* Primary — brand red fill (main CTAs), no outer glow */
.ks-framer-btn--primary {
    background-color: rgb(32, 32, 32);
    box-shadow: none;
}

.ks-framer-btn--primary .ks-framer-btn__orbit {
    display: none;
}

.ks-framer-btn--primary .ks-framer-btn__inner {
    background: radial-gradient(  circle at 50% 100%,  #e11d48 0%,  #A80001 100%);
    color: #fffefa;
}

.ks-framer-btn--primary .ks-framer-btn__text,
.ks-framer-btn--primary .ks-framer-btn__icon {
    color: #fffefa;
}

.ks-framer-btn--primary:hover,
.ks-framer-btn--primary:focus-visible {
    box-shadow: none;
}

/* Secondary — outline on dark (alternate CTAs), no red glow */
.ks-framer-btn--secondary {
    background-color: rgb(38, 38, 38);
    box-shadow: none;
}

.ks-framer-btn--secondary .ks-framer-btn__orbit {
    display: none;
}

.ks-framer-btn--secondary .ks-framer-btn__inner {
    background-color: rgb(23 23 23);
    color: #fffef5;
}

.ks-framer-btn--secondary .ks-framer-btn__text,
.ks-framer-btn--secondary .ks-framer-btn__icon {
    color: #fffef5;
}

.ks-framer-btn--secondary:hover .ks-framer-btn__inner,
.ks-framer-btn--secondary:focus-visible .ks-framer-btn__inner {
    background-color: rgba(255, 255, 255, 0.06);
}

.ks-framer-btn--secondary:hover,
.ks-framer-btn--secondary:focus-visible {
    box-shadow: none;
}
