-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrevenue-proof.html
More file actions
360 lines (321 loc) · 10.5 KB
/
Copy pathrevenue-proof.html
File metadata and controls
360 lines (321 loc) · 10.5 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
358
359
360
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Revenue Proof Intake | Agent Ops Command Center</title>
<meta name="description" content="Record real checkout, receipt, payout, or seller-dashboard evidence for Agent Ops Command Center revenue without counting previews, downloads, quotes, approvals, or purchase intent as revenue.">
<meta property="og:title" content="Revenue Proof Intake">
<meta property="og:description" content="Revenue proof intake for Agent Ops Command Center paid checkout evidence.">
<meta property="og:url" content="https://ivelly42.github.io/agent-ops-command-center/revenue-proof.html">
<meta property="og:type" content="website">
<meta property="og:image" content="https://ivelly42.github.io/agent-ops-command-center/og.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://ivelly42.github.io/agent-ops-command-center/og.png">
<style>
:root {
color-scheme: light;
--bg: #f7f6f1;
--ink: #121212;
--muted: #605d55;
--line: #ddd7cc;
--panel: #fffefa;
--soft: #f1eee6;
--accent: #0f766e;
--warn: #a16207;
}
* { box-sizing: border-box; }
body {
margin: 0;
background: var(--bg);
color: var(--ink);
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
letter-spacing: 0;
}
a { color: inherit; }
header, main, footer {
width: min(1180px, calc(100% - 32px));
margin: 0 auto;
}
header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
padding: 26px 0;
border-bottom: 1px solid var(--line);
}
.brand {
font-weight: 900;
text-decoration: none;
}
nav {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
gap: 16px;
font-size: 14px;
font-weight: 700;
}
nav a { text-decoration: none; }
main { padding: 64px 0; }
.hero {
display: grid;
grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
gap: 56px;
align-items: center;
padding-bottom: 52px;
border-bottom: 1px solid var(--line);
}
.eyebrow {
color: var(--accent);
font-size: 15px;
font-weight: 900;
margin-bottom: 18px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
max-width: 820px;
margin-bottom: 24px;
font-size: clamp(44px, 7vw, 80px);
line-height: 0.96;
letter-spacing: 0;
}
.lead {
max-width: 720px;
color: var(--muted);
font-size: 20px;
line-height: 1.5;
}
.actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 24px;
}
.button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 44px;
padding: 0 18px;
border: 1px solid var(--ink);
border-radius: 7px;
background: transparent;
color: var(--ink);
font: inherit;
font-weight: 800;
text-decoration: none;
}
.button.primary {
background: var(--ink);
color: var(--panel);
}
.summary,
.item {
border: 1px solid var(--line);
border-radius: 8px;
background: var(--panel);
}
.summary {
padding: 28px;
box-shadow: 0 24px 70px rgb(0 0 0 / 0.09);
}
.price {
font-size: clamp(58px, 9vw, 94px);
line-height: 1;
font-weight: 950;
}
.summary p,
.item p,
.notice {
color: var(--muted);
line-height: 1.45;
}
.mini-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 10px;
margin-top: 20px;
}
.mini {
min-height: 78px;
padding: 14px;
border: 1px solid var(--line);
border-radius: 7px;
background: var(--soft);
}
.mini strong {
display: block;
font-size: 26px;
line-height: 1;
overflow-wrap: anywhere;
}
.mini span {
display: block;
margin-top: 8px;
color: var(--muted);
font-size: 13px;
font-weight: 700;
}
section {
padding: 44px 0;
border-bottom: 1px solid var(--line);
}
.section-head {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
gap: 32px;
align-items: start;
margin-bottom: 20px;
}
h2 {
margin-bottom: 0;
font-size: clamp(32px, 4vw, 48px);
line-height: 1.05;
}
.grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 12px;
}
.item {
min-height: 176px;
padding: 18px;
}
.item h3 {
margin-bottom: 10px;
font-size: 22px;
}
.notice {
padding: 18px 20px;
border-left: 4px solid var(--warn);
background: #fffefa;
}
footer {
padding: 24px 0 50px;
color: var(--muted);
font-weight: 700;
}
@media (max-width: 840px) {
header { align-items: flex-start; }
nav { justify-content: flex-start; gap: 10px 14px; }
.hero,
.section-head,
.grid {
grid-template-columns: 1fr;
}
main { padding-top: 42px; }
h1 { font-size: 44px; }
.lead { font-size: 17px; }
.summary { padding: 20px; }
.mini-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<header>
<a class="brand" href="index.html">Agent Ops Command Center</a>
<nav aria-label="Primary">
<a href="index.html">Home</a>
<a href="buy.html">Buy</a>
<a href="team-purchase-packet.html">Team Packet</a>
<a href="revenue-proof.html">Revenue Proof</a>
<a href="team-pilot-plan.html">Pilot</a>
<a href="team-value-calculator.html">Value</a>
<a href="team-buyer-faq.html">FAQ</a>
<a href="metrics/status.json">Metrics</a>
</nav>
</header>
<main>
<div class="hero">
<div>
<div class="eyebrow">Payment evidence only</div>
<h1>Record revenue only after real payment proof.</h1>
<p class="lead">Use this page when checkout, receipt, payout, or seller-dashboard evidence exists. Purchase intent, previews, downloads, quotes, approvals, and pilot plans are not revenue.</p>
<div class="actions">
<a class="button primary" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=revenue-proof.yml">Open revenue proof form</a>
<a class="button" href="metrics/status.json">Demand metrics</a>
<a class="button" href="buy.html">Buy page</a>
</div>
</div>
<aside class="summary" aria-label="Revenue proof summary">
<div class="price">$200</div>
<p>Launch target. The metrics workflow counts only confirmed revenue-proof issues with gross USD evidence.</p>
<div class="mini-grid">
<div class="mini">
<strong>$203</strong>
<span>one team license</span>
</div>
<div class="mini">
<strong>7</strong>
<span>individual seats</span>
</div>
<div class="mini">
<strong>0</strong>
<span>current proven gross</span>
</div>
<div class="mini">
<strong>Proof</strong>
<span>required before count</span>
</div>
</div>
</aside>
</div>
<section>
<div class="section-head">
<h2>Accepted Proof</h2>
<p>Evidence must point to real money movement or a seller-side payment record.</p>
</div>
<div class="grid">
<article class="item">
<h3>Checkout Receipt</h3>
<p>Receipt-capable checkout confirmation for a paid Agent Ops Command Center order.</p>
</article>
<article class="item">
<h3>Seller Dashboard</h3>
<p>Redacted seller dashboard reference showing gross paid amount, not just traffic or intent.</p>
</article>
<article class="item">
<h3>Payout Record</h3>
<p>Processor or payout evidence that can be tied back to the paid template pack order.</p>
</article>
</div>
</section>
<section>
<div class="section-head">
<h2>Not Revenue</h2>
<p>These remain useful demand signals, but the metrics workflow will not count them as paid gross revenue.</p>
</div>
<div class="grid">
<article class="item">
<h3>Intent</h3>
<p>Order-request issues, quote requests, invoice requests, and manager approvals are not payment.</p>
</article>
<article class="item">
<h3>Preview Activity</h3>
<p>Release downloads, page views, pilots, FAQs, calculators, and public preview assets are not revenue.</p>
</article>
<article class="item">
<h3>Private Data</h3>
<p>Do not publish full card details, tax IDs, bank details, private buyer data, or sensitive screenshots.</p>
</article>
</div>
</section>
<section>
<h2>Revenue Rule</h2>
<div class="notice">
Gross revenue is counted only from checkout, receipt, payout, or seller-dashboard evidence. The current public metrics still show zero proven gross revenue until confirmed proof exists.
</div>
<div class="actions">
<a class="button primary" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=revenue-proof.yml">Open revenue proof form</a>
<a class="button" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=payment-ready.yml">Open order request</a>
<a class="button" href="metrics/status.json">Demand metrics</a>
</div>
</section>
</main>
<footer>
Revenue proof intake. Private paid ZIP. Revenue only after payment proof.
</footer>
</body>
</html>