File size: 10,200 Bytes
9052a98
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy β€” VIDRAFT</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
  :root {
    --bg:       #0B0B0E;
    --card:     #14141A;
    --border:   #2D2D36;
    --text:     #FAFAFA;
    --muted:    #8A8A95;
    --accent:   #8B5CF6;
    --accent-b: #B197FC;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
  }
  a { color: var(--accent-b); text-decoration: none; }
  a:hover { text-decoration: underline; }

  /* ── header ── */
  header {
    background: linear-gradient(135deg, #1E295C 0%, #4F46E5 100%);
    padding: 48px 32px 40px;
    text-align: center;
  }
  .header-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
  }
  .header-logo-mark {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
  }
  .header-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
  }
  header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
  }
  header .meta {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
  }

  /* ── layout ── */
  .container {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 24px 80px;
  }

  /* ── intro box ── */
  .intro-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 40px;
    font-size: 14.5px;
    color: #C2C2CC;
  }

  /* ── sections ── */
  .section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
  }
  .section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .section-num {
    display: inline-block;
    background: rgba(139,92,246,0.18);
    color: var(--accent-b);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
  }
  .section h2 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.2px;
  }
  .section p {
    font-size: 14.5px;
    color: #C2C2CC;
    margin-bottom: 8px;
  }
  .section p:last-child { margin-bottom: 0; }

  /* ── highlight row ── */
  .highlight-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
  }
  .hl-chip {
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.25);
    color: #6EE7B7;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
  }
  .hl-chip.purple {
    background: rgba(139,92,246,0.12);
    border-color: rgba(139,92,246,0.25);
    color: var(--accent-b);
  }
  .hl-chip.red {
    background: rgba(239,68,68,0.1);
    border-color: rgba(239,68,68,0.2);
    color: #FCA5A5;
  }

  /* ── table ── */
  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    margin-top: 14px;
  }
  th {
    text-align: left;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-bottom: 1px solid var(--border);
  }
  td {
    padding: 11px 14px;
    border-bottom: 1px solid rgba(45,45,54,0.6);
    color: #C2C2CC;
    vertical-align: top;
  }
  tr:last-child td { border-bottom: none; }
  td:first-child { color: var(--text); font-weight: 500; white-space: nowrap; }

  /* ── contact card ── */
  .contact-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .contact-icon {
    font-size: 28px;
    flex-shrink: 0;
  }
  .contact-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
  }
  .contact-val {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-b);
  }

  /* ── footer ── */
  footer {
    text-align: center;
    padding: 28px 24px 40px;
    font-size: 12px;
    color: var(--muted);
    border-top: 1px solid var(--border);
  }
  footer a { color: var(--muted); }
  footer a:hover { color: var(--accent-b); }
</style>
</head>
<body>

<header>
  <div class="header-logo">
    <div class="header-logo-mark">🧬</div>
    <span class="header-logo-text">VIDRAFT</span>
  </div>
  <h1>Privacy Policy</h1>
  <div class="meta">
    VIDRAFT (VIDRAFT_LAB) &nbsp;Β·&nbsp;
    Effective date: 17 May 2026 &nbsp;Β·&nbsp;
    Last updated: 17 May 2026
  </div>
</header>

