/* =========================================
   Vetro Go - Clean Professional Design System
   ========================================= */

/* 1. Core Variables & Config */
:root {
    /* Brand Identity - STRICT */
    --color-brand-blue: #0c49ff;
    /* Intense Electric Blue */
    --color-brand-yellow: #ffe601;
    /* Neon Canary Yellow */

    /* Clean Theme Palette */
    --color-base-bg: #FFFFFF;
    /* Pure White */
    --color-alt-bg: #F8FAFC;
    /* Slate 50 */
    --color-text-main: #0f172a;
    /* Slate 900 - Sharp Contrast */
    --color-text-muted: #64748b;
    /* Slate 500 */
    --color-border: #e2e8f0;
    /* Slate 200 */
}

/* 2. Global Resets & Typography */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-base-bg);
    color: var(--color-text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* 3. Utility Components */

/* Glassmorphism - Clean Edition */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.glass-panel:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 25px -5px rgba(0, 71, 255, 0.05), 0 10px 10px -5px rgba(0, 71, 255, 0.02);
    border-color: #fff;
}

/* Gradient Text - Professional */
.gradient-text-brand {
    background: linear-gradient(135deg, var(--color-brand-blue) 0%, #2563EB 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 4. Animations */

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Pulse (Subtle for Corporate) */
@keyframes pulse-soft {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 71, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 20px 0 rgba(0, 71, 255, 0.2);
    }
}

.animate-pulse-soft {
    animation: pulse-soft 3s infinite;
}

/* Scroll Reveal Fade Up */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Mesh - Light Version */
.hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    /* background: white; Eliminated to allow dark mode */
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: float 10s infinite;
}

.orb-1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 71, 255, 0.05) 0%, transparent 70%);
    top: -20%;
    right: -10%;
}

.orb-2 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.08) 0%, transparent 70%);
    bottom: 10%;
    left: -10%;
    animation-delay: -3s;
}

/* Premium Utilities */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.click-press {
    transition: transform 0.1s ease;
}

.click-press:active {
    transform: scale(0.96);
}

.shadow-glow-blue {
    box-shadow: 0 10px 30px -5px rgba(0, 71, 255, 0.2);
}

.shadow-glow-yellow {
    box-shadow: 0 10px 30px -5px rgba(255, 230, 0, 0.3);
}