/* VIP plans — landing only (kept out of main style.css splice). */

.scl-vip {
  position: relative;
  z-index: 1;
  padding: clamp(2.75rem, 8vw, 4.5rem) 0 clamp(2rem, 6vw, 3.25rem);
}

.scl-vip__head {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.scl-vip__intro {
  max-width: 42rem;
  margin: 0.75rem auto 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #b8aed0;
}

.scl-vip__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .scl-vip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .scl-vip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

.scl-vip__cell {
  margin: 0;
  padding: 0;
  display: flex;
}

.scl-vip__card {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(167, 139, 250, 0.28);
  background: linear-gradient(
    155deg,
    rgba(124, 58, 237, 0.12) 0%,
    rgba(12, 8, 22, 0.92) 45%,
    rgba(219, 39, 119, 0.06) 100%
  );
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 18px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.scl-vip__shine {
  opacity: 0.45;
}

.scl-vip__badge {
  margin: 0 0 0.65rem;
  align-self: flex-start;
  font-family: var(--font-ui, "DM Sans", system-ui, sans-serif);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 181, 253, 0.45);
  color: #e9d5ff;
  background: rgba(124, 58, 237, 0.25);
}

.scl-vip__name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f5f3ff;
}

.scl-vip__price {
  margin: 0 0 0.5rem;
  font-family: var(--font-ui, "DM Sans", system-ui, sans-serif);
  font-size: clamp(1.85rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 0 40px rgba(124, 58, 237, 0.35);
}

.scl-vip__blurb {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #9d8fb8;
}

.scl-vip__feats {
  margin: 0 0 1.25rem;
  padding: 0 0 0 1.15rem;
  flex: 1;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #c4b5fd;
}

.scl-vip__feats li {
  margin-bottom: 0.45rem;
}

.scl-vip__feats li:last-child {
  margin-bottom: 0;
}

.scl-vip__buy {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  cursor: not-allowed;
  opacity: 0.72;
}

.scl-vip__buy:disabled {
  pointer-events: none;
}

.scl-vip__soon {
  margin: 0.65rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0abfc;
}

.scl-vip__note {
  margin: clamp(1.75rem, 4vw, 2.25rem) auto 0;
  max-width: 40rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #8b7aa8;
}

.scl-vip__note-link {
  display: inline-block;
  margin-left: 0.35rem;
  font-weight: 600;
  color: #c4b5fd;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.scl-vip__note-link:hover {
  color: #e9d5ff;
}

@media (prefers-reduced-motion: reduce) {
  .scl-vip__note-link {
    transition: none;
  }
}
