:root{--bg:#f9fafb;--text:#1f2937;--muted:#6b7280;--brand:#2563eb;--brand-contrast:#ffffff;--card:#ffffff;--border:#e5e7eb}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:920px;margin:0 auto;padding:24px}
.header{display:flex;justify-content:space-between;align-items:center;padding:16px 0}
.brand{font-weight:800;font-size:20px}
.nav a{margin-left:16px;color:var(--muted)}
.hero{background:var(--card);border:1px solid var(--border);border-radius:12px;padding:32px;margin-top:16px;box-shadow:0 1px 2px rgba(0,0,0,0.04)}
.hero h1{margin:0 0 8px 0;font-size:28px}
.hero p{margin:0 0 20px 0;color:var(--muted)}
.actions{display:flex;flex-wrap:wrap;gap:12px}
.button{display:inline-block;padding:12px 18px;border-radius:10px;border:1px solid var(--border);background:var(--card);color:var(--text);font-weight:600}
.button.primary{background:var(--brand);color:var(--brand-contrast);border-color:var(--brand)}
.section{margin:28px 0}
.section h2{font-size:20px;margin:0 0 8px}
.footer{margin:32px 0;color:var(--muted);font-size:14px}
.badges{display:flex;gap:12px;flex-wrap:wrap}
.badge{height:40px;border-radius:8px;display:inline-flex;align-items:center;justify-content:center;padding:0 12px;background:#111;color:#fff;font-weight:700} 