.page-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:24px;
}

.brand h1{
  margin:0;
  font-size:26px;
}

.brand p{
  margin:6px 0 0;
  color:var(--sub);
  font-size:14px;
}

.card{
  background:rgba(255,255,255,.94);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}

.hero-card{
  margin-bottom:18px;
}

.hero-label{
  margin:0 0 12px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  color:var(--main);
}

.primary-button{
  width:100%;
  height:48px;
  border-radius:16px;
  background:var(--main);
  color:#fff;
  font-weight:700;
}

.bottom-nav{
  position:fixed;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:100%;
  max-width:430px;
  height:74px;
  background:rgba(255,255,255,.96);
  border-top:1px solid var(--line);
  display:flex;
}

.bottom-nav button{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:3px;
  color:var(--sub);
}

.bottom-nav button.active{
  color:var(--main);
  font-weight:700;
}

.bottom-nav span{
  font-size:11px;
}