.cta {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.cta a {
    width: 100%;
    height: fit-content;
    max-width: 350px;
    overflow: hidden;
}


/* orbit holders = continuous rotation */
.ring {
    position: absolute;
    inset: 0;
    will-change: transform;
}

.r1 {
    animation: orbit 12s linear infinite;
    -webkit-animation: orbit 12s linear infinite;
}

.r2 {
    animation: orbit 14s linear infinite reverse;
    -webkit-animation: orbit 14s linear infinite reverse;
}

.r3 {
    animation: orbit 16s linear infinite;
    -webkit-animation: orbit 16s linear infinite;
}

/* blobs */
.circle {
    position: absolute;
    border-radius: 50%;
    background: #ffffff3a;
    will-change: transform;
    filter:blur(10px);
    -webkit-filter:blur(10px);
}

.c1 {
    width: 120px;
    height: 120px;
    top: 0;
    left: 0;
    background-color: #f2f2f244;
    transform: translate(-55%, -55%);
    -webkit-transform: translate(-55%, -55%);
    -moz-transform: translate(-55%, -55%);
    -ms-transform: translate(-55%, -55%);
    -o-transform: translate(-55%, -55%);
}

.c2 {
    width: 220px;
    height: 220px;
    right: 0;
    bottom: 0;
    background-color: #17171749;
    transform: translate(70%, 55%);
    -webkit-transform: translate(70%, 55%);
    -moz-transform: translate(70%, 55%);
    -ms-transform: translate(70%, 55%);
    -o-transform: translate(70%, 55%);
}

.c3 {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    background-color: #ffffff50;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

/* radial placement within each ring (distance from center) */
.r1 .c1 {
    transform: translate(-55%, -55%) translate(22%, 18%)
}

.r2 .c2 {
    transform: translate(55%, 55%) translate(-24%, -16%)
}

.r3 .c3 {
    transform: translate(-50%, -50%) translate(15%, -12%)
}

/* subtle continuous scale to keep 1:1 ratio */
.r1 {
    --s: 1.1
}

.r2 {
    --s: 1.08
}

.r3 {
    --s: 1.06
}

.ring {
    animation-name: orbit, breathe
}

@keyframes orbit {
    to {
        transform: rotate(360deg)
    }
}

@keyframes breathe {
    0% {
        transform: rotate(0deg) scale(1)
    }

    50% {
        transform: rotate(180deg) scale(var(--s))
    }

    100% {
        transform: rotate(360deg) scale(1)
    }
}

/* Performance */
.cta,
.ring,
.circle {
    backface-visibility: hidden;
    transform-style: preserve-3d
}

/* optional: even faster */
.cta.fast .r1 {
    animation-duration: 3s
}

.cta.fast .r2 {
    animation-duration: 3.8s
}

.cta.fast .r3 {
    animation-duration: 4.5s
}

/* drop into your existing .circle1 / .circle2 */
@keyframes spinMoveTL {
    to {
        transform: translate(-55%, -55%) rotate(360deg) scale(1)
    }
}

@keyframes spinMoveBR {
    to {
        transform: translate(55%, 55%) rotate(360deg) scale(1)
    }
}

.cta a .circle1 {
    animation: spinMoveTL 4s linear infinite
}

.cta a .circle2 {
    animation: spinMoveBR 5s linear infinite reverse
}

.cta a.primary {

    background: linear-gradient(88.65deg, #E4E4E4 -0.16%, #9B9B9B 22%, #E8E8E8 57.85%, #C5C5C5 76.24%, #7E7E7E 97.94%);
    box-shadow: 0px 0px 20.7px rgba(255, 255, 255, 0.72);


    text-align: center;
    color: #171717;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    text-decoration: none;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: 0px 2px 12.1px rgba(0, 255, 179, 0);
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.cta a.primary:hover {
    box-shadow: 0px 2px 12.1px rgba(0, 255, 200, 0.822);
    transform: translateY(-6px);
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    -o-transform: translateY(-6px);
}

.cta a.primary svg {
    width: 40px;
    height: auto;
}

.cta a.primary p {
    width: fit-content;
    height: fit-content;
    font-size: 20px;
    font-weight: 600;
    font-family: "Inter";
}

.cta a.secondary {
    background: #22222200;
    text-align: center;
    color: #fefefe;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    text-decoration: none;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin-top: 6px;
}

.cta a.secondary:hover {
    background: #222222;
}

.cta a.secondary:hover svg path {
    fill: #00C8FF;
}

.cta a.secondary svg {
    width: 30px;
    height: auto;
}

.cta a.secondary .right {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta a.secondary .right .primary {
    font-size: 17px;
    font-weight: 600;
}

.cta a.secondary .right .secondary {
    font-size: 15px;
    font-weight: 400;
    color: #bababa;
}