Portfolio


Selected Engagements in Phase-Appropriate Quality Systems

Client 1

QMS Architecture for Early-Stage Diagnostics Company

Partner






Challenge:

Diagnostics startup needed a compliant, investor-ready QMS framework before pre-submission activity, without overbuilding beyond its current operating phase.


Approach:

Built a phase-appropriate QMS architecture with document hierarchy, SOP sequencing, ownership paths, training expectations, and audit-readiness gates aligned to regulatory exposure.


Outcome:

Delivered a defensible quality framework that improved inspection readiness, clarified execution ownership, and supported smoother investor and pre-market review.

Status:

COMPLETE


Site content is proprietary and may not be copied...
Registered in the State of Ohio.

© 2026 DeiCell Systems LLC. All rights reserved.
Site content is proprietary and may not be copied, reproduced, or redistributed without written permission.

DeiCell Systems
(function(){ "use strict"; /* ======================================================= CONFIGURATION ======================================================= */ const MOBILE_BREAKPOINT = 736; const HIDDEN_IMAGE_NAMES = [ "Target", "Checkmark", "Scale", "Flag", "N/A" ]; const HIDDEN_CLASS = "dc-mobile-image-hidden"; /* ======================================================= CLEAN UP AN EARLIER COPY, IF PRESENT ======================================================= */ if( window.__dcMobileImageFilter && typeof window.__dcMobileImageFilter.destroy === "function" ){ window.__dcMobileImageFilter.destroy(); } /* ======================================================= NORMALIZATION Allows: N/A N-A N A to resolve to the same controlled name. ======================================================= */ function normalize(value){ return String(value || "") .toLowerCase() .replace(/[^a-z0-9]+/g, ""); } const normalizedTargets = new Set( HIDDEN_IMAGE_NAMES.map(normalize) ); const mobileQuery = window.matchMedia( "(max-width:" + MOBILE_BREAKPOINT + "px)" ); let observer = null; let framePending = false; /* ======================================================= READ THE IMAGE NAME Carrd may expose the entered image label through: - alt - title - aria-label - a linked wrapper ======================================================= */ function getImageLabels(image){ const labels = [ image.getAttribute("alt"), image.getAttribute("title"), image.getAttribute("aria-label"), image.getAttribute("data-name") ]; const picture = image.closest("picture"); if(picture){ labels.push( picture.getAttribute("title"), picture.getAttribute("aria-label"), picture.getAttribute("data-name") ); } const link = image.closest("a"); if(link){ labels.push( link.getAttribute("title"), link.getAttribute("aria-label") ); } return labels .filter(Boolean) .map(normalize); } function isTargetImage(image){ return getImageLabels(image).some(function(label){ return normalizedTargets.has(label); }); } /* ======================================================= FIND THE SMALLEST SAFE CARRD IMAGE WRAPPER This avoids hiding a large section or container. ======================================================= */ function findImageBlock(image){ let node = image; for(let depth = 0; depth < 6 && node; depth += 1){ const className = typeof node.className === "string" ? node.className : ""; const id = node.id || ""; const looksLikeImageElement = node.tagName === "PICTURE" || /(^|\s)image($|\s)/i.test(className) || /image/i.test(id); const imageCount = node.querySelectorAll ? node.querySelectorAll("img").length : 0; if( looksLikeImageElement && imageCount === 1 ){ return node; } node = node.parentElement; } /* Safe fallbacks when Carrd does not expose a recognizable image wrapper. */ const picture = image.closest("picture"); if(picture){ return picture; } const parent = image.parentElement; if( parent && parent.children.length === 1 && parent.textContent.trim() === "" ){ return parent; } return image; } /* ======================================================= APPLY FILTER ======================================================= */ function clearHiddenImages(){ document .querySelectorAll("." + HIDDEN_CLASS) .forEach(function(element){ element.classList.remove(HIDDEN_CLASS); }); } function applyFilter(){ framePending = false; /* Restore everything first so desktop always remains clean. */ clearHiddenImages(); if(!mobileQuery.matches){ return; } document .querySelectorAll("img") .forEach(function(image){ if(!isTargetImage(image)){ return; } const imageBlock = findImageBlock(image); if(imageBlock){ imageBlock.classList.add(HIDDEN_CLASS); } }); } function scheduleFilter(){ if(framePending){ return; } framePending = true; window.requestAnimationFrame(applyFilter); } /* ======================================================= WATCH FOR CARRD LAZY-LOADED IMAGES ======================================================= */ function initialize(){ applyFilter(); observer = new MutationObserver(scheduleFilter); observer.observe(document.body,{ childList:true, subtree:true, attributes:true, attributeFilter:[ "alt", "title", "aria-label", "src", "srcset" ] }); if(typeof mobileQuery.addEventListener === "function"){ mobileQuery.addEventListener("change",scheduleFilter); }else{ mobileQuery.addListener(scheduleFilter); } window.addEventListener( "orientationchange", scheduleFilter ); } function destroy(){ if(observer){ observer.disconnect(); } if(typeof mobileQuery.removeEventListener === "function"){ mobileQuery.removeEventListener( "change", scheduleFilter ); }else{ mobileQuery.removeListener(scheduleFilter); } window.removeEventListener( "orientationchange", scheduleFilter ); clearHiddenImages(); } window.__dcMobileImageFilter = { apply:applyFilter, destroy:destroy }; if(document.readyState === "loading"){ document.addEventListener( "DOMContentLoaded", initialize, {once:true} ); }else{ initialize(); } })();


Portfolio


Selected Engagements in Phase-Appropriate Quality Systems

Client 2

TBD.

Partner






Challenge:

TBD.


Approach:

TBD.


Outcome:

TBD.

Status:

N/A


Site content is proprietary and may not be copied...
Registered in the State of Ohio.

© 2026 DeiCell Systems LLC. All rights reserved.
Site content is proprietary and may not be copied, reproduced, or redistributed without written permission.

DeiCell Systems