{{-- Public homepage — composed entirely of components. The hero is pinned to the top. Every other section is captured to a string keyed by its slug, then echoed in the admin-defined order (fc_section_order) and skipped when hidden (fc_section_visible). With no admin edits this renders in the exact shipped order, visibly identical. --}} {{-- Hero: atmospheric headline + 4 ambient bubble accents. Two-device stage mounts into the hero's slot. The hero is structural and always renders first — it is not part of the reorderable set. --}} @php $sec = []; @endphp @php ob_start(); @endphp@php $sec['logo-strip'] = ob_get_clean(); @endphp @php ob_start(); @endphp@php $sec['manifesto'] = ob_get_clean(); @endphp @php ob_start(); @endphp@php $sec['feature-broadcasts'] = ob_get_clean(); @endphp @php ob_start(); @endphp@php $sec['feature-flows'] = ob_get_clean(); @endphp @php ob_start(); @endphp@php $sec['feature-inbox'] = ob_get_clean(); @endphp @php ob_start(); @endphp@php $sec['feature-templates'] = ob_get_clean(); @endphp @php ob_start(); @endphp@php $sec['feature-connectivity'] = ob_get_clean(); @endphp @php ob_start(); @endphp@php $sec['use-cases'] = ob_get_clean(); @endphp @php ob_start(); @endphp@php $sec['testimonials'] = ob_get_clean(); @endphp @php ob_start(); @endphp@php $sec['pricing-strip'] = ob_get_clean(); @endphp @php ob_start(); @endphp@php $sec['faq'] = ob_get_clean(); @endphp @php ob_start(); @endphp@php $sec['cta-final'] = ob_get_clean(); @endphp @php foreach (fc_section_order('home', array_keys($sec)) as $slug) { if (fc_section_visible('home', $slug)) { echo $sec[$slug]; } } @endphp