# Stress-testing the financing plan against regulatory and cash-out risk
A medtech CFO once told an investor her Series B would carry the company "comfortably through CE marking." Eight months later, the notified body (the private organization authorized to assess medical devices in the EU) came back with a request for additional clinical data. The review clock reset. Payroll did not. That gap between a regulatory calendar and a cash calendar is where device companies die, and it is entirely modelable in advance.
This lesson shows you how to build the downside model that pairs delay timelines with financing windows, then how to hedge the break points.
A biotech burning cash toward a drug approval and a medtech firm burning cash toward a CE mark share one structural feature: revenue is gated behind a regulatory event they do not fully control.
The trap is that founders model the base case (approval on time) and raise enough for that. Regulators do not run on the base case.
Two real regulatory gates drive medtech cash timing in 2026:
After the regulatory gate comes a second gate that is pure finance: reimbursement. A cleared device with no payer code generates little revenue. In the US that means CPT codes and CMS coverage decisions (Medicare's coverage and payment rules); in Europe it means country-by-country health technology assessment and pricing. Reimbursement can add a year or more after clearance.
So the runway must survive not one gate but a chain: regulatory clearance, then reimbursement, then commercial ramp.
Build one timeline with two overlaid tracks.
Track 1: Cash. Monthly burn, current cash, and the resulting "months of runway."
Track 2: Gates. The regulatory submission date, expected review window (base and downside), reimbursement lag, and the point at which meaningful revenue arrives.
The killer metric is the gap between cash-out date and the next value-inflection gate. If runway ends before the gate clears, the next raise happens from a position of weakness (a down round or worse).
Assume a Class IIb device firm in Europe, all figures as illustrative estimates:
Base case cash-out: month 12. First revenue: month 9 + 6 = month 15.
The gap is 3 months of unfunded time even in the base case. The company is already short before anything goes wrong.
Now apply a downside: notified body requests extra clinical data, adding 6 months to review.
At 1.5 million euros per month, that is 13.5 million euros the firm must raise, on unfavorable terms, into a milestone slip. This is the number the base-case pitch deck hid.
Model three scenarios and read the cash-out month against the revenue month.
| Scenario | Review time | CE mark | First revenue | Cash-out | Unfunded gap |
|---|---|---|---|---|---|
| Base | 9 mo | Mo 9 | Mo 15 | Mo 12 | 3 mo |
| Delay | 15 mo | Mo 15 | Mo 21 | Mo 12 | 9 mo |
| Severe | 21 mo | Mo 21 | Mo 27 | Mo 12 | 15 mo |
The pattern: each incremental month of regulatory delay is not one month of extra burn. It pushes revenue out too, so the funding hole widens faster than the delay itself.
Do not model one delay number. Model a range, because regulatory timing is a distribution.
A light Monte Carlo (running many random scenarios) is enough to see the shape of the risk.
import numpy as np
cash = 18_000_000
burn = 1_500_000
runway_months = cash / burn # 12
# review time: log-normal-ish, centered ~9mo, long right tail
np.random.seed(1)
review = np.random.lognormal(mean=np.log(9), sigma=0.4, size=100_000)
reimburse_lag = 6
revenue_month = review + reimburse_lag
gap = revenue_month - runway_months
print("median unfunded gap:", round(np.median(gap), 1), "months")
print("P(gap > 6 months):", round((gap > 6).mean(), 3))The output is not the point. The point is that a single "9 months" input hides a fat right tail: the probability that the gap exceeds six months. That probability is what you size a raise or a hedge against.
When you assess a device company (as investor, acquirer, or lender), these checks surface the timing trap:
🎬 [VIDEO: "Understanding the EU Medical Device Regulation (MDR)" - youtube.com - a plain-language overview of MDR classes, notified bodies, and CE marking that grounds the regulatory timeline used in this model]
Vérification des acquis
1. The lesson argues that device financing is fundamentally 'a timing problem, not just a money problem.' What is the core reasoning behind this claim?
2. A founder models a financing plan assuming CE marking arrives on schedule and raises exactly enough capital to reach that date. According to the lesson, what is the central flaw in this approach?
3. Why does the lesson emphasize treating published review durations (such as MDUFA performance targets or notified body queue times) as estimates rather than fixed inputs in a stress test?
4. Select ALL correct answers. What structural features do a biotech burning cash toward drug approval and a medtech firm burning cash toward a CE mark share, as described in the lesson?
Sélectionnez toutes les réponses correctes.
5. Select ALL correct answers. Which statements accurately reflect the distinction between US FDA regulatory pathways as presented in the lesson?
Sélectionnez toutes les réponses correctes.
Once the model shows where runway breaks the gate, you have concrete levers.
Size the round to fund past the P75 or P90 review outcome (the delay you would see in 25% or 10% of scenarios), not the median. In the worked example, raising for month-21 revenue rather than month-15 is the difference between negotiating from strength and a fire sale.
Tranched financing releases cash as milestones hit (for example, on notified body file acceptance, then on CE mark). This aligns capital with gates but adds risk: if the milestone slips, the tranche may not release exactly when the gap opens. Model the tranche trigger against the downside calendar, not the base case.
Venture debt or grants can cover a delay gap without repricing equity. Venture debt typically assumes a clear path to a next equity raise, so it hedges a short delay better than an open-ended one. Size it to the gap, not the whole plan.
If EU reimbursement is slow, an earlier 510(kkThe average number of new users each existing user generates through referrals. Above 1.0, growth compounds on itself and becomes exponential.Voir la définition complète →) in the US (or the reverse) can bring revenue in ahead of the slower gate, shortening the unfunded window. This is a financial decision driven by which gate clears cash fastest.
Pre-agree which programs pause under a delay scenario. A firm that can cut burn from 1.5 to 1.0 million euros per month without harming the regulatory file buys itself roughly four extra months on the same 18 million euros of cash. Decide this before the delay, not during the panic.
For a grounding in the regulatory structure behind these gates, the FDA device classification overview is a free, authoritative starting point.