        :root{--ink:#111111;--bg:#fdfdfd;--muted:#666666;--border:#e5e7eb;--accent:#2266ff}
    *{box-sizing:border-box}
    body{margin:0;font:16px/1.5 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;background:var(--bg);color:var(--ink)}
    
.ham{background:transparent;border:0;padding:8px;border-radius:8px;cursor:pointer;color:#ffffff;display:inline-flex;align-items:center;justify-content:center;}
nav.desktop-nav{display:flex;gap:0px;align-items:right}
nav.desktop-nav a{text-decoration:none;background: transparent;color:#ffffff;padding:8px 12px}
nav.desktop-nav a:hover{background:var(--accent);color:#111}
.brand{display: flex;width:40px;height:40px}
.close{width: 30px;height: 30px;background:transparent;border:0;padding:8px;border-radius:8px;cursor:pointer;color:#000000;display:inline-flex;align-items:center;justify-content:center;}
.drawer{position:fixed;inset:0;display:none;z-index:1000}
.drawer.show{display:block}
.drawer .backdrop{position:absolute;inset:0;background:rgba(0,0,0,0.45)}
.drawer .panel{position:absolute;top:0;left:0;height:100%;width:78%;max-width:300px;background:#fff;padding:20px;display:flex;flex-direction:column;gap:12px;box-shadow:2px 0 12px rgba(0,0,0,0.15)}
.drawer .panel a{text-decoration:none;color:#111;padding:10px;}
.drawer .panel a:hover{background:var(--accent);color:#111}

    header{position:sticky;top:0;background:#000000;color:#111;z-index:20;border-bottom:1px solid var(--border)}
    header .wrap{max-width:1000px;margin:10 auto;display:flex;align-items:center;gap:12px}
    nav.desktop-nav a.active{background:black}

        .hero{display:flex;align-items:center;justify-content:center;min-height:100vh;background:linear-gradient(180deg,#f7f7f7,#ededed);padding:20px;text-align:center}
    .hero h1{font-size:30px;margin:0 0 0.8rem}
    .hero h2{font-size: 35px;}
    .hero p{margin:0 0 1.6rem;font-size:1.2rem;color:var(--muted)}
    .cta{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}
    .cta a{text-decoration:none;font-weight:600;padding:14px 26px;border: radius 0px;}
    .cta a.primary{background:var(--accent);color:#111;}
    .cta a.secondary{background:#ffffff;color:#111;border:1px solid var(--border)}
    
footer{background:#111;color:#fff}
    footer .container{display:grid;gap:8px;padding:18px 20px}
    .small{font-size:12px;color:#bbb}