:root {
    --bg-color: #ffffff;
    --text-color: #0a0a0f;
    --accent-color: #00d4ff;
    /* Techy blue/cyan */
    --secondary-accent: #7a00ff;
    /* Deep purple */
}

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

body,
html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* No scroll for single section feel */
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
}

#background-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Clean light fade */
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, rgba(240, 244, 248, 0.8) 100%);
}

.logo-container {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease-out forwards 0.5s;
}

.main-logo {
    max-width: 80vw;
    /* Responsive width */
    width: 400px;
    /* Default desktop width */
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    /* Subtle shadow instead of glow */
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

.text-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease-out forwards 1s;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #4a5568;
    text-transform: uppercase;
    background: linear-gradient(90deg, #2d3748, #00d4ff, #2d3748);
    background-size: 200% auto;
    background-clip: text;
    /* Standard property */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite, fadeUp 1s ease-out forwards 1s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@media (max-width: 768px) {
    .main-logo {
        width: 250px;
    }

    .tagline {
        font-size: 0.9rem;
        padding: 0 1rem;
        line-height: 1.5;
    }
}