/* Creator Trust System — locked / unlocked contact cards */

.fct-wrap {
  width: 100%;
}

.fct-card {
  display: grid;
  gap: 22px;
  align-items: start;
  padding: 22px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(16, 185, 129, 0.12), transparent 42%),
    linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  box-sizing: border-box;
}

/* Top row: left = photo + CTA + contact · right = about creator */
.fct-card__top {
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  gap: 24px 32px;
  align-items: start;
}

.fct-card__left {
  min-width: 0;
}

.fct-card__left-sticky {
  display: grid;
  gap: 14px;
  align-content: start;
  position: sticky;
  top: 88px;
}

.fct-card__right {
  min-width: 0;
  display: grid;
  gap: 10px;
  align-content: start;
}

.fct-card__photo-wrap {
  display: flex;
  justify-content: flex-start;
}

.fct-card__photo {
  width: 160px;
  height: 160px;
  max-width: 100%;
  border-radius: 20px;
  object-fit: cover;
  flex: 0 0 auto;
  background: #e2e8f0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.fct-card__photo--placeholder {
  display: grid;
  place-items: center;
  font-size: 48px;
  width: 160px;
  height: 160px;
  border-radius: 20px;
}

.fct-card__access-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 220px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6b46fe, #8c68ff);
  color: #fff !important;
  font-weight: 900;
  font-size: 12.5px;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(107, 70, 254, 0.28);
  box-sizing: border-box;
}

.fct-card__access-btn:hover {
  filter: brightness(1.05);
}

.fct-card__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.fct-card__name {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.fct-card__role {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #475569;
}

.fct-card__bio {
  margin: 2px 0 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #334155;
  font-weight: 500;
}

.fct-card__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.fct-card__stars {
  display: inline-flex;
  gap: 2px;
  letter-spacing: 0;
  line-height: 1;
}

.fct-star {
  font-size: 18px;
  line-height: 1;
}

.fct-star--full {
  color: #f59e0b;
}

.fct-star--half {
  color: #f59e0b;
  opacity: 0.7;
}

.fct-star--empty {
  color: #cbd5e1;
}

.fct-card__rating-score {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
}

.fct-card__rating-count {
  font-size: 13px;
  font-weight: 650;
  color: #64748b;
}

.fct-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  font-size: 12px;
  font-weight: 800;
}

.fct-card__section-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f172a;
}

.fct-card__contacts,
.fct-card__socials {
  margin: 0;
}

.fct-contact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.fct-contact-row:last-child {
  margin-bottom: 0;
}

.fct-contact-row__label {
  font-size: 12px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fct-contact-row__value {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  word-break: break-word;
}

.fct-contact-row__value--masked {
  color: #334155;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.fct-lock-hint {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 650;
  color: #64748b;
  line-height: 1.4;
}

.fct-social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fct-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fct-social-btn--open {
  background: #eef2ff;
  color: #3730a3;
}

.fct-social-btn--locked {
  background: #f1f5f9;
  color: #475569;
  border: 1px dashed rgba(100, 116, 139, 0.45);
}

.fct-social-btn:hover {
  transform: translateY(-1px);
}

/* Why Register — two columns inside the section */
.fct-card__why {
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
  box-sizing: border-box;
}

.fct-card__why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px 28px;
  align-items: start;
}

.fct-card__why-col {
  min-width: 0;
}

.fct-card__why h4 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
}

.fct-card__why ul {
  margin: 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 7px;
  font-size: 13px;
  line-height: 1.45;
  color: #cbd5e1;
}

.fct-card__members-can-title {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

.fct-card__members-can {
  margin-bottom: 14px;
}

.fct-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 4px;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.28);
  box-sizing: border-box;
}

.fct-card__cta:hover {
  filter: brightness(1.05);
}

@media (max-width: 760px) {
  .fct-card__top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fct-card__left-sticky {
    position: static;
    justify-items: center;
  }

  .fct-card__photo-wrap {
    justify-content: center;
  }

  .fct-card__access-btn {
    max-width: none;
  }

  .fct-card__right {
    text-align: center;
    justify-items: center;
  }

  .fct-card__rating {
    justify-content: center;
  }

  .fct-card__badge {
    margin-left: auto;
    margin-right: auto;
  }

  .fct-card__why-grid {
    grid-template-columns: 1fr;
  }

  .fct-card__left {
    order: 2;
  }

  .fct-card__right {
    order: 1;
  }
}

.fct-thanks-locked {
  display: grid;
  gap: 10px;
}

.fct-thanks-locked__preview {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #334155;
  font-weight: 700;
}

.fct-thanks-locked__cta {
  display: inline-flex;
  width: fit-content;
}
