:root {
    --accent: #ef4444;
    --bg: #0f172a;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: #f1f5f9;
    overflow-x: hidden;
}

.heading-font {
    font-family: 'Outfit', sans-serif;
}

.glass {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-pattern {
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 30px 30px;
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px -10px rgba(239, 68, 68, 0.3);
}

.btn-gradient {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.5);
    transform: scale(1.02);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-100 {
    transition-delay: 100ms;
}

.reveal-delay-200 {
    transition-delay: 200ms;
}

.reveal-delay-300 {
    transition-delay: 300ms;
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 3rem !important;
        line-height: 1.1;
    }

    .mobile-padding {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .section-spacing {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .mobile-gap-fix {
        gap: 1.5rem !important;
    }
}
