:root {
    /* Updated Palette from Logo Analysis */
    --deep-navy: #051C48; /* Dark Navy from 'MySip' text */
    --tech-blue: #009EE3; /* Vibrant Cyan from 'Cloud' text */
    --mid-blue: #005BB5; /* Mid-tone Blue from Icon Gradient */
    --light-bg: #F4F9FD; /* Very light blue-grey tint */
    
    --primary-color: var(--deep-navy);
    --accent-color: var(--tech-blue);
    --accent-glow: rgba(0, 158, 227, 0.3);
    --glass-border: rgba(255, 255, 255, 0.6);
    
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    
    --shadow-soft: 0 8px 32px 0 rgba(5, 28, 72, 0.08);
}

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

body {
    font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
    background-color: var(--light-bg);
    background-image: 
        radial-gradient(at 0% 0%, rgba(0, 158, 227, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(5, 28, 72, 0.05) 0px, transparent 50%);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Inter', sans-serif;
    color: var(--deep-navy);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

/* Utility Classes */
.bg-navy { background-color: var(--deep-navy); }
.text-navy { color: var(--deep-navy); }
.text-tech-blue { color: var(--tech-blue); }
.bg-orange { background-color: var(--accent-color); /* Remapped to Blue */ }
.text-orange { color: var(--accent-color); /* Remapped to Blue */ }

/* Buttons */
.btn-primary {
    background-color: var(--accent-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: var(--accent-glow); /* Base glow */
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: var(--mid-blue);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 158, 227, 0.5); /* Stronger blue glow on hover */
}

.btn-secondary {
    background-color: transparent;
    color: var(--deep-navy);
    font-weight: 600;
    border: 1px solid var(--deep-navy);
    border-radius: 6px;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(5, 28, 72, 0.05);
    transform: translateY(-1px);
}

/* Glassmorphism Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px; /* More rounded for modern look */
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 0 20px var(--accent-glow);
    border-color: rgba(0, 158, 227, 0.3);
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

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

/* Stagger animations if needed */
.animate-float-delay-1 { animation-delay: 1s; }
.animate-float-delay-2 { animation-delay: 2s; }

/* Image Placeholders */
.ui-placeholder {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 0.75rem;
    font-family: monospace;
    text-align: center;
    padding: 1rem;
    border: 1px dashed #a0aec0;
    position: relative;
    overflow: hidden;
}

.ui-placeholder::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.5) 50%, transparent 55%);
    background-size: 200% 200%;
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% { background-position: -100% -100%; }
    100% { background-position: 200% 200%; }
}

/* Angled Divider */
.angled-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.angled-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.angled-divider .shape-fill {
    fill: var(--light-bg); /* Match body bg */
}

/* Trust Bar Grayscale Hover */
.trust-logo {
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.trust-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    min-width: 240px;
    box-shadow: 0px 8px 32px 0px rgba(0,0,0,0.1);
    z-index: 100;
    top: 100%;
    left: 0;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.5);
    border-top: 3px solid var(--accent-color);
    transition: all 0.2s ease;
    transform: translateY(10px);
    padding: 8px 0;
}

.nav-dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-link {
    color: var(--text-primary);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.2s;
}

.dropdown-link:hover {
    background-color: rgba(0, 163, 224, 0.05);
    color: var(--deep-navy);
}

.dropdown-link small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 2px;
}

/* Lenis Recommended CSS */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}
