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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
    padding: 0;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.section {
    min-height: 30vh;
    display: flex;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #1a1a1a;
    position: relative;
    gap: 60px;
}

.section:last-child {
    border-bottom: none;
}

.section-label {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    color: #1a1a1a;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    font-family: 'Inter', sans-serif;
}

.section-content {
    position: relative;
    z-index: 1;
    font-size: 28px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: 180px;
}

.section-hero {
    min-height: 40vh;
    border-bottom: 2px solid #2a2a2a;
}

.intro-text {
    font-size: 32px;
    font-weight: 600;
    color: #f5f5f5;
    letter-spacing: -0.02em;
}


.section-highlight {
    background: linear-gradient(135deg, #0f0f0f 0%, #0a0a0a 100%);
}

.role-text {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.4;
    color: #e8e8e8;
}

.section-highlight p {
    font-size: 22px;
    color: #c0c0c0;
    font-weight: 300;
    margin-top: 20px;
}

.highlight {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 32px;
}

.section-about {
    background: rgba(255, 255, 255, 0.02);
}

.section-about p {
    font-size: 22px;
    line-height: 1.8;
    color: #c0c0c0;
    font-weight: 300;
    margin-bottom: 20px;
}

.section-about p:last-of-type {
    margin-bottom: 0;
}


.section-about strong {
    color: #ffffff;
    font-weight: 600;
}

.section-contact p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 30px;
    text-align: center;
}

.section-contact {
    min-height: 35vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
}

.section-contact .section-label {
    font-size: 120px;
}

.section-contact .section-content {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.section-contact p {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 30px 50px;
    border: 2px solid #2a2a2a;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.email-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.email-link:hover::before {
    left: 100%;
}

.email-link:hover {
    border-color: #4a4a4a;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.email-text {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.email-hint {
    font-size: 14px;
    font-weight: 400;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 30px 50px;
    border: 2px solid #2a2a2a;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.linkedin-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.linkedin-link:hover::before {
    left: 100%;
}

.linkedin-link:hover {
    border-color: #4a4a4a;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.linkedin-text {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.linkedin-hint {
    font-size: 14px;
    font-weight: 400;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
    .section-content {
        margin-left: 0;
        font-size: 24px;
    }
    
    .section-label {
        font-size: 80px;
    }
    
    .intro-text {
        font-size: 28px;
    }
    
    .role-text {
        font-size: 28px;
    }
    
    .highlight {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }
    
    .section {
        padding: 30px 0;
        flex-direction: column;
        gap: 30px;
    }
    
    .section-label {
        position: relative;
        font-size: 60px;
        transform: none;
        text-align: center;
    }
    
    .section-content {
        font-size: 18px;
        max-width: 100%;
        margin-left: 0;
        text-align: center;
    }
    
    .intro-text {
        font-size: 22px;
    }
    
    
    .role-text {
        font-size: 20px;
    }
    
    .highlight {
        font-size: 20px;
        display: block;
    }
    
    .section-about p {
        font-size: 18px;
    }
    
    
    .section-contact p {
        font-size: 16px;
    }
    
    .section-highlight p {
        font-size: 18px;
    }
    
    .email-link, .linkedin-link {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }
    
    .email-text, .linkedin-text {
        font-size: 20px;
    }
    
    .section-contact .section-label {
        font-size: 120px;
    }
    
    .section-contact p {
        font-size: 24px;
    }
}
