| 9 |
9 |
|
<h1 class="page-title">Pricing Calculator<span class="dot">.</span></h1>
|
| 10 |
10 |
|
<p class="tagline">See what you keep on every sale<span class="dot">.</span></p>
|
| 11 |
11 |
|
|
| 12 |
|
- |
<div class="tier-section">
|
| 13 |
|
- |
<h2 class="section-label">Monthly revenue</h2>
|
| 14 |
|
- |
<div class="pricing-input-wrap">
|
| 15 |
|
- |
<span class="pricing-currency">$</span>
|
| 16 |
|
- |
<input type="number" id="revenue" class="pricing-input" value="1000" min="0" max="999999" step="50" aria-label="Monthly revenue in dollars">
|
| 17 |
|
- |
<span class="pricing-period">/mo</span>
|
|
12 |
+ |
{# The calculator recomputes server-side: on revenue/tier change HTMX
|
|
13 |
+ |
GETs /pricing/compare and swaps #comparison-panel. No fee math runs
|
|
14 |
+ |
in the browser — it all lives in `pricing_comparison.rs`, sourced
|
|
15 |
+ |
from `assumptions.toml`. The inputs sit outside the swap target so
|
|
16 |
+ |
focus and the typed value survive each recompute. #}
|
|
17 |
+ |
<div id="pricing-calculator"
|
|
18 |
+ |
hx-get="/pricing/compare"
|
|
19 |
+ |
hx-trigger="input changed delay:300ms from:#revenue, change from:input[name='tier']"
|
|
20 |
+ |
hx-include="#revenue, input[name='tier']:checked"
|
|
21 |
+ |
hx-target="#comparison-panel"
|
|
22 |
+ |
hx-swap="innerHTML">
|
|
23 |
+ |
|
|
24 |
+ |
<div class="tier-section">
|
|
25 |
+ |
<h2 class="section-label">Monthly revenue</h2>
|
|
26 |
+ |
<div class="pricing-input-wrap">
|
|
27 |
+ |
<span class="pricing-currency">$</span>
|
|
28 |
+ |
<input type="number" id="revenue" name="revenue" class="pricing-input" value="1000" min="0" max="999999" step="50" aria-label="Monthly revenue in dollars">
|
|
29 |
+ |
<span class="pricing-period">/mo</span>
|
|
30 |
+ |
</div>
|
| 18 |
31 |
|
</div>
|
| 19 |
|
- |
</div>
|
| 20 |
32 |
|
|
| 21 |
|
- |
<div class="tier-section">
|
| 22 |
|
- |
<h2 class="section-label">Your content tier</h2>
|
| 23 |
|
- |
<p class="tier-intro">Every tier is the complete platform: profile, project pages, forum, discovery, memberships, analytics, full data export. The tier picks the file-size envelope, not the feature set.</p>
|
| 24 |
|
- |
<div class="tier-selector" role="radiogroup" aria-label="Content tier">
|
| 25 |
|
- |
<label class="tier-card tier-option is-selected">
|
| 26 |
|
- |
<input type="radio" name="tier" value="{{ tier_prices.basic_std }}" checked>
|
| 27 |
|
- |
<div class="tier-name">Basic</div>
|
| 28 |
|
- |
<div class="tier-price">${{ tier_prices.basic_std }}/mo</div>
|
| 29 |
|
- |
<div class="tier-desc">{{ tier_prices.basic_per_file }}/file, {{ tier_prices.basic_total }} total. Fits text, blogs, newsletters.</div>
|
| 30 |
|
- |
</label>
|
| 31 |
|
- |
<label class="tier-card tier-option">
|
| 32 |
|
- |
<input type="radio" name="tier" value="{{ tier_prices.small_files_std }}">
|
| 33 |
|
- |
<div class="tier-name">Small Files</div>
|
| 34 |
|
- |
<div class="tier-price">${{ tier_prices.small_files_std }}/mo</div>
|
| 35 |
|
- |
<div class="tier-desc">{{ tier_prices.small_files_per_file }}/file, {{ tier_prices.small_files_total }} total. Fits audio, plugins, binaries.</div>
|
| 36 |
|
- |
</label>
|
| 37 |
|
- |
<label class="tier-card tier-option">
|
| 38 |
|
- |
<input type="radio" name="tier" value="{{ tier_prices.big_files_std }}">
|
| 39 |
|
- |
<div class="tier-name">Big Files</div>
|
| 40 |
|
- |
<div class="tier-price">${{ tier_prices.big_files_std }}/mo</div>
|
| 41 |
|
- |
<div class="tier-desc">{{ tier_prices.big_files_per_file }}/file, {{ tier_prices.big_files_total }} total. Fits video, games, large software.</div>
|
| 42 |
|
- |
</label>
|
| 43 |
|
- |
<label class="tier-card tier-option">
|
| 44 |
|
- |
<input type="radio" name="tier" value="{{ tier_prices.everything_std }}">
|
| 45 |
|
- |
<div class="tier-name">Everything</div>
|
| 46 |
|
- |
<div class="tier-price">${{ tier_prices.everything_std }}/mo</div>
|
| 47 |
|
- |
<div class="tier-desc">Big Files envelope plus first access to high-cost features as they ship.</div>
|
| 48 |
|
- |
</label>
|
|
33 |
+ |
<div class="tier-section">
|
|
34 |
+ |
<h2 class="section-label">Your content tier</h2>
|
|
35 |
+ |
<p class="tier-intro">Every tier is the complete platform: profile, project pages, forum, discovery, memberships, analytics, full data export. The tier picks the file-size envelope, not the feature set.</p>
|
|
36 |
+ |
<div class="tier-selector" role="radiogroup" aria-label="Content tier">
|
|
37 |
+ |
<label class="tier-card tier-option">
|
|
38 |
+ |
<input type="radio" name="tier" value="{{ tier_prices.basic_std }}" checked>
|
|
39 |
+ |
<div class="tier-name">Basic</div>
|
|
40 |
+ |
<div class="tier-price">${{ tier_prices.basic_std }}/mo</div>
|
|
41 |
+ |
<div class="tier-desc">{{ tier_prices.basic_per_file }}/file, {{ tier_prices.basic_total }} total. Fits text, blogs, newsletters.</div>
|
|
42 |
+ |
</label>
|
|
43 |
+ |
<label class="tier-card tier-option">
|
|
44 |
+ |
<input type="radio" name="tier" value="{{ tier_prices.small_files_std }}">
|
|
45 |
+ |
<div class="tier-name">Small Files</div>
|
|
46 |
+ |
<div class="tier-price">${{ tier_prices.small_files_std }}/mo</div>
|
|
47 |
+ |
<div class="tier-desc">{{ tier_prices.small_files_per_file }}/file, {{ tier_prices.small_files_total }} total. Fits audio, plugins, binaries.</div>
|
|
48 |
+ |
</label>
|
|
49 |
+ |
<label class="tier-card tier-option">
|
|
50 |
+ |
<input type="radio" name="tier" value="{{ tier_prices.big_files_std }}">
|
|
51 |
+ |
<div class="tier-name">Big Files</div>
|
|
52 |
+ |
<div class="tier-price">${{ tier_prices.big_files_std }}/mo</div>
|
|
53 |
+ |
<div class="tier-desc">{{ tier_prices.big_files_per_file }}/file, {{ tier_prices.big_files_total }} total. Fits video, games, large software.</div>
|
|
54 |
+ |
</label>
|
|
55 |
+ |
<label class="tier-card tier-option">
|
|
56 |
+ |
<input type="radio" name="tier" value="{{ tier_prices.everything_std }}">
|
|
57 |
+ |
<div class="tier-name">Everything</div>
|
|
58 |
+ |
<div class="tier-price">${{ tier_prices.everything_std }}/mo</div>
|
|
59 |
+ |
<div class="tier-desc">Big Files envelope plus first access to high-cost features as they ship.</div>
|
|
60 |
+ |
</label>
|
|
61 |
+ |
</div>
|
| 49 |
62 |
|
</div>
|
| 50 |
|
- |
</div>
|
| 51 |
63 |
|
|
| 52 |
|
- |
<div class="tier-section" id="results">
|
| 53 |
|
- |
<h2 class="section-label">You keep</h2>
|
| 54 |
|
- |
<div class="mnw-summary">
|
| 55 |
|
- |
<div class="mnw-keep" id="mnw-keep">$943.00</div>
|
| 56 |
|
- |
<div class="mnw-detail" id="mnw-detail">of every $1,000 after processing fees (~3%) and ${{ tier_prices.basic_std }}/mo membership</div>
|
|
64 |
+ |
<div id="comparison-panel">
|
|
65 |
+ |
{% include "partials/pricing_comparison.html" %}
|
| 57 |
66 |
|
</div>
|
| 58 |
67 |
|
</div>
|
| 59 |
68 |
|
|
| 60 |
|
- |
<div class="tier-section">
|
| 61 |
|
- |
<h2 class="section-label">Platform comparison</h2>
|
| 62 |
|
- |
<table class="data-table" id="comparison-table" aria-label="Platform fee comparison">
|
| 63 |
|
- |
<thead>
|
| 64 |
|
- |
<tr>
|
| 65 |
|
- |
<th>Platform</th>
|
| 66 |
|
- |
<th>Fee structure</th>
|
| 67 |
|
- |
<th>You keep</th>
|
| 68 |
|
- |
<th>vs MNW</th>
|
| 69 |
|
- |
</tr>
|
| 70 |
|
- |
</thead>
|
| 71 |
|
- |
<tbody id="comparison-body">
|
| 72 |
|
- |
</tbody>
|
| 73 |
|
- |
</table>
|
| 74 |
|
- |
<p class="pricing-disclaimer">Fee structures sourced from each platform's public pricing page. Actual fees may vary by plan, region, or payment method. Verify on each platform's site before making decisions.</p>
|
| 75 |
|
- |
<p class="pricing-disclaimer"><strong>Selling small-ticket items?</strong> Payment processors charge a fixed fee per transaction (~$0.30) that hits harder on $1-5 sales. This is an industry-wide constraint, not specific to any platform. Bundling items into collections lets your fans buy in groups at a single transaction cost instead of paying per-item processing fees.</p>
|
| 76 |
|
- |
</div>
|
| 77 |
|
- |
|
| 78 |
|
- |
<div class="tier-section hidden" id="breakeven-section">
|
| 79 |
|
- |
<div class="breakeven-note" id="breakeven-note"></div>
|
| 80 |
|
- |
</div>
|
| 81 |
|
- |
|
| 82 |
69 |
|
<div class="tier-section cost-allocation" id="cost-allocation">
|
| 83 |
70 |
|
<h2 class="section-label">Where your tier fee goes</h2>
|
| 84 |
71 |
|
<p class="cost-allocation-intro">You're paying for a platform built to be fair and built to last. Here's where each monthly fee goes, averaged across creators on that tier. Hover any segment for detail.</p>
|
| 119 |
106 |
|
</div>
|
| 120 |
107 |
|
</div>
|
| 121 |
108 |
|
{% endblock %}
|
| 122 |
|
- |
|
| 123 |
|
- |
{% block scripts %}
|
| 124 |
|
- |
<div id="page-pricing-cfg" hidden data-basic-std="{{ tier_prices.basic_std }}"></div>
|
| 125 |
|
- |
<script src="/static/page-pricing.js?v=0623" defer></script>
|
| 126 |
|
- |
{% endblock %}
|