{% extends "base.html" %} {% block title %}Market Intelligence{% endblock %} {% block page_title %}Market Intelligence{% endblock %} {% block content %}

Market Intelligence

{% if summary %} {{ summary.industry }} sector · {{ summary.region }} · Benchmarked {{ summary.generated_at }} {% else %} Industry benchmarks and competitive landscape analysis {% endif %}

{% if summary %}

Market Position: {{ summary.position }} | Competition: {{ summary.competition_level }}

{{ summary.position_desc }} {{ summary.competition_desc }}

Total Addressable Market
{{ currency_symbol }}{{ "{:,.0f}".format(summary.tam) }}
Global market ceiling
Serviceable Market (SAM)
{{ currency_symbol }}{{ "{:,.0f}".format(summary.sam) }}
Realistically reachable
Market Growth Rate
{{ "{:.1f}%".format(summary.growth_rate) }}
Year-over-year
Your Market Share
{{ "{:.4f}%".format(summary.market_share_pct) }}
Of TAM
LTV / CAC Ratio {{ "{:.1f}x".format(summary.ltv_cac_ratio) }}
{% set ltv_width = summary.ltv_cac_ratio / 5 * 100 %} {% if ltv_width > 100 %}{% set ltv_width = 100 %}{% endif %}
Industry benchmark comparison
vs. Avg Competitor {{ "{:.0f}%".format(summary.vs_competitor_pct) }}
{% set comp_width = summary.vs_competitor_pct %} {% if comp_width > 100 %}{% set comp_width = 100 %}{% endif %}
Your revenue relative to industry average
SAM Penetration {{ "{:.2f}%".format(summary.sam_share_pct) }}
{% set sam_width = summary.sam_share_pct * 10 %} {% if sam_width > 100 %}{% set sam_width = 100 %}{% endif %}
Share of serviceable market
Strategic Insights

Growth Opportunity

{{ summary.growth_opportunity }}

Competitive Landscape

{{ summary.competition_desc }}

Market Benchmarks
{{ market_data|length }} metrics
{% for m in market_data %} {% endfor %}
Metric Market / Industry Region Value Period Source
{{ m.metric_name }} {{ m.industry or m.market_name or '-' }} {{ m.region or '-' }} {% if m.currency and m.metric_value %} {{ currency_symbol }}{{ "{:,.0f}".format(m.metric_value) }} {% elif m.metric_value and (m.metric_value < 1 or m.metric_value > 1000) %} {{ "{:,.2f}".format(m.metric_value) }} {% elif m.metric_value %} {{ "{:.2f}".format(m.metric_value) }} {% else %} — {% endif %} {{ m.period or '-' }} {{ m.source or 'Internal' }}
Values are auto-generated industry benchmarks. Click "Refresh Benchmarks" to recalibrate, or use "Import Data" to load your own market research.
{% else %}

No market data available

Click the button below to generate industry benchmarks for your company.

{% endif %}
Import Market Data

Paste JSON array of market data records below. Each record should include: metric_name, metric_value, and optionally market_name, industry, region, period.

{% endblock %}