:root {
    --primary: #bc2738;
    --primary-dark: #bc2738;
    --primary-light: #e8485b;
    --accent: #ba505c;
    --dark: #1e293b;
    --light: #64748b;
    --white: #ffffff;
    --border: #e2e8f0;
}



.splash-container {

    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    z-index: 1000;

}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 500px;
    text-align: center;
}

.logo-container {
    margin-bottom: 2.5rem;
    text-align: center;
}

.company-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    animation: subtleBounce 3s infinite ease-in-out;
}

.company-name {
    color: var(--dark);
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.25rem;
}

.tagline {
    color: var(--light);
    font-size: 1.05rem;
    font-weight: 400;
    max-width: 300px;
}

.illustration-container {
    position: relative;
    width: 280px;
    height: 180px;
    margin: 2.5rem 0;
}

.illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
}

.progress-container {
    width: 200px;
    height: 6px;
    background: var(--border);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 2rem;
    position: relative;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 6px;
    transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent);
    animation: shimmer 1.5s infinite;
}

.loading-text {
    color: var(--light);
    margin-top: 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.financial-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.element {
    position: absolute;
    opacity: 0.08;
    animation: floatElement linear infinite;
}

@keyframes subtleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes floatElement {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.8);
    }
    100% {
        transform: translateY(-100px) rotate(360deg) scale(1.2);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.fade-out {
    opacity: 0;
    transition: opacity 0.6s ease-out;
    pointer-events: none;
}

/* Main app content (hidden initially) */
#app-content {
    display: none;
}