/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F2F2F2;
    /* Soft grey background */
    color: #121212;
    /* Dark grey text */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 1.5s ease-out;
}

/* Typography */
.brand-name {
    font-size: 4rem;
    font-weight: 600;
    /* Semi-bold */
    letter-spacing: -0.05em;
    /* Tight tracking for modern look */
    margin-bottom: 1.5rem;
    color: #000;
}

.tagline {
    font-size: 1.125rem;
    /* 18px */
    font-weight: 300;
    /* Light */
    letter-spacing: 0.1em;
    /* Wide tracking for elegance */
    color: #555;
    opacity: 0.8;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Responsive */
@media (max-width: 600px) {
    .brand-name {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 0.875rem;
    }
}
