C
Docs

Strategic Fit Analysis

Configure company strategic priorities, score opportunity alignment, and ensure pursuits advance long-term business objectives

Updated 2026-03-3025 min read

Strategic Fit Analysis

Strategic Fit measures how well an opportunity aligns with your company's long-term priorities and business objectives. While win probability tells you whether you CAN win, strategic fit tells you whether you SHOULD pursue—even opportunities with high win probability may not be worth your time if they don't advance strategic goals.

Overview

Not all winnable opportunities are equally valuable. A contract that generates revenue but diverts focus from strategic priorities may be less valuable than a more challenging pursuit that opens new markets, develops critical capabilities, or establishes relationships with target customers.

Strategic Fit Analysis provides a structured framework for evaluating opportunity value beyond immediate revenue:

  • Revenue Growth: Direct contribution to annual revenue targets
  • Market Expansion: Entry into new customer segments, geographies, or service lines
  • Capability Development: Building competencies aligned with long-term strategy
  • Strategic Accounts: Deepening relationships with priority customers
  • Financial Returns: Margin, cash flow, and financial health impact
  • Brand & Reputation: Reference value and market positioning

Each company configures their unique strategic priorities with relative weights, then each opportunity is scored against these priorities to produce a Strategic Fit Score (0-100).

Success

Organizations that systematically evaluate strategic fit see 30-40% improvement in long-term business trajectory compared to those that chase every winnable opportunity. Strategic discipline compounds over time—today's capability-building contract enables tomorrow's larger strategic account win.

Configuring Strategic Priorities

Step 1: Define Your Priorities

Start by articulating your company's 3-7 strategic priorities for the next 12-24 months:

Step 2: Set Priority Weights

Weight distribution reflects your strategic emphasis:

Balanced Growth Profile (typical for established companies):

{
  "Revenue Growth": 25,
  "Market Expansion": 20,
  "Capability Development": 15,
  "Strategic Accounts": 20,
  "Financial Returns": 20
}

Aggressive Growth Profile (startups or rapid expansion):

{
  "Revenue Growth": 35,
  "Market Expansion": 30,
  "Capability Development": 10,
  "Strategic Accounts": 15,
  "Financial Returns": 10
}
  • Emphasizes top-line growth and market entry
  • Accepts lower margins to capture market share
  • Values new customer acquisition over profitability

Profitability Focus Profile (mature companies or post-growth):

{
  "Revenue Growth": 15,
  "Market Expansion": 10,
  "Capability Development": 10,
  "Strategic Accounts": 25,
  "Financial Returns": 40
}
  • Prioritizes margin and cash flow over growth
  • Values strategic accounts for stable, profitable revenue
  • Selective market expansion focused on high-margin opportunities

Capability Building Profile (repositioning for new markets):

{
  "Revenue Growth": 20,
  "Market Expansion": 25,
  "Capability Development": 35,
  "Strategic Accounts": 10,
  "Financial Returns": 10
}
  • Accepts near-term revenue sacrifice to build new competencies
  • Willing to invest in loss-leader contracts for reference value
  • Focused on positioning for future market opportunities

Note

Weight profiles should align with your business plan and leadership priorities. Review annually or when strategic direction changes (e.g., new funding round, market shift, major contract win/loss).

Step 3: Create Priority Scoring Rubrics

For each priority, define a 0-100 scoring rubric:

Example: Market Expansion Priority

Priority: Market Expansion - Federal Government
Weight: 20%
Target: 40% of revenue from federal contracts

Scoring Rubric:

HIGH ALIGNMENT (80-100 points):
✓ Federal government contract (target market)
✓ New federal department/agency (expands customer base)
✓ Contract value > $500K (meaningful market presence)
✓ Multi-year contract or standing offer (sustained market presence)
✓ Potential for follow-on work or expansion (beachhead opportunity)

