/* Honest landing page styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #374151;
}

/* Floating animations */
.floating-circle {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Hover effects */
.hover-lift:hover {
    transform: translateY(-4px);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.problem-card:hover {
    transform: translateY(-2px);
}

.feature-card:hover .w-16 {
    animation: wiggle 0.5s ease-in-out;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    75% { transform: rotate(10deg) scale(1.1); }
}

/* Group hover effects */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

.group:hover .group-hover\:shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Button styles */
.hover\:shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover\:shadow-3xl:hover {
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
}

/* Typography */
.font-black {
    font-weight: 900;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

/* Smooth transitions */
.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo styling */
.logo {
    height: auto;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Mobile optimizations */
@media (max-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .lg\:grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lg\:text-7xl {
        font-size: 3.5rem;
        line-height: 1;
    }
    
    .lg\:text-6xl {
        font-size: 3rem;
        line-height: 1.1;
    }
}

@media (max-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Mobile typography */
    .text-6xl,
    .text-5xl {
        font-size: 2.5rem !important;
        line-height: 1.1;
    }
    
    .text-4xl {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .text-3xl {
        font-size: 1.75rem !important;
        line-height: 1.2;
    }
    
    .text-2xl {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
    
    .text-xl {
        font-size: 1.25rem !important;
        line-height: 1.4;
    }
    
    /* Mobile spacing */
    .py-20 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .px-8 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .px-12 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .py-6 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    /* Hide floating elements on mobile for performance */
    .floating-circle {
        display: none;
    }
}

@media (max-width: 640px) {
    .text-6xl {
        font-size: 2rem !important;
    }
    
    .text-5xl {
        font-size: 1.875rem !important;
    }
}

/* Performance optimizations */
.transform {
    transform: translateZ(0);
    will-change: transform;
}

/* Accessibility */
a:focus,
button:focus {
    outline: 2px solid #3B82F6;
    outline-offset: 2px;
}

/* High contrast support */
@media (prefers-contrast: high) {
    .text-gray-600 {
        color: #374151 !important;
    }
    
    .text-gray-700 {
        color: #1F2937 !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .floating-circle,
    .animate-gradient,
    .animate-pulse {
        animation: none !important;
    }
    
    .transition-all,
    .transition-transform {
        transition: none !important;
    }
}