Jade + Sass (or Stylus) のススメ

Jade 使うなら、 スタイルシート側も、
同じインデントスタイルのメタ言語を使ったほうがいいです。

Jade

.wrapper
  section.section-top
    h1.title Taitoru
    p.text blahblahblahblah

Sass

.wrapper
  width: 640px
  margin: 0 auto
  section.section-top
    background: #333
    color: #fff
    h1.title
      font-size: 24px
    p.text
      text-align: center

ほら一緒