GOOD ALIGNMENT (60-79 points):
✓ Federal government contract (target market)
✓ Existing federal customer (deepens presence, doesn't expand)
✓ Contract value $250K-$500K (moderate market presence)
✓ Single-year contract (limited duration)
✓ Standalone work (no clear follow-on)

MODERATE ALIGNMENT (40-59 points):
• Provincial/municipal government (adjacent market, not target)
• New government customer (expands public sector presence)
• Contract value $100K-$250K (minor market presence)
• Proof-of-concept or pilot (potential for expansion)

LOW ALIGNMENT (20-39 points):
• Provincial/municipal government (adjacent market)
• Existing customer (no market expansion)
• Contract value < $100K (minimal market presence)

NO ALIGNMENT (0-19 points):
✗ Private sector contract (not government market)
✗ Any value (wrong market segment)

Quantitative Rubrics (easier to score consistently):

Priority: Financial Returns
Weight: 20%
Target: 18% net margin

Scoring Formula:
Score = (Projected Margin / Target Margin) × 100, capped at 100

Examples:
- 20% margin: (20 / 18) × 100 = 111 → capped at 100 points
- 18% margin: (18 / 18) × 100 = 100 points
- 15% margin: (15 / 18) × 100 = 83 points
- 10% margin: (10 / 18) × 100 = 56 points
- 5% margin: (5 / 18) × 100 = 28 points
- Break-even or loss: 0 points

Hybrid Rubrics (combines quantitative and qualitative):

Priority: Strategic Accounts
Weight: 20%
Target: 3 multi-year accounts each > $1M annual value

Scoring:
Base Score (0-60 points) - Customer Tier:
- Tier 1 Strategic Account (target account list): 60 points
- Tier 2 Growth Account (high potential): 40 points
- Tier 3 Existing Customer (maintain): 20 points
- New Customer (unknown potential): 10 points

Bonus Points (up to +40 points):
- Contract value > $1M annually: +20 points
- Multi-year contract (3+ years): +15 points
- Potential for expansion (identified follow-on): +10 points
- Executive-level relationship (C-suite engagement): +5 points

Maximum: 100 points (60 base + 40 bonus)

Scoring Opportunities

Automated Scoring

When possible, the system auto-scores priorities based on opportunity metadata:

Revenue Growth (automated):

// Extracts contract value from opportunity
const contractValue = opportunity.estimatedValue || opportunity.ceiling;
const annualValue = contractValue / opportunity.contractYears || contractValue;

// Applies rubric
if (annualValue > 500000) score = 95;
else if (annualValue > 250000) score = 80;
else if (annualValue > 100000) score = 65;
else if (annualValue > 50000) score = 45;
else score = 25;

Market Expansion (semi-automated with manual validation):

// Identifies customer segment from opportunity metadata
const isTargetMarket = opportunity.customer.type === 'Federal Government';
const isNewCustomer = !pastContracts.includes(opportunity.customer.id);
const contractValue = opportunity.estimatedValue;

// Calculates base score
let score = 0;
if (isTargetMarket && isNewCustomer && contractValue > 500000) score = 90;
else if (isTargetMarket && isNewCustomer) score = 75;
else if (isTargetMarket) score = 60;
else score = 30;

// User validates and can override

Capability Development (manual with guided rubric):

// System prompts user to score based on rubric
const questions = [
  "Does this opportunity require capabilities you need to develop? (0-25 pts)",
  "Will this contract provide reference/case study value? (0-25 pts)",
  "Does this align with technical roadmap? (0-25 pts)",
  "Will this attract/develop key talent? (0-25 pts)"
];

// User answers, system sums to produce score

Manual Scoring Workflow

Collaborative Scoring

Strategic fit often requires cross-functional input:

PriorityPrimary ScorerReviewers
Revenue GrowthFinanceBD, Executive
Market ExpansionBusiness DevelopmentMarketing, Executive
Capability DevelopmentTechnical LeadershipOperations, HR
Strategic AccountsAccount ManagementBD, Executive
Financial ReturnsFinanceOperations, Executive

Workflow:

  1. Primary scorer provides initial assessment with rationale
  2. Reviewers validate or challenge scores
  3. Disagreements escalated to executive for resolution
  4. Final scores recorded with approver documentation

Tip

Cross-functional scoring reduces bias. BD teams may overvalue revenue while undervaluing margin; finance may overvalue margin while undervaluing strategic account relationships. Collaborative scoring produces balanced assessments.

Interpreting Strategic Fit Scores

Score Ranges and Interpretation

Score RangeInterpretationTypical Characteristics
85-100Exceptional FitAdvances multiple strategic priorities strongly; "ideal opportunity"
70-84Strong FitClearly aligned with strategy; strong on 1-2 priorities
55-69Good FitReasonable alignment; moderate contribution to priorities
40-54Weak FitLimited strategic value; may be tactically useful
0-39Poor FitMisaligned with strategy; distraction from priorities

Strategic Fit Profiles

Opportunities often show distinct strategic fit profiles:

Profile 1: Revenue Generator

Revenue Growth: 95 (large contract)
Market Expansion: 30 (existing market)
Capability Development: 25 (commodity work)
Strategic Accounts: 40 (new customer, not strategic)
Financial Returns: 85 (high margin)

Weighted Score: 62 (Good Fit)
Profile: "Cash cow" - generates revenue and margin but doesn't advance strategic positioning
Action: Pursue efficiently with minimal resource investment; don't over-invest

Profile 2: Strategic Investment

Revenue Growth: 50 (moderate value)
Market Expansion: 95 (target market entry)
Capability Development: 90 (builds critical competency)
Strategic Accounts: 85 (Tier 1 target account)
Financial Returns: 40 (low margin, high investment)

Weighted Score: 72 (Strong Fit)
Profile: "Strategic play" - moderate revenue but high strategic value
Action: Pursue aggressively; accept lower margin as investment in market position

Profile 3: Balanced Opportunity

Revenue Growth: 75 (good contract value)
Market Expansion: 70 (target market, existing presence)
Capability Development: 60 (some skill development)
Strategic Accounts: 65 (growth account)
Financial Returns: 70 (solid margin)

Weighted Score: 69 (Good Fit)
Profile: "All-around solid" - no weaknesses, no exceptional strengths
Action: Standard pursuit; allocate normal resources

Profile 4: Misaligned Pursuit

Revenue Growth: 40 (small contract)
Market Expansion: 20 (non-target market)
Capability Development: 30 (no strategic skill building)
Strategic Accounts: 25 (non-strategic customer)
Financial Returns: 50 (marginal margin)

Weighted Score: 33 (Poor Fit)
Profile: "Distraction" - consumes resources without advancing strategy
Action: No-bid unless resource capacity is unlimited (it never is)

Warning

Avoid the "any revenue is good revenue" trap. Low strategic fit opportunities consume the same proposal resources as high strategic fit opportunities but deliver far less long-term value. Pursue strategically, not opportunistically.

Advanced Strategic Fit Analysis

Priority Trade-Off Analysis

Sometimes priorities conflict—high revenue growth opportunity may have low financial returns, or strategic account may require capability development investment:

Example: Conflicting Priorities

Opportunity: $2M strategic account, 5% projected margin (target 18%)

Revenue Growth: 100 (large contract)
Market Expansion: 60 (existing market)
Capability Development: 40 (limited)
Strategic Accounts: 95 (Tier 1 target account)
Financial Returns: 28 (5% margin far below target)

Weighted Score: 68 (Good Fit, but with tension)

Trade-Off Analysis:
- High revenue and strategic account value
- BUT: Low margin reduces financial returns priority score
- Question: Is strategic account relationship worth accepting 5% margin?

Resolution:
- If Strategic Account weight > Financial Returns weight: Yes (relationship is priority)
- If company is cash-constrained: Maybe not (need margin to fund operations)
- Potential mitigation: Negotiate multi-year contract with margin improvement in years 2-3

Decision: Pursue with executive approval and documented margin improvement plan

Portfolio-Level Strategic Fit

Strategic fit should be considered at portfolio level, not just individual opportunities:

Example: Portfolio Strategic Fit Review

Current Active Pursuits:

Pursuit A: Strategic Fit 85 (exceptional)
- Strong revenue, market expansion, strategic account
- Status: Strong Go, A-team assigned

Pursuit B: Strategic Fit 72 (strong)
- Good revenue, capability development focus
- Status: Qualified Go, B-team assigned

Pursuit C: Strategic Fit 55 (good)
- Moderate revenue, existing customer
- Status: Qualified Go, minimal resources

New Opportunity D: Strategic Fit 78 (strong)
- Revenue growth, strategic account, good margin
- Question: Should we pursue given active pipeline?

Portfolio Analysis:
- Total strategic fit: (85 + 72 + 55 + 78) / 4 = 72.5 average
- Resource capacity: 3 active pursuits at ~80% capacity
- Opportunity D strategic fit (78) > Pursuit C strategic fit (55)

Recommendation: No-bid Pursuit C to free resources for Opportunity D
- Improves average portfolio strategic fit: 72.5 → 78.3
- Focuses resources on higher-value opportunities

Time-Horizon Adjustments

Strategic priorities may have different time horizons:

Near-Term Priorities (0-12 months):

  • Revenue growth (immediate cash flow needs)
  • Financial returns (margin targets for current fiscal year)

Medium-Term Priorities (12-24 months):

  • Market expansion (building market presence)
  • Strategic accounts (developing relationships)

Long-Term Priorities (24+ months):

  • Capability development (positioning for future markets)
  • Brand & reputation (market leadership establishment)

Time-Weighted Scoring:

// Adjust priority weights based on contract start date and duration

If contract starts in < 6 months:
  - Increase near-term priority weights by 20%
  - Decrease long-term priority weights by 20%

If contract is multi-year (> 3 years):
  - Increase long-term priority weights by 15%
  - Maintain near-term priority weights

Example:
Standard weights: Revenue 25%, Market Expansion 20%, Capability Dev 15%, Strategic Accts 20%, Financial 20%

Short-term contract (< 12 months):
Adjusted weights: Revenue 30%, Market Expansion 20%, Capability Dev 10%, Strategic Accts 20%, Financial 24%
(Emphasizes immediate revenue and margin)

Long-term contract (5-year):
Adjusted weights: Revenue 23%, Market Expansion 25%, Capability Dev 20%, Strategic Accts 22%, Financial 18%
(Emphasizes strategic positioning and capability building)

Updating Strategic Priorities

Strategic priorities should evolve with your business:

Quarterly Review Process

Annual Strategic Planning Alignment

Strategic fit priorities should directly align with annual business plan:

Business Plan → Strategic Priorities Mapping:

Business Plan GoalStrategic PriorityWeightMeasurement
Achieve $12M revenueRevenue Growth25%Contract values
50% revenue from federalMarket Expansion25%Federal customer contracts
20% net marginFinancial Returns20%Projected margins
5 strategic accounts > $1MStrategic Accounts20%Tier 1 customer contracts
Establish AI/ML practiceCapability Development10%AI/ML project count

This ensures that pursuit decisions actively advance your business plan, not just generate activity.

Best Practices

Maintain Objectivity

Tip

Score opportunities honestly, even when it means admitting poor strategic fit. Inflating strategic fit scores to justify pursuing an opportunity you "like" undermines the framework and leads to resource misallocation.

Common Bias Traps:

  • Sunk Cost: "We've already invested in customer relationship, so strategic account score is high" (but if customer isn't in target segment, it's still low strategic fit)
  • Availability: "Large contract just came in, so revenue priority feels more important" (don't adjust weights based on individual opportunities)
  • Confirmation: "I want to pursue this, so I'll score it high on capability development" (score based on rubric, not desired outcome)

Bias Mitigation:

  • Use quantitative rubrics where possible (reduces subjective scoring)
  • Require documented rationale for scores > 80 or < 30
  • Cross-functional review catches individual scorer biases
  • Track strategic fit vs. actual strategic value delivered (calibrate rubrics)

Balance Short-Term and Long-Term

Don't over-index on immediate revenue at the expense of strategic positioning:

Balanced Portfolio Example:

Target Portfolio Mix (by Strategic Fit Score):

20% of pursuits: Strategic Fit 85-100 (exceptional strategic opportunities)
40% of pursuits: Strategic Fit 70-84 (strong strategic fit)
30% of pursuits: Strategic Fit 55-69 (good fit, tactically useful)
10% of pursuits: Strategic Fit 40-54 (weak fit, but resource available)
0% of pursuits: Strategic Fit < 40 (no-bid zone)

Current Portfolio Review:
5% exceptional (target 20%) - UNDER-PERFORMING
35% strong (target 40%) - SLIGHTLY UNDER
45% good (target 30%) - OVER-WEIGHTED
15% weak (target 10%) - OVER-WEIGHTED

Adjustment: Be more selective; pass on weak-fit opportunities even if winnable; hunt for exceptional strategic opportunities

Use Strategic Fit as Tiebreaker

When two opportunities have similar win probability and decision scores, strategic fit is the tiebreaker:

Example Tiebreaker Scenario:

Opportunity A: Decision Score 72 (Strategic Fit 85, Win Prob 65%)
Opportunity B: Decision Score 73 (Strategic Fit 60, Win Prob 75%)

Resource Constraint: Can only pursue one

Decision: Pursue Opportunity A
Rationale: Slightly lower overall score, but significantly higher strategic value. Long-term positioning outweighs marginal win probability difference.

FAQ


Related Documentation:

Was this page helpful?

Strategic Fit Analysis | Cothon Docs | Cothon