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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0a0a0a;
    color: #e8e8e8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 2rem;
}

.logo {
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    color: #666;
    margin-bottom: 4rem;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h1 em {
    font-style: italic;
    display: block;
}

.subtitle {
    font-size: 1.125rem;
    color: #888;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 3rem;
}

.contact {
    font-size: 1rem;
    color: #e8e8e8;
    text-decoration: none;
    border-bottom: 1px solid #333;
    padding-bottom: 0.25rem;
    transition: border-color 0.3s ease;
}

.contact:hover {
    border-bottom-color: #e8e8e8;
}

.footer {
    margin-top: 5rem;
    font-size: 0.75rem;
    color: #444;
}
