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

body {
    background-color: #0a0a0a;
    color: #e8e8e8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

main {
    max-width: 600px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 4rem;
    color: #ffffff;
}

p {
    font-size: 1.125rem;
    font-weight: 300;
    color: #d0d0d0;
    margin-bottom: 2.5rem;
}

.intro {
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
}

.statement {
    font-size: 1rem;
    margin-bottom: 3.5rem;
}

.description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(102, 102, 102, 0.15);
    margin-top: 3rem;
}

.email {
    margin-bottom: 8rem;
}

.email a {
    color: #e8e8e8;
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 232, 232, 0.3);
    transition: border-color 0.2s ease;
}

.email a:hover {
    border-bottom-color: rgba(232, 232, 232, 0.8);
}

.initiated {
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 1rem;
}

.initiated a {
    color: #666666;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.initiated a:hover {
    border-bottom-color: rgba(102, 102, 102, 0.5);
}

.footer {
    font-size: 0.875rem;
    color: #666666;
    margin-top: 0;
}

.footer a {
    color: #666666;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.footer a:hover {
    border-bottom-color: rgba(102, 102, 102, 0.5);
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .intro {
        font-size: 1.125rem;
    }
}
