--framer-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
--framer-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
--framer-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
--framer-duration-fast: 150ms;
--framer-duration-normal: 300ms;
--framer-duration-slow: 500ms;
.framer-btn {
background: var(--framer-purple);
color: white;
padding: 12px 24px;
border-radius: 8px;
font-weight: 600;
transition: all 0.2s ease;
border: none;
cursor: pointer;
}
.framer-btn:hover {
background: var(--framer-purple-light);
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(107, 78, 255, 0.3);
}