body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    background-color: #040507;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(59, 130, 246, 0.08), transparent 24%),
        radial-gradient(circle at 84% 22%, rgba(99, 102, 241, 0.08), transparent 24%),
        radial-gradient(circle at 52% 82%, rgba(168, 85, 247, 0.07), transparent 28%);
    background-attachment: fixed;
}

.bg-grid {
    background-size: 50px 50px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
}

.glass-panel {
    background: rgba(12, 14, 22, 0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.feature-card,
.ai-card,
.price-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.ai-card::before,
.price-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 45%);
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(30px);
    opacity: 0.55;
}

.media-frame {
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.media-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.3s ease-out forwards;
}
