-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex-ko.html
More file actions
479 lines (432 loc) · 30.4 KB
/
Copy pathindex-ko.html
File metadata and controls
479 lines (432 loc) · 30.4 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
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- ─── i18n: remember language choice + auto-redirect; toggle lives in the nav (see CLAUDE.md) ─── -->
<script>
(function () {
var LANGS = ['en', 'zh', 'ja', 'ko'];
var path = location.pathname, slash = path.lastIndexOf('/');
var dir = path.slice(0, slash + 1), file = path.slice(slash + 1) || 'index.html';
var m = file.match(/^(.*?)(?:-(zh|ja|ko))?\.html$/i);
var base = m ? m[1] : file.replace(/\.html$/i, '');
var cur = (m && m[2]) ? m[2] : 'en';
function target(l) { return dir + base + (l === 'en' ? '' : '-' + l) + '.html' + location.search + location.hash; }
function cookie() { var h = document.cookie.match(/(?:^|;\s*)bf_lang=([^;]+)/); return h ? decodeURIComponent(h[1]) : ''; }
window.bfLang = {
cur: cur,
pick: function (l) {
if (LANGS.indexOf(l) === -1) return;
document.cookie = 'bf_lang=' + l + ';path=/;max-age=31536000;samesite=lax';
if (l !== cur) location.href = target(l);
}
};
var pref = cookie();
if (LANGS.indexOf(pref) === -1) {
pref = 'en';
var navs = navigator.languages || [navigator.language || ''];
for (var i = 0; i < navs.length; i++) {
var c = (navs[i] || '').slice(0, 2).toLowerCase();
if (c === 'zh' || c === 'ja' || c === 'ko' || c === 'en') { pref = c; break; }
}
}
if (pref !== cur) { location.replace(target(pref)); }
document.addEventListener('DOMContentLoaded', function () {
var s = document.querySelector('select[data-bf-lang]');
if (s) s.value = cur;
});
})();
</script>
<title>ByteFuture:AI 에이전트를 위한 하이브리드 AI 추론</title>
<meta name="description" content="ByteFuture는 하이브리드 AI 추론을 위한 인프라를 구축합니다. 에이전트는 AI PC에서 비공개로, 클라우드에서는 프론티어 규모로 실행됩니다. Olares OS는 온디바이스 추론을, Token Station은 모든 모델에 걸친 클라우드 라우팅을 담당합니다." />
<link rel="canonical" href="https://bytefuture.ai/index-ko.html" />
<!-- Open Graph / social cards -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://bytefuture.ai/index-ko.html" />
<meta property="og:title" content="ByteFuture:AI 에이전트를 위한 하이브리드 AI 추론" />
<meta property="og:description" content="하이브리드 AI 추론을 위한 인프라. Olares OS로 AI PC에서, Token Station으로 클라우드에서. 어디서나 실행되는 AI 에이전트를 위해 설계되었습니다." />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="ByteFuture:AI 에이전트를 위한 하이브리드 AI 추론" />
<meta name="twitter:description" content="Olares OS로 AI PC에서, Token Station으로 클라우드에서. AI 에이전트를 위한 하이브리드 추론 인프라." />
<meta property="og:locale" content="ko_KR" />
<!-- ─── i18n alternates: identical in every language version (see CLAUDE.md) ─── -->
<link rel="alternate" hreflang="en" href="https://bytefuture.ai/" />
<link rel="alternate" hreflang="zh-Hans" href="https://bytefuture.ai/index-zh.html" />
<link rel="alternate" hreflang="ja" href="https://bytefuture.ai/index-ja.html" />
<link rel="alternate" hreflang="ko" href="https://bytefuture.ai/index-ko.html" />
<link rel="alternate" hreflang="x-default" href="https://bytefuture.ai/" />
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><rect x='2.5' y='2.5' width='27' height='27' rx='8' fill='%232563EB' fill-opacity='0.10' stroke='%232563EB' stroke-width='1.6'/><circle cx='12' cy='16' r='3.4' fill='%232563EB'/><circle cx='21.5' cy='16' r='3.4' fill='none' stroke='%230D9488' stroke-width='1.8'/><path d='M15.4 16h2.7' stroke='%230D9488' stroke-width='1.8' stroke-linecap='round'/></svg>" />
<!-- Google Fonts: Space Grotesk (heading) + JetBrains Mono (mono) + DM Sans (body) -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&family=DM+Sans:wght@400;500&display=swap" rel="stylesheet" />
<!-- Google tag (gtag.js) — GA4 + Google Ads -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KQ0EX9QGK6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-KQ0EX9QGK6');
// gtag('config', 'AW-XXXXXXXXXX'); // TODO: add Google Ads Conversion ID
</script>
<style>
* { box-sizing: border-box; }
body {
background: #faf9f5;
color: #18181b;
font-family: 'DM Sans', sans-serif;
margin: 0;
}
a { transition: color 0.2s; }
/* Animate on scroll */
.animate-on-scroll {
opacity: 0;
transform: translateY(24px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
/* Gradient text */
.gradient-text {
background: linear-gradient(135deg, #2563EB 0%, #0D9488 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* Buttons */
.btn-primary {
background: #2563EB; color: #faf9f5; border-radius: 50px;
padding: 14px 28px; font-family: 'Space Grotesk', sans-serif;
font-weight: 600; font-size: 15px; border: none; cursor: pointer;
transition: all 0.2s ease; text-decoration: none;
display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #1d4ed8; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,0.16); }
.btn-secondary {
background: transparent; color: #18181b; border: 1px solid #e4e4e7;
border-radius: 50px; padding: 13px 26px; font-family: 'Space Grotesk', sans-serif;
font-weight: 500; font-size: 14px; cursor: pointer; transition: all 0.2s ease;
text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: #2563EB; color: #2563EB; }
/* Card */
.card {
background: #ffffff; border: 1px solid #e4e4e7; border-radius: 14px;
padding: 32px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover { border-color: #2563EB; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(24,24,27,0.06); }
/* Nav */
nav { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid #e4e4e7; }
/* Section label */
.section-label {
font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500;
letter-spacing: 0.15em; text-transform: uppercase; color: #2563EB;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) {
.grid-2, .grid-3 { grid-template-columns: 1fr !important; }
.hero-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
nav a.nav-link { display: none !important; }
}
@media (max-width: 640px) {
section { padding-left: 18px !important; padding-right: 18px !important; }
footer > div { flex-direction: column !important; gap: 10px; text-align: center; }
}
</style>
</head>
<body>
<!-- ─── NAV ─── -->
<nav>
<div style="background:rgba(250,249,245,0.88); backdrop-filter:blur(12px);">
<div style="max-width:1160px; margin:0 auto; padding:0 24px; height:64px; display:flex; align-items:center; justify-content:space-between;">
<a href="/" style="display:flex; align-items:center; gap:10px; text-decoration:none; color:inherit;">
<svg width="30" height="30" viewBox="0 0 32 32" fill="none" aria-label="ByteFuture logo" role="img">
<rect x="2.5" y="2.5" width="27" height="27" rx="8" fill="#2563EB" fill-opacity="0.10" stroke="#2563EB" stroke-width="1.6"/>
<circle cx="12" cy="16" r="3.4" fill="#2563EB"/>
<circle cx="21.5" cy="16" r="3.4" fill="none" stroke="#0D9488" stroke-width="1.8"/>
<path d="M15.4 16h2.7" stroke="#0D9488" stroke-width="1.8" stroke-linecap="round"/>
</svg>
<span style="font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:16px; letter-spacing:-0.01em;">ByteFuture</span>
</a>
<div style="display:flex; align-items:center; gap:26px;">
<a class="nav-link" href="#products" style="color:#52525b; font-size:14px; text-decoration:none; font-family:'DM Sans',sans-serif;" onmouseover="this.style.color='#18181b'" onmouseout="this.style.color='#52525b'">제품</a>
<a class="nav-link" href="#hybrid" style="color:#52525b; font-size:14px; text-decoration:none; font-family:'DM Sans',sans-serif;" onmouseover="this.style.color='#18181b'" onmouseout="this.style.color='#52525b'">하이브리드 추론</a>
<a class="nav-link" href="/blog/" style="color:#52525b; font-size:14px; text-decoration:none; font-family:'DM Sans',sans-serif;" onmouseover="this.style.color='#18181b'" onmouseout="this.style.color='#52525b'">글</a>
<select data-bf-lang aria-label="Language" onchange="bfLang.pick(this.value)" style="font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:13px; color:#18181b; background:#ffffff; border:1px solid #e4e4e7; border-radius:8px; padding:6px 10px; cursor:pointer;">
<option value="en">EN</option>
<option value="zh">中文</option>
<option value="ja">日本語</option>
<option value="ko">한국어</option>
</select>
<a href="https://models.bytefuture.ai/intro.html" class="btn-primary" style="padding:10px 20px; font-size:13px;" onclick="gtag('event','cta_click',{label:'nav_token_station'});">Token Station</a>
</div>
</div>
</div>
</nav>
<!-- ─── HERO ─── -->
<section style="max-width:1160px; margin:0 auto; padding:96px 24px 72px;">
<div class="hero-grid" style="display:grid; grid-template-columns:1.15fr 0.85fr; gap:64px; align-items:center;">
<div>
<div class="section-label" style="margin-bottom:18px;">ByteFuture · 하이브리드 AI 인프라</div>
<h1 style="font-family:'Space Grotesk',sans-serif; font-size:clamp(40px,5.2vw,66px); font-weight:700; letter-spacing:-0.03em; line-height:1.05; margin:0 0 24px;">
AI 에이전트를 위한<br /><span class="gradient-text">하이브리드 AI 추론.</span>
</h1>
<p style="font-size:18px; color:#52525b; line-height:1.7; margin:0 0 18px; max-width:520px;">
AI 에이전트는 어디서나 실행되어야 합니다. AI PC에서 비공개로, 그리고 클라우드에서 프론티어 규모로. ByteFuture는 이 둘을 아우르는 스택을 구축합니다. 온디바이스 추론을 담당하는 <strong style="color:#18181b;">Olares OS</strong>와 모든 모델에 걸친 클라우드 라우팅을 담당하는 <strong style="color:#18181b;">Token Station</strong>입니다.
</p>
<p style="font-size:14px; color:#0D9488; margin:0 0 32px; max-width:520px;">
하나의 에이전트. 가능할 때는 로컬, 필요할 때는 클라우드. 호출마다 결정됩니다.
</p>
<div style="display:flex; flex-wrap:wrap; gap:12px;">
<a href="https://models.bytefuture.ai/intro.html" class="btn-primary" onclick="gtag('event','cta_click',{label:'hero_token_station'});">
Token Station 살펴보기 →
</a>
<a href="https://github.com/beclab/olares" class="btn-secondary" onclick="gtag('event','cta_click',{label:'hero_olares_github'});">
GitHub에서 Olares 보기 ↗
</a>
</div>
</div>
<!-- Hybrid loop diagram -->
<div>
<div style="background:#ffffff; border:1px solid #e4e4e7; border-radius:16px; padding:28px; box-shadow:0 24px 64px rgba(24,24,27,0.08);">
<div style="font-family:'JetBrains Mono',monospace; font-size:10px; letter-spacing:0.14em; text-transform:uppercase; color:#71717a; margin-bottom:18px;">한 번의 추론 호출</div>
<div style="display:flex; align-items:center; gap:12px; padding:14px 16px; border:1px solid #e4e4e7; border-radius:12px; background:#f8fafc; margin-bottom:10px;">
<span style="font-size:20px;">🧑💻</span>
<div>
<div style="font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:14px;">AI PC의 에이전트</div>
<div style="font-size:12px; color:#71717a;">Olares OS에서 실행</div>
</div>
</div>
<div style="text-align:center; color:#a1a1aa; font-size:18px; line-height:1; margin:2px 0;">↓</div>
<div style="display:flex; align-items:center; gap:12px; padding:14px 16px; border:1px solid rgba(37,99,235,0.30); border-radius:12px; background:#eef4ff; margin-bottom:10px;">
<span style="font-size:20px;">🧭</span>
<div>
<div style="font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:14px; color:#2563EB;">Token Station이 라우팅</div>
<div style="font-size:12px; color:#52525b;">비용 · 지연 · 개인정보 정책 기준</div>
</div>
</div>
<div style="display:grid; grid-template-columns:1fr 1fr; gap:10px;">
<div style="padding:14px 14px; border:1px solid #e4e4e7; border-radius:12px; background:#f0fdfa; text-align:center;">
<div style="font-size:18px;">💻</div>
<div style="font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:13px; color:#0D9488; margin-top:4px;">로컬 모델</div>
<div style="font-size:11px; color:#71717a;">비공개 · 오프라인</div>
</div>
<div style="padding:14px 14px; border:1px solid #e4e4e7; border-radius:12px; background:#f8fafc; text-align:center;">
<div style="font-size:18px;">☁️</div>
<div style="font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:13px; color:#18181b; margin-top:4px;">클라우드 프론티어</div>
<div style="font-size:11px; color:#71717a;">확장성 · 성능</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ─── WRITINGS TEASER ─── -->
<section style="padding:88px 24px; border-top:1px solid #e4e4e7;">
<div style="max-width:1160px; margin:0 auto;">
<div style="display:flex; justify-content:space-between; align-items:flex-end; gap:16px; margin-bottom:40px; flex-wrap:wrap;">
<div>
<div class="section-label animate-on-scroll" style="margin-bottom:14px;">최신 글</div>
<h2 class="animate-on-scroll" style="font-family:'Space Grotesk',sans-serif; font-size:clamp(26px,3.5vw,38px); font-weight:700; letter-spacing:-0.03em; margin:0;">하이브리드 추론, 에이전트, 오픈 모델에 관한 기록.</h2>
</div>
<a href="/blog/" class="btn-secondary animate-on-scroll" onclick="gtag('event','cta_click',{label:'writings_all'});">모든 글 읽기 →</a>
</div>
<div class="grid-3" id="writings-teaser">
<div style="color:#a1a1aa; font-family:'JetBrains Mono',monospace; font-size:13px;">불러오는 중…</div>
</div>
</div>
</section>
<!-- ─── HYBRID THESIS ─── -->
<section id="hybrid" style="padding:88px 24px; border-top:1px solid #e4e4e7;">
<div style="max-width:1160px; margin:0 auto;">
<div class="section-label animate-on-scroll" style="text-align:center; margin-bottom:16px;">왜 하이브리드인가</div>
<h2 class="animate-on-scroll" style="font-family:'Space Grotesk',sans-serif; font-size:clamp(28px,4vw,44px); font-weight:700; letter-spacing:-0.03em; text-align:center; margin:0 0 16px;">
프론티어는 클라우드에, 데이터는 기기에 있습니다.
</h2>
<p class="animate-on-scroll" style="text-align:center; color:#71717a; font-size:16px; line-height:1.7; max-width:720px; margin:0 auto 56px;">
클라우드만 호출하는 에이전트는 데이터를 유출하고 오프라인에서 멈춥니다. 로컬에서만 실행되는 에이전트는 성능의 한계에 부딪힙니다. 하이브리드 추론이 해답이며, 이를 위해서는 양쪽 끝의 인프라와 그 사이를 라우팅하는 무언가가 필요합니다.
</p>
<div class="grid-3">
<div class="card animate-on-scroll">
<div style="font-size:26px; margin-bottom:14px;">🔒</div>
<h3 style="font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:18px; margin:0 0 10px;">로컬:비공개와 즉시 응답</h3>
<p style="color:#71717a; line-height:1.65; margin:0; font-size:15px;">AI PC에서 모델과 에이전트를 실행합니다. 민감한 데이터는 기기를 떠나지 않고, 지연은 거의 없으며, 오프라인에서도 작동합니다.</p>
</div>
<div class="card animate-on-scroll">
<div style="font-size:26px; margin-bottom:14px;">☁️</div>
<h3 style="font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:18px; margin:0 0 10px;">클라우드:프론티어와 탄력성</h3>
<p style="color:#71717a; line-height:1.65; margin:0; font-size:15px;">작업이 요구할 때 가장 강력한 폐쇄형 및 오픈 모델에 접근하고, 하드웨어 프로비저닝 없이 확장할 수 있습니다.</p>
</div>
<div class="card animate-on-scroll">
<div style="font-size:26px; margin-bottom:14px;">🧭</div>
<h3 style="font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:18px; margin:0 0 10px;">라우팅:호출마다 적용되는 자신의 정책</h3>
<p style="color:#71717a; line-height:1.65; margin:0; font-size:15px;">단일 게이트웨이가 모든 요청에서 로컬과 클라우드를 결정합니다(비용, 지연, 개인정보, 성능 기준). 코드를 바꿀 필요는 없습니다.</p>
</div>
</div>
</div>
</section>
<!-- ─── PRODUCTS ─── -->
<section id="products" style="padding:88px 24px; border-top:1px solid #e4e4e7;">
<div style="max-width:1160px; margin:0 auto;">
<div class="section-label animate-on-scroll" style="text-align:center; margin-bottom:16px;">두 개의 제품, 하나의 스택</div>
<h2 class="animate-on-scroll" style="font-family:'Space Grotesk',sans-serif; font-size:clamp(28px,4vw,44px); font-weight:700; letter-spacing:-0.03em; text-align:center; margin:0 0 56px;">
추론 경로의 양쪽 끝을 위해 설계되었습니다.
</h2>
<div class="grid-2">
<!-- Olares -->
<div class="card animate-on-scroll" style="display:flex; flex-direction:column;">
<div style="display:flex; align-items:center; gap:12px; margin-bottom:18px;">
<div style="width:46px; height:46px; border-radius:12px; background:#f0fdfa; border:1px solid rgba(13,148,136,0.20); display:flex; align-items:center; justify-content:center; font-size:22px;">🖥️</div>
<div>
<h3 style="font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:22px; margin:0;">Olares OS</h3>
<div style="font-family:'JetBrains Mono',monospace; font-size:11px; color:#0D9488; letter-spacing:0.04em;">온디바이스 · 오픈소스</div>
</div>
</div>
<p style="color:#52525b; line-height:1.7; margin:0 0 18px; font-size:15px;">
AI PC를 위한 오픈소스 운영체제. 모델, 에이전트, 그리고 자신만의 주권적 AI 클라우드를 로컬에서 실행합니다. 데이터와 연산 자원은 모두 사용자의 것입니다. Olares는 강력한 머신을 에이전트 전용의 비공개 추론 엔드포인트로 바꿉니다.
</p>
<ul style="margin:0 0 22px; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px;">
<li style="font-size:14px; color:#3f3f46; display:flex; gap:10px;"><span style="color:#0D9488;">✓</span> 자신의 하드웨어에서 모델과 앱을 셀프 호스팅</li>
<li style="font-size:14px; color:#3f3f46; display:flex; gap:10px;"><span style="color:#0D9488;">✓</span> 기본적으로 비공개:데이터는 기기에 머물러</li>
<li style="font-size:14px; color:#3f3f46; display:flex; gap:10px;"><span style="color:#0D9488;">✓</span> 오픈소스, 커뮤니티 주도</li>
</ul>
<div style="margin-top:auto; display:flex; gap:14px; align-items:center;">
<a href="https://github.com/beclab/olares" class="btn-primary" style="padding:11px 20px; font-size:14px;" onclick="gtag('event','cta_click',{label:'product_olares_github'});">GitHub에서 보기 ↗</a>
<span style="font-family:'JetBrains Mono',monospace; font-size:12px; color:#a1a1aa;">github.com/beclab/olares</span>
</div>
</div>
<!-- Token Station -->
<div class="card animate-on-scroll" style="display:flex; flex-direction:column;">
<div style="display:flex; align-items:center; gap:12px; margin-bottom:18px;">
<div style="width:46px; height:46px; border-radius:12px; background:#eef4ff; border:1px solid rgba(37,99,235,0.20); display:flex; align-items:center; justify-content:center; font-size:22px;">🛰️</div>
<div>
<h3 style="font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:22px; margin:0;">Token Station</h3>
<div style="font-family:'JetBrains Mono',monospace; font-size:11px; color:#2563EB; letter-spacing:0.04em;">게이트웨이 · 클라우드 + 로컬</div>
</div>
</div>
<p style="color:#52525b; line-height:1.7; margin:0 0 18px; font-size:15px;">
하이브리드 추론 게이트웨이. 모든 클라우드 및 로컬 모델을 하나의 API로(OpenAI 및 Anthropic 방식), 각 호출을 가장 적합한 곳으로 보내는 스마트 라우팅과 함께:가장 저렴하게, 가장 빠르게, 또는 가장 비공개로. 이미 사용 중인 SDK와 에이전트 프레임워크에 그대로 끼워 넣습니다.
</p>
<ul style="margin:0 0 22px; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px;">
<li style="font-size:14px; color:#3f3f46; display:flex; gap:10px;"><span style="color:#2563EB;">✓</span> 모든 모델과 모달리티를 위한 하나의 키</li>
<li style="font-size:14px; color:#3f3f46; display:flex; gap:10px;"><span style="color:#2563EB;">✓</span> 정책 기반 라우팅:비용, 지연, 개인정보, 폴백</li>
<li style="font-size:14px; color:#3f3f46; display:flex; gap:10px;"><span style="color:#2563EB;">✓</span> 마진 없음, 사용량 기반 결제</li>
</ul>
<div style="margin-top:auto; display:flex; gap:14px; align-items:center;">
<a href="https://models.bytefuture.ai/intro.html" class="btn-primary" style="padding:11px 20px; font-size:14px;" onclick="gtag('event','cta_click',{label:'product_token_station_intro'});">소개 읽기 →</a>
<span style="font-family:'JetBrains Mono',monospace; font-size:12px; color:#a1a1aa;">models.bytefuture.ai</span>
</div>
</div>
</div>
</div>
</section>
<!-- ─── HOW IT FITS ─── -->
<section style="padding:88px 24px; border-top:1px solid #e4e4e7; background:#f4f4f5;">
<div style="max-width:1160px; margin:0 auto;">
<div class="section-label animate-on-scroll" style="text-align:center; margin-bottom:16px;">어떻게 맞물리는가</div>
<h2 class="animate-on-scroll" style="font-family:'Space Grotesk',sans-serif; font-size:clamp(28px,4vw,44px); font-weight:700; letter-spacing:-0.03em; text-align:center; margin:0 0 56px;">
에이전트는 그대로, 추론이 이동합니다.
</h2>
<div class="grid-3">
<div class="animate-on-scroll">
<div style="width:40px; height:40px; border-radius:10px; background:#ffffff; border:1px solid #e4e4e7; display:flex; align-items:center; justify-content:center; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:14px; color:#2563EB; margin-bottom:18px;">01</div>
<h3 style="font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:18px; margin:0 0 10px;">에이전트가 Olares에서 실행됩니다</h3>
<p style="color:#71717a; line-height:1.65; margin:0; font-size:15px;">AI PC에서 로컬 모델과 데이터를 가까이 두고.</p>
</div>
<div class="animate-on-scroll">
<div style="width:40px; height:40px; border-radius:10px; background:#ffffff; border:1px solid #e4e4e7; display:flex; align-items:center; justify-content:center; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:14px; color:#2563EB; margin-bottom:18px;">02</div>
<h3 style="font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:18px; margin:0 0 10px;">Token Station이 각 호출을 라우팅합니다</h3>
<p style="color:#71717a; line-height:1.65; margin:0; font-size:15px;">하나의 API가 모든 추론 요청의 행선지를 결정합니다.</p>
</div>
<div class="animate-on-scroll">
<div style="width:40px; height:40px; border-radius:10px; background:#ffffff; border:1px solid #e4e4e7; display:flex; align-items:center; justify-content:center; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:14px; color:#2563EB; margin-bottom:18px;">03</div>
<h3 style="font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:18px; margin:0 0 10px;">정책에 따라 로컬 또는 클라우드</h3>
<p style="color:#71717a; line-height:1.65; margin:0; font-size:15px;">비공개 작업은 로컬에, 프론티어 작업은 클라우드로. 자동으로.</p>
</div>
</div>
</div>
</section>
<!-- ─── FOOTER ─── -->
<footer style="padding:36px 24px; border-top:1px solid #e4e4e7;">
<div style="max-width:1160px; margin:0 auto; display:flex; justify-content:space-between; align-items:center;">
<div style="display:flex; align-items:center; gap:10px;">
<svg width="22" height="22" viewBox="0 0 32 32" fill="none" aria-label="ByteFuture logo" role="img" style="opacity:0.85;">
<rect x="2.5" y="2.5" width="27" height="27" rx="8" fill="#2563EB" fill-opacity="0.10" stroke="#2563EB" stroke-width="1.6"/>
<circle cx="12" cy="16" r="3.4" fill="#2563EB"/>
<circle cx="21.5" cy="16" r="3.4" fill="none" stroke="#0D9488" stroke-width="1.8"/>
<path d="M15.4 16h2.7" stroke="#0D9488" stroke-width="1.8" stroke-linecap="round"/>
</svg>
<span style="font-family:'Space Grotesk',sans-serif; font-size:13px; color:#71717a;">ByteFuture</span>
</div>
<div style="display:flex; align-items:center; gap:20px; flex-wrap:wrap;">
<a href="https://github.com/beclab/olares" style="color:#71717a; font-size:13px; text-decoration:none;" onmouseover="this.style.color='#18181b'" onmouseout="this.style.color='#71717a'">Olares</a>
<a href="https://models.bytefuture.ai/intro.html" style="color:#71717a; font-size:13px; text-decoration:none;" onmouseover="this.style.color='#18181b'" onmouseout="this.style.color='#71717a'">Token Station</a>
<a href="/blog/" style="color:#71717a; font-size:13px; text-decoration:none;" onmouseover="this.style.color='#18181b'" onmouseout="this.style.color='#71717a'">글</a>
<span style="color:#a1a1aa; font-size:13px;">© 2026 ByteFuture</span>
</div>
</div>
</footer>
<!-- ─── SCROLL REVEAL ─── -->
<script>
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('is-visible');
observer.unobserve(entry.target);
}
});
}, { threshold: 0.15 });
document.querySelectorAll('.animate-on-scroll').forEach(el => observer.observe(el));
</script>
<!-- ─── WRITINGS TEASER (latest 3 from posts.json) ─── -->
<script>
(function() {
function fmtDate(iso) {
var d = new Date(iso + 'T00:00:00');
return d.toLocaleDateString('ko-KR', { year: 'numeric', month: 'short', day: 'numeric' });
}
function esc(s) { return String(s).replace(/[&<>"]/g, function(c){return {'&':'&','<':'<','>':'>','"':'"'}[c];}); }
var CAT={engineering:'엔지니어링',product:'제품',research:'연구',tutorial:'튜토리얼'};
fetch('/posts-ko.json')
.then(function(r) { return r.json(); })
.then(function(posts) {
var latest = posts.slice().sort(function(a, b) { return b.date.localeCompare(a.date); }).slice(0, 3);
var el = document.getElementById('writings-teaser');
el.innerHTML = latest.map(function(p) {
return '<a class="card animate-on-scroll" href="/blog/' + encodeURIComponent(p.slug) + '-ko.html" ' +
'style="text-decoration:none; color:inherit; display:flex; flex-direction:column;" ' +
'onclick="gtag(\'event\',\'blog_click\',{label:\'home_teaser\'})">' +
'<div style="display:flex; align-items:center; gap:10px; margin-bottom:12px;">' +
'<span style="font-size:12px; font-family:\'Space Grotesk\',sans-serif; font-weight:500; color:#2563EB; background:rgba(37,99,235,0.08); padding:3px 10px; border-radius:50px;">' + esc(CAT[p.category]||p.category) + '</span>' +
'<time style="font-size:13px; color:#a1a1aa; font-family:\'Space Grotesk\',sans-serif;">' + fmtDate(p.date) + '</time>' +
'</div>' +
'<h3 style="font-family:\'Space Grotesk\',sans-serif; font-size:18px; font-weight:600; letter-spacing:-0.01em; line-height:1.3; margin:0 0 8px;">' + esc(p.title) + '</h3>' +
'<p style="font-size:14px; color:#71717a; line-height:1.6; margin:0;">' + esc(p.summary) + '</p>' +
'</a>';
}).join('');
document.querySelectorAll('#writings-teaser .animate-on-scroll').forEach(function(x){ observer.observe(x); });
})
.catch(function() {
document.getElementById('writings-teaser').innerHTML =
'<a href="/blog/" style="color:#2563EB; font-family:\'JetBrains Mono\',monospace; font-size:13px;">글 읽어보기 →</a>';
});
})();
</script>
<!-- ─── SCROLL EVENTS ─── -->
<script>
// scroll_50 engagement event
(function() {
var fired = false;
window.addEventListener('scroll', function() {
if (fired) return;
var scrollPercent = (window.scrollY + window.innerHeight) / document.documentElement.scrollHeight;
if (scrollPercent >= 0.5) {
fired = true;
gtag('event', 'scroll', {percent_scrolled: 50});
}
});
})();
</script>
</body>
</html>