/* =========================================
   WIZARD / STEPPER STYLES - Consolidated
   ========================================= */

.step-content {
  animation: fadeIn 0.4s ease-out;
  max-width: 900px;
  margin: 0 auto;
}

/* --- Step 1: Upload --- */
#uploadArea.drag-active {
    border-color: var(--primary, #9359f8) !important;
    background: linear-gradient(135deg, rgba(147, 89, 248, 0.1) 0%, rgba(147, 89, 248, 0.05) 100%) !important;
    transform: scale(1.01);
}

.section-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.3s;
}

/* --- Step 2: Verification --- */
.completeness-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--primary, #9359f8) calc(var(--completeness, 0) * 1%), rgba(255, 255, 255, 0.1) 0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.completeness-circle::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: #0a0a0a;
}

.verify-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.verify-section.collapsed .verify-section-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

/* --- Step 3: AI Profiles --- */
.ai-profile-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(147, 89, 248, 0.2);
}
