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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.logo {
    width: 120px;
    height: auto;
    filter: brightness(1.08) contrast(1.1);
}

.brand {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #000000;
}

.email {
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease;
}

.email:hover {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .logo {
        width: 80px;
    }
    
    .brand {
        font-size: 2rem;
    }
    
    .email {
        font-size: 0.9rem;
    }
}