        .projects-hero {
            padding: calc(var(--header-height) + 56px) 0 56px;
            background: linear-gradient(135deg, #020617 0%, #0a1628 40%, #0f172a 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .projects-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(14, 165, 233, 0.08), transparent);
            pointer-events: none;
        }

        .open-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(14, 165, 233, 0.1);
            color: #38bdf8;
            border: 1px solid rgba(14, 165, 233, 0.25);
            padding: 6px 14px;
            border-radius: 9999px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            margin-bottom: 18px;
        }

        .open-badge::before {
            content: '';
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #22c55e;
            box-shadow: 0 0 6px #22c55e;
            animation: blink 1.4s ease-in-out infinite;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: 0.4
            }
        }

        .projects-hero h1 {
            font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 800;
            color: #f8fafc;
            letter-spacing: -0.04em;
            line-height: 1.2;
            margin-bottom: 14px;
        }

        .projects-hero p {
            color: #94a3b8;
            font-size: 1rem;
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.65;
        }

        .projects-section {
            padding: 56px 0 80px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 20px;
        }

        .proj-card {
            background: rgba(15, 23, 42, 0.7);
            border: 1px solid rgba(14, 165, 233, 0.18);
            border-radius: 16px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            position: relative;
            overflow: hidden;
            transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
        }

        .proj-card:hover {
            border-color: rgba(14, 165, 233, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(14, 165, 233, 0.1);
        }

        .proj-card-status {
            position: absolute;
            top: 0;
            right: 0;
            background: rgba(34, 197, 94, 0.12);
            color: #22c55e;
            font-size: 0.65rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 4px 10px;
            border-bottom-left-radius: 8px;
        }

        .proj-card-title {
            font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: #f1f5f9;
            letter-spacing: -0.02em;
            line-height: 1.3;
            padding-right: 48px;
        }

        .proj-card-types {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .proj-type-badge {
            font-size: 0.72rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 9999px;
            border: 1px solid;
        }

        .pt-Transcription {
            background: rgba(59, 130, 246, 0.15);
            color: #60a5fa;
            border-color: rgba(59, 130, 246, 0.3);
        }

        .pt-Voice {
            background: rgba(236, 72, 153, 0.15);
            color: #f472b6;
            border-color: rgba(236, 72, 153, 0.3);
        }

        .pt-AI {
            background: rgba(139, 92, 246, 0.15);
            color: #a78bfa;
            border-color: rgba(139, 92, 246, 0.3);
        }

        .pt-Localization {
            background: rgba(16, 185, 129, 0.15);
            color: #34d399;
            border-color: rgba(16, 185, 129, 0.3);
        }

        .pt-Data {
            background: rgba(245, 158, 11, 0.15);
            color: #fbbf24;
            border-color: rgba(245, 158, 11, 0.3);
        }

        .pt-default {
            background: rgba(100, 116, 139, 0.15);
            color: #94a3b8;
            border-color: rgba(100, 116, 139, 0.3);
        }

        .proj-card-lang {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #64748b;
            font-size: 0.85rem;
        }

        .proj-card-desc {
            color: #94a3b8;
            font-size: 0.875rem;
            line-height: 1.6;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .proj-card-deadline {
            font-size: 0.75rem;
            color: #475569;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .proj-form-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            color: #38bdf8;
            background: rgba(14, 165, 233, 0.08);
            border: 1px solid rgba(14, 165, 233, 0.2);
            padding: 4px 10px;
            border-radius: 6px;
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 900;
            background: rgba(0, 0, 0, 0.65);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }

        .modal-overlay.hidden {
            display: none;
        }

        .modal-box {
            background: #0f172a;
            border: 1px solid #1e293b;
            border-radius: 20px;
            padding: 28px 28px 24px;
            max-width: 520px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            cursor: pointer;
            color: #64748b;
            font-size: 1.3rem;
            line-height: 1;
            transition: color 0.2s;
        }

        .modal-close:hover {
            color: #f1f5f9;
        }

        .modal-title {
            font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: #f1f5f9;
            letter-spacing: -0.03em;
            margin-bottom: 4px;
        }

        .modal-sub {
            font-size: 0.82rem;
            color: #64748b;
            margin-bottom: 20px;
        }

        .apply-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .apply-form label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: #94a3b8;
            margin-bottom: 5px;
        }

        .apply-form input,
        .apply-form select,
        .apply-form textarea {
            width: 100%;
            padding: 10px 14px;
            background: #020617;
            border: 1px solid #1e293b;
            border-radius: 10px;
            color: #f1f5f9;
            font-size: 0.875rem;
            font-family: inherit;
            outline: none;
            transition: border-color 0.2s;
        }

        .apply-form input:focus,
        .apply-form select:focus,
        .apply-form textarea:focus {
            border-color: #0ea5e9;
            box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.15);
        }

        .apply-form textarea {
            min-height: 80px;
            resize: vertical;
        }

        .equip-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .equip-label {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 7px 12px;
            border-radius: 8px;
            border: 1px solid #1e293b;
            background: #020617;
            cursor: pointer;
            font-size: 0.82rem;
            color: #94a3b8;
            transition: all 0.18s;
        }

        .equip-label:has(input:checked) {
            border-color: #0ea5e9;
            background: rgba(14, 165, 233, 0.1);
            color: #f1f5f9;
        }

        .equip-label input {
            display: none;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .form-error {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #f87171;
            border-radius: 8px;
            padding: 10px 14px;
            font-size: 0.82rem;
        }

        .form-success-msg {
            text-align: center;
            padding: 24px 0;
        }

        .form-success-msg .checkmark {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(34, 197, 94, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
        }

        .form-success-msg h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #f1f5f9;
            margin-bottom: 6px;
        }

        .form-success-msg p {
            font-size: 0.875rem;
            color: #64748b;
        }

        .btn-apply {
            width: 100%;
            padding: 12px 20px;
            background: var(--color-accent);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            font-family: inherit;
        }

        .btn-apply:hover {
            background: var(--color-accent-hover);
        }

        .btn-apply:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .proj-card-apply-btn {
            margin-top: auto;
            width: 100%;
            padding: 11px 16px;
            background: var(--color-accent);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 0.875rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            font-family: inherit;
        }

        .proj-card-apply-btn:hover {
            background: var(--color-accent-hover);
            transform: translateY(-1px);
        }

        .loading-spinner {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 200px;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(14, 165, 233, 0.2);
            border-top-color: #0ea5e9;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .empty-state {
            text-align: center;
            padding: 80px 20px;
            color: #475569;
        }

        .empty-state p {
            margin-bottom: 24px;
        }

        .cta-section {
            padding: 56px 0;
            border-top: 1px solid #1e293b;
            text-align: center;
        }

        .cta-section h3 {
            font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: #f1f5f9;
            letter-spacing: -0.03em;
            margin-bottom: 10px;
        }

        .cta-section p {
            color: #64748b;
            font-size: 0.925rem;
            margin-bottom: 24px;
        }

        .proj-instruction-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
            padding: 10px 16px;
            border-radius: 12px;
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.3);
            color: #fbbf24;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: background 0.2s;
            text-decoration: none;
            font-family: inherit;
            margin-bottom: 8px;
        }
        .proj-instruction-btn:hover {
            background: rgba(245, 158, 11, 0.2);
            color: #fbbf24;
        }
        .proj-file-upload-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
            padding: 10px 16px;
            border-radius: 12px;
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
            color: #22d3ee;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: background 0.2s;
            font-family: inherit;
            margin-top: 8px;
        }
        .proj-file-upload-btn:hover {
            background: rgba(6, 182, 212, 0.2);
        }
        .file-upload-overlay {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(4px);
            padding: 16px;
        }
        .file-upload-modal {
            background: #1e293b;
            border: 1px solid rgba(148,163,184,0.2);
            border-radius: 16px;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
            padding: 24px 32px;
            max-width: 440px;
            width: 100%;
            position: relative;
        }
        .file-upload-modal h3 { color: #f1f5f9; font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
        .file-upload-modal .fu-sub { color: #94a3b8; font-size: 0.8rem; margin-bottom: 20px; }
        .file-upload-modal label { display: block; color: #cbd5e1; font-size: 0.82rem; font-weight: 500; margin-bottom: 6px; }
        .file-upload-modal input[type="text"],
        .file-upload-modal input[type="email"] {
            width: 100%; padding: 10px 14px; border-radius: 12px; background: #0f172a;
            border: 1px solid rgba(148,163,184,0.2); color: #f1f5f9; font-size: 0.875rem;
            margin-bottom: 14px; font-family: inherit;
        }
        .file-upload-modal input:focus { outline: none; border-color: #06b6d4; box-shadow: 0 0 0 2px rgba(6,182,212,0.2); }
        .file-upload-modal .fu-submit {
            width: 100%; padding: 12px; border-radius: 12px; background: #0891b2; color: #fff;
            font-weight: 700; font-size: 0.9rem; border: none; cursor: pointer; transition: background 0.2s; font-family: inherit;
        }
        .file-upload-modal .fu-submit:hover { background: #06b6d4; }
        .file-upload-modal .fu-submit:disabled { opacity: 0.6; cursor: not-allowed; }
        .file-upload-modal .fu-close { position: absolute; top: 12px; right: 12px; background: none; border: none; color: #94a3b8; cursor: pointer; font-size: 1.4rem; }
        .file-upload-modal .fu-error { padding: 10px; border-radius: 8px; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #f87171; font-size: 0.82rem; margin-bottom: 14px; }

        .apply-step-section { margin: 16px 0; padding: 16px; background: rgba(15,23,42,0.6); border-radius: 12px; border: 1px solid rgba(148,163,184,0.15); }
        .apply-step-section.step-locked { opacity: 0.45; pointer-events: none; }
        .apply-step-section .step-title { font-size: 0.85rem; font-weight: 600; color: #e2e8f0; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
        .apply-step-section .step-num { width: 22px; height: 22px; border-radius: 50%; background: rgba(14,165,233,0.15); color: #38bdf8; font-size: 0.72rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .apply-step-section .step-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(34,197,94,0.2); color: #22c55e; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; }
        .step-instruction-dl { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); border-radius: 8px; color: #fbbf24; font-size: 0.82rem; font-weight: 600; text-decoration: none; cursor: pointer; transition: background 0.2s; }
        .step-instruction-dl:hover { background: rgba(245,158,11,0.2); }
        .step-confirm-label { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: #94a3b8; cursor: pointer; margin-top: 10px; font-weight: 400; }
        .step-confirm-label input:disabled { cursor: not-allowed; opacity: 0.5; }
        .fu-inline-status { font-size: 0.78rem; margin-top: 6px; color: #64748b; }
        .fu-inline-status.success { color: #22c55e; }
        .fu-inline-status.error { color: #f87171; }
        .fu-inline-upload-btn { padding: 8px 14px; background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.3); border-radius: 8px; color: #22d3ee; font-size: 0.82rem; font-weight: 600; cursor: pointer; font-family: inherit; margin-top: 8px; }
        .fu-inline-upload-btn:hover { background: rgba(6,182,212,0.2); }
        .fu-inline-upload-btn:disabled { opacity: 0.5; cursor: not-allowed; }

        .proj-card-share-btn {
            width: 100%;
            padding: 8px 14px;
            background: transparent;
            border: 1px solid rgba(14, 165, 233, 0.2);
            border-radius: 10px;
            color: #38bdf8;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: background 0.2s, border-color 0.2s;
            margin-top: 6px;
        }

        .proj-card-share-btn:hover {
            background: rgba(14, 165, 233, 0.08);
            border-color: rgba(14, 165, 233, 0.4);
        }

        .proj-card-share-btn.copied {
            color: #22c55e;
            border-color: rgba(34, 197, 94, 0.4);
            background: rgba(34, 197, 94, 0.06);
        }

        @keyframes modalblink { 0%, 100% { opacity: 1 } 50% { opacity: 0.3 } }
