/*  */

/*  */
.join-page .join-bullets{
  width: min(var(--hero-w), calc(100vw - var(--hero-gap) * 2));
  margin: calc(var(--hero-gap) + 8px) auto 24px auto;
  padding: 0 2px;
}
.join-page .join-bullets .card{
  background: rgba(22,22,22,.88);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-xl);
  padding: 22px 22px 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 70px rgba(247,0,0,.06);
  position: relative;
  z-index: 5;                 /*  */
}
.join-page .join-bullets .card::before{
  content:""; position:absolute; inset:-1px; border-radius:inherit; padding:1px;
  background:linear-gradient(135deg, rgba(255,255,255,.06), rgba(247,0,0,.15));
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite:exclude;
  pointer-events:none;        /*  */
}

.join-page .card-head{
  font-weight:900; font-size: clamp(20px, 2.6vw, 26px);
  letter-spacing:.02em; margin: 2px 0 10px; color:#fff;
}

/* */
.join-page .checks{
  list-style:none; padding:0; margin:6px 0 8px 0;
  display:grid; grid-template-columns:1fr; gap:10px;
}
.join-page .checks li{
  display:flex; align-items:flex-start; gap:10px;
  background:rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  padding:12px 12px;
  color:#e8e8e8;
}
.join-page .checks b{ color:#fff; }

/*  */
.join-page .checks .ico{
  width:20px; height:20px; flex:0 0 20px; margin-top:2px;
  color:#18c37d; display:block;
}
.join-page .checks .ico circle{
  stroke: currentColor; stroke-width: 1.6; fill: transparent;
}
.join-page .checks .ico path{
  stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round;
}

/*  */
.join-page .note{ margin:12px 2px 8px; color:#dcdcdc; }

/*  */
.join-page .cta-row{
  display:flex; justify-content:center; margin-top: 12px;
  position: relative; z-index: 6;   /*  */
}
.join-page .cta-row .cta{ pointer-events:auto; }
.join-page .cta.pulse{
  display:inline-flex;
  animation: joinPulse 1.6s ease-in-out infinite;
}
@keyframes joinPulse{
  0%   { transform: translateY(0); box-shadow:0 14px 40px rgba(247,0,0,.38), 0 0 0 1px rgba(255,255,255,.09) inset; }
  50%  { transform: translateY(-1px); box-shadow:0 22px 56px rgba(247,0,0,.52), 0 0 0 1px rgba(255,255,255,.14) inset; }
  100% { transform: translateY(0); box-shadow:0 14px 40px rgba(247,0,0,.38), 0 0 0 1px rgba(255,255,255,.09) inset; }
}

/*  */
.join-page .join-illustration{
  width:100%;
  margin: -80px 0 120px 0;
}
.join-page .join-illustration img{
  display:block;
  height: clamp(750px, 50vh, 560px);  /* */
  width:auto;                         /* */
  margin-left:0;
  opacity:.95; filter: contrast(1.02) brightness(1.02);
}

/*  */
@media (max-width: 720px){
  .join-page .checks li{ padding:11px 12px; }
  .join-page .cta-row .cta{ width:100%; justify-content:center; }
}
