/* CC-02b Wave 2 - extracted from FRONTEND/01_auth/verification-step-by-step.html */
:root {
            --celebration-orange: #f97316;
            --dark-900: #0f172a;
            --dark-800: #1e293b;
            --dark-700: #334155;
            --dark-600: #475569;
            --dark-500: #64748b;
            --dark-400: #94a3b8;
            --dark-300: #cbd5e1;
            --dark-200: #e2e8f0;
            --dark-100: #f1f5f9;
        }

        .verification-step {
            background: rgba(30, 41, 59, 0.8);
            backdrop-filter: blur(1rem);
            border: 0.0625rem solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .verification-step.active {
            border-color: var(--love-pink);
            background: rgba(236, 72, 153, 0.1);
            transform: translateX(0.5rem);
        }

        .verification-step.completed {
            border-color: var(--success-green);
            background: rgba(16, 185, 129, 0.1);
        }

        .verification-step.locked {
            opacity: 0.5;
            pointer-events: none;
        }

        .step-connector {
            width: 0.125rem;
            height: 4rem;
            background: linear-gradient(to bottom, transparent, var(--dark-600), transparent);
            margin: 0 auto;
        }

        .step-connector.completed {
            background: linear-gradient(to bottom, var(--success-green), var(--success-green));
        }

        .step-connector.active {
            background: linear-gradient(to bottom, var(--success-green), var(--love-pink));
        }

        .progress-ring {
            transform: rotate(-90deg);
        }

        .progress-ring-circle {
            stroke-dasharray: 251.2;
            stroke-dashoffset: 251.2;
            transition: stroke-dashoffset 0.5s ease-in-out;
        }

        .upload-zone {
            border: 0.125rem dashed rgba(255, 255, 255, 0.3);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .upload-zone:hover {
            border-color: var(--love-pink);
            background: rgba(236, 72, 153, 0.1);
        }

        .upload-zone.dragover {
            border-color: var(--success-green);
            background: rgba(16, 185, 129, 0.1);
        }

        .document-preview {
            background: rgba(30, 41, 59, 0.8);
            border: 0.0625rem solid rgba(255, 255, 255, 0.1);
            border-radius: 0.75rem;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .verification-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            border-radius: 1rem;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .verification-badge.pending {
            background: rgba(251, 191, 36, 0.2);
            color: var(--marriage-gold);
        }

        .verification-badge.verified {
            background: rgba(16, 185, 129, 0.2);
            color: var(--success-green);
        }

        .verification-badge.rejected {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
        }

        .glassmorphism {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(1rem);
            border: 0.0625rem solid rgba(255, 255, 255, 0.2);
        }

        @keyframes pulse-ring {
            0% { transform: scale(1); opacity: 1; }
            70% { transform: scale(1.5); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        .animate-slide-in {
            animation: slideIn 0.5s ease-out;
        }

        .security-shield {
            background: linear-gradient(135deg, var(--trust-blue), var(--success-green));
            border-radius: 50%;
            width: 6rem;
            height: 6rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            position: relative;
        }

        .security-shield::before {
            content: '';
            position: absolute;
            inset: -2;
            background: linear-gradient(135deg, var(--trust-blue), var(--success-green));
            border-radius: 50%;
            opacity: 0.3;
            animation: pulse-ring 2s ease-in-out infinite;
        }

        .webcam-preview {
            background: #000;
            border-radius: 1rem;
            overflow: hidden;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .webcam-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent 40%, rgba(236, 72, 153, 0.1) 50%, transparent 60%);
            border: 0.125rem solid var(--love-pink);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .face-outline {
            width: 12.5rem;
            height: 15.625rem;
            border: 0.1875rem solid var(--love-pink);
            border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
            position: relative;
        }

        .verification-checklist {
            background: rgba(30, 41, 59, 0.6);
            border: 0.0625rem solid rgba(255, 255, 255, 0.1);
            border-radius: 0.75rem;
            padding: 1.5rem;
        }

        .checklist-item {
            display: flex;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
        }

        .checklist-item:last-child {
            border-bottom: none;
        }

        .checklist-item.completed {
            color: var(--success-green);
        }

        .checklist-item.pending {
            color: var(--marriage-gold);
        }

        .confetti {
            position: fixed;
            width: 0.5rem;
            height: 0.5rem;
            pointer-events: none;
            z-index: 1000;
        }

        @keyframes confetti-fall {
            0% { transform: translateY(-100vh) rotate(0deg); opacity: 1; }
            100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
        }
