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

:root {
    --primary-bg: #030508;
    --secondary-bg: #0a0d14;
    --accent-blue: #0070f3;
    --accent-gold: #c5a059;
    --accent-glow: rgba(0, 112, 243, 0.4);
    --text-main: #ffffff;
    --text-muted: #8899a6;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-font {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass:hover {
    border-color: rgba(0, 112, 243, 0.3);
    box-shadow: 0 8px 40px 0 rgba(0, 112, 243, 0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-blue);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(0, 112, 243, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(0, 112, 243, 0.6);
}

.btn-outline {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: black;
    transform: translateY(-3px);
}

/* Section Spacing */
section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #666666 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Specifics */
.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, #0070f3, #c5a059);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

/* Responsive Overrides */
@media (max-width: 1024px) {
    .container {
        padding: 0 6%;
    }
    
    section {
        padding: 80px 0;
    }

    .grid-mobile-1 {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.8rem 1rem !important;
    }
    
    nav ul, nav .btn {
        display: none !important;
    }

    .hero-content {
        text-align: center;
        padding-top: 40px;
    }

    .hero-title {
        font-size: 2.8rem !important;
    }

    .btn {
        width: 100%;
        padding: 1rem;
    }

    .hero-image {
        height: 350px !important;
    }

    .section-title {
        margin-bottom: 2.5rem;
    }
}
