@import url('https://fonts.googleapis.com/css2?family=Syne:wght@500;600;700;800&family=Work+Sans:wght@400;500&display=swap');
:root {
    --bg: #0a0a0a;
    --text: #fafafa;
    --muted: #a3a3a3;
    --accent: #e879f9;
    --accent2: #c026d3;
    --wrap: 1080px;
}
body.has-proto-bar { font-family: 'Work Sans', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }
.hero { min-height: 85vh; display: flex; flex-direction: column; justify-content: center; padding: 3rem 0; }
.hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(2.8rem, 9vw, 5.5rem); font-weight: 800; line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.hero h1 span { background: linear-gradient(90deg, var(--accent), #818cf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-lead { max-width: 28rem; font-size: 1.1rem; color: var(--muted); margin-bottom: 2rem; }
.links { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn { padding: 0.85rem 1.75rem; border-radius: 999px; font-weight: 600; text-decoration: none; font-size: 0.9rem; border: none; cursor: pointer; transition: transform .15s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--accent2), var(--accent)); color: #fff; }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); color: #fff; background: transparent; }
.portfolio { padding: 4rem 0; }
.portfolio h2 { font-family: 'Syne', sans-serif; font-size: 1.5rem; margin-bottom: 1.5rem; }
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.work { position: relative; aspect-ratio: 16/10; border-radius: 12px; overflow: hidden; }
.work img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.work:hover img { transform: scale(1.05); }
.work-info { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.8), transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem; }
.work-info h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; }
.work-info p { font-size: 0.8rem; color: #d4d4d4; margin-top: 0.2rem; }
.about { padding: 4rem 0; display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center; border-top: 1px solid #262626; }
.about-img { aspect-ratio: 1; border-radius: 16px; overflow: hidden; }
.about-img .person-avatar { width: 100%; height: 100%; border-radius: 16px; font-size: 4rem; }
.about h2 { font-family: 'Syne', sans-serif; font-size: 1.75rem; margin-bottom: 1rem; }
.about p { color: var(--muted); margin-bottom: 1rem; font-size: 0.95rem; }
.social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid #404040; display: grid; place-items: center; color: #fff; text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: border-color .2s, background .2s; }
.social a:hover { border-color: var(--accent); background: rgba(232,121,249,0.1); }
.footer { padding: 2rem 0; text-align: center; font-size: 0.82rem; color: var(--muted); border-top: 1px solid #262626; }
@media (max-width: 768px) { .grid, .about { grid-template-columns: 1fr; } }
