A single-source program is one disruption away from a shutdown. We plan for that before it happens.
Trade & RIsk
Overseas Issues, Feet on the Ground is Needed
Are you struggling overseas? Let us take over the supply base for you. We run hybrid programs, our people on the ground paired with your existing team that have worked very well for clients who need eyes on suppliers a time zone away.
Business Sense Matters
Risk mitigation starts at supplier qualification: financial stability, quality history, capacity headroom, and geopolitical exposure all factor into who we recommend not just who quotes the lowest piece price.
Dual-sourcing & contingency planning
For critical parts, we help qualify a second capable source so a disruption at your primary supplier is a phone call, not a crisis.
Risk Evaluation
ICT engineering and manufacturing our team has the expertise and connections needed to navigate complex international sourcing challenges. Reach out and we’ll route you to the right person on the team.
Built into every program
Supplier financial & capacity vetting
Dual-source qualification for critical parts
Defined escalation path for quality escapes
Our Risk System
A structured system, not a checklist
We work with you to develop a risk system covering five areas: currency exposure, material and commodity risk, geopolitical exposure, dual-sourcing coverage, and pre-audit risk — so every program has a clear picture of where it’s exposed before something goes wrong, not after.
That system runs on a formal audit: over 20 pages, delivered to you and refreshed every year, covering every risk area above in detail.
Audit foundation
Baseline methodology originally developed at Toyota
Benchmarked against Boston Consulting Group (BCG)
Benchmarked against Bain & Company
20+ page report, delivered yearly
Risk Framework
The Five Risk Areas ICT Manufacturing Monitors on Every Program
ICT Manufacturing’s risk system covers five specific areas, each one a distinct exposure type that can cause a program to fail independently of the others. Here is what each area covers and what signals ICT monitors within it.
01
Currency Exposure
FX movement between the USD and the supplier’s home currency directly affects landed cost between quote approval and production shipment. ICT monitors directional currency trends for every active sourcing country and flags significant movements before they hit an invoice. INR, RMB, MYR, TWD, THB, and IDR are the primary currencies tracked for active programs.
02
Material & Commodity Risk
Raw material cost volatility – steel, aluminum, copper, resins affects supplier pricing and program cost throughout a production run. ICT tracks commodity price movement for materials in every active program’s supply base and builds commodity escalation clauses into long-term pricing structures where volatility warrants it. LME metals, HRC steel, and resin indices are the primary tracked commodities.
03
Geopolitical Exposure
Country-of-origin risk includes tariff changes, trade policy shifts, export controls, political instability, and sanctions exposure. ICT monitors US tariff rates (Section 301, Section 232, country-specific) and bilateral trade relationship indicators for every active sourcing country. A tariff change from 25% to 75% on China goods is not a surprise if the program was tracking it, it is a surprise if it wasn’t.
04
Dual-Sourcing Coverage
A critical part with a single source is a program vulnerability, not a stable supply chain. ICT identifies critical-to-production parts in every program and qualifies a second capable supplier through the same APQP/PPAP process as the primary so volume can actually be rerouted if needed. A second source that cannot pass PPAP is not a contingency. It is a false sense of security.
05
Pre-Audit Risk
Supplier financial stability, quality history, capacity headroom, and sub-tier supply chain exposure are assessed before qualification not after a disruption. ICT’s pre-audit covers: revenue concentration risk (too dependent on one customer), financial health indicators, quality performance history (PPM, DPPM, corrective action closure rate), and capacity utilization (a supplier running at 95% capacity has no buffer for demand spikes).
Trade & Risk — FAQ
Common Questions About Supply Chain Risk Mitigation
What is supply chain risk mitigation and how does ICT Manufacturing approach it?
Supply chain risk mitigation at ICT Manufacturing is a structured five-area program: (1) Currency exposure – FX monitoring for every sourcing country; (2) Material and commodity risk – LME metals, HRC steel, and resin index tracking; (3) Geopolitical exposure – tariff changes, trade policy, and bilateral relationship monitoring; (4) Dual-sourcing coverage – PPAP-qualified second sources for critical parts; (5) Pre-audit risk – supplier financial stability, quality history, and capacity utilization assessed before qualification. This system runs on a formal 20+ page annual audit benchmarked against Toyota, BCG, and Bain methodology.
What is dual sourcing and why does ICT Manufacturing require it for critical parts?
Dual sourcing means qualifying a second capable supplier for critical-to-production parts, so that if the primary supplier experiences a disruption, volume can be rerouted without a plant shutdown. ICT Manufacturing requires dual-source qualification for any part where a single-source disruption would cause a production stoppage.
What is ICT Manufacturing's supply chain risk audit and what does it cover?
ICT Manufacturing’s supply chain risk audit is a formal 20+ page document covering all five risk areas, currency exposure, material and commodity risk, geopolitical exposure, dual-sourcing coverage, and pre-audit risk for every active sourcing program. The baseline methodology was developed at Toyota, benchmarked against Boston Consulting Group (BCG), and benchmarked against Bain & Company.
Which sourcing countries carry the highest tariff risk for US-bound manufacturing programs?
As of mid-2026, China carries the highest tariff risk for US-bound programs directional rates of approximately 75%+ under Section 301 and related tariffs significantly erode unit-cost advantages for most part categories. Vietnam (≈46%) and Thailand (≈36%) are mid-range.
How does ICT Manufacturing monitor geopolitical risk for overseas sourcing programs?
ICT Manufacturing monitors geopolitical risk through three channels: tariff and trade policy tracking (USTR guidance, CBP ruling changes, Section 301/232 actions, executive orders affecting HTS classifications); bilateral relationship indicators (US-India, US-China, US-Taiwan trade relationship strength and trajectory); and country-level stability indicators (political stability, export control changes, sanctions exposure for active sourcing regions).
Supply Chain Risk
Request a Risk Evaluation for Your Program
IC&T Manufacturing responds to all risk evaluation requests within one business day existing programs and new sourcing programs both accepted.
",
* and restrict it to the us-govt-statistics page only (Custom Code lets you
* pick specific pages under Display Conditions).
*/document.addEventListener('DOMContentLoaded', () => {
// Map each box's id to its FRED series ID. `null` = no FRED series exists.
const SERIES_MAP = {
'fx-inr-home': 'DEXINUS',
'fx-cny-home': 'DEXCHUS',
'fx-thb-home': 'DEXTHUS',
'fx-idr-home': null, // Indonesian Rupiah isn't published in FRED's daily FX series
'fx-myr-home': 'DEXMAUS',
'fred-ppi': 'PCUOMFGOMFG',
'fred-oil': 'WPU056101',
'fred-cardboard': 'PCU322211322211',
'fred-lumber': 'WPU08',
'fred-aluminum': 'WPU102501',
'fred-steel': 'WPU081',
};// FX rates read better with more decimal places than PPI index values
const isFx = (seriesId) => seriesId && seriesId.startsWith('DEX');Object.entries(SERIES_MAP).forEach(([boxId, seriesId]) => {
const box = document.getElementById(boxId);
if (!box) return; // markup not on this page, skip quietlyconst set = (key, value, suffix = '') => {
const el = box.querySelector(`[data-f="${key}"]`);
if (!el) return;
el.textContent = value != null ? value + suffix : 'n/a';
};if (!seriesId) {
// No FRED series available (IDR) — say so plainly instead of hanging on "n/a" forever
set('today', 'not on FRED');
return;
}fetch(`/wp-json/ict/v1/fred/${seriesId}`)
.then((r) => r.json())
.then((data) => {
if (data.code) {
console.error('FRED proxy error for', seriesId, data.message);
return;
}
const todayFormatted = isFx(seriesId)
? Number(data.today).toFixed(4)
: Number(data.today).toFixed(2);set('today', todayFormatted);
set('ytd', data.ytd_growth, '%');
set('y1', data.vs_jan1_yr1, '%');
set('y5', data.vs_jan1_yr5, '%');
})
.catch((err) => console.error('FRED fetch failed for', seriesId, err));
});
});