:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #3b82f6;
    /* A subtle blue for glow effects */
    --font-main: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.background-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    transition: left 0.2s ease-out, top 0.2s ease-out;
}

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

.logo {
    width: 140px;
    height: auto;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.company-name {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards;
    background: linear-gradient(to right, #fff, #a5a5a5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e5e5e5;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

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

.tagline .line:nth-child(3) {
    animation-delay: 0.6s;
}

.sub-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: #888;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards 0.8s;
    letter-spacing: 0.05em;
}

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

@media (max-width: 768px) {
    .company-name {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.2rem;
    }
}