/* V-CORE Landing Page Styles */
:root {
    --navy: #0a192f;
    --navy-light: #112240;
    --accent: #2563eb;
}
* { box-sizing: border-box; }
body { font-family: 'Inter', system-ui, sans-serif; }

/* Hero */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a192f 0%, #112240 60%, #1d3461 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
    top: -100px; right: -100px;
    border-radius: 50%;
}
.text-gradient {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sections */
.py-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }

/* Cards hover */
.hover-lift { transition: transform .2s ease, box-shadow .2s ease; }
.hover-lift:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.12) !important; }

/* Stats */
.stat-item h2 { font-size: 2.5rem; }

/* Navbar */
.navbar { padding: .75rem 0; }
.nav-link { transition: color .2s; }
.nav-link:hover { color: #fff !important; }

/* Fix navbar padding body */
body { padding-top: 0; }
