body {
    font-family: 'Inter', sans-serif;
}

.glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    line-height: 1.5;
    padding: 0.8125rem 0.5rem;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes drift {

    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-reveal-scale {
    animation: revealScale 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

.drift-animation {
    animation: drift 10s ease-in-out infinite;
}

.nav-transition {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Delays */
.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-500 {
    animation-delay: 500ms;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    border-radius: 24px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

body.modal-open {
    overflow: hidden;
}

/* Pricing Specific Styles */
.pricing-table-container::-webkit-scrollbar {
    height: 6px;
}

.pricing-table-container::-webkit-scrollbar-track {
    background: #0f172a;
}

.pricing-table-container::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 10px;
}
