/* Join creator onboarding — Typeform-style */

@keyframes joinRise {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.join-typeform {
  min-height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 2.5rem;
  color: #fcffff;
}

.join-typeform__progress {
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 0.75rem 0 1rem;
  background: linear-gradient(180deg, #000 70%, transparent);
}

.join-typeform__progress-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border: 1px solid rgba(11, 249, 234, 0.2);
}

.join-typeform__progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #0bf9ea, #3bd3d3 60%, #e6be69);
  box-shadow: 0 0 18px rgba(11, 249, 234, 0.45);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.join-typeform__progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: rgba(252, 255, 255, 0.55);
}

.join-typeform__step-count {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.join-typeform__signed strong {
  color: #0bf9ea;
  font-weight: 600;
}

.join-typeform__stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
  padding: 1rem 0 2rem;
}

.join-typeform__rise {
  animation: joinRise 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.join-typeform__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(252, 255, 255, 0.5);
}

.join-typeform__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #0bf9ea;
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.join-typeform__badge--client {
  background: #f9d654;
  color: #0a0a0a;
}

.join-typeform--client .join-typeform__progress-fill {
  background: #f9d654;
}

.join-typeform__client-details {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.join-typeform__client-details .join-review__field-label {
  margin: 0.25rem 0 0;
}

.join-typeform__title {
  margin: 0 0 0.75rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 8vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
}

.join-typeform__subtitle {
  margin: 0 0 1.5rem;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: rgba(252, 255, 255, 0.65);
  line-height: 1.45;
}

.join-typeform__tip {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  padding: 0.55rem 0.85rem;
  min-height: 0;
  border-radius: 12px;
  border: 1px solid rgba(11, 249, 234, 0.28);
  background: linear-gradient(135deg, rgba(11, 249, 234, 0.08), rgba(230, 190, 105, 0.05));
}

.join-typeform__tip-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 1.45rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: #0bf9ea;
  color: #000 !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Beat child-theme `p { margin-bottom: … !important }` which inflated the tip box */
.join-typeform__tip p {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0.92rem !important;
  line-height: 1.35 !important;
  color: rgba(252, 255, 255, 0.78) !important;
}

.join-typeform__field {
  display: grid;
  gap: 0.85rem;
}

.join-typeform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 560px) {
  .join-typeform__row {
    grid-template-columns: 1fr;
  }
}

.join-typeform__input,
.join-typeform__textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font: inherit;
  font-size: 1.15rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.join-typeform__input:focus,
.join-typeform__textarea:focus {
  border-color: #0bf9ea;
  box-shadow: 0 0 0 3px rgba(11, 249, 234, 0.18);
}

.join-typeform__textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.5;
}

.join-typeform__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.join-typeform__prefix,
.join-typeform__suffix {
  position: absolute;
  color: rgba(252, 255, 255, 0.45);
  font-size: 1.1rem;
  pointer-events: none;
}

.join-typeform__prefix {
  left: 1.1rem;
}

.join-typeform__suffix {
  right: 1.1rem;
}

.join-typeform__input--prefixed {
  padding-left: 2.35rem;
}

/* Hourly rate — avoid number spinners overlapping /hr */
.join-typeform__rate {
  width: 100%;
  max-width: 280px;
}

.join-typeform__rate-field {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.join-typeform__rate-field:focus-within {
  border-color: #0bf9ea;
  box-shadow: 0 0 0 3px rgba(11, 249, 234, 0.18);
}

.join-typeform__rate-currency,
.join-typeform__rate-unit {
  flex-shrink: 0;
  color: rgba(252, 255, 255, 0.55);
  font-size: 1.15rem;
  font-weight: 600;
}

.join-typeform__rate-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 1.35rem;
  font-weight: 600;
  outline: none;
  padding: 0;
  appearance: textfield;
  -moz-appearance: textfield;
}

.join-typeform__rate-input::-webkit-outer-spin-button,
.join-typeform__rate-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.join-typeform__rate-input::placeholder {
  color: rgba(252, 255, 255, 0.28);
  font-weight: 500;
}

.join-typeform__meta {
  text-align: right;
  font-size: 0.8rem;
  color: rgba(252, 255, 255, 0.45);
}

/* Media busy: solid base + YouTube-style shimmer + branded spinner */
.dreamers-media-busy {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
}

