:root{
  --B:#0f0f0f; /* background / brand */
  --W:#f5f5f5; /* foreground / text */
  --BN: 'Bebas Neue', sans-serif;
  --MS: 'Montserrat', sans-serif;
}
*{box-sizing:border-box}
html,body{height:100%;margin:0;background:var(--B);color:var(--W);font-family:var(--MS);}
h1,h2,h3{font-family:var(--BN);font-weight:400;margin:0}
.btn{border:none;border-radius:6px;padding:12px 18px;cursor:pointer;font-weight:600}
.btn-primary{background:var(--W);color:var(--B)}
.btn-ghost{background:transparent;color:var(--W);border:1px solid rgba(255,255,255,0.06)}
/* Utility */
.mobile-only{display:block}
.desktop-only{display:none}
@media(min-width:768px){.mobile-only{display:none}.desktop-only{display:block}}