bpmredacademy commited on
Commit
6aae597
·
verified ·
1 Parent(s): 479168e

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +120 -79
index.html CHANGED
@@ -1,102 +1,143 @@
1
- <!doctype html>
2
  <html lang="en">
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width, initial-scale=1" />
6
- <title>FinC2E — Governance Gateway</title>
7
- <meta name="description" content="FinC2E Governance Gateway — Human-in-the-loop, audit-ready AI decision structuring for regulated environments." />
8
- <link rel="stylesheet" href="style.css" />
9
- </head>
 
 
 
 
 
 
 
 
 
 
 
 
10
 
11
- <body>
12
- <main class="wrap">
13
- <header class="hero">
14
- <div class="badge">BPM RED Academy — HumAI MightHub</div>
15
- <h1>FinC2E — Governance Gateway</h1>
16
- <p class="subtitle">
17
- Human-Centered AI Systems for Compliance, Risk Structuring & Decision Legitimacy
18
- </p>
 
 
 
 
 
 
 
 
 
 
19
 
20
- <div class="cta-row">
21
- <a class="btn primary" href="https://huggingface.co/MightHubHumAI/FinC2E" target="_blank" rel="noreferrer">
22
- View Model Card
23
- </a>
24
- <a class="btn" href="https://www.bpm.ba" target="_blank" rel="noreferrer">
25
- bpm.ba
26
- </a>
27
- </div>
28
- </header>
29
 
30
- <section class="card">
 
31
  <h2>What this Space is</h2>
32
  <ul>
33
- <li><strong>Governance & Evaluation Interface</strong> for stakeholders and onboarding.</li>
34
- <li><strong>Scope boundary</strong> describing intended use, constraints, and risk posture.</li>
35
- <li><strong>Legitimacy layer</strong>: explains “why” and “under which rules” decisions are structured.</li>
 
36
  </ul>
37
- </section>
38
 
39
- <section class="card">
40
  <h2>What this Space is NOT</h2>
41
  <ul>
42
  <li>No autonomous decisions</li>
43
  <li>No enforcement actions</li>
44
  <li>No legal / regulatory authority</li>
45
- <li>No public inference endpoint</li>
46
  </ul>
47
- <p class="note">
48
- FinC2E is designed to <strong>structure and explain</strong> decisions — not to replace responsibility.
 
49
  </p>
50
- </section>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
 
52
- <section class="grid">
53
- <section class="card">
54
- <h2>Flagship Capability</h2>
55
- <h3>FinC2E (Financial Cognitive Compliance Engine)</h3>
56
- <ul>
57
- <li>AML / KYC / CDD triage support</li>
58
- <li>Risk classification & audit-ready reasoning</li>
59
- <li>Policy-referenced analysis</li>
60
- <li>Deterministic, structured outputs</li>
61
- </ul>
62
- </section>
63
 
64
- <section class="card">
65
- <h2>Governance Principles</h2>
66
- <ul>
67
- <li><strong>Human-in-the-loop by design</strong></li>
68
- <li><strong>Traceability</strong> of decision logic & inputs</li>
69
- <li><strong>Explainability</strong> (policy-referenced reasoning)</li>
70
- <li><strong>Accountability preserved</strong> (advisory only)</li>
71
- </ul>
72
- </section>
73
- </section>
 
74
 
75
- <section class="card">
76
  <h2>Engagement Modes</h2>
77
- <div class="pills">
78
- <span class="pill">Pilot / PoC</span>
79
- <span class="pill">Controlled Evaluation</span>
80
- <span class="pill">Enterprise Onboarding</span>
81
- <span class="pill">Private Deployment</span>
82
  </div>
83
- <p class="note">
84
- Access is granted under onboarding rules aligned with regulated environments.
85
- Pricing and deployment are <strong>contract / usage / risk-tier based</strong>.
 
86
  </p>
87
- </section>
 
88
 
89
- <footer class="footer">
90
- <div class="footer-left">
91
- <strong>HumAI MightHub</strong><br />
92
- Engineering legitimacy into AI systems.
93
- </div>
94
- <div class="footer-right">
95
- <a href="https://huggingface.co/MightHubHumAI/FinC2E" target="_blank" rel="noreferrer">Model</a>
96
- <span class="sep"></span>
97
- <a href="https://www.bpm.ba" target="_blank" rel="noreferrer">Website</a>
98
- </div>
99
- </footer>
100
- </main>
101
- </body>
 
102
  </html>
 
1
+ <!DOCTYPE html>
2
  <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>FinC2E — Governance Gateway</title>
7
+ <meta
8
+ name="description"
9
+ content="Governance-First AI for Regulated Decision Support, Audit-Ready Reasoning, and Controlled Institutional Deployment."
10
+ />
11
+ <link rel="stylesheet" href="style.css" />
12
+ </head>
13
+ <body>
14
+ <main class="page">
15
+ <section class="hero card">
16
+ <div class="eyebrow">BPM RED Academy — HumAI MightHub</div>
17
+ <h1>FinC2E — Governance Gateway</h1>
18
+ <p class="hero-subtitle">
19
+ Governance-First AI for Regulated Decision Support, Audit-Ready Reasoning,
20
+ and Controlled Institutional Deployment
21
+ </p>
22
 
