@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #0c0a09; /* stone-950 */
    color: #f5f5f4; /* stone-50 */
    overflow-x: hidden;
}

/* Glassmorphism */
.glass-nav {
    background: rgba(12, 10, 9, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(251, 191, 36, 0.1); /* amber-400 */
}

.glass-card {
    background: rgba(28, 25, 23, 0.6); /* stone-900 */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.4); /* amber-500 */
    box-shadow: 0 10px 30px -10px rgba(245, 158, 11, 0.2);
}

/* Text Gradients */
.text-gradient {
    background: linear-gradient(to right, #fbbf24, #f97316); /* amber-400 to orange-500 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Background effects */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(12, 10, 9, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    filter: blur(50px);
}

/* Badge */
.badge {
    background: linear-gradient(to right, rgba(245, 158, 11, 0.15), rgba(249, 115, 22, 0.15));
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

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

.animate-float-delayed {
    animation: float 6s ease-in-out 3s infinite;
}

/* Button hover */
.btn-primary {
    background: linear-gradient(to right, #d97706, #ea580c); /* amber-600 to orange-600 */
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(234, 88, 12, 0.4);
    transform: scale(1.05);
}

/* Accordion */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Hover Glow Elements */
.hover-glow {
    transition: all 0.3s ease;
}
.hover-glow:hover {
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
}
