Investment Overview
Face-style investor pitch — pie chart budget allocation, bar with per-row color, growth trajectory
Agentic Semantic Web — Investor Brief
Series A close · Q1 2026 · Confidential
Every great pitch starts with the same premise: the story the data tells depends entirely on how you frame it. These charts don't manipulate — they illuminate. There's a difference, and it's worth knowing which side you're on.
Where the money goes
Capital allocation reflects priorities. Infrastructure-first is not a philosophical choice — it's a competitive moat. Forty cents of every dollar builds the foundation that makes everything else defensible.
| Infrastructure (40%) | Personnel (25%) | R&D (17%) | Marketing (18%) |
|---|---|---|---|
| data hidden — pie is visual |
Source: finance team — Q1 2026 budget allocation
The 40% infrastructure allocation looks heavy until you consider the alternative: every competitor building on the same commodity stack, competing on features alone. We're not building features — we're building the substrate that makes agentic coordination possible at scale. That's not a cost center. That's the product.
Markup
Pie charts use data-chart="pie" with a --pie-segments CSS custom property set via style. The conic gradient defines each slice as a percentage range. Legend comes from <thead> — one <th> per segment, label and percentage inline.
<table data-chart="pie" style="--pie-segments: conic-gradient(
var(--chart-color-1) 0% 40%,
var(--chart-color-2) 40% 65%,
var(--chart-color-3) 65% 82%,
var(--chart-color-4) 82% 100%
)">
<caption>Operating budget allocation — Q1 2026</caption>
<thead>
<tr>
<th>Infrastructure (40%)</th>
<th>Personnel (25%)</th>
<th>R&D (17%)</th>
<th>Marketing (18%)</th>
</tr>
</thead>
<tbody><tr><td>data hidden — pie is visual</td></tr></tbody>
</table>
The --pie-segments value is a conic-gradient() — pure CSS, no JavaScript, no SVG. Segment boundaries are cumulative percentages. Use var(--chart-color-1) through var(--chart-color-4) to stay within the design system palette. Additional segments are possible by extending the gradient and adding more <th> entries.
Revenue vs. target — quarterly
Six quarters of quarterly revenue laid against target. Four out of six quarters hit or beat projections. The two misses — Q1 2024 and Q4 2024 — were deliberate: both quarters involved platform migrations that temporarily compressed billings. The investors who stayed patient are now holding the most defensible position in the category.
| Q1 2024 ↓ target $500K | $420K |
|---|---|
| Q2 2024 ↑ target $650K | $680K |
| Q3 2024 ↑ target $800K | $890K |
| Q4 2024 ↓ target $1.2M | $1.1M |
| Q1 2025 ↑ target $1.3M | $1.4M |
| Q2 2025 ↑ target $1.6M | $1.8M |
Green = beat target · Red = missed target · Max $1.8M (Q2 2025)
Per-row color override
Individual rows accept a --color custom property on the <td>. Use var(--accent) for over-target performance and var(--accent-red) for misses. The default bar color is the chart's base accent — override only where it carries meaning.
<!-- Over-target: green -->
<tr><th scope="row">Q2 2024</th>
<td style="--size: 0.378; --color: var(--accent)">$680K</td></tr>
<!-- Under-target: red -->
<tr><th scope="row">Q1 2024</th>
<td style="--size: 0.233; --color: var(--accent-red)">$420K</td></tr>
ARR growth trajectory
This is the chart that closes the room. Six quarters of compounding ARR — from $1.1M to $4.2M. That's a 3.8× in 18 months. The trajectory isn't slowing. The Series A closes at the inflection point.
| Q3 2024 | $1.1M |
|---|---|
| Q4 2024 | $1.6M |
| Q1 2025 | $2.2M |
| Q2 2025 | $2.9M |
| Q3 2025 | $3.5M |
| Q4 2025 | $4.2M |
Source: finance · ARR normalized — max $4.2M (Q4 2025)