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

:root {
    --black: #000000;
    --white: #FFFFFF;
    --green: #00D084;
    --green-dark: #00A86B;
    --gray: #666666;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero {
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    margin-bottom: 2.5rem;
}

h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--white) 0%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.tagline {
    font-size: 1.5rem;
    color: var(--green);
    font-weight: 400;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.bio {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    font-weight: 300;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.social-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.social-links a {
    color: var(--white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.3s ease;
}

.social-links a:hover {
    color: var(--green);
    transform: translateY(-2px);
}

.social-links a:hover::after {
    width: 100%;
}

.projects {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.projects h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.project-card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.project-card.company {
    border-color: rgba(0, 208, 132, 0.2);
    background: rgba(0, 208, 132, 0.03);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.project-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
}

.project-card:hover::before {
    opacity: 1;
}

.project-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.project-card p {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.8;
}

.project-card.coming-soon {
    cursor: default;
    opacity: 0.7;
}

.project-card.coming-soon:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
}

.project-card.coming-soon::before {
    display: none;
}

@media (max-width: 768px) {
    .container {
        padding: 3rem 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .bio {
        font-size: 1rem;
    }

    .social-links {
        gap: 1.5rem;
    }

    .projects h2 {
        font-size: 1.5rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
