/* WAI31 – subs pages */
.subs-wrap{
  padding: 140px 16px 90px;
}
.subs-card{
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}
.subs-title{
  font-size: 56px;
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: .2px;
}
.subs-subtitle{
  margin: 0 0 24px;
  opacity: .85;
}
.subs-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.subs-grid .full{ grid-column: 1 / -1; }

.subs-label{
  display:block;
  font-size: 14px;
  opacity: .9;
  margin-bottom: 6px;
}
.subs-input{
  width: 100%;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.28);
  color: #fff;
  padding: 0 12px;
  outline: none;
}
.subs-input:focus{
  border-color: rgba(0,255,170,.55);
  box-shadow: 0 0 0 4px rgba(0,255,170,.12);
}

.subs-actions{
  display:flex;
  gap: 12px;
  align-items:center;
  justify-content: space-between;
  margin-top: 18px;
}
.subs-btn{
  height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  border: 0;
  background: linear-gradient(135deg, rgba(0,255,170,.95), rgba(0,160,255,.9));
  color: #081018;
  font-weight: 700;
  cursor: pointer;
}
.subs-hint{
  font-size: 13px;
  opacity: .75;
}

.subs-alert{
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,80,80,.35);
  background: rgba(255,80,80,.10);
}

@media (max-width: 720px){
  .subs-title{ font-size: 42px; }
  .subs-grid{ grid-template-columns: 1fr; }
}
