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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    line-height: 1.5;
    color: #ededed;
    background-color: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem;
    min-height: calc(100vh - 140px);
}

.content {
    text-align: left;
    max-width: clamp(800px, 55vw, 1400px);
    width: 100%;
}

.headline {
    font-size: clamp(2.25rem, 3.5vw + 0.75rem, 7rem);
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1.1;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

.subheadline {
    font-size: clamp(0.9375rem, 0.9vw + 0.3rem, 1.75rem);
    color: #a1a1aa;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.015em;
    max-width: clamp(700px, 50vw, 1100px);
}

.subheadline .email-link {
    color: #ededed;
    text-decoration: none;
    transition: color 0.15s ease;
}

.subheadline .email-link:hover {
    color: #fff;
}

.footer {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1a1a1a;
    width: 100%;
}

.copyright {
    font-size: 0.75rem;
    color: #52525b;
    font-weight: 400;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.social-icons a {
    color: #52525b;
    transition: color 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: #a1a1aa;
}

.social-icons svg {
    width: 16px;
    height: 16px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
        min-height: calc(100vh - 120px);
        align-items: flex-start;
    }
    
    .content {
        max-width: 100%;
    }
    
    .headline {
        margin-bottom: 1rem;
    }
    
    .footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem 1rem;
        min-height: calc(100vh - 100px);
    }
    
    .headline {
        margin-bottom: 0.875rem;
    }
    
    .footer {
        padding: 1.25rem 1rem;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .copyright {
        font-size: 0.6875rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
}
