{# brutalist pricing override — bordered tier slabs, highlighted tier gets accent band. Fields: heading, intro, currency, billingNote, tiers[] (highlighted, badge, name, price, period, description, features[], ctaUrl, ctaLabel). #}
{% if heading %}

{{ heading }}

{% endif %} {% if intro %}

{{ intro }}

{% endif %}
{% for tier in tiers %}
{% if tier.badge %}{{ tier.badge }}{% endif %}

{{ tier.name }}

{% if currency %}{{ currency }}{% else %}${% endif %}{{ tier.price }} {% if tier.period %}{{ tier.period }}{% endif %}

{% if tier.description %}

{{ tier.description }}

{% endif %} {% if tier.features %}
    {% for feature in tier.features %}
  • {{ feature }}
  • {% endfor %}
{% endif %} {% if tier.ctaUrl and tier.ctaLabel %}{{ tier.ctaLabel }}{% endif %}
{% endfor %}
{% if billingNote %}

{{ billingNote }}

{% endif %}