/* ═══════════════════════════════════════════
   SEED Mentor Onboarding — mentor-onboarding.css
   Extends onboarding.css + seed-onboarding.css
   ═══════════════════════════════════════════ */

/* ── Mentor sidebar accent ── */
.seed-sidebar-mentor {
  background: linear-gradient(180deg, #1a1060 0%, #3b0764 45%, #5b21b6 100%);
}

.seed-badge-mentor {
  background: rgba(253, 230, 138, 0.18);
  color: #fde68a;
  border: 1px solid rgba(253, 230, 138, 0.25);
}

/* ── Mentor sidebar impact stats ── */
.mentor-sidebar-impact {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mentor-impact-stat {
  padding: 10px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.mentor-impact-stat span {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  color: #fde68a;
  line-height: 1.1;
}

.mentor-impact-stat small {
  display: block;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3px;
  line-height: 1.3;
}

/* ── Trust bar ── */
.mentor-trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 10px 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #065f46;
}

.mentor-trust-bar span:nth-child(even) {
  color: #94a3b8;
  font-weight: 400;
}

/* ── Verification info box ── */
.mentor-verify-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 8px;
  margin-bottom: 24px;
}

.mentor-verify-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #7c3aed;
  color: #fff;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.mentor-verify-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #92400e;
  line-height: 1.55;
}

/* ── What happens next ── */
.mentor-whats-next {
  margin-top: 28px;
  padding: 22px 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.mentor-whats-next h3 {
  margin: 0 0 18px;
  font-size: 1rem;
  font-weight: 900;
  color: #0f172a;
}

.mentor-next-steps {
  display: grid;
  gap: 14px;
}

.mentor-next-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.mentor-next-num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #7c3aed;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
}

.mentor-next-step div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 3px;
}

.mentor-next-step strong {
  font-size: 0.9rem;
  color: #0f172a;
}

.mentor-next-step span {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
}

/* ── Mentor submit button accent ── */
.seed-btn-mentor {
  background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%) !important;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35) !important;
  letter-spacing: 0.01em;
}

.seed-btn-mentor:hover {
  background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 100%) !important;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.45) !important;
}

/* ── Success panel ── */
.mentor-success-panel {
  text-align: center;
  padding: 48px 40px !important;
}

.mentor-success-checklist {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px auto;
  text-align: left;
}

.mentor-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.mentor-check-item span {
  font-size: 1.1rem;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .mentor-sidebar-impact {
    display: none; /* hide on mobile sidebar - saves space */
  }

  .mentor-trust-bar {
    font-size: 0.76rem;
    gap: 6px 12px;
  }

  .mentor-verify-info {
    flex-direction: column;
    gap: 10px;
  }

  .mentor-whats-next {
    padding: 16px;
  }
}

@media (max-width: 520px) {
  .mentor-trust-bar span:nth-child(even) {
    display: none; /* hide separators */
  }

  .mentor-success-panel {
    padding: 32px 20px !important;
  }

  .mentor-whats-next h3 {
    font-size: 0.94rem;
  }
}
