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

body {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
    background-color: #ffffff;
    color: #111111;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.splash-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
}

.logo-container {
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 500px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.logo {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
    filter: contrast(1.05);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    line-height: 1.4;
    color: #333333;
    max-width: 600px;
}

.highlight {
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #111111;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.highlight:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.contact {
    font-size: 1.1rem;
    color: #555;
    margin-top: 1rem;
}

.contact a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact a:hover {
    border-bottom-color: currentColor;
}

@media (max-width: 768px) {
    .tagline {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .logo-container {
        max-width: 400px;
    }
    
    .logo {
        max-height: 180px;
    }
}

@media (max-width: 480px) {
    .tagline {
        font-size: 1rem;
    }
    
    .logo-container {
        max-width: 320px;
    }
    
    .logo {
        max-height: 150px;
    }
}

@media (min-width: 1200px) {
    .logo-container {
        max-width: 600px;
    }
    
    .logo {
        max-height: 300px;
    }
}