23
+ <div class="hero-actions">
24
+ <a
25
+ class="btn btn-primary"
26
+ href="https://huggingface.co/MightHubHumAI/FinC2E"
27
+ target="_blank"
28
+ rel="noopener noreferrer"
29
+ >
30
+ View Model Card
31
+ </a>
32
+ <a
33
+ class="btn btn-secondary"
34
+ href="https://www.bpm.ba/FinC2E"
35
+ target="_blank"
36
+ rel="noopener noreferrer"
37
+ >
38
+ bpm.ba
39
+ </a>
40
+ </div>
41
 
42
+ <div class="boundary-badges">
43
+ <span>Advisory-only</span>
44
+ <span>Human-reviewed</span>
45
+ <span>Audit-ready</span>
46
+ <span>Controlled deployment</span>
47
+ </div>
48
+ </section>
 
 
49
 
50
+ <section class="grid two">
51
+ <article class="card">
52
  <h2>What this Space is</h2>
53
  <ul>
54
+ <li>A controlled institutional interface for evaluating FinC2E</li>
55
+ <li>A governance and onboarding layer for regulated stakeholders</li>
56
+ <li>A structured entry point into policy-bound reasoning workflows</li>
57
+ <li>A legitimacy layer showing how decisions are explained, reviewed, and governed</li>
58
  </ul>
59
+ </article>
60
 
61
+ <article class="card">
62
  <h2>What this Space is NOT</h2>
63
  <ul>
64
  <li>No autonomous decisions</li>
65
  <li>No enforcement actions</li>
66
  <li>No legal / regulatory authority</li>
67
+ <li>No public unrestricted inference endpoint</li>
68
  </ul>
69
+ <p class="muted strong-line">
70
+ FinC2E is designed to structure, clarify, and support human decisions —
71
+ never to replace accountable authority.
72
  </p>
73
+ </article>
74
+ </section>
75
+
76
+ <section class="grid two">
77
+ <article class="card">
78
+ <h2>Flagship Capability</h2>
79
+ <p class="section-lead"><strong>FinC2E (Financial Cognitive Compliance Engine)</strong></p>
80
+ <ul>
81
+ <li>AML / KYC / CDD reasoning support</li>
82
+ <li>Risk structuring and case triage</li>
83
+ <li>Policy-referenced analysis</li>
84
+ <li>Audit-ready narratives</li>
85
+ <li>Deterministic, reviewable outputs</li>
86
+ </ul>
87
+ </article>
88
 
89
+ <article class="card">
90
+ <h2>Governance Principles</h2>
91
+ <ul>
92
+ <li>Human accountability preserved</li>
93
+ <li>Human-in-the-loop by design</li>
94
+ <li>Traceable logic paths and reviewable inputs</li>
95
+ <li>Policy-referenced reasoning</li>
96
+ <li>Advisory-only operational boundary</li>
97
+ </ul>
98
+ </article>
99
+ </section>
100
 
101
+ <section class="grid two">
102
+ <article class="card">
103
+ <h2>Intended for</h2>
104
+ <ul>
105
+ <li>Financial institutions</li>
106
+ <li>AML / KYC / CDD teams</li>
107
+ <li>Audit and compliance functions</li>
108
+ <li>RegTech and oversight environments</li>
109
+ <li>Government and sovereign deployments</li>
110
+ </ul>
111
+ </article>
112
 
113
+ <article class="card">
114
  <h2>Engagement Modes</h2>
115
+ <div class="chips">
116
+ <span class="chip">Institutional Evaluation</span>
117
+ <span class="chip">Controlled Pilot</span>
118
+ <span class="chip">Enterprise Onboarding</span>
119
+ <span class="chip">Private / Sovereign Deployment</span>
120
  </div>
121
+ <p class="muted">
122
+ Access is granted only under qualified institutional engagement.
123
+ Deployment, governance scope, and commercial terms are determined by
124
+ use case, regulatory context, and accountability requirements.
125
  </p>
126
+ </article>
127
+ </section>
128
 
129
+ <section class="card footer-card">
130
+ <div class="footer-left">
131
+ <div class="footer-brand">HumAI MightHub</div>
132
+ <div class="muted">Engineering legitimacy into AI systems.</div>
133
+ </div>
134
+
135
+ <div class="footer-right">
136
+ <a href="https://huggingface.co/MightHubHumAI/FinC2E" target="_blank" rel="noopener noreferrer">Model</a>
137
+ <span></span>
138
+ <a href="https://www.bpm.ba/FinC2E" target="_blank" rel="noopener noreferrer">Website</a>
139
+ </div>
140
+ </section>
141
+ </main>
142
+ </body>
143
  </html>