.dreamers-media-busy--avatar {
  border-radius: 50%;
}

.dreamers-media-busy--cover,
.dreamers-media-busy--rect {
  border-radius: inherit;
}

.dreamers-media-busy--reel {
  border-radius: 16px;
}

.dreamers-media-busy__base {
  position: absolute;
  inset: 0;
  background: #2c2c2c;
}

.dreamers-media-busy__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(44, 44, 44, 1) 0%,
    rgba(44, 44, 44, 1) 38%,
    rgba(120, 120, 120, 0.95) 50%,
    rgba(44, 44, 44, 1) 62%,
    rgba(44, 44, 44, 1) 100%
  );
  background-size: 220% 100%;
  animation: dreamers-media-shimmer 1.15s ease-in-out infinite;
}

.dreamers-media-busy__center {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
}

.dreamers-media-busy .dreamers-page-loader__spin {
  width: 36px !important;
  height: 36px !important;
  border-width: 3px !important;
}

.dreamers-media-busy__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0bf9ea;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}

@keyframes dreamers-media-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

img.is-media-loading,
video.is-media-loading {
  opacity: 0 !important;
}

.provider-banner-image,
.join-review__reel-media,
.join-media-hit--cover .provider-banner-image,
.join-media-preview--avatar .provider-avatar-wrapper {
  background: #2c2c2c;
}

.join-media-hit,
.join-media-preview,
.join-review__editable,
.join-review__reel,
.provider-avatar-wrapper,
.provider-hero-banner {
  position: relative;
}

button.join-media-hit,
.join-review__editable--avatar,
.join-review__reel,
.join-review__profile > .provider-hero-banner {
  position: relative;
}

.join-typeform__media {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  width: 100%;
}

.join-typeform__media-hint {
  margin: 0 !important;
  font-size: 0.85rem !important;
  line-height: 1.4 !important;
  color: rgba(252, 255, 255, 0.5) !important;
  text-align: center;
}

/* Beat Felan global `button { height: var(--btn-height-base) }` (was squashing avatar) */
.join-media-preview {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
}

.join-media-preview--cover {
  max-width: 640px;
}

button.join-media-hit {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  transform: none !important;
  background: transparent !important;
  font: inherit !important;
  white-space: normal !important;
  line-height: normal !important;
  overflow: visible !important;
  cursor: pointer;
  position: relative;
}

button.join-media-hit:hover,
button.join-media-hit:focus,
button.join-media-hit:focus-visible,
button.join-media-hit:active {
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
}

button.join-media-hit::before {
  display: none !important;
  content: none !important;
}

/* Avatar: real profile circle */
button.join-media-hit--avatar {
  width: 180px !important;
  height: 180px !important;
  min-width: 180px !important;
  min-height: 180px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  flex-shrink: 0;
  display: grid !important;
  place-items: center;
  background: linear-gradient(135deg, rgba(59, 211, 211, 0.3), rgba(45, 58, 58, 0.8)) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
}

button.join-media-hit--avatar.join-media-hit--empty {
  border: 2px dashed rgba(11, 249, 234, 0.45) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: rgba(252, 255, 255, 0.7) !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

.join-media-preview__avatar {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  pointer-events: none;
}

.join-media-preview__avatar .provider-avatar,
button.join-media-hit--avatar > img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  border: 4px solid #000 !important;
  display: block;
}

button.join-media-hit--avatar .join-typeform__media-edit {
  border-radius: 50%;
}

button.join-media-hit--avatar:hover .join-typeform__media-edit,
button.join-media-hit--avatar:focus-visible .join-typeform__media-edit {
  opacity: 1;
}

/* Cover: real profile hero (banner + overlapping avatar only) */
button.join-media-hit--cover {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  text-align: left !important;
  color: inherit !important;
}

button.join-media-hit--cover .provider-hero-banner {
  position: relative;
  width: 100%;
  height: 220px !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 0 70px !important;
  overflow: visible;
  background: #000;
  border-radius: 14px;
}

button.join-media-hit--cover .provider-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
}

button.join-media-hit--cover .provider-banner-image .banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

button.join-media-hit--cover .provider-avatar-wrapper {
  position: absolute;
  width: 120px !important;
  height: 120px !important;
  left: 1.25rem !important;
  bottom: 0 !important;
  transform: translateY(50%) !important;
  z-index: 10;
  pointer-events: none;
}

