/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a; /* The "Wabi" Deep Black */
    color: #e0e0e0; /* Soft White */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    max-width: 700px; /* Limits width for that "focused" look */
    width: 100%;
    margin-top: 10vh;
}

/* TYPOGRAPHY */
h1 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 10px;
    color: #ffffff;
}

.subtitle {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 60px;
    font-weight: 300;
}

.bio {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 80px;
    color: #ccc;
    line-height: 1.5;
}

strong {
    color: #fff;
    font-weight: 500;
}

/* GRID SECTION */
.grid-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
    border-top: 1px solid #222;
    padding-top: 40px;
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
}

.card p {
    font-size: 1rem;
    color: #666;
}

/* BUTTONS & LINKS */
.button {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.button:hover {
    background-color: #fff;
    color: #000;
}

.links a {
    color: #666;
    text-decoration: none;
    margin-right: 20px;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.links a:hover {
    color: #fff;
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

/* RESPONSIVE */
@media (min-width: 600px) {
    .grid-section {
        grid-template-columns: repeat(3, 1fr);
    }
}