body {
    background-color: rgba(0, 0, 0, 0.9);
    color: whitesmoke;
    font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    margin: 0;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

:root{
    --bg: rgba(0,0,0,0.95);
    --surface: rgba(255,255,255,0.02);
    --text: whitesmoke;
    --muted: rgba(255,255,255,0.6);
    --accent: #1abc9c;
    --container-width: 1100px;
}

.container{
    width: min(var(--container-width), 92%);
    margin: 0 auto;
}

header, .site-header{
    background: transparent;
}

.header-inner{
    display:flex;
    gap:1rem;
    align-items:center;
    justify-content:space-between;
    padding:1.25rem 0;
}

.logo img{height:36px; display:block}

.site-nav .nav-list{list-style:none; margin:0; padding:0; display:flex; gap:1rem}
.site-nav a{color:var(--text); text-decoration:none}
.nav-toggle{display:none}

.hero{padding:3.5rem 0}
.hero-inner{display:flex;align-items:center;gap:2rem}
.hero-copy{flex:1}
.hero h1{font-size:clamp(1.6rem,2.6vw,2.4rem); margin:0 0 .6rem}
.lead{color:var(--muted); margin:0 0 1rem}
.hero-visual{flex:0 0 320px}

.services{padding:3rem 0}
.services h2{margin-bottom:.25rem}
.section-sub{color:var(--muted); margin-bottom:1rem}
.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.25rem}
.service{background:var(--surface);padding:1rem;border-radius:8px}
.service img{width:48px;height:48px;margin-bottom:.5rem}
.service h3{margin:.25rem 0}

.work{padding:2.5rem 0}
.work-grid{display:flex;gap:1rem;flex-wrap:wrap}
.work-card{background:var(--surface);padding:1rem;border-radius:8px;flex:1 1 220px}

.team{padding:2.5rem 0}
.team-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:1rem}
.member{background:var(--surface);padding:1rem;border-radius:8px;text-align:center}
.avatar{width:64px;height:64px;border-radius:8px;background:linear-gradient(135deg,var(--accent),rgba(255,255,255,0.04));margin:0 auto 8px}

.contact{padding:2.5rem 0}

.site-footer{padding:1.25rem 0;border-top:1px solid rgba(255,255,255,0.03);color:var(--muted)}

.muted{color:var(--muted)}

/* Responsive */
@media (max-width:800px){
    .hero-inner{flex-direction:column}
    .hero-visual{order:2}
}

@media (max-width:600px){
    .site-nav .nav-list{display:none;flex-direction:column;background:transparent;position:absolute;right:1rem;top:64px;padding:.75rem;border-radius:8px}
    .nav-toggle{display:inline-block;background:transparent;border:1px solid rgba(255,255,255,0.06);padding:.4rem .6rem;border-radius:6px;color:var(--text)}
    .site-header{position:relative}
}

/* Utility */
.section-sub{font-size:.95rem}
.work-card h4{margin:.25rem 0}