button.join-media-hit--cover .provider-avatar-wrapper .provider-avatar,
button.join-media-hit--cover .provider-avatar-wrapper .provider-avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #000;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

button.join-media-hit--cover .join-typeform__media-edit--banner {
  border-radius: 14px;
  inset: 0;
  width: auto;
  height: auto;
  pointer-events: none;
  /* Cover only the banner area, not the hanging avatar */
  bottom: auto;
  height: 220px;
}

button.join-media-hit--cover:hover .join-typeform__media-edit--banner,
button.join-media-hit--cover:focus-visible .join-typeform__media-edit--banner {
  opacity: 1;
}

button.join-media-hit--cover-empty {
  width: min(100%, 640px) !important;
  height: 168px !important;
  min-height: 168px !important;
  border-radius: 18px !important;
  border: 2px dashed rgba(11, 249, 234, 0.45) !important;
  background: linear-gradient(135deg, rgba(11, 249, 234, 0.08), rgba(0, 0, 0, 0.6)) !important;
  color: rgba(252, 255, 255, 0.7) !important;
  font-weight: 600 !important;
  display: grid !important;
  place-items: center;
}

.join-typeform__media-edit {
  position: absolute;
  inset: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fcffff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: 3;
  display: grid;
  place-items: center;
  pointer-events: none;
}

button.join-typeform__avatar-remove {
  appearance: none;
  width: 36px !important;
  height: 36px !important;
  min-height: 36px !important;
  margin: 0.35rem 0 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(0, 0, 0, 0.65) !important;
  color: #fcffff !important;
  font-size: 1.35rem !important;
  line-height: 1 !important;
  cursor: pointer;
  display: grid !important;
  place-items: center;
  box-shadow: none !important;
  transform: none !important;
  flex-shrink: 0;
}

button.join-typeform__avatar-remove::before {
  display: none !important;
  content: none !important;
}

button.join-typeform__avatar-remove:hover,
button.join-typeform__avatar-remove:focus,
button.join-typeform__avatar-remove:active {
  border-color: #f97066 !important;
  background: rgba(249, 112, 102, 0.2) !important;
  color: #f97066 !important;
  transform: none !important;
  box-shadow: none !important;
}

button.join-typeform__avatar-remove--cover {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 12;
  margin: 0 !important;
}

@media (max-width: 560px) {
  button.join-media-hit--avatar {
    width: 140px !important;
    height: 140px !important;
    min-width: 140px !important;
    min-height: 140px !important;
  }

  button.join-media-hit--cover .provider-hero-banner {
    height: 160px !important;
    margin-bottom: 56px !important;
  }

  button.join-media-hit--cover .provider-avatar-wrapper {
    width: 96px !important;
    height: 96px !important;
    left: 50% !important;
    transform: translate(-50%, 50%) !important;
  }

  button.join-media-hit--cover .join-typeform__media-edit--banner {
    height: 160px;
  }
}

.avatar-cropper-dialog--cover {
  max-width: 480px;
}

.avatar-cropper-viewport--cover {
  border-radius: 16px !important;
  border: 2px solid rgba(11, 249, 234, 0.45) !important;
  box-shadow: none !important;
}

