src/ApplicationBundle/Modules/HoneybeeWeb/Resources/views/pages/security.html.twig line 1

Open in your IDE?
  1. {% include '@Application/inc/central_header.html.twig' %}
  2. {% include '@HoneybeeWeb/pages/inc/pp_style.html.twig' %}
  3. {# WEB-4 — /security. HONESTY RULE: architecture facts only — things true of the platform
  4.    by construction. No certification claims, no compliance badges we don't hold, no vague
  5.    "bank-grade" adjectives. The standards map lives on Trust & Governance. #}
  6. {% set p = prices %}
  7. <div class="pp-wrap">
  8.     <div class="pp-hero">
  9.         <span class="kicker">Security &amp; Data Protection</span>
  10.         <h1>Architecture facts, stated plainly.</h1>
  11.         <p class="sub">No badges, no adjectives — here is how HoneyBee actually holds and protects
  12.             your data, by construction.</p>
  13.     </div>
  14.     <div class="pp-sec">
  15.         <h2>Isolation &amp; access</h2>
  16.         <div class="pp-grid c3">
  17.             <div class="pp-card"><h3>One database per customer</h3><p>Your company runs in its OWN
  18.                 dedicated database — not a shared table with a customer-ID column. Tenant isolation
  19.                 is structural, not a WHERE clause.</p></div>
  20.             <div class="pp-card"><h3>Role-based access</h3><p>Every screen and action is gated by
  21.                 role permissions you control. A user sees what their role allows — including
  22.                 HiveMind, which inherits the SAME permission model.</p></div>
  23.             <div class="pp-card"><h3>Human approval chains</h3><p>Financial documents flow through
  24.                 configurable approval chains. AI agents draft and chase; they cannot approve, and
  25.                 money never moves without a person.</p></div>
  26.         </div>
  27.     </div>
  28.     <div class="pp-sec">
  29.         <h2>Accountability</h2>
  30.         <div class="pp-grid c3">
  31.             <div class="pp-card"><h3>Audit trails</h3><p>Documents carry who created, edited and
  32.                 approved them, and when. Posted financial documents are hash-stamped against
  33.                 silent alteration.</p></div>
  34.             <div class="pp-card"><h3>Your data stays yours</h3><p>Registers, ledgers and computed
  35.                 reports export to standard formats. Leaving is a download, not a negotiation.</p></div>
  36.             <div class="pp-card"><h3>Local control at the edge</h3><p>HoneyCore sites keep control
  37.                 LOCAL — a site keeps operating and protecting its equipment when the internet
  38.                 doesn't.</p></div>
  39.         </div>
  40.     </div>
  41.     <div class="pp-sec">
  42.         <h2>Operations</h2>
  43.         <div class="pp-grid c3">
  44.             <div class="pp-card"><h3>Hosting &amp; updates</h3><p>Hosting, updates and backups are
  45.                 operated by HoneyBee — no customer-side servers to patch.</p></div>
  46.             <div class="pp-card"><h3>Data protection</h3><p>GDPR-aligned data handling for EU
  47.                 customers: your company data is processed to run YOUR system, not resold, not used
  48.                 to train third-party models.</p></div>
  49.             <div class="pp-card"><h3>Standards without overclaiming</h3><p>Our governance posture —
  50.                 what we align to, what we don't claim —
  51.                 is documented openly on <a href="{{ url('honeybee_trust') }}"
  52.                 style="color:var(--n-amber);font-weight:700;">Trust &amp; Governance</a>.</p></div>
  53.         </div>
  54.         <p class="pp-note">Have a security questionnaire? Send it —
  55.             <a href="{{ url('honeybee_contact') }}" style="color:var(--n-amber);font-weight:700;">we answer those directly</a>.</p>
  56.     </div>
  57. </div>
  58. {% include '@HoneybeeWeb/footer/central_footer.html.twig' %}