/* ============================================================
   Play With Me — membership. Three tiers on a difficulty ladder:
   Lurker → Player Two → Final Boss.
   ============================================================ */

/* ============================================================
   VIDEO BACKGROUND — desktop only, muted
   ============================================================ */

.join-video-bg {
  display: none;
}

@media (min-width: 1001px) {
  .join-video-bg {
    display: block;
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
  }

  .join-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.18;
    filter: saturate(0.5) blur(1px);
  }

  .join-video-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(157, 92, 255, 0.12), rgba(10, 5, 18, 0.65) 90%);
  }
}

/* mobile video bg — visible only below 1000px */
.join-video-bg-mobile {
  display: none;
}

@media (max-width: 1000px) {
  .join-video-bg-mobile {
    display: block;
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
  }

  .join-video-bg-mobile video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.18;
    filter: saturate(0.5) blur(1px);
  }

  .join-video-bg-mobile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(157, 92, 255, 0.12), rgba(10, 5, 18, 0.65) 90%);
  }
}

.join-hero {
  padding: 9.5rem var(--gutter) 0;
  max-width: 90rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
}

.join-hero .display {
  font-size: clamp(2.4rem, 1.8rem + 4.5vw, 5.8rem);
  color: var(--chrome);
  max-width: 54rem;
  text-transform: uppercase;
}

.join-hero .lede { text-align: center; }

/* scarcity strip */
.join-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.4rem;
  padding: 0.55rem 1.3rem;
  border-radius: 3px;
  border: 1px solid rgba(125, 249, 228, 0.4);
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.join-scarcity::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--acid);
  animation: pulse 2s ease-out infinite;
}

/* ---------- tiers ---------- */

.tiers {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
  align-items: stretch;
  width: 100%;
  max-width: 74rem;
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 2.5rem 2rem 2.2rem;
  border-radius: 5px;
  border: 1px solid rgba(157, 92, 255, 0.25);
  background: linear-gradient(165deg, rgba(29, 16, 51, 0.85), rgba(10, 5, 18, 0.95));
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease-snap),
              border-color var(--dur-mid) var(--ease-snap),
              box-shadow var(--dur-mid) var(--ease-snap);
}

/* tier card video backgrounds */
.tier-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.tier-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
  filter: saturate(0.5) blur(3px);
}

.tier-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(29, 16, 51, 0.5), rgba(10, 5, 18, 0.65));
}

/* ensure all tier content sits above the video */
.tier > *:not(.tier-video) {
  position: relative;
  z-index: 1;
}

.tier:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  border-color: rgba(157, 92, 255, 0.6);
  box-shadow: 0 40px 80px -40px rgba(157, 92, 255, 0.5);
}

.tier-featured {
  border-color: rgba(214, 179, 255, 0.7);
  background: linear-gradient(165deg, rgba(44, 22, 79, 0.95), rgba(19, 10, 34, 0.98));
  box-shadow: 0 0 60px -18px rgba(157, 92, 255, 0.6);
  transform: translateY(-1.1rem);
}

.tier-featured:hover { transform: translateY(calc(-1.1rem - 6px)) rotate(-0.4deg); }

.tier-flag {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%) rotate(-1.5deg);
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.42rem 1.1rem;
  border-radius: 3px;
  background: var(--acid);
  color: var(--void);
}

.tier-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--uv);
  text-shadow: 0 0 20px rgba(157, 92, 255, 0.45);
}

.tier-desc {
  margin-top: 0.5rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  min-height: 3.2em;
}

.tier-price {
  margin-top: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.tier-price strong {
  font-family: var(--font-display);
  font-size: 2.9rem;
  font-weight: 600;
  color: var(--chrome);
  line-height: 1;
}

.tier-price span { color: var(--text-dim); font-size: 0.82rem; }

.tier-price .was {
  text-decoration: line-through;
  color: rgba(141, 127, 168, 0.5);
}

.tier-perks {
  margin-top: 1.7rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(157, 92, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.tier-perks li {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  font-size: 0.92rem;
  color: var(--text);
}

.tier-perks li::before {
  content: "\26A1";
  font-size: 0.8rem;
  flex-shrink: 0;
}

.tier-perks li.muted { color: rgba(141, 127, 168, 0.5); }
.tier-perks li.muted::before { content: "\00D7"; color: rgba(141, 127, 168, 0.4); }

.tier .btn { margin-top: 2rem; justify-content: center; }

.tg-hint {
  display: block;
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(141, 127, 168, 0.8);
}

@media (max-width: 960px) {
  .tiers { grid-template-columns: 1fr; max-width: 30rem; }
  .tier-featured { transform: none; }
  .tier-featured:hover { transform: translateY(-6px); }
}

/* ---------- how it works ---------- */

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
  max-width: 74rem;
  margin: 0 auto;
}

.how-step {
  position: relative;
  padding: 2.2rem 1.9rem;
  border: 1px solid rgba(157, 92, 255, 0.22);
  border-radius: 5px;
  background: linear-gradient(165deg, rgba(29, 16, 51, 0.6), rgba(10, 5, 18, 0.85));
}

.how-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.2rem;
  color: rgba(157, 92, 255, 0.4);
  line-height: 1;
}

.how-step h3 {
  margin-top: 0.8rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--chrome);
}

.how-step p {
  margin-top: 0.55rem;
  color: var(--text-dim);
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .how-steps { grid-template-columns: 1fr; max-width: 30rem; }
}

/* ---------- what you get ---------- */

.join-includes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(157, 92, 255, 0.22);
  border: 1px solid rgba(157, 92, 255, 0.22);
}

.join-include {
  background: var(--void);
  padding: 2.2rem 1.7rem;
}

.join-include .neon { font-size: 1.15rem; display: block; }

.join-include p {
  margin-top: 0.7rem;
  color: var(--text-dim);
  font-size: 0.88rem;
}

@media (max-width: 900px) { .join-includes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .join-includes { grid-template-columns: 1fr; } }

/* ---------- house rules (faq) ---------- */

.rules {
  max-width: 46rem;
  margin: 0 auto;
}

.rule { border-bottom: 1px solid rgba(157, 92, 255, 0.18); }

.rule summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--chrome);
  transition: color var(--dur-mid) ease;
}

.rule summary::-webkit-details-marker { display: none; }

.rule summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--violet-hot);
  transition: transform var(--dur-mid) var(--ease-snap);
}

.rule[open] summary::after { transform: rotate(45deg); }

.rule summary:hover { color: var(--uv); }

.rule p {
  padding: 0 0 1.5rem;
  color: var(--text-dim);
  max-width: 38rem;
}
