/* ======================================
   INSPIRO CRM LANDING PAGE - STYLES
   ====================================== */

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

/* CSS Variables */
:root {
    --bg-primary: #0A1628;
    --bg-secondary: #0F1D32;
    --bg-card: rgba(15, 29, 50, 0.6);
    --fg-primary: #FFFFFF;
    --fg-secondary: #94A3B8;
    --fg-muted: #64748B;
    --accent-primary: #3B82F6;
    --accent-glow: rgba(59, 130, 246, 0.5);
    --accent-secondary: #8B5CF6;
    --accent-success: #10B981;
    --accent-warning: #F59E0B;
    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-highlight: rgba(59, 130, 246, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg-primary);
    color: var(--fg-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

code, .mono {
    font-family: 'JetBrains Mono', monospace;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-subtle);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--fg-muted);
}

/* Selection */
::selection {
    background: var(--accent-primary);
    color: var(--fg-primary);
}

/* ======================================
   UTILITY CLASSES
   ====================================== */

/* Gradient Text */
.gradient-text-blue {
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Noise Overlay */
.noise-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
}

/* Glass Effect */
.glass {
    background: rgba(15, 29, 50, 0.7);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating Navigation */
.nav-floating {
    backdrop-filter: blur(16px);
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Glow */
.hero-glow {
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.15) 0%, rgba(2, 4, 10, 0) 70%);
}

/* Badge Shine */
.badge-shine {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

/* Feature Card */
.feature-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
}

/* Spotlight Effect */
.spotlight {
    position: absolute;
    inset: -1px;
    opacity: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(59, 130, 246, 0.1), transparent 40%);
    transition: opacity 0.3s;
    pointer-events: none;
    border-radius: inherit;
}
.feature-card:hover .spotlight {
    opacity: 1;
}

/* Modal Backdrop */
.modal-backdrop {
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(8px);
}

/* Typing Cursor */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.typing-cursor {
    animation: blink 1s step-end infinite;
}

/* Pulse Glow for CTAs */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.5); }
}
.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Click Indicator */
.click-indicator {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.feature-card:hover .click-indicator {
    opacity: 1;
}

/* Image Shine */
.image-shine {
    position: relative;
    overflow: hidden;
}
.image-shine::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.05) 45%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 55%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.image-shine:hover::after {
    transform: translateX(100%);
}


/* custom css */

div#banner-hero-img .wrapper-one, div#banner-hero-img .wrapper-two {
    border: none;
    background: transparent;
    box-shadow: none !important;
}
div#banner-middle-img .relative {
    box-shadow: none !important;
    border: none;
}