@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');
:root {
    --bg: #0a0a0a;
    --surface: #141414;
    --border: #2a2a2a;
    --text: #fafafa;
    --muted: #a3a3a3;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --wrap: 1160px;
}
body.has-proto-bar { font-family: 'DM 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; }
.topbar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 0.5rem 0; font-size: 0.82rem; color: var(--muted); }
.topbar .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; }
.logo { font-weight: 800; font-size: 1.35rem; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; color: var(--text); }
.logo em { color: var(--accent); font-style: normal; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.88rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }
.nav-links a:hover { color: var(--accent); }
.btn { display: inline-flex; padding: 0.85rem 1.75rem; background: var(--accent); color: #fff; font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; text-decoration: none; border: 2px solid var(--accent); cursor: pointer; transition: background .2s; }
.btn:hover { background: var(--accent-dark); }
.btn-outline { background: transparent; color: var(--accent); }
.hero { position: relative; min-height: 520px; display: flex; align-items: flex-end; margin-bottom: 0; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 60%, rgba(10,10,10,0.2) 100%); }
.hero-content { position: relative; padding: 4rem 0 3rem; max-width: 640px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.05; text-transform: uppercase; margin-bottom: 1rem; }
.hero h1 span { color: var(--accent); }
.hero p { color: #d4d4d4; font-size: 1.05rem; margin-bottom: 2rem; max-width: 32rem; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--accent); color: #fff; }
.stat { padding: 1.75rem 1rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.15); }
.stat:last-child { border-right: none; }
.stat strong { display: block; font-size: 2.25rem; font-weight: 800; line-height: 1; }
.stat span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.9; margin-top: 0.35rem; display: block; }
.section { padding: 5rem 0; }
.section-title { font-size: 1.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 2.5rem; display: flex; align-items: center; gap: 1rem; }
.section-title::after { content: ""; flex: 1; height: 2px; background: var(--border); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step { border: 1px solid var(--border); padding: 1.75rem; background: var(--surface); }
.step-num { font-size: 2.5rem; font-weight: 800; color: var(--accent); opacity: 0.35; line-height: 1; margin-bottom: 0.75rem; }
.step h3 { font-size: 1rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.step p { font-size: 0.88rem; color: var(--muted); }
.projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.project { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 4px; }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.project:hover img { transform: scale(1.05); }
.project-info { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem; }
.project-info h3 { font-size: 1rem; text-transform: uppercase; }
.project-info p { font-size: 0.8rem; color: #d4d4d4; margin-top: 0.25rem; }
.cta-band { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 4rem 0; text-align: center; }
.cta-band h2 { font-size: 2rem; text-transform: uppercase; margin-bottom: 0.75rem; }
.cta-band p { color: var(--muted); margin-bottom: 1.5rem; }
.footer { padding: 2rem 0; text-align: center; font-size: 0.85rem; color: var(--muted); }
@media (max-width: 900px) {
    .stats, .steps, .projects { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
}
@media (max-width: 540px) { .stats, .steps, .projects { grid-template-columns: 1fr; } }
