/* style.css */
@font-face {
    font-family: 'Sans Uber';
    src: local('Arial Black');
}

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

body, html {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    cursor: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
}

h1, h2, h3 {
    font-family: 'Sans Uber', sans-serif;
    text-transform: uppercase;
    letter-spacing: -1px;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.nav-links a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.5;
}

.split-layout {
    display: flex;
    width: 100vw;
    height: 100vh;
}

.split-block {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.split-bg {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(0px);
}

.split-block:hover .split-bg {
    transform: scale(1.05);
    filter: blur(8px);
}

.split-glass {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 60px 80px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
}

.split-glass h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.split-glass p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

.projects-layout {
    display: flex;
    flex-wrap: wrap;
    width: 100vw;
    padding-top: 80px;
}

.project-block {
    width: 50vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.project-bg {
    position: absolute;
    inset: -20px;
    background-color: #f5f5f7;
    background-size: cover;
    background-position: center;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(10px);
}

.project-block:hover .project-bg {
    transform: scale(1.05);
    filter: blur(15px);
}

.project-glass {
    position: relative;
    z-index: 2;
    width: 85%;
    height: 85%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: scale(0.95);
}

.project-glass h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.project-glass p {
    font-size: 1.1rem;
    color: #444;
    text-align: center;
    line-height: 1.5;
    max-width: 600px;
}

.media-space {
    width: 100%;
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.3);
    border: 1px dashed rgba(0, 0, 0, 0.15);
}

.team-layout {
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    gap: 60px;
    background: #f5f5f7;
}

.team-card {
    width: 450px;
    height: 600px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 32px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.1);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouseX, 50%) var(--mouseY, 50%), rgba(0, 0, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.4s;
    opacity: 0;
}

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

.team-card h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.team-card .role {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
    font-weight: 500;
}

.team-card .handle {
    font-size: 1rem;
    color: #888;
    font-family: monospace;
}
