Spaces:
Running
Running
Delete index.html
Browse files- index.html +0 -225
index.html
DELETED
|
@@ -1,225 +0,0 @@
|
|
| 1 |
-
<!DOCTYPE html>
|
| 2 |
-
<html lang="en">
|
| 3 |
-
|
| 4 |
-
<head>
|
| 5 |
-
<meta charset="UTF-8">
|
| 6 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 7 |
-
<title>ICM | The Intelligence Storage Layer</title>
|
| 8 |
-
<link rel="preconnect" href="https://fonts.googleapis.com">
|
| 9 |
-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
| 10 |
-
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap" rel="stylesheet">
|
| 11 |
-
<link rel="stylesheet" href="style.css">
|
| 12 |
-
<style>
|
| 13 |
-
.demo-section {
|
| 14 |
-
padding: 4rem 2rem;
|
| 15 |
-
background: var(--bg-dark);
|
| 16 |
-
}
|
| 17 |
-
|
| 18 |
-
.terminal-container {
|
| 19 |
-
max-width: 900px;
|
| 20 |
-
margin: 4rem auto;
|
| 21 |
-
background: #0c0c0e;
|
| 22 |
-
border-radius: 16px;
|
| 23 |
-
border: 1px solid rgba(0, 210, 255, 0.3);
|
| 24 |
-
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
|
| 25 |
-
overflow: hidden;
|
| 26 |
-
font-family: 'Courier New', Courier, monospace;
|
| 27 |
-
}
|
| 28 |
-
|
| 29 |
-
.terminal-header {
|
| 30 |
-
background: #161618;
|
| 31 |
-
padding: 12px 20px;
|
| 32 |
-
display: flex;
|
| 33 |
-
align-items: center;
|
| 34 |
-
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
| 35 |
-
}
|
| 36 |
-
|
| 37 |
-
.dot {
|
| 38 |
-
width: 12px;
|
| 39 |
-
height: 12px;
|
| 40 |
-
border-radius: 50%;
|
| 41 |
-
margin-right: 8px;
|
| 42 |
-
}
|
| 43 |
-
|
| 44 |
-
.red {
|
| 45 |
-
background: #ff5f56;
|
| 46 |
-
}
|
| 47 |
-
|
| 48 |
-
.yellow {
|
| 49 |
-
background: #ffbd2e;
|
| 50 |
-
}
|
| 51 |
-
|
| 52 |
-
.green {
|
| 53 |
-
background: #27c93f;
|
| 54 |
-
}
|
| 55 |
-
|
| 56 |
-
.terminal-title {
|
| 57 |
-
color: #888;
|
| 58 |
-
font-size: 0.8rem;
|
| 59 |
-
margin-left: 10px;
|
| 60 |
-
letter-spacing: 1px;
|
| 61 |
-
}
|
| 62 |
-
|
| 63 |
-
.terminal-body {
|
| 64 |
-
padding: 25px;
|
| 65 |
-
height: 350px;
|
| 66 |
-
overflow-y: auto;
|
| 67 |
-
color: #00d2ff;
|
| 68 |
-
font-size: 0.95rem;
|
| 69 |
-
line-height: 1.5;
|
| 70 |
-
}
|
| 71 |
-
|
| 72 |
-
.terminal-input-line {
|
| 73 |
-
display: flex;
|
| 74 |
-
padding: 15px 25px;
|
| 75 |
-
background: #111;
|
| 76 |
-
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
| 77 |
-
}
|
| 78 |
-
|
| 79 |
-
.prompt {
|
| 80 |
-
color: var(--primary);
|
| 81 |
-
font-weight: bold;
|
| 82 |
-
margin-right: 15px;
|
| 83 |
-
}
|
| 84 |
-
|
| 85 |
-
#terminal-input {
|
| 86 |
-
background: transparent;
|
| 87 |
-
border: none;
|
| 88 |
-
color: #fff;
|
| 89 |
-
width: 100%;
|
| 90 |
-
outline: none;
|
| 91 |
-
font-family: inherit;
|
| 92 |
-
font-size: 1rem;
|
| 93 |
-
}
|
| 94 |
-
|
| 95 |
-
.recall-tag {
|
| 96 |
-
color: #fff;
|
| 97 |
-
background: var(--primary);
|
| 98 |
-
padding: 2px 8px;
|
| 99 |
-
border-radius: 4px;
|
| 100 |
-
font-weight: bold;
|
| 101 |
-
font-size: 0.7rem;
|
| 102 |
-
margin-right: 10px;
|
| 103 |
-
}
|
| 104 |
-
|
| 105 |
-
.speed-tag {
|
| 106 |
-
color: var(--secondary);
|
| 107 |
-
font-style: italic;
|
| 108 |
-
margin-left: 10px;
|
| 109 |
-
}
|
| 110 |
-
</style>
|
| 111 |
-
</head>
|
| 112 |
-
|
| 113 |
-
<body>
|
| 114 |
-
|
| 115 |
-
<section class="hero">
|
| 116 |
-
<div class="hero-bg"></div>
|
| 117 |
-
<div class="hero-overlay"></div>
|
| 118 |
-
<div class="hero-content">
|
| 119 |
-
<h1>Agents with Memory.<br>Not just Bots.</h1>
|
| 120 |
-
<p>Break the context ceiling forever with a **10-Million Token Window**. Give your AI a persistent brain
|
| 121 |
-
that never forgets, retrieves in **sub-100ms**, and scales at 90% lower cost.</p>
|
| 122 |
-
<button class="cta-button">Evolve Your Agent</button>
|
| 123 |
-
</div>
|
| 124 |
-
</section>
|
| 125 |
-
|
| 126 |
-
<section class="value-prop">
|
| 127 |
-
<h2>Your AI is blind<br>without a permanent memory.</h2>
|
| 128 |
-
<p class="large-text">Traditional LLMs are limited by their context window. ICM provides the missing layer: a
|
| 129 |
-
sovereign, infinite memory that turns static models into dynamic, long-term agents capable of true
|
| 130 |
-
autonomous intelligence.</p>
|
| 131 |
-
|
| 132 |
-
<div class="terminal-container">
|
| 133 |
-
<div class="terminal-header">
|
| 134 |
-
<div class="dot red"></div>
|
| 135 |
-
<div class="dot yellow"></div>
|
| 136 |
-
<div class="dot green"></div>
|
| 137 |
-
<span class="terminal-title">ICM-RECALL-SIMULATOR_v1.0 (RECALL STATUS: ONLINE)</span>
|
| 138 |
-
</div>
|
| 139 |
-
<div class="terminal-body" id="terminal-output">
|
| 140 |
-
<div>[SYSTEM]: Persistent 10M Token Memory Initialized...</div>
|
| 141 |
-
<div>[SYSTEM]: BGE-Reranker-v2-m3 Active...</div>
|
| 142 |
-
<div>[SYSTEM]: Ready for Agentic Recall Query.</div>
|
| 143 |
-
<br>
|
| 144 |
-
<div style="color: #666; font-size: 0.85rem;">
|
| 145 |
-
• ASK: "How much does the professional tier cost?"<br>
|
| 146 |
-
• INGEST: Type "ingest [your secret text]" to store new memory.<br>
|
| 147 |
-
• VERIFY: Ask about your secret text to see real sub-100ms recall.
|
| 148 |
-
</div>
|
| 149 |
-
</div>
|
| 150 |
-
<div class="terminal-input-line">
|
| 151 |
-
<span class="prompt">USER></span>
|
| 152 |
-
<input type="text" id="terminal-input" placeholder="Ask a question or 'ingest' new data..."
|
| 153 |
-
autocomplete="off">
|
| 154 |
-
</div>
|
| 155 |
-
</div>
|
| 156 |
-
</section>
|
| 157 |
-
|
| 158 |
-
<section class="features">
|
| 159 |
-
<div class="card">
|
| 160 |
-
<h3>10M+ Token Window</h3>
|
| 161 |
-
<p>Stop worrying about token limits. 10M tokens is equivalent to 100 full-length books or 20,000 PDF
|
| 162 |
-
pages—all instantly accessible in your agent's immediate memory.</p>
|
| 163 |
-
</div>
|
| 164 |
-
<div class="card">
|
| 165 |
-
<h3>Sub-100ms Retrieval</h3>
|
| 166 |
-
<p>Speed is agency. Our hardware-optimized architecture delivers sub-100ms retrieval, ensuring your agent
|
| 167 |
-
reacts with human-like speed across millions of data points.</p>
|
| 168 |
-
</div>
|
| 169 |
-
<div class="card">
|
| 170 |
-
<h3>Zero Hardware Upgrades</h3>
|
| 171 |
-
<p>Scale to 10M+ tokens without buying a single new server. Our software-level bridge uses your existing
|
| 172 |
-
infrastructure to deliver massive intelligence capacity.</p>
|
| 173 |
-
</div>
|
| 174 |
-
<div class="card">
|
| 175 |
-
<h3>Real Sovereign Agents</h3>
|
| 176 |
-
<p>Move beyond simple chat. Give your agents a private, encrypted memory bank that they control. No
|
| 177 |
-
3rd-party data scraping, just pure autonomous recall.</p>
|
| 178 |
-
</div>
|
| 179 |
-
</section>
|
| 180 |
-
|
| 181 |
-
<section class="value-prop" style="padding-bottom: 0;">
|
| 182 |
-
<h2>Why get on board with ICM?</h2>
|
| 183 |
-
<p class="large-text">Traditional intelligence is siloed. We are building the unified memory for the next
|
| 184 |
-
generation of human-agent collaboration.</p>
|
| 185 |
-
</section>
|
| 186 |
-
|
| 187 |
-
<section class="features" style="padding-top: 4rem;">
|
| 188 |
-
<div class="card">
|
| 189 |
-
<h3 style="color: var(--secondary);">For Users</h3>
|
| 190 |
-
<p>Your digital life is scattered. ICM gives you a <strong>Sovereign Second Brain</strong>. Never lose a
|
| 191 |
-
thought, never forget a conversation, and own your history with zero technical overhead.</p>
|
| 192 |
-
</div>
|
| 193 |
-
<div class="card">
|
| 194 |
-
<h3 style="color: var(--secondary);">For Companies</h3>
|
| 195 |
-
<p>Kill the "Context Tax." Leverage <strong>10M+ tokens</strong> of legacy archives at 90% lower cost.
|
| 196 |
-
Secure your intellectual property with enterprise-grade AES-256 encryption.</p>
|
| 197 |
-
</div>
|
| 198 |
-
<div class="card">
|
| 199 |
-
<h3 style="color: var(--secondary);">For Powerusers</h3>
|
| 200 |
-
<p>Move beyond chat. Transform your models into <strong>Real Agents</strong> with persistent memory and
|
| 201 |
-
sub-100ms recall. Break the 128k ceiling and unlock true autonomy.</p>
|
| 202 |
-
</div>
|
| 203 |
-
<div class="card">
|
| 204 |
-
<h3 style="color: var(--secondary);">For Developers</h3>
|
| 205 |
-
<p>Built for the future. Unified API with <strong>LiteLLM Proxy</strong> support. Infinite memory as a
|
| 206 |
-
service—integrate ICM into your stack in minutes with our modular RAG pipeline.</p>
|
| 207 |
-
</div>
|
| 208 |
-
</section>
|
| 209 |
-
|
| 210 |
-
<section class="value-prop" style="padding-top: 0;">
|
| 211 |
-
<h2>Ready for the next era?</h2>
|
| 212 |
-
<p class="large-text">Join the exclusive circle of enterprises redefining the limits of organizational memory.
|
| 213 |
-
</p>
|
| 214 |
-
<br><br>
|
| 215 |
-
<button class="cta-button">Apply for Access</button>
|
| 216 |
-
</section>
|
| 217 |
-
|
| 218 |
-
<footer>
|
| 219 |
-
<p>© 2026 Infinite Context Memory. All rights reserved. Self-Sovereign Intelligence Storage.</p>
|
| 220 |
-
</footer>
|
| 221 |
-
|
| 222 |
-
<script src="script.js"></script>
|
| 223 |
-
</body>
|
| 224 |
-
|
| 225 |
-
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|