* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #2d3748;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.logo-section {
    margin-bottom: 40px;
}

.glitch {
    font-size: 4rem;
    font-weight: 800;
    color: #2d3748;
    position: relative;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    text-transform: none;
    animation: glitch 2s infinite linear alternate-reverse;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-tagline {
    font-size: 1.2rem;
    color: #718096;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch::before {
    animation: glitchTop 2s infinite linear alternate-reverse;
    color: #667eea;
    z-index: 1;
    top: -2px;
    left: 2px;
    opacity: 0.8;
}

.glitch::after {
    animation: glitchBottom 2s infinite linear alternate-reverse;
    color: #764ba2;
    z-index: 1;
    top: 2px;
    left: -2px;
    opacity: 0.8;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitchTop {
    0% { clip-path: inset(0 0 80% 0); }
    50% { clip-path: inset(0 0 60% 0); }
    100% { clip-path: inset(0 0 80% 0); }
}

@keyframes glitchBottom {
    0% { clip-path: inset(80% 0 0 0); }
    50% { clip-path: inset(60% 0 0 0); }
    100% { clip-path: inset(80% 0 0 0); }
}

.main-content {
    margin-bottom: 50px;
}

.main-message {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.4;
    color: #2d3748;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.sub-message {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #4a5568;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.feature-item p {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-section {
    margin-bottom: 50px;
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.linkedin-icon {
    width: 20px;
    height: 20px;
}

.linkedin-btn:hover, .linkedin-btn:focus {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 119, 181, 0.4);
    text-decoration: none;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    color: #718096;
    margin-bottom: 8px;
}

.email-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #764ba2;
}

.progress-section {
    margin-top: 40px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    animation: progressAnimation 3s ease-in-out infinite;
}

@keyframes progressAnimation {
    0% { width: 0%; }
    50% { width: 75%; }
    100% { width: 100%; }
}

.progress-text {
    color: #718096;
    font-size: 0.9rem;
    font-weight: 500;
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 40px 24px;
    }
    
    .glitch {
        font-size: 2.5rem;
    }
    
    .main-message {
        font-size: 1.4rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 24px 16px;
    }
    
    .linkedin-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }
    
    .glitch {
        font-size: 2rem;
    }
    
    .main-message {
        font-size: 1.2rem;
    }
    
    .company-tagline {
        font-size: 1rem;
    }
}

