.site-account-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.member-center-link,
.site-login-button {
  padding: 9px 14px;
  border: 1px solid rgba(133, 189, 255, 0.22);
  border-radius: 999px;
  color: #dceaff;
  background: rgba(24, 48, 78, 0.56);
  font: inherit;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
}

.site-login-button {
  border-color: rgba(82, 226, 164, 0.28);
  color: #8ff0c1;
  background: rgba(42, 142, 100, 0.13);
}

.pricing-section {
  width: min(930px, 100%);
  margin: 70px auto 0;
  padding-top: 20px;
}

.pricing-eyebrow {
  margin: 0 0 8px;
  color: #52e2a4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.pricing-section h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.pricing-card {
  display: flex;
  min-height: 270px;
  padding: 23px;
  border: 1px solid rgba(133, 189, 255, 0.18);
  border-radius: 20px;
  flex-direction: column;
  background: rgba(13, 28, 48, 0.72);
  text-align: left;
}

.pricing-card.featured {
  border-color: rgba(65, 217, 255, 0.48);
  background: linear-gradient(155deg, rgba(24, 66, 96, 0.88), rgba(13, 28, 48, 0.82));
  box-shadow: 0 18px 70px rgba(24, 128, 167, 0.16);
}

.pricing-card > span {
  color: #8bdfff;
  font-size: 13px;
  font-weight: 800;
}

.pricing-card strong {
  margin-top: 15px;
  font-size: 31px;
}

.pricing-card strong small {
  color: #91a7c0;
  font-size: 13px;
}

.pricing-card p {
  flex: 1;
  color: #9eb0c9;
  font-size: 14px;
  line-height: 1.75;
}

.pricing-card button {
  padding: 11px 14px;
  border: 0;
  border-radius: 11px;
  color: white;
  background: linear-gradient(105deg, #6278ff, #37c9e6);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.pricing-card button:disabled {
  color: #8ca0b9;
  background: rgba(120, 147, 180, 0.12);
  cursor: default;
}

.site-purchase-message {
  min-height: 22px;
  margin-top: 18px;
  color: #92abc5;
  font-size: 13px;
}

.member-shell {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 70px;
}

.member-panel {
  margin-top: 55px;
  padding: 32px;
  border: 1px solid rgba(133, 189, 255, 0.19);
  border-radius: 24px;
  background: rgba(13, 28, 48, 0.82);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.28);
}

.member-panel h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
}

.member-panel > p {
  color: #9eb0c9;
  line-height: 1.8;
}

.account-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  padding: 17px;
  border: 1px solid rgba(82, 226, 164, 0.2);
  border-radius: 15px;
  background: rgba(35, 100, 76, 0.13);
}

.account-summary img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.checkout-box {
  width: min(520px, 100%);
  margin: 50px auto;
  padding: 32px;
  border: 1px solid rgba(133, 189, 255, 0.2);
  border-radius: 24px;
  background: rgba(13, 28, 48, 0.88);
  text-align: center;
}

.checkout-qr {
  display: block;
  width: min(290px, 90%);
  margin: 24px auto;
  padding: 12px;
  border-radius: 18px;
  background: white;
}

.checkout-status {
  color: #9eb0c9;
  line-height: 1.8;
}

@media (max-width: 720px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .site-account-actions {
    gap: 6px;
  }

  .member-center-link {
    display: none;
  }
}
