:root {
    --bg: #000000;
    --text: #ffffff;
    --text-muted: #888888;
    --border: rgba(255, 255, 255, 0.1);
    --accent: #ff3e00;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
 
body.light-mode {
    --bg: #ffffff;
    --text: #000000;
    --text-muted: #666666;
    --border: rgba(0, 0, 0, 0.1);
}
 
* { margin: 0; padding: 0; box-sizing: border-box; }
 
body {
    font-family: "Google Sans Flex", sans-serif;
    background-color: var(--bg);
    color: var(--text);
    transition: background-color 0.5s ease, color 0.5s ease;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
 
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 40px 6%;
    position: fixed;
    top: 0; width: 100%;
    z-index: 100;
}
 
.nav-brand {
    font-weight: 900;
    text-decoration: none;
    color: var(--text);
    font-size: 1.4rem;
    letter-spacing: -1px;
}
 
.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-left: 30px;
    opacity: 0.5;
    transition: var(--transition);
}
 
.nav-links a:hover { opacity: 1; color: var(--accent); }
 
.content { padding: 0 6%; }
 
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}
 
.title {
    font-size: clamp(3.5rem, 12vw, 11rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin-bottom: 60px;
}
 
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
 
.tagline {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 20px;
}
 
.description {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    line-height: 1.6;
    max-width: 550px;
}
 
.sub-description {
    margin-top: 25px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    border-left: 2px solid var(--accent);
    padding-left: 15px;
}
 
.profile-img {
    width: 100%;
    max-width: 550px;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(100%);
    transition: var(--transition);
    border: 1px solid var(--border);
}
 
.profile-img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}
 
.garage-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 6%;
}
 
.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    letter-spacing: -1px;
    font-weight: 900;
}
 
.project-list { border-top: 1px solid var(--border); }
 
.project-item {
    display: grid;
    grid-template-columns: 0.5fr 2fr 1fr 1fr;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
}
 
.project-item:hover {
    background: rgba(255, 62, 0, 0.05);
    padding-left: 20px;
}
 
.project-id { color: var(--accent); font-weight: 800; font-size: 12px; }
.project-name { font-size: 1.5rem; font-weight: 700; }
.project-tech { font-size: 12px; color: var(--text-muted); text-transform: uppercase; }
 
.theme-control {
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 1000;
}
 
.switch {
    display: block;
    width: 50px;
    height: 26px;
    background: var(--border);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--text-muted);
}
 
.switch input { display: none; }
 
.dot {
    position: absolute;
    top: 4px; left: 4px;
    width: 16px; height: 16px;
    background: var(--text);
    border-radius: 50%;
    transition: var(--transition);
}
 
input:checked + .dot {
    transform: translateX(24px);
    background: var(--accent);
}
 
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .project-item { grid-template-columns: 1fr 1fr; gap: 10px; }
    .project-id { display: none; }
    .title { margin-top: 120px; }
}