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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    color: #e4e4e7;
    position: relative;
}

.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.logo-watermark {
    position: fixed;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 800px;
    height: 800px;
    opacity: 0.022;
    pointer-events: none;
    z-index: 0;
    background-image: url('img/logo/icon-1-nodes.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 768px) {
    .logo-watermark {
        width: 500px;
        height: 500px;
        right: -150px;
    }
}

.container {
    max-width: 700px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.header {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.initials {
    display: inline-block;
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 5px;
    color: #64748b;
    margin-bottom: 40px;
    text-transform: uppercase;
    -webkit-text-stroke: 0.5px #64748b;
    text-shadow: 2px 2px 0 rgba(100, 116, 139, 0.2);
}

h1 {
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.75rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    padding-bottom: 4px;
    letter-spacing: -0.03em;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, transparent 100%);
    border-radius: 2px;
}

.title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: #94a3b8;
    font-weight: 400;
    margin-bottom: 12px;
}

.location {
    font-size: 1rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.bio {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 50px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.connect {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.connect h2 {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 24px;
}

.links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.link-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 6px;
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.link-btn:hover,
.link-btn:focus {
    border-color: rgba(59, 130, 246, 0.6);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.link-btn:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-link:hover,
.social-link:focus {
    color: #60a5fa;
}

.social-link:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 4px;
    border-radius: 4px;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    body {
        padding: 30px 20px;
    }

    .header {
        margin-bottom: 40px;
    }

    .initials {
        margin-bottom: 30px;
    }

    h1 {
        margin-bottom: 16px;
    }

    .bio {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .links {
        margin-bottom: 40px;
    }

    .social-links {
        flex-direction: column;
        gap: 16px;
    }
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) translateX(30px);
        opacity: 0;
    }
}
