@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
    --bg: #050505;
    --accent: #d4ff00;
    --text: #ffffff;
    --text-muted: #888888;
    --card-bg: #0f0f0f;
    --border: #1a1a1a;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom cursor */
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.4;
}

/* Custom Cursor */
#cursor {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

/* Preloader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loader-content {
    background: #000;
    color: #fff;
    padding: 20px 40px;
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
    mix-blend-mode: difference;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-text {
    position: absolute;
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    text-transform: uppercase;
}

.hero-image {
    width: 350px;
    height: 450px;
    z-index: 2;
    background: var(--card-bg);
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.hero-info {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.hero-name {
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
}

.btn-talk {
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 50px;
    display: inline-block;
}

/* Sections */
section {
    padding: 150px 50px;
}

.section-label {
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 80px;
    line-height: 0.8;
}

/* Bento Grid / Sets Me Apart */
.sets-me-apart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.apart-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s;
}

.apart-card:hover {
    border-color: var(--accent);
}

.apart-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Projects List */
.project-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.project-list-item:hover {
    padding-left: 20px;
}

.project-list-item h2 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
}

.project-category {
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

/* Manifesto */
.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.manifesto-item {
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.manifesto-num {
    color: var(--text-muted);
    font-weight: 900;
    margin-bottom: 10px;
    display: block;
}

.manifesto-item h3 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
    .section-title { font-size: 3rem; }
    .sets-me-apart-grid { grid-template-columns: 1fr; }
    .project-list-item h2 { font-size: 2rem; }
}
