:root {
    --bg: #0a0a0a;
    --text: #ffffff;
    --secondary: #888888;
    --accent: #f0f0f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Professional Header */
nav {
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 100;
}

.logo { font-weight: 900; letter-spacing: -1px; font-size: 1.5rem; }
.status-tag { font-size: 0.7rem; border: 1px solid var(--secondary); padding: 5px 12px; border-radius: 20px; }

.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
}

h1 { font-size: clamp(5rem, 15vw, 12rem); font-weight: 900; letter-spacing: -5px; line-height: 0.8; }

.hero-desc {
    max-width: 600px;
    margin-top: 30px;
    font-size: 1.2rem;
    color: var(--secondary);
}

/* Stats Section */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 40px 10%;
    text-align: center;
}

.stat-item span { display: block; font-size: 2rem; font-weight: 700; }

/* Elegant Work Grid */
.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background-color: #222; /* Creates thin borders */
}

.work-item {
    background-color: var(--bg);
    padding: 80px 10%;
    transition: background 0.4s ease;
}

.work-item:hover { background-color: #111; }

.category { color: var(--secondary); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; }

h3 { font-size: 2.5rem; margin: 15px 0; font-weight: 700; }

/* Custom "Reveal" Animation */
[data-aos="reveal-up"] {
    transform: translateY(100px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="reveal-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

footer { padding: 100px 10%; text-align: center; }
.cta-link { font-size: 3rem; color: var(--text); text-decoration: none; border-bottom: 4px solid var(--text); }