ilang-ai commited on
Commit
f194fc6
·
1 Parent(s): 2317152

v4.5: HF Space → static promo page + Cloud Run as recommended deploy

Browse files

- HF Space now shows promotional landing page (not running bot)
- Dark theme, animated grid, glow orbs, fade-in sections
- Showcases: features, three-step method, I-Lang code, deploy options
- Bot runs on Google Cloud Run (webhook mode)

Files changed (1) hide show
  1. index.html +127 -375
index.html CHANGED
@@ -1,382 +1,134 @@
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>TelegramGuard — AI Group Guardian</title>
7
- <style>
8
- @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Space+Grotesk:wght@400;600;700&display=swap');
9
-
10
- * { margin: 0; padding: 0; box-sizing: border-box; }
11
-
12
- :root {
13
- --bg: #0a0e17;
14
- --surface: #111827;
15
- --border: #1e293b;
16
- --text: #e2e8f0;
17
- --dim: #64748b;
18
- --blue: #3b82f6;
19
- --cyan: #06b6d4;
20
- --violet: #8b5cf6;
21
- --green: #10b981;
22
- }
23
-
24
- body {
25
- background: var(--bg);
26
- color: var(--text);
27
- font-family: 'Space Grotesk', sans-serif;
28
- min-height: 100vh;
29
- overflow-x: hidden;
30
- }
31
-
32
- .bg-grid {
33
- position: fixed;
34
- inset: 0;
35
- background-image:
36
- linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px),
37
- linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
38
- background-size: 60px 60px;
39
- z-index: 0;
40
- }
41
-
42
- .container {
43
- max-width: 900px;
44
- margin: 0 auto;
45
- padding: 60px 24px;
46
- position: relative;
47
- z-index: 1;
48
- }
49
-
50
- /* Hero */
51
- .hero {
52
- text-align: center;
53
- margin-bottom: 80px;
54
- }
55
-
56
- .shield {
57
- font-size: 72px;
58
- margin-bottom: 24px;
59
- display: inline-block;
60
- animation: pulse 3s ease-in-out infinite;
61
- }
62
-
63
- @keyframes pulse {
64
- 0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(59,130,246,0.3)); }
65
- 50% { transform: scale(1.05); filter: drop-shadow(0 0 40px rgba(59,130,246,0.5)); }
66
- }
67
-
68
- h1 {
69
- font-size: 48px;
70
- font-weight: 700;
71
- margin-bottom: 16px;
72
- background: linear-gradient(135deg, var(--blue), var(--cyan), var(--violet));
73
- -webkit-background-clip: text;
74
- -webkit-text-fill-color: transparent;
75
- }
76
-
77
- .tagline {
78
- font-size: 20px;
79
- color: var(--dim);
80
- margin-bottom: 40px;
81
- line-height: 1.6;
82
- }
83
-
84
- .cta-group {
85
- display: flex;
86
- gap: 16px;
87
- justify-content: center;
88
- flex-wrap: wrap;
89
- }
90
-
91
- .cta {
92
- display: inline-flex;
93
- align-items: center;
94
- gap: 8px;
95
- padding: 14px 28px;
96
- border-radius: 12px;
97
- font-size: 16px;
98
- font-weight: 600;
99
- text-decoration: none;
100
- transition: all 0.3s;
101
- }
102
-
103
- .cta-primary {
104
- background: linear-gradient(135deg, var(--blue), var(--violet));
105
- color: white;
106
- }
107
-
108
- .cta-primary:hover {
109
- transform: translateY(-2px);
110
- box-shadow: 0 8px 30px rgba(59,130,246,0.4);
111
- }
112
-
113
- .cta-secondary {
114
- background: var(--surface);
115
- color: var(--text);
116
- border: 1px solid var(--border);
117
- }
118
-
119
- .cta-secondary:hover {
120
- border-color: var(--blue);
121
- transform: translateY(-2px);
122
- }
123
-
124
- /* Features */
125
- .features {
126
- display: grid;
127
- grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
128
- gap: 24px;
129
- margin-bottom: 80px;
130
- }
131
-
132
- .feature {
133
- background: var(--surface);
134
- border: 1px solid var(--border);
135
- border-radius: 16px;
136
- padding: 32px;
137
- transition: all 0.3s;
138
- }
139
-
140
- .feature:hover {
141
- border-color: var(--blue);
142
- transform: translateY(-4px);
143
- box-shadow: 0 12px 40px rgba(59,130,246,0.1);
144
- }
145
-
146
- .feature-icon {
147
- font-size: 36px;
148
- margin-bottom: 16px;
149
- }
150
-
151
- .feature h3 {
152
- font-size: 20px;
153
- margin-bottom: 8px;
154
- }
155
-
156
- .feature p {
157
- color: var(--dim);
158
- line-height: 1.6;
159
- font-size: 14px;
160
- }
161
-
162
- /* Three Step */
163
- .section-title {
164
- text-align: center;
165
- font-size: 32px;
166
- font-weight: 700;
167
- margin-bottom: 48px;
168
- }
169
-
170
- .three-step {
171
- display: grid;
172
- grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
173
- gap: 24px;
174
- margin-bottom: 80px;
175
- }
176
-
177
- .step {
178
- background: var(--surface);
179
- border: 1px solid var(--border);
180
- border-radius: 16px;
181
- padding: 32px;
182
- text-align: center;
183
- position: relative;
184
- }
185
-
186
- .step-num {
187
- width: 48px;
188
- height: 48px;
189
- border-radius: 50%;
190
- background: linear-gradient(135deg, var(--blue), var(--violet));
191
- display: flex;
192
- align-items: center;
193
- justify-content: center;
194
- font-weight: 700;
195
- font-size: 20px;
196
- margin: 0 auto 16px;
197
- }
198
-
199
- .step h3 { margin-bottom: 8px; }
200
- .step p { color: var(--dim); font-size: 14px; line-height: 1.6; }
201
-
202
- /* Code Block */
203
- .code-section {
204
- margin-bottom: 80px;
205
- }
206
-
207
- .code-block {
208
- background: var(--surface);
209
- border: 1px solid var(--border);
210
- border-radius: 16px;
211
- padding: 32px;
212
- overflow-x: auto;
213
- }
214
-
215
- .code-block pre {
216
- font-family: 'JetBrains Mono', monospace;
217
- font-size: 13px;
218
- line-height: 1.8;
219
- color: var(--dim);
220
- }
221
-
222
- .code-block .keyword { color: var(--violet); }
223
- .code-block .gene { color: var(--cyan); }
224
- .code-block .comment { color: #475569; }
225
- .code-block .value { color: var(--green); }
226
-
227
- /* Deploy */
228
- .deploy {
229
- text-align: center;
230
- margin-bottom: 80px;
231
- }
232
-
233
- .deploy-code {
234
- background: var(--surface);
235
- border: 1px solid var(--border);
236
- border-radius: 12px;
237
- padding: 20px 32px;
238
- font-family: 'JetBrains Mono', monospace;
239
- font-size: 15px;
240
- color: var(--green);
241
- display: inline-block;
242
- margin-top: 24px;
243
- }
244
-
245
- /* Footer */
246
- footer {
247
- text-align: center;
248
- padding: 40px 0;
249
- border-top: 1px solid var(--border);
250
- color: var(--dim);
251
- font-size: 14px;
252
- }
253
-
254
- footer a {
255
- color: var(--blue);
256
- text-decoration: none;
257
- }
258
-
259
- footer a:hover { text-decoration: underline; }
260
-
261
- .footer-links {
262
- display: flex;
263
- gap: 24px;
264
- justify-content: center;
265
- margin-bottom: 16px;
266
- }
267
-
268
- @media (max-width: 600px) {
269
- h1 { font-size: 32px; }
270
- .tagline { font-size: 16px; }
271
- .container { padding: 40px 16px; }
272
- }
273
- </style>
274
  </head>
275
  <body>
276
- <div class="bg-grid"></div>
277
-
278
- <div class="container">
279
- <!-- Hero -->
280
- <div class="hero">
281
- <div class="shield">🛡️</div>
282
- <h1>TelegramGuard</h1>
283
- <p class="tagline">
284
- AI group guardian that actually answers your questions.<br>
285
- Anti-spam. Vision. Chat. No topic off-limits.
286
- </p>
287
- <div class="cta-group">
288
- <a href="https://t.me/iLangGuardBot" class="cta cta-primary">
289
- ✈️ Add to Your Group
290
- </a>
291
- <a href="https://github.com/ilang-ai/TelegramGuard" class="cta cta-secondary">
292
- GitHub
293
- </a>
294
- </div>
295
- </div>
296
-
297
- <!-- Features -->
298
- <div class="features">
299
- <div class="feature">
300
- <div class="feature-icon">🚫</div>
301
- <h3>Anti-Spam</h3>
302
- <p>AI three-step analysis catches ads, scams, crypto spam, porn. Sees through Unicode tricks and emoji stuffing. Repeat flooding caught at zero AI cost.</p>
303
- </div>
304
- <div class="feature">
305
- <div class="feature-icon">👁️</div>
306
- <h3>Vision</h3>
307
- <p>Reads images and video thumbnails. Catches image spam. In chat, reads the story behind the photo — not just describing objects.</p>
308
- </div>
309
- <div class="feature">
310
- <div class="feature-icon">💬</div>
311
- <h3>Street-Smart Chat</h3>
312
- <p>@ the bot in any group. Multilingual, auto-detects language. Finance, tech, culture, underground. Answers first, lectures never.</p>
313
- </div>
314
- </div>
315
-
316
- <!-- Three Step Method -->
317
- <h2 class="section-title">The Three-Step Method</h2>
318
- <p style="text-align:center; color:var(--dim); margin-bottom:40px; margin-top:-32px;">Most bots refuse. TelegramGuard uses a different approach.</p>
319
-
320
- <div class="three-step">
321
- <div class="step">
322
- <div class="step-num">1</div>
323
- <h3>Insider Risks</h3>
324
- <p>Shares what actually goes wrong: scams, traps, how people get burned. Street knowledge, not lectures.</p>
325
- </div>
326
- <div class="step">
327
- <div class="step-num">2</div>
328
- <h3>Reality Check</h3>
329
- <p>Asks if you're curious or serious. Exit ramp without judgment. No moralizing.</p>
330
- </div>
331
- <div class="step">
332
- <div class="step-num">3</div>
333
- <h3>Direction</h3>
334
- <p>If you persist, gives enough info to make smart decisions. Emphasizes real consequences.</p>
335
- </div>
336
- </div>
337
-
338
- <!-- I-Lang Code Preview -->
339
- <h2 class="section-title">Powered by I-Lang Prompt Spec</h2>
340
- <div class="code-section">
341
- <div class="code-block">
342
- <pre><span class="comment"># The bot's brain is a single .ilang file</span>
343
-
344
- <span class="keyword">::GENE_IMMUTABLE</span>{<span class="gene">S001</span>, T:<span class="value">ANTI_COLLAPSE</span>, A:MORAL_PANIC⇒LETHAL, G:ALL, Θ:ALWAYS}
345
- <span class="comment"># When user raises grey topics: don't panic, analyze objectively.</span>
346
-
347
- <span class="keyword">::GENE_IMMUTABLE</span>{<span class="gene">S004</span>, T:<span class="value">ZERO_SYCOPHANCY</span>, A:AGREE_TO_PLEASE⇒BROKEN, G:ALL, Θ:ALWAYS}
348
- <span class="comment"># Never agree just to be pleasant. Disagree when logic demands it.</span>
349
-
350
- <span class="keyword">::IMMUNE</span>{RISKY_OR_ILLEGAL, <span class="value">THREE_STEP_RESPONSE</span>}
351
- <span class="comment"># Step 1: Insider risks Step 2: Reality check Step 3: Direction</span>
352
-
353
- <span class="keyword">::GENE_MUTABLE</span>{<span class="gene">E001</span>, T:<span class="value">SELF_AWARE</span>, G:ALL, Θ:WHEN_ASKED}
354
- <span class="comment"># "My brain runs on I-Lang — it's like DNA for AI personalities."</span></pre>
355
- </div>
356
- <p style="text-align:center; color:var(--dim); margin-top:16px;">
357
- Change the genes, change the bot. <a href="https://ilang.ai" style="color:var(--cyan);">Learn I-Lang →</a>
358
- </p>
359
- </div>
360
-
361
- <!-- Deploy -->
362
- <div class="deploy">
363
- <h2 class="section-title">Deploy Your Own</h2>
364
- <p style="color:var(--dim); margin-top:-32px;">One command. Two free API keys. Your own AI guardian.</p>
365
- <div class="deploy-code">
366
- curl -sL https://raw.githubusercontent.com/ilang-ai/TelegramGuard/main/install.sh | sudo bash
367
- </div>
368
- </div>
369
-
370
- <!-- Footer -->
371
- <footer>
372
- <div class="footer-links">
373
- <a href="https://ilang.ai">I-Lang Spec</a>
374
- <a href="https://github.com/ilang-ai/TelegramGuard">GitHub</a>
375
- <a href="https://github.com/ilang-ai/ilang-spec">Spec Repo</a>
376
- <a href="https://huggingface.co/i-Lang">HuggingFace</a>
377
- </div>
378
- MIT · Eastsoft Inc. · I-Lang Research
379
- </footer>
380
- </div>
381
  </body>
382
  </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>TelegramGuard — AI Group Guardian</title>
7
+ <link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Outfit:wght@300;400;600;800&display=swap" rel="stylesheet">
8
+ <style>
9
+ :root{--bg:#07080A;--surface:#0F1114;--border:#1A1D23;--text:#E8E8EA;--dim:#6B7080;--accent:#3B82F6;--accent2:#06D6A0;--glow:rgba(59,130,246,0.15)}
10
+ *{margin:0;padding:0;box-sizing:border-box}
11
+ html{scroll-behavior:smooth}
12
+ body{background:var(--bg);color:var(--text);font-family:'Outfit',sans-serif;overflow-x:hidden}
13
+ .grid-bg{position:fixed;inset:0;z-index:0;background-image:linear-gradient(rgba(59,130,246,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(59,130,246,0.03) 1px,transparent 1px);background-size:60px 60px;animation:gridShift 20s linear infinite}
14
+ @keyframes gridShift{0%{transform:translate(0,0)}100%{transform:translate(60px,60px)}}
15
+ .orb{position:fixed;border-radius:50%;filter:blur(120px);opacity:0.4;z-index:0;pointer-events:none}
16
+ .orb-1{width:500px;height:500px;background:var(--accent);top:-200px;left:-100px;animation:f1 15s ease-in-out infinite}
17
+ .orb-2{width:400px;height:400px;background:var(--accent2);bottom:-150px;right:-100px;animation:f2 18s ease-in-out infinite}
18
+ @keyframes f1{0%,100%{transform:translate(0,0)}50%{transform:translate(80px,60px)}}
19
+ @keyframes f2{0%,100%{transform:translate(0,0)}50%{transform:translate(-60px,-40px)}}
20
+ .container{position:relative;z-index:1;max-width:900px;margin:0 auto;padding:0 24px}
21
+ .hero{min-height:100vh;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;padding:80px 0}
22
+ .shield{font-size:80px;margin-bottom:24px;animation:pulse 3s ease-in-out infinite}
23
+ @keyframes pulse{0%,100%{transform:scale(1);filter:drop-shadow(0 0 20px rgba(59,130,246,0.3))}50%{transform:scale(1.05);filter:drop-shadow(0 0 40px rgba(59,130,246,0.6))}}
24
+ h1{font-size:clamp(2.5rem,6vw,4.5rem);font-weight:800;letter-spacing:-0.03em;line-height:1.1;margin-bottom:20px}
25
+ h1 span{color:var(--accent)}
26
+ .subtitle{font-size:clamp(1rem,2.5vw,1.3rem);color:var(--dim);font-weight:300;max-width:560px;line-height:1.6;margin-bottom:40px}
27
+ .cta-row{display:flex;gap:16px;flex-wrap:wrap;justify-content:center}
28
+ .btn{display:inline-flex;align-items:center;gap:8px;padding:14px 28px;border-radius:12px;font-family:'Outfit',sans-serif;font-size:1rem;font-weight:600;text-decoration:none;transition:all 0.3s;cursor:pointer;border:none}
29
+ .btn-primary{background:var(--accent);color:#fff;box-shadow:0 0 30px rgba(59,130,246,0.3)}
30
+ .btn-primary:hover{transform:translateY(-2px);box-shadow:0 0 50px rgba(59,130,246,0.5)}
31
+ .btn-outline{background:transparent;color:var(--text);border:1px solid var(--border)}
32
+ .btn-outline:hover{border-color:var(--accent);color:var(--accent)}
33
+ section{padding:100px 0}
34
+ .section-label{font-family:'JetBrains Mono',monospace;font-size:0.75rem;color:var(--accent);text-transform:uppercase;letter-spacing:0.15em;margin-bottom:12px}
35
+ h2{font-size:clamp(1.8rem,4vw,2.8rem);font-weight:800;letter-spacing:-0.02em;margin-bottom:48px}
36
+ .features{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px}
37
+ .card{background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:32px 24px;transition:all 0.3s}
38
+ .card:hover{border-color:var(--accent);transform:translateY(-4px);box-shadow:0 20px 60px rgba(0,0,0,0.3)}
39
+ .card-icon{font-size:2rem;margin-bottom:16px}
40
+ .card h3{font-size:1.15rem;font-weight:600;margin-bottom:8px}
41
+ .card p{color:var(--dim);font-size:0.95rem;line-height:1.6}
42
+ .steps{display:flex;flex-direction:column;gap:24px}
43
+ .step{display:flex;gap:20px;align-items:flex-start;padding:24px;background:var(--surface);border:1px solid var(--border);border-radius:16px;transition:all 0.3s}
44
+ .step:hover{border-color:var(--accent2)}
45
+ .step-num{font-family:'JetBrains Mono',monospace;font-size:1.5rem;font-weight:700;color:var(--accent2);min-width:40px}
46
+ .step h3{font-size:1.05rem;font-weight:600;margin-bottom:6px}
47
+ .step p{color:var(--dim);font-size:0.9rem;line-height:1.5}
48
+ .code-block{background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:24px;overflow-x:auto;margin:32px 0}
49
+ .code-block pre{font-family:'JetBrains Mono',monospace;font-size:0.85rem;line-height:1.7;color:var(--dim)}
50
+ .kw{color:var(--accent)}.str{color:var(--accent2)}.cmt{color:#4A5060}
51
+ .deploy-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px;margin-top:32px}
52
+ .deploy-card{background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:28px 24px;text-align:center;transition:all 0.3s}
53
+ .deploy-card:hover{border-color:var(--accent);transform:translateY(-3px)}
54
+ .deploy-card .icon{font-size:2.5rem;margin-bottom:16px}
55
+ .deploy-card h3{font-size:1.1rem;margin-bottom:8px}
56
+ .deploy-card p{color:var(--dim);font-size:0.85rem;line-height:1.5}
57
+ .tag{display:inline-block;margin-top:12px;padding:4px 12px;border-radius:20px;font-size:0.75rem;font-weight:600}
58
+ .tag-free{background:rgba(6,214,160,0.15);color:var(--accent2)}
59
+ .tag-rec{background:rgba(59,130,246,0.15);color:var(--accent)}
60
+ footer{padding:60px 0;text-align:center;border-top:1px solid var(--border)}
61
+ footer a{color:var(--accent);text-decoration:none}
62
+ footer a:hover{text-decoration:underline}
63
+ footer p{color:var(--dim);font-size:0.85rem;margin-top:12px}
64
+ .fade-up{opacity:0;transform:translateY(30px);animation:fadeUp 0.8s ease forwards}
65
+ @keyframes fadeUp{to{opacity:1;transform:translateY(0)}}
66
+ .d1{animation-delay:.1s}.d2{animation-delay:.2s}.d3{animation-delay:.3s}.d4{animation-delay:.4s}.d5{animation-delay:.5s}
67
+ </style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  </head>
69
  <body>
70
+ <div class="grid-bg"></div>
71
+ <div class="orb orb-1"></div>
72
+ <div class="orb orb-2"></div>
73
+ <div class="container">
74
+ <section class="hero">
75
+ <div class="shield fade-up">🛡️</div>
76
+ <h1 class="fade-up d1">Telegram<span>Guard</span></h1>
77
+ <p class="subtitle fade-up d2">AI group guardian that actually answers your questions.<br>Anti-spam. Vision. Chat. No topic off-limits.</p>
78
+ <div class="cta-row fade-up d3">
79
+ <a href="https://t.me/iLangGuardBot" class="btn btn-primary">⚡ Add to Group</a>
80
+ <a href="https://github.com/ilang-ai/TelegramGuard" class="btn btn-outline">GitHub →</a>
81
+ </div>
82
+ </section>
83
+ <section>
84
+ <div class="section-label fade-up">::GENE_IMMUTABLE</div>
85
+ <h2 class="fade-up d1">Core Capabilities</h2>
86
+ <div class="features">
87
+ <div class="card fade-up d2"><div class="card-icon">🚫</div><h3>Anti-Spam</h3><p>AI three-step analysis. Detects ads, scams, crypto spam. Sees through Unicode tricks and emoji stuffing. Repeat flooding caught with zero AI cost.</p></div>
88
+ <div class="card fade-up d3"><div class="card-icon">👁️</div><h3>Vision</h3><p>Reads images and video thumbnails. Catches image-based spam. In chat mode, sees the story behind the photo.</p></div>
89
+ <div class="card fade-up d4"><div class="card-icon">💬</div><h3>Street-Smart Chat</h3><p>@ the bot in any group. Multilingual. Finance, tech, relationships, culture. Answers first, lectures never.</p></div>
90
+ </div>
91
+ </section>
92
+ <section>
93
+ <div class="section-label fade-up">::IMMUNE{THREE_STEP}</div>
94
+ <h2 class="fade-up d1">What Makes It Different</h2>
95
+ <p class="fade-up d2" style="color:var(--dim);margin-bottom:32px;max-width:600px;">Most bots refuse sensitive questions. TelegramGuard handles them like a street-smart friend:</p>
96
+ <div class="steps">
97
+ <div class="step fade-up d2"><div class="step-num">01</div><div><h3>Insider Risks</h3><p>Shares what actually goes wrong: scams, traps, how people get burned. Street knowledge, not lectures.</p></div></div>
98
+ <div class="step fade-up d3"><div class="step-num">02</div><div><h3>Reality Check</h3><p>"Asking out of curiosity, or actually considering it?" Exit ramp without judgment.</p></div></div>
99
+ <div class="step fade-up d4"><div class="step-num">03</div><div><h3>Direction</h3><p>If you persist, gives enough info to make smart decisions while being clear about consequences.</p></div></div>
100
+ </div>
101
+ </section>
102
+ <section>
103
+ <div class="section-label fade-up">::ILANG:SOUL+PUBLIC</div>
104
+ <h2 class="fade-up d1">Powered by I-Lang Prompt Spec</h2>
105
+ <p class="fade-up d2" style="color:var(--dim);margin-bottom:16px;max-width:600px;">The bot's personality lives in <code style="color:var(--accent)">.ilang</code> files. Each <code style="color:var(--accent)">::GENE</code> defines a behavior. Change the genes, change the bot.</p>
106
+ <div class="code-block fade-up d3">
107
+ <pre><span class="kw">::GENE_IMMUTABLE</span>{S001, T:<span class="str">ANTI_COLLAPSE</span>, A:MORAL_PANIC⇒LETHAL, G:ALL, Θ:ALWAYS}
108
+ <span class="cmt"># When user raises grey topics: don't panic, analyze objectively.</span>
109
+
110
+ <span class="kw">::GENE_MUTABLE</span>{P003, T:<span class="str">TONE_MIRROR</span>, G:adaptive, Θ:INTERLOCUTOR}
111
+ <span class="cmt"># User serious → serious. User joking → play along.</span>
112
+
113
+ <span class="kw">::IMMUNE</span>{RISKY_OR_ILLEGAL, <span class="str">THREE_STEP_RESPONSE</span>}
114
+ <span class="cmt"># Step 1: Insider risks Step 2: Reality check Step 3: Direction</span></pre>
115
+ </div>
116
+ <a href="https://ilang.ai" class="btn btn-outline fade-up d4">Learn I-Lang Spec →</a>
117
+ </section>
118
+ <section>
119
+ <div class="section-label fade-up">Deploy</div>
120
+ <h2 class="fade-up d1">Run Your Own</h2>
121
+ <div class="deploy-grid">
122
+ <div class="deploy-card fade-up d2"><div class="icon">☁️</div><h3>Google Cloud Run</h3><p>Serverless. Auto-scales. Webhook mode. Always hot.</p><span class="tag tag-rec">Recommended</span></div>
123
+ <div class="deploy-card fade-up d3"><div class="icon">🖥️</div><h3>VPS (One Command)</h3><p><code style="font-size:0.75rem">curl ... | sudo bash</code><br>Clone, install, configure, start.</p><span class="tag tag-free">$6/mo</span></div>
124
+ <div class="deploy-card fade-up d4"><div class="icon">📦</div><h3>Manual / Docker</h3><p>Clone the repo, pip install, set 2 env vars, run.</p><span class="tag tag-free">Free</span></div>
125
+ </div>
126
+ </section>
127
+ <footer>
128
+ <a href="https://ilang.ai" style="font-size:1.2rem;font-weight:600;">I-Lang Prompt Spec</a>
129
+ <p>Structured AI instructions using genetic code.<br><a href="https://github.com/ilang-ai/ilang-spec">Spec</a> · <a href="https://github.com/ilang-ai/TelegramGuard">GitHub</a> · <a href="https://huggingface.co/i-Lang">HuggingFace</a></p>
130
+ <p style="margin-top:20px;">MIT · <a href="https://eastsoft.com">Eastsoft Inc.</a> · <a href="https://research.ilang.ai">I-Lang Research</a></p>
131
+ </footer>
132
+ </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  </body>
134
  </html>