:root {
    --primary-bg: #FDFDFD;
    --primary-text: #172631;
    --accent: #19CEEB;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--primary-text);
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
}

.logo {
    font-size: 2rem;  /* Increased from 1.5rem */
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 3rem;
    color: var(--primary-text);
    text-transform: capitalize;
}

h1 {
    font-size: 2rem;  /* Reduced from 2.5rem */
    font-weight: 400;  /* Added this line for thinner text */
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
    color: var(--accent);
}

.animation-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    color: #333333;  /* Changed from var(--primary-text) */
    opacity: 0;
    animation: fadeIn 1s ease-in forwards 0.5s;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .logo {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

.data-flow {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flow-line {
    width: 120px;
    height: 3px;
    background: var(--accent);
    opacity: 0.2;
    position: relative;
    overflow: hidden;
}

.flow-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    opacity: 0.8;
    animation: flowData 2s ease-in-out infinite;
}

.flow-line:nth-child(2)::after {
    animation-delay: 0.4s;
}

.flow-line:nth-child(3)::after {
    animation-delay: 0.8s;
}

@keyframes flowData {
    0% { left: -100%; }
    100% { left: 100%; }
}