/* 会员订阅页 */

.ms-scope.membership-home {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.ms-scope .lj-daily-hero {
  min-height: clamp(220px, 38vh, 320px);
}

.ms-scope .lj-daily-hero-inner {
  text-align: center;
  max-width: 40em;
  margin: 0 auto;
}

.ms-scope .ms-hero-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: rgba(226, 198, 255, 0.85);
  margin: 0 0 10px;
}

.ms-scope .ms-hero-lead {
  margin: 14px auto 0;
  max-width: 32em;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(240, 238, 247, 0.78);
}

.ms-pricing {
  padding: clamp(28px, 5vw, 48px) clamp(14px, 4vw, 24px) clamp(40px, 6vw, 56px);
  max-width: 1280px;
  margin: 0 auto;
}

.ms-pricing-head {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.ms-pricing-head h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  font-weight: 600;
  color: #f0eef7;
}

.ms-pricing-head p {
  margin: 10px 0 0;
  font-size: 0.86rem;
  color: rgba(226, 198, 255, 0.72);
}

.ms-pricing-region {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  background: rgba(18, 10, 32, 0.45);
}

.ms-pricing-region.is-detected-only .ms-pricing-region-select {
  display: none;
}

.ms-pricing-region-label {
  font-size: 0.78rem;
  color: rgba(226, 198, 255, 0.88);
  font-weight: 600;
}

.ms-pricing-region-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: #f5e6ff;
  letter-spacing: 0.02em;
}

.ms-pricing-region-hint {
  flex: 1 1 100%;
  font-size: 0.72rem;
  color: rgba(196, 181, 253, 0.62);
  text-align: center;
}

.ms-section-eyebrow {
  display: block;
  margin: 0 0 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(251, 191, 36, 0.7);
}

.ms-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 20px);
  align-items: stretch;
}

@media (max-width: 1100px) {
  .ms-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .ms-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* 按钮基础（卡片结构见 membership-cards.css） */
.ms-plan-btn {
  width: 100%;
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s ease,
    filter 0.2s ease;
}

.ms-plan-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.ms-plan-btn:disabled {
  opacity: 0.72;
  cursor: default;
}

.ms-plan-btn--outline {
  background: transparent;
  border: 1px solid rgba(184, 124, 255, 0.55);
  color: #e2c6ff;
}

.ms-plan-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #9a4eff);
  box-shadow: 0 4px 20px rgba(184, 124, 255, 0.35);
}

.ms-plan-btn--gold {
  color: #1a0a2e;
  background: linear-gradient(135deg, #fde68a, #ffb86b);
  box-shadow: 0 4px 20px rgba(255, 184, 107, 0.3);
}

.ms-plan-btn--ghost {
  background: rgba(184, 124, 255, 0.12);
  border: 1px solid rgba(184, 124, 255, 0.35);
  color: #e2c6ff;
}

.ms-foot {
  max-width: 720px;
  margin: clamp(28px, 4vw, 40px) auto 0;
  padding: 0 clamp(14px, 4vw, 24px) 32px;
  text-align: center;
}

.ms-foot p {
  margin: 0 0 8px;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(196, 181, 253, 0.55);
}

.ms-foot a {
  color: rgba(184, 124, 255, 0.85);
  text-decoration: none;
}

.ms-foot a:hover {
  text-decoration: underline;
}
