/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.5;
}

/* Animated Grid Background */
.grid-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.grid-canvas {
    width: 100%;
    height: 100%;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    z-index: 100;
}

.nav-logo {
    font-family: 'IBM Plex Serif', serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 40px;
}

.hero h1 {
    font-family: 'IBM Plex Serif', serif;
    font-size: clamp(48px, 10vw, 80px);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 40px;
}

.hero-description {
    font-family: 'IBM Plex Serif', serif;
    font-size: 22px;
    font-weight: 300;
    color: #555;
    line-height: 1.7;
}

/* Sections */
.section {
    position: relative;
    z-index: 1;
    padding: 120px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.section-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    text-align: center;
    margin-bottom: 80px;
}

/* Entries */
.entry {
    text-align: center;
    margin-bottom: 80px;
}

.entry:last-child {
    margin-bottom: 0;
}

.entry h2 {
    font-family: 'IBM Plex Serif', serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.entry-meta {
    font-size: 13px;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.entry-description {
    font-size: 15px;
    color: #555;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.9;
}

/* Skills */
.skills-text {
    text-align: center;
}

.skills-text p {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    padding: 100px 40px;
    text-align: center;
    border-top: 1px solid #eee;
    background: #fff;
}

.footer-seeking {
    font-family: 'IBM Plex Serif', serif;
    font-size: 20px;
    font-weight: 300;
    color: #888;
    margin-bottom: 40px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-contact a {
    font-size: 13px;
    letter-spacing: 1px;
    color: #555;
}

/* Mobile */
@media (max-width: 768px) {
    .nav {
        padding: 20px 24px;
    }

    .nav-logo {
        font-size: 16px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .hero {
        padding: 100px 24px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section {
        padding: 80px 24px;
    }

    .section-label {
        margin-bottom: 50px;
    }

    .entry {
        margin-bottom: 60px;
    }

    .entry h2 {
        font-size: 26px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 20px;
    }
}