.join-typeform__ghost {
  background: transparent;
  border: none;
  color: #0bf9ea;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.join-typeform__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.join-typeform__skill {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #fff;
  padding: 0.65rem 1rem;
  font: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.join-typeform__skill.is-on {
  background: #0bf9ea;
  border-color: #0bf9ea;
  color: #000;
  font-weight: 600;
}

.join-typeform__specialty {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.join-typeform__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.join-typeform__tag {
  appearance: none;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #0bf9ea;
  color: #000;
  padding: 0.4rem 0.85rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: none;
  transform: none;
}

button.join-typeform__tag:hover,
button.join-typeform__tag:focus,
button.join-typeform__tag:active {
  background: #3bd3d3;
  color: #000;
  transform: none !important;
  box-shadow: none !important;
}

button.join-typeform__tag::before {
  display: none !important;
  content: none !important;
}

.join-typeform__portfolio {
  display: grid;
  gap: 0.85rem;
}

.join-typeform__portfolio-grid {
  margin-top: 0.25rem;
}

.join-typeform__drop {
  width: 100%;
  border-radius: 18px;
  border: 2px dashed rgba(11, 249, 234, 0.35);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  padding: 2rem 1.25rem;
  cursor: pointer;
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  font: inherit;
}

.join-typeform__drop span {
  color: rgba(252, 255, 255, 0.5);
  font-size: 0.9rem;
}

.join-typeform__files {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.join-typeform__files li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.join-typeform__files button {
  background: none;
  border: none;
  color: #0bf9ea;
  cursor: pointer;
  font: inherit;
}

.join-typeform__error {
  margin: 0.5rem 0 0;
  color: #f97066;
  font-size: 0.95rem;
}

.join-typeform__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.join-typeform__actions-right {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.join-typeform__back,
.join-typeform__skip {
  background: transparent;
  border: none;
  color: rgba(252, 255, 255, 0.65);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0.75rem 0.5rem;
}

.join-typeform__back:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.join-typeform__skip:hover,
.join-typeform__back:hover:not(:disabled) {
  color: #0bf9ea;
}

.join-typeform__next {
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  background: #0bf9ea;
  color: #000 !important;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(11, 249, 234, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.join-typeform__next:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(11, 249, 234, 0.38);
}

.join-typeform__next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.join-typeform__next--client {
  background: #f9d654;
  color: #0a0a0a !important;
  box-shadow: 0 8px 24px rgba(249, 214, 84, 0.32);
}

.join-typeform__next--client:hover:not(:disabled) {
  box-shadow: 0 12px 28px rgba(249, 214, 84, 0.42);
}

@media (max-width: 560px) {
  .join-typeform__progress-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .join-typeform__actions {
    flex-wrap: wrap;
  }

  .join-typeform__actions-right {
    width: 100%;
    justify-content: flex-end;
  }
}

/* —— Join review: live public-profile preview —— */
.join-review {
  padding-bottom: 3rem;
}

.join-review__chrome {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 1.25rem;
}

.join-review__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0bf9ea;
  font-weight: 700;
}

.join-review__title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fcffff;
  animation: join-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.join-review__subtitle {
  margin: 0.5rem 0 0;
  color: rgba(252, 255, 255, 0.62);
  max-width: 36rem;
  line-height: 1.5;
}

.join-review__profile {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.join-review__container {
  max-width: 960px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

.join-review__profile .provider-profile-layout {
  grid-template-columns: 180px minmax(0, 1.2fr) minmax(240px, 0.9fr) !important;
  gap: 2rem !important;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 5.5rem !important;
}

.join-review__profile .provider-avatar-column {
  display: block !important;
  min-height: 1px;
}

.join-review__profile .provider-avatar-wrapper {
  position: absolute !important;
  width: 180px !important;
  height: 180px !important;
  left: max(1.5rem, calc(50% - 480px + 1.5rem)) !important;
  bottom: 0 !important;
  transform: translateY(50%) !important;
  z-index: 12 !important;
}

.join-review__profile .provider-sidebar-column {
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.join-review__profile .sidebar-actions {
  display: none !important;
}

.join-review__profile .rating-large {
  display: none !important;
}

/* Hover-to-edit */
.join-review__editable {
  position: relative;
}

.join-review__editable-body {
  transition: opacity 0.18s ease;
}

.join-review__editable:hover > .join-review__editable-body,
.join-review__editable:focus-within > .join-review__editable-body {
  opacity: 0.45;
}

button.join-review__hover-edit {
  appearance: none !important;
  position: absolute;
  inset: 0;
  z-index: 5;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fcffff !important;
  font: inherit !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  cursor: pointer;
  opacity: 0;
  display: grid !important;
  place-items: center;
  box-shadow: none !important;
  transform: none !important;
  white-space: nowrap !important;
  height: auto !important;
  min-height: 0 !important;
  width: auto !important;
}

button.join-review__hover-edit::before {
  display: none !important;
  content: none !important;
}

button.join-review__hover-edit:hover,
button.join-review__hover-edit:focus,
button.join-review__hover-edit:active {
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.join-review__editable:hover > .join-review__hover-edit,
.join-review__editable:focus-within > .join-review__hover-edit {
  opacity: 1;
  background: rgba(0, 0, 0, 0.35) !important;
}

button.join-review__hover-edit--cover {
  inset: 0 auto auto 0;
  width: 100% !important;
  height: 100% !important;
  /* leave room for hanging avatar */
  bottom: 0;
}

button.join-review__hover-edit--avatar {
  border-radius: 50% !important;
  inset: 0;
}

.join-review__editable--avatar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: visible;
}

.join-review__editable--avatar .join-review__editable-body {
  width: 100%;
  height: 100%;
}

.join-review__editable--avatar .join-review__editable-body .provider-avatar,
.join-review__editable--avatar .join-review__editable-body .provider-avatar-placeholder {
  width: 100%;
  height: 100%;
}

.join-review__profile .provider-name {
  font-family: var(--font-family-logo, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.35rem;
  color: #fcffff;
  word-break: break-word;
}

.join-review__inline {
  margin: 0.85rem 0 1.25rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(11, 249, 234, 0.28);
  background: rgba(0, 0, 0, 0.55);
  display: grid;
  gap: 0.75rem;
}

.join-review__inline-title {
  margin: 0 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0bf9ea !important;
  font-weight: 700;
}

.join-review__inline-row {
  display: flex;
  gap: 0.65rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

button.join-review__inline-done,
a.join-review__inline-done {
  appearance: none !important;
  justify-self: end;
  border: none !important;
  border-radius: 999px !important;
  padding: 0.65rem 1.15rem !important;
  background: #0bf9ea !important;
  color: #000 !important;
  font: inherit !important;
  font-weight: 700 !important;
  cursor: pointer;
  height: auto !important;
  min-height: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

button.join-review__inline-done::before {
  display: none !important;
  content: none !important;
}

button.join-review__inline-danger {
  appearance: none !important;
  border: 1px solid rgba(249, 112, 102, 0.45) !important;
  border-radius: 999px !important;
  padding: 0.65rem 1.15rem !important;
  background: transparent !important;
  color: #f97066 !important;
  font: inherit !important;
  font-weight: 700 !important;
  cursor: pointer;
  height: auto !important;
  min-height: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

button.join-review__inline-danger::before {
  display: none !important;
  content: none !important;
}

.join-review__missing {
  color: rgba(252, 255, 255, 0.45) !important;
  font-style: italic;
  margin: 0 !important;
}

.join-review__field-label {
  margin: 0.15rem 0 0 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(252, 255, 255, 0.55) !important;
  font-weight: 700;
}

.join-review__username-field {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  padding-left: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.join-review__username-field:focus-within {
  border-color: #0bf9ea;
  box-shadow: 0 0 0 3px rgba(11, 249, 234, 0.18);
}

.join-review__username-at {
  flex-shrink: 0;
  color: #0bf9ea;
  font-size: 1.15rem;
  font-weight: 700;
}

.join-review__username-input {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-left: 0.25rem !important;
}

.join-review__username-input:focus {
  box-shadow: none !important;
}

.join-review__footer-actions {
  max-width: 960px;
  margin: 2rem auto 0;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.join-review__footer-actions .btn {
  width: 100%;
  max-width: 280px;
  text-align: center;
  justify-content: center;
}

.join-review__sidebar-actions {
  display: none;
}

.join-review__portfolio {
  max-width: 960px;
  margin: 2rem auto 0;
  padding: 0 1.5rem 1rem;
}

.join-review__portfolio-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.join-review__portfolio-head h2 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.join-review__gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
  align-items: start;
}

.join-review__gallery-item {
  display: grid;
  gap: 0.65rem;
  min-width: 0;
}

.join-review__reel {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.join-review__reel-media {
  width: 100%;
  height: 100%;
}

.join-review__reel-media img,
.join-review__reel-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.join-review__reel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 0.55rem 0.55rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  display: grid;
  gap: 0.15rem;
  font-size: 0.72rem;
  color: #fcffff;
  pointer-events: none;
}

.join-review__reel-caption em {
  font-style: normal;
  color: #0bf9ea;
  font-weight: 600;
}

button.join-review__reel--add {
  appearance: none !important;
  display: grid !important;
  place-items: center;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 9 / 16;
  border-radius: 16px !important;
  border: 2px dashed rgba(11, 249, 234, 0.45) !important;
  background: rgba(11, 249, 234, 0.06) !important;
  color: #0bf9ea !important;
  font-size: 2.5rem !important;
  font-weight: 300 !important;
  cursor: pointer;
  box-shadow: none !important;
  transform: none !important;
  padding: 0 !important;
}

button.join-review__reel--add::before {
  display: none !important;
  content: none !important;
}

button.join-review__reel--add:hover,
button.join-review__reel--add:focus,
button.join-review__reel--add:active {
  border-color: #0bf9ea !important;
  background: rgba(11, 249, 234, 0.12) !important;
  transform: none !important;
  box-shadow: none !important;
}

.join-review__inline--reel {
  width: 100%;
}

@media (max-width: 900px) {
  .join-review__profile .provider-profile-layout {
    grid-template-columns: 1fr !important;
    padding-top: 4.5rem !important;
  }

  .join-review__profile .provider-avatar-column {
    display: none !important;
  }

  .join-review__profile .provider-avatar-wrapper {
    left: 50% !important;
    transform: translate(-50%, 50%) !important;
  }

  .join-review__gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .join-review__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* —— Light mode: join Typeform + review —— */
html[data-theme='light'] .join-typeform,
body.light-theme .join-typeform {
  color: #0a0a0a;
}

html[data-theme='light'] .join-typeform__progress,
body.light-theme .join-typeform__progress {
  background: #f4f1ea;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin: 0 -1.25rem;
  padding: 0.85rem 1.25rem 0.9rem;
}

html[data-theme='light'] .join-typeform__progress-track,
body.light-theme .join-typeform__progress-track {
  height: 8px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

html[data-theme='light'] .join-typeform__progress-fill,
body.light-theme .join-typeform__progress-fill {
  box-shadow: none;
  background: linear-gradient(90deg, #0bf9ea, #2bb8b0 70%, #c9a84c);
}

html[data-theme='light'] .join-typeform__progress-meta,
body.light-theme .join-typeform__progress-meta {
  color: rgba(10, 10, 10, 0.55);
}

html[data-theme='light'] .join-typeform__signed strong,
body.light-theme .join-typeform__signed strong {
  color: #067a72;
}

html[data-theme='light'] .join-typeform__eyebrow,
body.light-theme .join-typeform__eyebrow {
  color: rgba(10, 10, 10, 0.5);
}

html[data-theme='light'] .join-typeform__title,
body.light-theme .join-typeform__title {
  color: #0a0a0a;
}

html[data-theme='light'] .join-typeform__subtitle,
body.light-theme .join-typeform__subtitle {
  color: rgba(10, 10, 10, 0.62) !important;
}

html[data-theme='light'] .join-typeform__tip,
body.light-theme .join-typeform__tip {
  border-color: rgba(6, 122, 114, 0.28);
  background: rgba(11, 249, 234, 0.12);
}

html[data-theme='light'] .join-typeform__tip p,
body.light-theme .join-typeform__tip p {
  color: rgba(10, 10, 10, 0.78) !important;
}

html[data-theme='light'] .join-typeform__input,
html[data-theme='light'] .join-typeform__textarea,
body.light-theme .join-typeform__input,
body.light-theme .join-typeform__textarea {
  border-color: rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.85);
  color: #0a0a0a;
}

html[data-theme='light'] .join-typeform__input::placeholder,
html[data-theme='light'] .join-typeform__textarea::placeholder,
body.light-theme .join-typeform__input::placeholder,
body.light-theme .join-typeform__textarea::placeholder {
  color: rgba(10, 10, 10, 0.4);
}

html[data-theme='light'] .join-typeform__input:focus,
html[data-theme='light'] .join-typeform__textarea:focus,
body.light-theme .join-typeform__input:focus,
body.light-theme .join-typeform__textarea:focus {
  border-color: #0bf9ea;
  box-shadow: 0 0 0 3px rgba(11, 249, 234, 0.25);
}

html[data-theme='light'] .join-typeform__rate-field,
body.light-theme .join-typeform__rate-field {
  border-color: rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.85);
}

html[data-theme='light'] .join-typeform__rate-currency,
html[data-theme='light'] .join-typeform__rate-unit,
body.light-theme .join-typeform__rate-currency,
body.light-theme .join-typeform__rate-unit {
  color: rgba(10, 10, 10, 0.5);
}

html[data-theme='light'] .join-typeform__rate-input,
body.light-theme .join-typeform__rate-input {
  color: #0a0a0a;
}

html[data-theme='light'] .join-typeform__rate-input::placeholder,
body.light-theme .join-typeform__rate-input::placeholder {
  color: rgba(10, 10, 10, 0.35);
}

html[data-theme='light'] button.join-typeform__tag,
body.light-theme button.join-typeform__tag {
  background: #0a0a0a;
  color: #0bf9ea;
  border-color: #0a0a0a;
}

html[data-theme='light'] button.join-typeform__tag:hover,
body.light-theme button.join-typeform__tag:hover {
  background: #111;
  color: #0bf9ea;
}

html[data-theme='light'] .join-review__field-label,
body.light-theme .join-review__field-label {
  color: rgba(10, 10, 10, 0.5) !important;
}

html[data-theme='light'] .join-review__username-field,
body.light-theme .join-review__username-field {
  border-color: rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.85);
}

html[data-theme='light'] .join-review__inline,
body.light-theme .join-review__inline {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 0, 0, 0.12);
}

html[data-theme='light'] .dreamers-media-busy__base,
body.light-theme .dreamers-media-busy__base {
  background: #d4d0c6;
}

html[data-theme='light'] .dreamers-media-busy__shimmer,
body.light-theme .dreamers-media-busy__shimmer {
  background: linear-gradient(
    110deg,
    #d4d0c6 0%,
    #d4d0c6 38%,
    #f0ebe3 50%,
    #d4d0c6 62%,
    #d4d0c6 100%
  );
  background-size: 220% 100%;
}

html[data-theme='light'] .provider-banner-image,
html[data-theme='light'] .join-review__reel-media,
html[data-theme='light'] .join-media-hit--cover .provider-banner-image,
html[data-theme='light'] .join-media-preview--avatar .provider-avatar-wrapper,
body.light-theme .provider-banner-image,
body.light-theme .join-review__reel-media,
body.light-theme .join-media-hit--cover .provider-banner-image,
body.light-theme .join-media-preview--avatar .provider-avatar-wrapper {
  background: #d4d0c6;
}

html[data-theme='light'] .join-typeform__back,
html[data-theme='light'] .join-typeform__skip,
body.light-theme .join-typeform__back,
body.light-theme .join-typeform__skip {
  color: rgba(10, 10, 10, 0.55);
}

html[data-theme='light'] .join-typeform__back:hover:not(:disabled),
html[data-theme='light'] .join-typeform__skip:hover,
body.light-theme .join-typeform__back:hover:not(:disabled),
body.light-theme .join-typeform__skip:hover {
  color: #067a72;
}

html[data-theme='light'] .join-typeform__actions,
body.light-theme .join-typeform__actions {
  border-top-color: rgba(0, 0, 0, 0.1);
}

html[data-theme='light'] .join-typeform__skill,
body.light-theme .join-typeform__skill {
  border-color: rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: #0a0a0a;
}

html[data-theme='light'] .join-typeform__skill.is-on,
body.light-theme .join-typeform__skill.is-on {
  border-color: #0bf9ea;
  background: rgba(11, 249, 234, 0.18);
  color: #0a0a0a;
}

html[data-theme='light'] button.join-media-hit--avatar.join-media-hit--empty,
html[data-theme='light'] button.join-media-hit--cover-empty,
body.light-theme button.join-media-hit--avatar.join-media-hit--empty,
body.light-theme button.join-media-hit--cover-empty {
  border-color: rgba(0, 0, 0, 0.16) !important;
  background: rgba(0, 0, 0, 0.04) !important;
  color: rgba(10, 10, 10, 0.65) !important;
}

html[data-theme='light'] button.join-typeform__avatar-remove,
body.light-theme button.join-typeform__avatar-remove {
  border-color: rgba(0, 0, 0, 0.14) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  color: #0a0a0a !important;
}

html[data-theme='light'] .join-typeform__media-hint,
body.light-theme .join-typeform__media-hint {
  color: rgba(10, 10, 10, 0.5) !important;
}

html[data-theme='light'] .join-review__title,
body.light-theme .join-review__title {
  color: #0a0a0a;
}

html[data-theme='light'] .join-review__subtitle,
body.light-theme .join-review__subtitle {
  color: rgba(10, 10, 10, 0.6);
}

html[data-theme='light'] .join-review__profile,
body.light-theme .join-review__profile {
  border-top-color: rgba(0, 0, 0, 0.1);
}

