.ai-button-squish {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: transparent;
    border: 0px solid transparent;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.ai-button-squish::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 4px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    transition: background 1s cubic-bezier(0.2, 2, 0.5, 0.25);
}

.ai-button-squish:hover::after {
    background: rgba(255, 255, 255, 0.85);
}

.ai-button-squish .aura::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(180deg, #9ed2ff 0%, #b69cff 30%, #ff739a 60%, #ffb347 90%);
    background-size: 100% 175%;
    background-position: 0% 0%;
    transition: background-position 1s cubic-bezier(0.1, 0.25, 0.25, 1);
    animation: rotate 30s linear infinite reverse;
}

.ai-button-squish:hover .aura::before {
    background-position: 0% 100%;
}

.ai-button-squish svg {
    width: 70%;
    height: 70%;
    z-index: 1;
    position: relative;
    fill: #1b053a;
}

.ai-button-squish:hover svg {
    animation: squish 0.8s cubic-bezier(0.45, 1.6, 0.35, 1) both;
}

.ai-button-squish .label {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    bottom: calc(-3.5em + 4px);
    font-size: 0.9em;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    color: #dccdff;
    background-color: #1b053a;
    padding: 0.5em 0.8em;
    border-radius: 0.4em;
    opacity: 0;
    transform-origin: center top;
    transform: rotate(-15deg) scale(0.8);
    transition: transform 0.4s cubic-bezier(0.25, 2, 0.55, 1), opacity 0.2s cubic-bezier(0.35, 2, 0.55, 1);
}

.ai-button-squish:hover .label {
    transform: rotate(0deg) scale(1);
    opacity: 1;
}

.ai-button-squish .label::before {
    content: "";
    position: absolute;
    background-color: #1b053a;
    width: 1em;
    height: 1em;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}


@keyframes rotate {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

@keyframes squish {
    0% {
        transform: scale(1, 1) rotate(0deg);
    }

    35% {
        transform: scale(1.25, 0.75) rotate(0deg);
    }

    65% {
        transform: scale(0.75, 1.25) rotate(90deg);
    }

    100% {
        transform: scale(1, 1) rotate(90deg);
    }
}