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

.material-icons-outlined {
    font-family: 'Material Icons Outlined' !important;
}

:root {
    --brand-blue: #2563eb;
    --brand-dark: #0f172a;
    --brand-light: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--brand-dark);
    -webkit-font-smoothing: antialiased;
}

.brand-gradient-text {
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-blur {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.85);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

.code-window {
    background: #0f172a;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

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

/* Feature Icons Custom Styles */
.feature-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.icon-bg-blue {
    background: #eff6ff;
    color: #2563eb;
}

.icon-bg-purple {
    background: #f5f3ff;
    color: #7c3aed;
}

.icon-bg-green {
    background: #f0fdf4;
    color: #16a34a;
}

.icon-bg-orange {
    background: #fff7ed;
    color: #ea580c;
}

/* Dashboard Specific Layout */
.hero-content {
    max-width: 1400px;
    margin: 0 auto;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 30;
}

/* Scroll Smoothing */
html {
    scroll-behavior: smooth;
}

/* Globe Rotation Animation */
@keyframes rotate-globe {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes counter-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

.animate-rotate-globe {
    animation: rotate-globe 5s linear infinite;
}

.animate-counter-rotate {
    animation: counter-rotate 10s linear infinite;
}

.globe-tint {
    filter: sepia(1) hue-rotate(180deg) saturate(2);
}