-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReport_Structure.html
More file actions
357 lines (325 loc) · 18.9 KB
/
Report_Structure.html
File metadata and controls
357 lines (325 loc) · 18.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1.0"/>
<title>LaunchMintAI — Validator Report Structure</title>
<style>
:root {
--bg:#07101f;--card:#0d1a2e;--border:#1a2e4a;
--text:#e2e8f0;--muted:#64748b;
--green:#22c55e;--blue:#00d4ff;--purple:#a855f7;
--amber:#f59e0b;--red:#ef4444;--pink:#ec4899;--teal:#14b8a6;
}
*{box-sizing:border-box;margin:0;padding:0;}
body{background:var(--bg);color:var(--text);font-family:'Segoe UI',system-ui,sans-serif;padding:48px 60px 80px;}
h1{font-size:26px;font-weight:900;color:#fff;margin-bottom:6px;}
.sub{font-size:13px;color:var(--muted);margin-bottom:40px;}
/* TIMELINE SPINE */
.timeline{position:relative;padding-left:40px;}
.timeline::before{content:'';position:absolute;left:16px;top:0;bottom:0;width:2px;background:linear-gradient(180deg,var(--blue),var(--purple),var(--pink));}
/* EACH BLOCK */
.block{position:relative;margin-bottom:28px;}
.block::before{content:'';position:absolute;left:-29px;top:18px;width:12px;height:12px;border-radius:50%;border:2px solid var(--bg);}
/* COLOUR DOTS */
.dot-blue::before{background:var(--blue);}
.dot-green::before{background:var(--green);}
.dot-purple::before{background:var(--purple);}
.dot-amber::before{background:var(--amber);}
.dot-teal::before{background:var(--teal);}
.dot-violet::before{background:#8b5cf6;}
.dot-cyan::before{background:#06b6d4;}
.dot-pink::before{background:var(--pink);}
.dot-rose::before{background:#fb7185;}
.dot-emerald::before{background:#10b981;}
/* CARD */
.card{background:var(--card);border:1px solid var(--border);border-radius:16px;padding:20px 24px;position:relative;overflow:hidden;}
.card::before{content:'';position:absolute;left:0;top:0;bottom:0;width:4px;}
.card.blue::before{background:var(--blue);}
.card.green::before{background:var(--green);}
.card.purple::before{background:var(--purple);}
.card.amber::before{background:var(--amber);}
.card.teal::before{background:var(--teal);}
.card.violet::before{background:#8b5cf6;}
.card.cyan::before{background:#06b6d4;}
.card.pink::before{background:var(--pink);}
.card.rose::before{background:#fb7185;}
.card.emerald::before{background:#10b981;}
/* HEADER ROW */
.card-head{display:flex;align-items:center;gap:12px;margin-bottom:14px;}
.num{font-size:11px;font-weight:900;padding:3px 10px;border-radius:20px;letter-spacing:1px;}
.num.blue{background:rgba(0,212,255,0.1);color:var(--blue);}
.num.green{background:rgba(34,197,94,0.1);color:var(--green);}
.num.purple{background:rgba(168,85,247,0.1);color:var(--purple);}
.num.amber{background:rgba(245,158,11,0.1);color:var(--amber);}
.num.teal{background:rgba(20,184,166,0.1);color:var(--teal);}
.num.violet{background:rgba(139,92,246,0.1);color:#8b5cf6;}
.num.cyan{background:rgba(6,182,212,0.1);color:#06b6d4;}
.num.pink{background:rgba(236,72,153,0.1);color:var(--pink);}
.num.rose{background:rgba(251,113,133,0.1);color:#fb7185;}
.num.emerald{background:rgba(16,185,129,0.1);color:#10b981;}
.card-title{font-size:15px;font-weight:900;color:#fff;}
.card-icon{font-size:18px;}
.timing-badge{margin-left:auto;font-size:9px;font-weight:800;padding:3px 10px;border-radius:20px;letter-spacing:0.5px;white-space:nowrap;}
.t-instant{background:rgba(34,197,94,0.1);color:var(--green);border:1px solid rgba(34,197,94,0.2);}
.t-bg{background:rgba(245,158,11,0.1);color:var(--amber);border:1px solid rgba(245,158,11,0.2);}
/* ITEMS GRID */
.items{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:8px;}
.item{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.06);border-radius:10px;padding:10px 14px;}
.item-label{font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:1px;color:var(--muted);margin-bottom:4px;}
.item-val{font-size:12px;color:var(--text);line-height:1.5;}
/* ACCORDION HINT */
.accordions{display:flex;flex-direction:column;gap:8px;margin-top:4px;}
.acc{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.06);border-radius:10px;padding:10px 14px;display:flex;align-items:center;gap:10px;}
.acc-icon{font-size:14px;}
.acc-title{font-size:12px;font-weight:700;color:#fff;}
.acc-fields{font-size:10px;color:var(--muted);margin-top:2px;}
/* DEPT TABS */
.tabs{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:10px;}
.tab{font-size:10px;font-weight:800;padding:4px 12px;border-radius:20px;border:1px solid var(--border);color:var(--muted);}
.tab.active{background:rgba(245,158,11,0.1);color:var(--amber);border-color:rgba(245,158,11,0.3);}
/* DIVIDER LABEL */
.phase-label{font-size:9px;font-weight:800;text-transform:uppercase;letter-spacing:2px;color:var(--muted);margin:32px 0 16px;display:flex;align-items:center;gap:10px;}
.phase-label::after{content:'';flex:1;height:1px;background:var(--border);}
code{font-family:monospace;font-size:10px;color:#93c5fd;background:rgba(0,0,0,0.3);padding:1px 5px;border-radius:3px;}
</style>
</head>
<body>
<h1>Validator Report Structure</h1>
<p class="sub">When you submit an idea in the Validator tab — this is the exact structure of what you get, in order.</p>
<!-- ══ PHASE 1 ══ -->
<div class="phase-label">Phase 1 — Appears Immediately (on submit)</div>
<div class="timeline">
<!-- 1. STRATEGIC VERDICT -->
<div class="block dot-blue">
<div class="card blue">
<div class="card-head">
<span class="num blue">01</span>
<span class="card-icon">🏆</span>
<span class="card-title">Strategic Verdict</span>
<span class="timing-badge t-instant">Instant</span>
</div>
<div class="items">
<div class="item"><div class="item-label">Macro Verdict</div><div class="item-val">One bold headline judgment on the idea</div></div>
<div class="item"><div class="item-label">Confidence Score</div><div class="item-val">Animated ring chart — 0 to 100%</div></div>
<div class="item"><div class="item-label">Data Confidence</div><div class="item-val">High / Medium / Low based on search quality</div></div>
<div class="item"><div class="item-label">Veracity Index</div><div class="item-val">How well the data is grounded in live sources</div></div>
<div class="item"><div class="item-label">Strategic Pivot Warning</div><div class="item-val">If the idea needs a pivot — shown as a callout</div></div>
<div class="item"><div class="item-label">Agent Reasoning Trace</div><div class="item-val">Expandable — shows the AI's thinking steps</div></div>
</div>
</div>
</div>
<!-- 2. DS INTELLIGENCE -->
<div class="block dot-teal">
<div class="card teal">
<div class="card-head">
<span class="num teal">02</span>
<span class="card-icon">📊</span>
<span class="card-title">DS Intelligence</span>
<span class="timing-badge t-instant">Instant · Parallel to main</span>
</div>
<div class="items">
<div class="item"><div class="item-label">XGBoost Score</div><div class="item-val">ML-based success probability score for the idea</div></div>
<div class="item"><div class="item-label">Monte Carlo</div><div class="item-val">Simulation of 1,000 possible market scenarios</div></div>
<div class="item"><div class="item-label">VADER Sentiment</div><div class="item-val">Sentiment analysis of the idea's framing & pitch</div></div>
</div>
</div>
</div>
<!-- 3. MARKET INTEL -->
<div class="block dot-green">
<div class="card green">
<div class="card-head">
<span class="num green">03</span>
<span class="card-icon">📈</span>
<span class="card-title">Market Intel</span>
<span class="timing-badge t-instant">Instant</span>
</div>
<div class="items">
<div class="item"><div class="item-label">TAM (Current)</div><div class="item-val">Total Addressable Market today (e.g. $4.2B)</div></div>
<div class="item"><div class="item-label">TAM (Forecast)</div><div class="item-val">Projected market size by 2030</div></div>
<div class="item"><div class="item-label">CAGR / Growth Rate</div><div class="item-val">Annual growth % of the market</div></div>
<div class="item"><div class="item-label">Revenue Strategy</div><div class="item-val">Recommended monetisation model</div></div>
<div class="item"><div class="item-label">Market Timing</div><div class="item-val">Label — Too Early / Right Time / Mature + rationale</div></div>
<div class="item"><div class="item-label">Growth Chart</div><div class="item-val">Visual bar chart — current vs forecast TAM</div></div>
</div>
</div>
</div>
<!-- 4. COMPETITORS -->
<div class="block dot-purple">
<div class="card purple">
<div class="card-head">
<span class="num purple">04</span>
<span class="card-icon">🥊</span>
<span class="card-title">Top Competitors</span>
<span class="timing-badge t-instant">Instant</span>
</div>
<div class="items">
<div class="item"><div class="item-label">Competitor Cards</div><div class="item-val">Each competitor as a clickable card with name + category</div></div>
<div class="item"><div class="item-label">Click → Deep Dive Modal</div><div class="item-val">Opens full competitor breakdown</div></div>
</div>
<div style="margin-top:12px;background:rgba(168,85,247,0.06);border:1px solid rgba(168,85,247,0.15);border-radius:10px;padding:14px;">
<div style="font-size:10px;font-weight:800;color:#a855f7;text-transform:uppercase;letter-spacing:1px;margin-bottom:10px;">Inside Each Competitor Modal</div>
<div class="items">
<div class="item"><div class="item-label">Market & Finance</div><div class="item-val">Funding raised, investors, management team</div></div>
<div class="item"><div class="item-label">Product Intel</div><div class="item-val">Pricing model, key features, SWOT note</div></div>
<div class="item"><div class="item-label">Tech Stack</div><div class="item-val">Infrastructure, build velocity, platform type</div></div>
<div class="item"><div class="item-label">Customer Sentiment</div><div class="item-val">Top complaints, trust score, churn drivers</div></div>
<div class="item"><div class="item-label">Marketing</div><div class="item-val">Acquisition channel, SEO keywords, social status</div></div>
<div class="item"><div class="item-label">Kill Strategy</div><div class="item-val">How YOUR startup beats this specific competitor</div></div>
</div>
</div>
</div>
</div>
<!-- 5. MVP BLUEPRINT -->
<div class="block dot-violet">
<div class="card violet">
<div class="card-head">
<span class="num violet">05</span>
<span class="card-icon">🎯</span>
<span class="card-title">MVP Blueprint</span>
<span class="timing-badge t-instant">Instant</span>
</div>
<div class="items">
<div class="item"><div class="item-label">Killer Feature</div><div class="item-val">The single most important feature to build first</div></div>
<div class="item"><div class="item-label">Build Priority</div><div class="item-val">What to ship in v1 to validate the idea fastest</div></div>
</div>
</div>
</div>
<!-- 6. EXECUTION STRATEGY -->
<div class="block dot-amber">
<div class="card amber">
<div class="card-head">
<span class="num amber">06</span>
<span class="card-icon">⚙️</span>
<span class="card-title">Execution Strategy</span>
<span class="timing-badge t-instant">Instant</span>
</div>
<div class="tabs">
<div class="tab active">⚖️ Legal</div>
<div class="tab">🔨 Product</div>
<div class="tab">📣 Marketing</div>
<div class="tab">💰 Finance</div>
</div>
<div class="items">
<div class="item"><div class="item-label">4 Department Tabs</div><div class="item-val">Switch between Legal / Product / Marketing / Finance</div></div>
<div class="item"><div class="item-label">Top 5 Priorities</div><div class="item-val">Numbered action items per department</div></div>
<div class="item"><div class="item-label">Department-specific actions</div><div class="item-val">Legal: compliance steps. Product: build tasks. Marketing: channels. Finance: funding steps.</div></div>
</div>
</div>
</div>
<!-- 7. WAR ROOM INTEL -->
<div class="block dot-violet">
<div class="card violet">
<div class="card-head">
<span class="num violet">07</span>
<span class="card-icon">🕵️</span>
<span class="card-title">War Room Intel</span>
<span class="timing-badge t-instant">Instant · Corporate Spy Mode</span>
</div>
<div class="items">
<div class="item"><div class="item-label">Battlefield Verdict</div><div class="item-val">One-line competitive landscape summary</div></div>
<div class="item"><div class="item-label">SWOT — Strengths</div><div class="item-val">Your idea's core competitive advantages</div></div>
<div class="item"><div class="item-label">SWOT — Weaknesses</div><div class="item-val">Internal gaps and vulnerabilities</div></div>
<div class="item"><div class="item-label">SWOT — Opportunities</div><div class="item-val">Market windows and untapped angles</div></div>
<div class="item"><div class="item-label">SWOT — Threats</div><div class="item-val">External risks and competitive threats</div></div>
<div class="item"><div class="item-label">Kill Strategies List</div><div class="item-val">How to beat each competitor — per company</div></div>
</div>
</div>
</div>
</div><!-- end timeline phase 1 -->
<!-- ══ PHASE 2 ══ -->
<div class="phase-label">Phase 2 — Loads in Background (a few seconds after main report)</div>
<div class="timeline">
<!-- 8. DEEP INTELLIGENCE -->
<div class="block dot-cyan">
<div class="card cyan">
<div class="card-head">
<span class="num cyan">08</span>
<span class="card-icon">🚀</span>
<span class="card-title">Deep Intelligence</span>
<span class="timing-badge t-bg">Background · ~6–8s</span>
</div>
<p style="font-size:11px;color:var(--muted);margin-bottom:12px;">3 expandable accordions. Click each to open. Shows a spinner while loading.</p>
<div class="accordions">
<div class="acc">
<span class="acc-icon">💰</span>
<div>
<div class="acc-title">Financial Projection</div>
<div class="acc-fields">Pricing model · LTV/CAC ratio · Gross margin · Payback period · 3-year revenue table (Year 1/2/3 with revenue, users, burn) · Fundraising round recommendation · Use of funds · Runway months · Verdict</div>
</div>
</div>
<div class="acc">
<span class="acc-icon">📣</span>
<div>
<div class="acc-title">GTM Strategy</div>
<div class="acc-fields">North Star Metric · Top acquisition channels (with CAC, timeline, priority) · Ideal Customer Profile (ICP) · #1 Growth Lever · How to get first 100 customers</div>
</div>
</div>
<div class="acc">
<span class="acc-icon">⚠️</span>
<div>
<div class="acc-title">Risk Scanner</div>
<div class="acc-fields">Overall Risk Level (Low/Medium/High/Critical) · Risk cards — each with title, severity badge, description, mitigation · Kill Condition (the one scenario that ends the startup)</div>
</div>
</div>
</div>
</div>
</div>
<!-- 9. EXTENDED INTELLIGENCE -->
<div class="block dot-pink">
<div class="card pink">
<div class="card-head">
<span class="num pink">09</span>
<span class="card-icon">🧠</span>
<span class="card-title">Extended Intelligence</span>
<span class="timing-badge t-bg">Background · ~5–7s</span>
</div>
<p style="font-size:11px;color:var(--muted);margin-bottom:12px;">2 expandable accordions. Click each to open. Shows a spinner while loading.</p>
<div class="accordions">
<div class="acc">
<span class="acc-icon">👤</span>
<div>
<div class="acc-title">User Personas</div>
<div class="acc-fields">3 detailed personas — each with Name + Age, Role, Pain Point, Goal, Willingness to Pay, Acquisition Channel</div>
</div>
</div>
<div class="acc">
<span class="acc-icon">🚩</span>
<div>
<div class="acc-title">Red Flags</div>
<div class="acc-fields">Critical issues with the idea — each with Flag title, Severity (Critical/High/Medium), Explanation, and How to Fix it · Overall verdict</div>
</div>
</div>
</div>
</div>
</div>
<!-- 10. RESEARCH GROUNDING -->
<div class="block dot-emerald">
<div class="card emerald">
<div class="card-head">
<span class="num emerald">10</span>
<span class="card-icon">🔗</span>
<span class="card-title">Research Grounding</span>
<span class="timing-badge t-instant">Instant · with main report</span>
</div>
<div class="items">
<div class="item"><div class="item-label">Source Links</div><div class="item-val">Clickable citation cards — title + URL of every real data source used</div></div>
<div class="item"><div class="item-label">Source Types</div><div class="item-val">Statista, Gartner, GrandView Research, Mordor Intelligence, news articles</div></div>
<div class="item"><div class="item-label">Transparency</div><div class="item-val">Shows you exactly what data powered the report</div></div>
</div>
</div>
</div>
</div><!-- end timeline phase 2 -->
<!-- SUMMARY ROW -->
<div style="margin-top:48px;background:#0d1a2e;border:1px solid #1a2e4a;border-radius:16px;padding:24px 28px;">
<div style="font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:2px;color:var(--muted);margin-bottom:16px;">Summary — Total Output per Run</div>
<div style="display:grid;grid-template-columns:repeat(5,1fr);gap:14px;text-align:center;">
<div><div style="font-size:28px;font-weight:900;color:#fff;">10</div><div style="font-size:10px;color:var(--muted);">Report Sections</div></div>
<div><div style="font-size:28px;font-weight:900;color:var(--green);">7</div><div style="font-size:10px;color:var(--muted);">Instant Sections</div></div>
<div><div style="font-size:28px;font-weight:900;color:var(--amber);">3</div><div style="font-size:10px;color:var(--muted);">Background Sections</div></div>
<div><div style="font-size:28px;font-weight:900;color:var(--blue);">5</div><div style="font-size:10px;color:var(--muted);">Accordion Groups</div></div>
<div><div style="font-size:28px;font-weight:900;color:var(--purple);">50+</div><div style="font-size:10px;color:var(--muted);">Data Points</div></div>
</div>
</div>
</body>
</html>