function AtomSpinner(props){ const r1=React.useRef(null),r2=React.useRef(null),r3=React.useRef(null); const size=props.size||220; React.useEffect(()=>{ const angles=[0,60,-60]; const factors=[1,-1.4,0.8]; let lastScroll=window.scrollY,raf=null; const tick=()=>{ const cur=window.scrollY; const delta=cur-lastScroll; lastScroll=cur; const drive=0.22+Math.abs(delta)*0.18; angles[0]+=drive*factors[0]; angles[1]+=drive*factors[1]; angles[2]+=drive*factors[2]; if(r1.current)r1.current.style.transform=`rotate(${angles[0]}deg)`; if(r2.current)r2.current.style.transform=`rotate(${angles[1]}deg)`; if(r3.current)r3.current.style.transform=`rotate(${angles[2]}deg)`; raf=requestAnimationFrame(tick); }; raf=requestAnimationFrame(tick); return ()=>{if(raf)cancelAnimationFrame(raf);}; },[]); return (
); } function RecycleArrows(){ const ref=React.useRef(null); return (
{angles.map((a,i)=>{ const [hx,hy]=pt(a+50,R); return ( ); })}
); } const R=95; const angles=[-90,30,150]; const pt=(deg,r)=>{const rad=deg*Math.PI/180;return [130+r*Math.cos(rad),130+r*Math.sin(rad)];}; const arcD=(a0,a1,r)=>{const [x0,y0]=pt(a0,r),[x1,y1]=pt(a1,r);return `M${x0} ${y0} A${r} ${r} 0 0 1 ${x1} ${y1}`;}; const headPath="M-20,-20 L22,0 L-20,20 Z"; function Manufacturing(){ const {Tag}=window.PolychemDesignSystem_373bbb; const isMobile=window.useIsMobile(); const isNarrow=window.useIsNarrowDesktop(); const bodyFont=isNarrow?'var(--text-body-md)':'var(--text-body-lg)'; return (
Manufacturing Excellence

Built on rigorous process, not shortcuts.

Every batch uses only the highest-quality raw materials — meticulous attention to detail from raw material to final dispersion.

A sustainably made, consistently high-quality pigment paste begins long before the mixer starts — with the right raw materials, sourced from trusted vendors, and trusted vendors alone. Your product's quality rests on ours. We treat that responsibility accordingly.

Consistency is the hardest thing to guarantee in a product this sensitive to variation. We hold it through disciplined, systematic process — the same procedure, followed the same way, every time — so that every batch performs identically, regardless of conditions on the day.

Quality control closes the loop, and we do not compromise on it. A batch ships only once it has met every specification — nothing leaves our plant on anything less.

None of this stands still. The industry's demands shift constantly, and we believe standing still is not an option — innovation is how we keep pace and keep delivering. It's a discipline we practice deliberately, one step at a time.

Our process

How we innovate

{[['Customer-Centric Conversations','We start with direct, one-on-one conversations with you. Understanding your process and constraints is what shapes every solution that follows.'], ['R&D Center Exploration','Our R&D center works through the technical detail — data analysis and trend forecasting grounded in decades of industry knowledge.'], ['Expert Development Team','A team of technical experts builds a Design of Experiments (DoE) to plan the path forward, so every solution is deliberate and well-tested.'], ['Application Lab Testing','We define the parameters that matter and test against them in our Application Lab — the point where ideas become measurable results.'], ['Sampling Precision','Samples are produced with a 95% success rate, reflecting the discipline we apply at every stage.'], ['Live Testing','Samples go to you for real-world, consumer-end testing. Your feedback shapes every refinement that follows.'], ['Scale-Up & Process Optimization','We scale the solution for full production in our Process Enabling Lab, engineered for seamless integration into your operations.'], ['Process Testing & Quality Tracking','Scaled-up product goes through a second round of testing to confirm safety, quality, and efficiency.'], ['Product Roll-Out','After testing and refinement, we roll out the plant-manufactured solution — built to perform at your scale, not just in the lab.'], ['Feedback Phase','We keep refining quality, efficiency, and safety long after roll-out. Innovation is ongoing, not a one-time event.']].map(([t,d],i)=>(
{i+1}
{t}

{d}

))}

Today's market demands solutions built for your specific requirements — readily available, competitively priced, quickly delivered, and consistently high quality. Meeting all four is difficult. We treat it as a standing challenge, and a constant pursuit of innovation is how we meet it.

{!isMobile&&(
)}
{isMobile&&(
)}

Quality control, every batch

{['pH testing','Viscosity (seconds)','Solid % verification'].map(t=>(
{t}
))}

Every order — starting with your trial batch — ships with a certificate of analysis, for a long-term partnership built on verifiable consistency.

Sustainability

Our team at Polychem and Allied Products works to deliver greener, more innovative products with global reach. In pursuit of customer satisfaction, we are investing in more robust product portfolios, cleaner chemistry, tighter supply chains, state-of-the-art manufacturing capabilities, and closer customer relationships.

How do we do this?

At the core of our commitment to a sustainable future lies a comprehensive strategy that integrates responsible operations, safety, and strong ethics.

We reduce our environmental impact through a continued commitment to sustainable practice. We invest in the safety and development of our employees to maintain a secure, fulfilling workplace. And we uphold rigorous corporate governance and business ethics standards, keeping our operations transparent and accountable.

By minimizing waste and using water resources responsibly, we work toward a better outcome for our business and the generations that follow.

{!isMobile&&}
); } window.Manufacturing=Manufacturing;