aiwriting-takram.html 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=1440">
  6. <title>Inkwell — AI Writing Assistant</title>
  7. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Noto+Serif+SC:wght@400;500;600;700&display=swap" rel="stylesheet">
  8. <script src="https://unpkg.com/lucide@latest"></script>
  9. <style>
  10. * { margin: 0; padding: 0; box-sizing: border-box; }
  11. body {
  12. width: 1440px;
  13. height: 900px;
  14. overflow: hidden;
  15. margin: 0;
  16. background: #F5F0EB;
  17. font-family: 'Inter', sans-serif;
  18. color: #3D3D3D;
  19. }
  20. .page {
  21. width: 100%;
  22. height: 100%;
  23. display: flex;
  24. flex-direction: column;
  25. }
  26. /* NAV */
  27. .nav-bar {
  28. display: flex;
  29. justify-content: space-between;
  30. align-items: center;
  31. padding: 28px 64px;
  32. }
  33. .logo {
  34. font-family: 'Noto Serif SC', serif;
  35. font-size: 20px;
  36. font-weight: 600;
  37. color: #5C5347;
  38. letter-spacing: 1px;
  39. }
  40. .nav-right {
  41. display: flex;
  42. align-items: center;
  43. gap: 36px;
  44. }
  45. .nav-right a {
  46. font-size: 13px;
  47. font-weight: 400;
  48. color: #8A8278;
  49. text-decoration: none;
  50. letter-spacing: 0.3px;
  51. }
  52. .nav-cta {
  53. padding: 10px 24px;
  54. background: transparent;
  55. color: #2D3436;
  56. border: 1px solid rgba(45, 52, 54, 0.2);
  57. border-radius: 24px;
  58. font-size: 13px;
  59. font-weight: 500;
  60. text-decoration: none;
  61. letter-spacing: 0.3px;
  62. }
  63. /* MAIN CONTENT */
  64. .main-content {
  65. flex: 1;
  66. display: flex;
  67. flex-direction: column;
  68. padding: 0 64px;
  69. gap: 36px;
  70. }
  71. /* HERO ROW */
  72. .hero-row {
  73. display: grid;
  74. grid-template-columns: 480px 1fr;
  75. gap: 56px;
  76. align-items: start;
  77. padding-top: 16px;
  78. }
  79. .hero-text {
  80. padding-top: 20px;
  81. }
  82. .headline {
  83. font-family: 'Noto Serif SC', serif;
  84. font-size: 44px;
  85. font-weight: 600;
  86. line-height: 1.35;
  87. letter-spacing: -0.5px;
  88. color: #3D3D3D;
  89. margin-bottom: 20px;
  90. }
  91. .headline .accent {
  92. color: #6B8F71;
  93. }
  94. .subtitle {
  95. font-size: 16px;
  96. font-weight: 300;
  97. line-height: 1.8;
  98. color: #8A8278;
  99. max-width: 420px;
  100. margin-bottom: 28px;
  101. }
  102. .cta-area {
  103. display: flex;
  104. align-items: center;
  105. gap: 20px;
  106. margin-bottom: 16px;
  107. }
  108. .cta-button {
  109. display: inline-flex;
  110. align-items: center;
  111. gap: 10px;
  112. padding: 14px 32px;
  113. background: #2D3436;
  114. color: #F5F0EB;
  115. font-family: 'Inter', sans-serif;
  116. font-size: 14px;
  117. font-weight: 500;
  118. letter-spacing: 0.5px;
  119. text-decoration: none;
  120. border: none;
  121. border-radius: 32px;
  122. cursor: pointer;
  123. }
  124. .social-proof {
  125. font-size: 12px;
  126. font-weight: 400;
  127. color: #B5AD9E;
  128. letter-spacing: 0.3px;
  129. }
  130. /* EDITOR MOCKUP — organic rounded */
  131. .editor-container {
  132. position: relative;
  133. }
  134. .editor-card {
  135. width: 100%;
  136. max-width: 720px;
  137. height: 460px;
  138. background: #FDFCF9;
  139. border-radius: 24px;
  140. box-shadow:
  141. 0 2px 8px rgba(92,83,71,0.04),
  142. 0 8px 24px rgba(92,83,71,0.06),
  143. 0 24px 48px rgba(92,83,71,0.03);
  144. display: grid;
  145. grid-template-columns: 1fr 200px;
  146. overflow: hidden;
  147. }
  148. .editor-body {
  149. padding: 28px 28px;
  150. display: flex;
  151. flex-direction: column;
  152. }
  153. .editor-toolbar {
  154. display: flex;
  155. gap: 6px;
  156. margin-bottom: 20px;
  157. padding-bottom: 14px;
  158. border-bottom: 1px solid #EDE8DF;
  159. }
  160. .e-btn {
  161. width: 30px;
  162. height: 30px;
  163. border-radius: 10px;
  164. border: none;
  165. background: transparent;
  166. display: flex;
  167. align-items: center;
  168. justify-content: center;
  169. color: #C4BDB2;
  170. cursor: pointer;
  171. }
  172. .e-btn.active {
  173. background: #EDE8DF;
  174. color: #5C5347;
  175. }
  176. .e-title {
  177. font-family: 'Noto Serif SC', serif;
  178. font-size: 20px;
  179. font-weight: 600;
  180. color: #3D3D3D;
  181. margin-bottom: 14px;
  182. }
  183. .e-text {
  184. font-size: 13.5px;
  185. font-weight: 300;
  186. line-height: 1.9;
  187. color: #6B6560;
  188. margin-bottom: 12px;
  189. }
  190. .e-text .enhanced {
  191. background: rgba(107,143,113,0.2);
  192. border-radius: 4px;
  193. padding: 1px 4px;
  194. }
  195. .e-h2 {
  196. font-family: 'Noto Serif SC', serif;
  197. font-size: 16px;
  198. font-weight: 500;
  199. color: #3D3D3D;
  200. margin-bottom: 10px;
  201. margin-top: 2px;
  202. }
  203. .e-list {
  204. list-style: none;
  205. padding: 0;
  206. }
  207. .e-list li {
  208. font-size: 13px;
  209. font-weight: 300;
  210. color: #8A8278;
  211. line-height: 1.9;
  212. padding-left: 18px;
  213. position: relative;
  214. }
  215. .e-list li::before {
  216. content: '';
  217. position: absolute;
  218. left: 2px;
  219. top: 10px;
  220. width: 8px;
  221. height: 8px;
  222. border-radius: 50%;
  223. border: 1.5px solid #6B8F71;
  224. }
  225. .typing-cursor {
  226. display: inline-block;
  227. width: 1.5px;
  228. height: 14px;
  229. background: #6B8F71;
  230. animation: softblink 1.5s ease-in-out infinite;
  231. vertical-align: text-bottom;
  232. margin-left: 2px;
  233. }
  234. @keyframes softblink {
  235. 0%, 100% { opacity: 0.8; }
  236. 50% { opacity: 0.15; }
  237. }
  238. /* AI Sidebar */
  239. .ai-panel {
  240. background: #F8F5EF;
  241. border-left: 1px solid #EDE8DF;
  242. padding: 22px 16px;
  243. display: flex;
  244. flex-direction: column;
  245. gap: 12px;
  246. }
  247. .panel-header {
  248. display: flex;
  249. align-items: center;
  250. gap: 8px;
  251. padding-bottom: 12px;
  252. border-bottom: 1px solid #EDE8DF;
  253. }
  254. .panel-header svg {
  255. color: #6B8F71;
  256. }
  257. .panel-header span {
  258. font-size: 12px;
  259. font-weight: 500;
  260. color: #5C5347;
  261. letter-spacing: 0.5px;
  262. }
  263. .panel-card {
  264. background: #FDFCF9;
  265. border-radius: 14px;
  266. padding: 14px;
  267. border: 1px solid #EDE8DF;
  268. }
  269. .panel-card-label {
  270. font-size: 10px;
  271. font-weight: 500;
  272. text-transform: uppercase;
  273. letter-spacing: 0.8px;
  274. color: #B5AD9E;
  275. margin-bottom: 6px;
  276. }
  277. .panel-card-value {
  278. font-size: 13px;
  279. font-weight: 500;
  280. color: #3D3D3D;
  281. }
  282. .voice-bar {
  283. display: flex;
  284. align-items: center;
  285. gap: 8px;
  286. margin-top: 8px;
  287. }
  288. .vb-track {
  289. flex: 1;
  290. height: 4px;
  291. background: #EDE8DF;
  292. border-radius: 4px;
  293. overflow: hidden;
  294. }
  295. .vb-fill {
  296. width: 92%;
  297. height: 100%;
  298. background: linear-gradient(90deg, #6B8F71, #C4D1BC);
  299. border-radius: 4px;
  300. }
  301. .vb-label {
  302. font-size: 11px;
  303. font-weight: 500;
  304. color: #6B8F71;
  305. }
  306. .platform-pills {
  307. display: flex;
  308. flex-wrap: wrap;
  309. gap: 6px;
  310. margin-top: 6px;
  311. }
  312. .pill {
  313. font-size: 10px;
  314. padding: 4px 10px;
  315. border-radius: 16px;
  316. background: #EDE8DF;
  317. color: #8A8278;
  318. }
  319. .pill.active {
  320. background: rgba(107,143,113,0.25);
  321. color: #5C5347;
  322. }
  323. .panel-note {
  324. font-size: 11.5px;
  325. font-weight: 300;
  326. color: #8A8278;
  327. line-height: 1.6;
  328. padding: 12px;
  329. background: #FDFCF9;
  330. border-radius: 14px;
  331. border: 1px solid #EDE8DF;
  332. }
  333. .panel-note .note-label {
  334. font-size: 10px;
  335. font-weight: 500;
  336. text-transform: uppercase;
  337. letter-spacing: 0.8px;
  338. color: #B5AD9E;
  339. display: block;
  340. margin-bottom: 4px;
  341. }
  342. /* FLOW DIAGRAM */
  343. .flow-section {
  344. padding: 0 0 0 0;
  345. }
  346. .flow-bar {
  347. display: flex;
  348. align-items: center;
  349. justify-content: center;
  350. gap: 0;
  351. padding: 20px 0;
  352. }
  353. .flow-step {
  354. display: flex;
  355. align-items: center;
  356. gap: 14px;
  357. padding: 14px 28px;
  358. background: #FDFCF9;
  359. border-radius: 18px;
  360. border: 1px solid #EDE8DF;
  361. box-shadow: 0 2px 8px rgba(92,83,71,0.03);
  362. }
  363. .flow-step-icon {
  364. width: 38px;
  365. height: 38px;
  366. border-radius: 12px;
  367. display: flex;
  368. align-items: center;
  369. justify-content: center;
  370. flex-shrink: 0;
  371. }
  372. .flow-step-icon.ideas {
  373. background: rgba(107,143,113,0.2);
  374. color: #6B8F71;
  375. }
  376. .flow-step-icon.ai {
  377. background: rgba(212,187,156,0.25);
  378. color: #C4A87A;
  379. }
  380. .flow-step-icon.voice {
  381. background: rgba(92,83,71,0.1);
  382. color: #5C5347;
  383. }
  384. .flow-step-text {
  385. display: flex;
  386. flex-direction: column;
  387. }
  388. .flow-step-label {
  389. font-size: 14px;
  390. font-weight: 500;
  391. color: #3D3D3D;
  392. margin-bottom: 2px;
  393. }
  394. .flow-step-desc {
  395. font-size: 11px;
  396. font-weight: 300;
  397. color: #B5AD9E;
  398. }
  399. .flow-arrow {
  400. display: flex;
  401. align-items: center;
  402. padding: 0 20px;
  403. color: #C4BDB2;
  404. }
  405. .flow-arrow svg {
  406. opacity: 0.6;
  407. }
  408. /* FEATURES ROW */
  409. .features-strip {
  410. display: flex;
  411. justify-content: center;
  412. gap: 56px;
  413. padding: 12px 0 20px 0;
  414. }
  415. .feat {
  416. display: flex;
  417. align-items: center;
  418. gap: 12px;
  419. }
  420. .feat-icon {
  421. width: 40px;
  422. height: 40px;
  423. border-radius: 12px;
  424. background: rgba(107,143,113,0.15);
  425. display: flex;
  426. align-items: center;
  427. justify-content: center;
  428. color: #6B8F71;
  429. flex-shrink: 0;
  430. }
  431. .feat-text {
  432. display: flex;
  433. flex-direction: column;
  434. }
  435. .feat-name {
  436. font-size: 13px;
  437. font-weight: 500;
  438. color: #3D3D3D;
  439. margin-bottom: 1px;
  440. }
  441. .feat-sub {
  442. font-size: 11px;
  443. font-weight: 300;
  444. color: #B5AD9E;
  445. }
  446. .divider-dot {
  447. width: 4px;
  448. height: 4px;
  449. border-radius: 50%;
  450. background: #D5CFC5;
  451. align-self: center;
  452. }
  453. </style>
  454. </head>
  455. <body>
  456. <div class="page">
  457. <!-- NAV -->
  458. <nav class="nav-bar">
  459. <div class="logo">Inkwell</div>
  460. <div class="nav-right">
  461. <a href="#">Philosophy</a>
  462. <a href="#">Features</a>
  463. <a href="#">Stories</a>
  464. <a href="#" class="nav-cta">Start Writing</a>
  465. </div>
  466. </nav>
  467. <!-- MAIN -->
  468. <div class="main-content">
  469. <!-- HERO -->
  470. <div class="hero-row">
  471. <div class="hero-text">
  472. <h1 class="headline">Write better, faster,<br>with <span class="accent">your own</span> voice</h1>
  473. <p class="subtitle">AI that learns your style, not replaces it. A mindful writing companion for WeChat, Xiaohongshu, and video scripts that honours your creative instincts.</p>
  474. <div class="cta-area">
  475. <a href="#" class="cta-button">
  476. Start Writing
  477. <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>
  478. </a>
  479. <span class="social-proof">Trusted by 10,000+ creators</span>
  480. </div>
  481. </div>
  482. <!-- EDITOR CARD -->
  483. <div class="editor-container">
  484. <div class="editor-card">
  485. <div class="editor-body">
  486. <div class="editor-toolbar">
  487. <button class="e-btn active"><svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><path d="M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"/><path d="M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"/></svg></button>
  488. <button class="e-btn"><svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="19" y1="4" x2="10" y2="4"/><line x1="14" y1="20" x2="5" y2="20"/><line x1="15" y1="4" x2="9" y2="20"/></svg></button>
  489. <button class="e-btn"><svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><line x1="21" y1="6" x2="3" y2="6"/><line x1="15" y1="12" x2="3" y2="12"/><line x1="17" y1="18" x2="3" y2="18"/></svg></button>
  490. <button class="e-btn"><svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"/></svg></button>
  491. </div>
  492. <div class="e-title">On the Patience of Growing Things</div>
  493. <div class="e-text">
  494. There is a kind of writing that happens slowly, like roots in winter soil. <span class="enhanced">You cannot rush a sentence into meaning any more than you can rush a seed into bloom</span>. The best words arrive when you stop chasing them.
  495. </div>
  496. <div class="e-h2">Listening to the Draft</div>
  497. <div class="e-text">
  498. Every draft speaks, if you give it room. The first version is never wrong — it is simply unfinished. What AI can offer is not replacement, but reflection: a gentle mirror held up to your own intentions.<span class="typing-cursor"></span>
  499. </div>
  500. <ul class="e-list">
  501. <li>Trust the messy first draft</li>
  502. <li>Let AI reveal patterns you missed</li>
  503. <li>Preserve what makes it yours</li>
  504. </ul>
  505. </div>
  506. <div class="ai-panel">
  507. <div class="panel-header">
  508. <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><circle cx="12" cy="12" r="10"/><path d="M12 16v-4"/><path d="M12 8h.01"/></svg>
  509. <span>Inkwell AI</span>
  510. </div>
  511. <div class="panel-card">
  512. <div class="panel-card-label">Voice Match</div>
  513. <div class="panel-card-value">Your Style</div>
  514. <div class="voice-bar">
  515. <div class="vb-track"><div class="vb-fill"></div></div>
  516. <div class="vb-label">92%</div>
  517. </div>
  518. </div>
  519. <div class="panel-card">
  520. <div class="panel-card-label">Platform</div>
  521. <div class="panel-card-value">WeChat</div>
  522. <div class="platform-pills">
  523. <span class="pill active">WeChat</span>
  524. <span class="pill">XHS</span>
  525. <span class="pill">Script</span>
  526. </div>
  527. </div>
  528. <div class="panel-note">
  529. <span class="note-label">Observation</span>
  530. The seed metaphor in paragraph one is lovely. Consider echoing it in the closing line for a sense of return.
  531. </div>
  532. <div class="panel-note">
  533. <span class="note-label">Tone</span>
  534. Gentle, contemplative. This reads naturally as you.
  535. </div>
  536. </div>
  537. </div>
  538. </div>
  539. </div>
  540. <!-- FLOW DIAGRAM -->
  541. <div class="flow-section">
  542. <div class="flow-bar">
  543. <div class="flow-step">
  544. <div class="flow-step-icon ideas">
  545. <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 1 1 7.072 0l-.548.547A3.374 3.374 0 0 0 12 18.469c-1.006 0-1.938-.429-2.577-1.177l-.56-.56z"/></svg>
  546. </div>
  547. <div class="flow-step-text">
  548. <div class="flow-step-label">Your Ideas</div>
  549. <div class="flow-step-desc">Raw thoughts and drafts</div>
  550. </div>
  551. </div>
  552. <div class="flow-arrow">
  553. <svg width="32" height="16" viewBox="0 0 32 16" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"><line x1="2" y1="8" x2="28" y2="8"/><polyline points="24 4 28 8 24 12"/></svg>
  554. </div>
  555. <div class="flow-step">
  556. <div class="flow-step-icon ai">
  557. <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M12 2L2 7l10 5 10-5-10-5z"/><path d="M2 17l10 5 10-5"/><path d="M2 12l10 5 10-5"/></svg>
  558. </div>
  559. <div class="flow-step-text">
  560. <div class="flow-step-label">AI Enhancement</div>
  561. <div class="flow-step-desc">Refine, not rewrite</div>
  562. </div>
  563. </div>
  564. <div class="flow-arrow">
  565. <svg width="32" height="16" viewBox="0 0 32 16" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"><line x1="2" y1="8" x2="28" y2="8"/><polyline points="24 4 28 8 24 12"/></svg>
  566. </div>
  567. <div class="flow-step">
  568. <div class="flow-step-icon voice">
  569. <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M12 20h9"/><path d="M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"/></svg>
  570. </div>
  571. <div class="flow-step-text">
  572. <div class="flow-step-label">Your Voice</div>
  573. <div class="flow-step-desc">Unmistakably you</div>
  574. </div>
  575. </div>
  576. </div>
  577. </div>
  578. <!-- FEATURES STRIP -->
  579. <div class="features-strip">
  580. <div class="feat">
  581. <div class="feat-icon">
  582. <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"/><path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"/></svg>
  583. </div>
  584. <div class="feat-text">
  585. <div class="feat-name">Style Learning</div>
  586. <div class="feat-sub">Evolves with your writing</div>
  587. </div>
  588. </div>
  589. <div class="divider-dot"></div>
  590. <div class="feat">
  591. <div class="feat-icon">
  592. <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><rect x="2" y="3" width="20" height="14" rx="2"/><line x1="8" y1="21" x2="16" y2="21"/><line x1="12" y1="17" x2="12" y2="21"/></svg>
  593. </div>
  594. <div class="feat-text">
  595. <div class="feat-name">Multi-Platform</div>
  596. <div class="feat-sub">WeChat, XHS, video scripts</div>
  597. </div>
  598. </div>
  599. <div class="divider-dot"></div>
  600. <div class="feat">
  601. <div class="feat-icon">
  602. <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg>
  603. </div>
  604. <div class="feat-text">
  605. <div class="feat-name">Human-Touch Proofreading</div>
  606. <div class="feat-sub">Warmth-preserving refinement</div>
  607. </div>
  608. </div>
  609. </div>
  610. </div>
  611. </div>
  612. </body>
  613. </html>