:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-color: #333333;
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.hero {
    text-align: center;
    max-width: 800px;
    width: 100%;
    animation: fadeIn 1.5s ease-out;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
    /* Optional: Add a subtle drop shadow or filter if needed, but keeping it clean for now */
}

.tagline {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.05em;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tagline .line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out forwards;
}

.tagline .line:nth-child(1) {
    animation-delay: 0.5s;
}

.tagline .line:nth-child(2) {
    font-weight: 600;
    animation-delay: 1.2s;
}

.footer {
    position: absolute;
    bottom: 2rem;
    font-size: 0.875rem;
    color: var(--accent-color);
    opacity: 0.7;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .tagline {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .tagline {
        font-size: 1.75rem;
    }
}
