*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:#080808;
  color:#f7f7f7;
  font-family:Inter,system-ui,sans-serif;
}
main,footer{max-width:1000px;margin:auto;padding-left:24px;padding-right:24px}
.hero{
  min-height:86vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding-top:64px;
  padding-bottom:64px;
}
.label,.small-label{
  font-size:11px;
  letter-spacing:.16em;
  font-weight:800;
  color:#666;
}
h1{
  font-size:clamp(46px,8vw,90px);
  line-height:.95;
  letter-spacing:-.055em;
  margin:22px 0 22px;
}
.subtitle{
  max-width:650px;
  margin:0 auto 34px;
  color:#999;
  font-size:18px;
  line-height:1.55;
}
.counter-card{
  width:min(100%,620px);
  border:1px solid #1f1f1f;
  background:#0e0e0e;
  border-radius:22px;
  padding:26px;
}
.amount{
  font-size:clamp(48px,8vw,76px);
  font-weight:800;
  letter-spacing:-.05em;
}
.goal{
  color:#666;
  margin-top:3px;
}
.progress{
  margin:24px 0 15px;
  height:10px;
  border-radius:999px;
  background:#202020;
  overflow:hidden;
}
.bar{
  height:100%;
  width:0%;
  background:#fff;
  border-radius:inherit;
  transition:width .5s ease;
}
.meta{
  display:flex;
  justify-content:space-between;
  color:#777;
  font-size:13px;
}
.meta strong{color:#bbb}
.button{
  margin-top:22px;
  display:inline-block;
  background:#fff;
  color:#050505;
  text-decoration:none;
  font-weight:800;
  padding:16px 28px;
  border-radius:12px;
  min-width:180px;
}
.quick{
  display:flex;
  gap:10px;
  margin-top:12px;
  flex-wrap:wrap;
  justify-content:center;
}
.quick a{
  color:#aaa;
  border:1px solid #242424;
  text-decoration:none;
  padding:9px 13px;
  border-radius:9px;
  font-size:13px;
}
.note{
  font-size:12px;
  color:#555;
  margin-top:18px;
}
.social-proof{
  border-top:1px solid #181818;
  border-bottom:1px solid #181818;
  display:grid;
  grid-template-columns:1fr 1fr;
}
.social-proof>div{
  padding:32px 0;
}
.social-proof>div:first-child{
  padding-right:30px;
  border-right:1px solid #181818;
}
.social-proof>div:last-child{
  padding-left:30px;
}
.latest-line{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-top:12px;
  font-size:18px;
}
.latest-line span{color:#777}
.leaderboard{
  padding-top:72px;
  padding-bottom:72px;
}
.leaderboard-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:end;
  margin-bottom:24px;
}
.leaderboard h2{
  font-size:40px;
  letter-spacing:-.04em;
  margin:8px 0 0;
}
.beat{
  color:#777;
  font-size:14px;
}
.podium{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.rank-card{
  background:#0e0e0e;
  border:1px solid #202020;
  border-radius:18px;
  padding:22px;
}
.rank{
  color:#666;
  font-size:12px;
  margin-bottom:26px;
}
.rank-card strong{
  display:block;
  font-size:24px;
  margin-bottom:8px;
}
.rank-card span{
  color:#888;
}
.bottom{
  border-top:1px solid #181818;
  padding-top:70px;
  padding-bottom:70px;
  text-align:center;
}
.bottom p{
  font-size:clamp(28px,5vw,44px);
  max-width:600px;
  margin:0 auto;
  line-height:1.08;
  letter-spacing:-.04em;
}
.secondary-button{margin-top:24px}
footer{
  border-top:1px solid #181818;
  padding-top:25px;
  padding-bottom:30px;
  display:flex;
  justify-content:space-between;
  color:#555;
  font-size:12px;
}
footer a{color:#777;text-decoration:none}

@media(max-width:700px){
  .hero{min-height:auto;padding-top:90px;padding-bottom:80px}
  .subtitle{font-size:16px}
  .social-proof{grid-template-columns:1fr}
  .social-proof>div:first-child{
    border-right:0;
    border-bottom:1px solid #181818;
    padding-right:0;
  }
  .social-proof>div:last-child{padding-left:0}
  .podium{grid-template-columns:1fr}
  .leaderboard-head{align-items:start;flex-direction:column}
}