<div class="container">

  <div class="intro-box">
    This Privacy Policy explains how VIDRAFT handles data when you access our model inference API,
    including when served through third-party marketplaces such as <strong>OpenRouter</strong>.
  </div>

  <!-- 1. Scope -->
  <div class="section">
    <span class="section-num">01</span>
    <h2>Scope</h2>
    <p>
      Applies to the VIDRAFT inference API at
      <a href="https://api.1street.ai" target="_blank" rel="noopener">https://api.1street.ai</a>
      and related endpoints.
    </p>
  </div>

  <!-- 2. Information We Process -->
  <div class="section">
    <span class="section-num">02</span>
    <h2>Information We Process</h2>
    <table>
      <thead>
        <tr><th>Category</th><th>Detail</th><th>Handling</th></tr>
      </thead>
      <tbody>
        <tr>
          <td>Request content</td>
          <td>Prompts, messages, parameters, and generated completions</td>
          <td>Processed transiently in memory only</td>
        </tr>
        <tr>
          <td>Operational metadata</td>
          <td>Token counts, timestamps, latency, model ID, status codes</td>
          <td>No prompt / completion text included</td>
        </tr>
      </tbody>
    </table>
  </div>

  <!-- 3. How We Use Information -->
  <div class="section">
    <span class="section-num">03</span>
    <h2>How We Use Information</h2>
    <div class="highlight-row">
      <span class="hl-chip purple">Generate responses</span>
      <span class="hl-chip purple">Compute usage for billing</span>
      <span class="hl-chip purple">Monitor reliability / capacity / abuse</span>
    </div>
  </div>

  <!-- 4. Model Training Policy -->
  <div class="section">
    <span class="section-num">04</span>
    <h2>Model Training Policy</h2>
    <p>
      We do <strong>not</strong> train, fine-tune, or improve any model using your prompts or completions.
      Content is never added to any training, evaluation, or fine-tuning dataset.
    </p>
    <div class="highlight-row" style="margin-top:14px">
      <span class="hl-chip red">βœ• No training on your data</span>
      <span class="hl-chip red">βœ• No fine-tuning on prompts</span>
      <span class="hl-chip red">βœ• No eval dataset inclusion</span>
    </div>
  </div>

  <!-- 5. Data Retention -->
  <div class="section">
    <span class="section-num">05</span>
    <h2>Data Retention</h2>
    <table>
      <thead>
        <tr><th>Data type</th><th>Retention</th></tr>
      </thead>
      <tbody>
        <tr>
          <td>Prompts &amp; completions</td>
          <td>Not stored β€” in-memory for request duration only, then discarded</td>
        </tr>
        <tr>
          <td>Operational metadata</td>
          <td>Up to 30 days, then deleted or aggregated</td>
        </tr>
      </tbody>
    </table>
  </div>

  <!-- 6. Data Sharing -->
  <div class="section">
    <span class="section-num">06</span>
    <h2>Data Sharing</h2>
    <p>No selling or renting of data. No request content shared with third parties.</p>
    <p>
      Only aggregate, non-content usage figures are shared with routing platforms
      (e.g., OpenRouter) for billing reconciliation.
    </p>
  </div>

  <!-- 7. Security -->
  <div class="section">
    <span class="section-num">07</span>
    <h2>Security</h2>
    <div class="highlight-row">
      <span class="hl-chip">πŸ”’ HTTPS / TLS in transit</span>
      <span class="hl-chip">πŸ›‘ Restricted infrastructure access</span>
      <span class="hl-chip">βš™οΈ Dedicated VIDRAFT hardware</span>
    </div>
  </div>

  <!-- 8. Inference Location -->
  <div class="section">
    <span class="section-num">08</span>
    <h2>Inference Location</h2>
    <p>πŸ‡°πŸ‡· Republic of Korea (KR)</p>
  </div>

  <!-- 9. Children's Privacy -->
  <div class="section">
    <span class="section-num">09</span>
    <h2>Children's Privacy</h2>
    <p>This service is not directed to children under the age of 13.</p>
  </div>

  <!-- 10. Changes -->
  <div class="section">
    <span class="section-num">10</span>
    <h2>Changes</h2>
    <p>Any updates to this policy will be reflected via the "Last updated" date at the top of this page.</p>
  </div>

  <!-- 11. Contact -->
  <div class="section">
    <span class="section-num">11</span>
    <h2>Contact</h2>
    <div class="contact-card">
      <div class="contact-icon">βœ‰οΈ</div>
      <div>
        <div class="contact-label">Email</div>
        <div class="contact-val">
          <a href="mailto:arxivgpt@gmail.com">arxivgpt@gmail.com</a>
        </div>
      </div>
    </div>
  </div>

</div>

<footer>
  Β© 2026 VIDRAFT (VIDRAFT_LAB). All rights reserved. &nbsp;Β·&nbsp;
  <a href="https://huggingface.co/spaces/VIDraft/AI">Back to VIDRAFT</a>
</footer>

</body>
</html>