aiwriting-pentagram.html 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  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@400;500;600;700&family=Space+Grotesk: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: #FFFFFF;
  17. font-family: 'Helvetica Neue', Arial, sans-serif;
  18. color: #111111;
  19. position: relative;
  20. }
  21. /* Grid overlay for Swiss design feel */
  22. body::before {
  23. content: '';
  24. position: absolute;
  25. top: 0; left: 0; right: 0; bottom: 0;
  26. background:
  27. repeating-linear-gradient(90deg, transparent, transparent 119px, rgba(0,0,0,0.03) 119px, rgba(0,0,0,0.03) 120px),
  28. repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(0,0,0,0.02) 59px, rgba(0,0,0,0.02) 60px);
  29. pointer-events: none;
  30. z-index: 0;
  31. }
  32. .container {
  33. position: relative;
  34. z-index: 1;
  35. display: grid;
  36. grid-template-columns: 1fr 1fr;
  37. height: 100%;
  38. padding: 0;
  39. }
  40. /* LEFT PANEL */
  41. .left-panel {
  42. padding: 60px 60px 48px 80px;
  43. display: flex;
  44. flex-direction: column;
  45. justify-content: space-between;
  46. border-right: 2px solid #111;
  47. }
  48. .top-bar {
  49. display: flex;
  50. justify-content: space-between;
  51. align-items: center;
  52. }
  53. .logo {
  54. font-family: 'Helvetica Neue', Arial, sans-serif;
  55. font-size: 20px;
  56. font-weight: 700;
  57. letter-spacing: -0.5px;
  58. text-transform: uppercase;
  59. }
  60. .logo span {
  61. color: #E63946;
  62. }
  63. .nav {
  64. display: flex;
  65. gap: 28px;
  66. font-size: 13px;
  67. font-weight: 500;
  68. letter-spacing: 0.5px;
  69. text-transform: uppercase;
  70. }
  71. .nav a {
  72. color: #111;
  73. text-decoration: none;
  74. }
  75. .hero-content {
  76. margin-top: -20px;
  77. }
  78. .headline {
  79. font-family: 'Helvetica Neue', Arial, sans-serif;
  80. font-size: 86px;
  81. font-weight: 700;
  82. line-height: 0.95;
  83. letter-spacing: -4px;
  84. margin-bottom: 28px;
  85. }
  86. .headline em {
  87. font-style: italic;
  88. color: #E63946;
  89. }
  90. .subtitle {
  91. font-size: 18px;
  92. font-weight: 400;
  93. color: #555;
  94. line-height: 1.5;
  95. max-width: 420px;
  96. margin-bottom: 36px;
  97. }
  98. .cta-row {
  99. display: flex;
  100. align-items: center;
  101. gap: 24px;
  102. }
  103. .cta-button {
  104. display: inline-flex;
  105. align-items: center;
  106. gap: 10px;
  107. padding: 16px 36px;
  108. background: #E63946;
  109. color: #fff;
  110. font-family: 'Helvetica Neue', Arial, sans-serif;
  111. font-size: 15px;
  112. font-weight: 600;
  113. letter-spacing: 0.5px;
  114. text-transform: uppercase;
  115. text-decoration: none;
  116. border: none;
  117. cursor: pointer;
  118. }
  119. .social-proof {
  120. font-size: 13px;
  121. color: #888;
  122. letter-spacing: 0.3px;
  123. }
  124. .social-proof strong {
  125. color: #111;
  126. font-weight: 600;
  127. }
  128. /* FEATURES — strict 3 col */
  129. .features-grid {
  130. display: grid;
  131. grid-template-columns: repeat(3, 1fr);
  132. gap: 0;
  133. border-top: 2px solid #111;
  134. }
  135. .feature-item {
  136. padding: 20px 0;
  137. border-right: 1px solid #ddd;
  138. }
  139. .feature-item:last-child {
  140. border-right: none;
  141. }
  142. .feature-item:first-child {
  143. padding-right: 16px;
  144. }
  145. .feature-item:nth-child(2) {
  146. padding: 20px 16px;
  147. }
  148. .feature-item:last-child {
  149. padding-left: 16px;
  150. }
  151. .feature-number {
  152. font-family: 'Helvetica Neue', Arial, sans-serif;
  153. font-size: 11px;
  154. font-weight: 700;
  155. color: #E63946;
  156. letter-spacing: 1px;
  157. margin-bottom: 8px;
  158. }
  159. .feature-title {
  160. font-family: 'Helvetica Neue', Arial, sans-serif;
  161. font-size: 14px;
  162. font-weight: 700;
  163. letter-spacing: -0.3px;
  164. margin-bottom: 4px;
  165. text-transform: uppercase;
  166. }
  167. .feature-desc {
  168. font-size: 12px;
  169. color: #777;
  170. line-height: 1.5;
  171. }
  172. /* RIGHT PANEL — Editor mockup as wireframe */
  173. .right-panel {
  174. background: #F7F7F7;
  175. padding: 48px 60px 48px 48px;
  176. display: flex;
  177. align-items: center;
  178. justify-content: center;
  179. position: relative;
  180. }
  181. .editor-mockup {
  182. width: 100%;
  183. max-width: 580px;
  184. height: 680px;
  185. background: #fff;
  186. border: 2px solid #111;
  187. display: grid;
  188. grid-template-columns: 1fr 200px;
  189. position: relative;
  190. }
  191. /* Grid reference lines on mockup */
  192. .editor-mockup::before {
  193. content: '';
  194. position: absolute;
  195. top: 0; left: 0; right: 0; bottom: 0;
  196. background:
  197. repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0,0,0,0.03) 39px, rgba(0,0,0,0.03) 40px);
  198. pointer-events: none;
  199. }
  200. .editor-main {
  201. padding: 28px 24px;
  202. border-right: 2px solid #111;
  203. display: flex;
  204. flex-direction: column;
  205. }
  206. .editor-toolbar {
  207. display: flex;
  208. gap: 6px;
  209. padding-bottom: 16px;
  210. border-bottom: 1px solid #ddd;
  211. margin-bottom: 20px;
  212. }
  213. .toolbar-btn {
  214. width: 28px;
  215. height: 28px;
  216. border: 1px solid #ccc;
  217. background: #fff;
  218. display: flex;
  219. align-items: center;
  220. justify-content: center;
  221. }
  222. .toolbar-btn.active {
  223. background: #111;
  224. border-color: #111;
  225. color: #fff;
  226. }
  227. .editor-title-line {
  228. font-family: 'Helvetica Neue', Arial, sans-serif;
  229. font-size: 22px;
  230. font-weight: 700;
  231. letter-spacing: -0.5px;
  232. margin-bottom: 16px;
  233. color: #111;
  234. }
  235. .editor-text-block {
  236. font-size: 13px;
  237. line-height: 1.8;
  238. color: #444;
  239. margin-bottom: 14px;
  240. }
  241. .editor-text-block .highlight {
  242. background: rgba(230, 57, 70, 0.12);
  243. border-bottom: 2px solid #E63946;
  244. padding: 0 2px;
  245. }
  246. .editor-h2 {
  247. font-family: 'Helvetica Neue', Arial, sans-serif;
  248. font-size: 16px;
  249. font-weight: 700;
  250. margin-bottom: 10px;
  251. margin-top: 6px;
  252. color: #111;
  253. }
  254. .editor-list {
  255. font-size: 13px;
  256. line-height: 2;
  257. color: #555;
  258. padding-left: 18px;
  259. }
  260. .editor-cursor {
  261. display: inline-block;
  262. width: 2px;
  263. height: 16px;
  264. background: #E63946;
  265. animation: blink 1s step-end infinite;
  266. vertical-align: text-bottom;
  267. margin-left: 2px;
  268. }
  269. @keyframes blink {
  270. 50% { opacity: 0; }
  271. }
  272. /* AI SIDEBAR */
  273. .ai-sidebar {
  274. padding: 20px 16px;
  275. background: #FAFAFA;
  276. display: flex;
  277. flex-direction: column;
  278. gap: 14px;
  279. }
  280. .sidebar-header {
  281. font-family: 'Helvetica Neue', Arial, sans-serif;
  282. font-size: 11px;
  283. font-weight: 700;
  284. text-transform: uppercase;
  285. letter-spacing: 1.5px;
  286. color: #E63946;
  287. padding-bottom: 10px;
  288. border-bottom: 2px solid #111;
  289. }
  290. .sidebar-card {
  291. padding: 12px;
  292. border: 1px solid #ddd;
  293. background: #fff;
  294. }
  295. .sidebar-card-label {
  296. font-size: 10px;
  297. font-weight: 700;
  298. text-transform: uppercase;
  299. letter-spacing: 0.8px;
  300. color: #999;
  301. margin-bottom: 6px;
  302. }
  303. .sidebar-card-value {
  304. font-size: 13px;
  305. font-weight: 500;
  306. color: #111;
  307. line-height: 1.4;
  308. }
  309. .style-meter {
  310. display: flex;
  311. gap: 3px;
  312. margin-top: 8px;
  313. }
  314. .meter-bar {
  315. height: 4px;
  316. flex: 1;
  317. background: #E0E0E0;
  318. }
  319. .meter-bar.filled {
  320. background: #E63946;
  321. }
  322. .sidebar-suggestion {
  323. padding: 10px 12px;
  324. background: #fff;
  325. border: 1px solid #ddd;
  326. font-size: 12px;
  327. color: #555;
  328. line-height: 1.5;
  329. }
  330. .sidebar-suggestion strong {
  331. color: #111;
  332. display: block;
  333. font-size: 10px;
  334. text-transform: uppercase;
  335. letter-spacing: 0.8px;
  336. margin-bottom: 4px;
  337. }
  338. .sidebar-action {
  339. display: flex;
  340. align-items: center;
  341. gap: 6px;
  342. padding: 10px 12px;
  343. background: #111;
  344. color: #fff;
  345. font-size: 11px;
  346. font-weight: 600;
  347. text-transform: uppercase;
  348. letter-spacing: 0.5px;
  349. cursor: pointer;
  350. border: none;
  351. justify-content: center;
  352. }
  353. .tag-row {
  354. display: flex;
  355. flex-wrap: wrap;
  356. gap: 4px;
  357. margin-top: 6px;
  358. }
  359. .tag {
  360. font-size: 10px;
  361. padding: 2px 8px;
  362. border: 1px solid #ccc;
  363. color: #666;
  364. letter-spacing: 0.3px;
  365. }
  366. /* Corner mark */
  367. .right-panel::after {
  368. content: 'INKWELL V1.0';
  369. position: absolute;
  370. bottom: 20px;
  371. right: 24px;
  372. font-family: 'Helvetica Neue', Arial, sans-serif;
  373. font-size: 10px;
  374. letter-spacing: 2px;
  375. color: #bbb;
  376. text-transform: uppercase;
  377. }
  378. </style>
  379. </head>
  380. <body>
  381. <div class="container">
  382. <!-- LEFT PANEL -->
  383. <div class="left-panel">
  384. <div class="top-bar">
  385. <div class="logo">INK<span>WELL</span></div>
  386. <nav class="nav">
  387. <a href="#">Features</a>
  388. <a href="#">Pricing</a>
  389. <a href="#">Blog</a>
  390. </nav>
  391. </div>
  392. <div class="hero-content">
  393. <h1 class="headline">Write<br>better,<br>faster,<br>with <em>your</em><br>own voice.</h1>
  394. <p class="subtitle">AI that learns your style, not replaces it. Craft content for WeChat, Xiaohongshu, and video scripts — all in your authentic tone.</p>
  395. <div class="cta-row">
  396. <a href="#" class="cta-button">
  397. Start Writing
  398. <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>
  399. </a>
  400. <span class="social-proof">Trusted by <strong>10,000+</strong> creators</span>
  401. </div>
  402. </div>
  403. <div class="features-grid">
  404. <div class="feature-item">
  405. <div class="feature-number">01</div>
  406. <div class="feature-title">Style Learning</div>
  407. <div class="feature-desc">Adapts to your unique voice through continuous analysis of your writing patterns.</div>
  408. </div>
  409. <div class="feature-item">
  410. <div class="feature-number">02</div>
  411. <div class="feature-title">Multi-Platform</div>
  412. <div class="feature-desc">WeChat articles, Xiaohongshu posts, video scripts. One tool, every format.</div>
  413. </div>
  414. <div class="feature-item">
  415. <div class="feature-number">03</div>
  416. <div class="feature-title">Human-Touch</div>
  417. <div class="feature-desc">Proofreading that preserves warmth and removes robotic phrasing.</div>
  418. </div>
  419. </div>
  420. </div>
  421. <!-- RIGHT PANEL — Editor Mockup -->
  422. <div class="right-panel">
  423. <div class="editor-mockup">
  424. <div class="editor-main">
  425. <div class="editor-toolbar">
  426. <div class="toolbar-btn active"><svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3"><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></div>
  427. <div class="toolbar-btn"><svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><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></div>
  428. <div class="toolbar-btn"><svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><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></div>
  429. <div class="toolbar-btn"><svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><line x1="8" y1="6" x2="21" y2="6"/><line x1="8" y1="12" x2="21" y2="12"/><line x1="8" y1="18" x2="21" y2="18"/><line x1="3" y1="6" x2="3.01" y2="6"/><line x1="3" y1="12" x2="3.01" y2="12"/><line x1="3" y1="18" x2="3.01" y2="18"/></svg></div>
  430. </div>
  431. <div class="editor-title-line">The Future of Content Creation</div>
  432. <div class="editor-text-block">
  433. Every creator faces the same tension: the desire to produce more content versus the need to maintain quality and authenticity. <span class="highlight">AI doesn't have to mean losing your voice</span> — it can mean amplifying it.
  434. </div>
  435. <div class="editor-h2">Why Authenticity Matters</div>
  436. <div class="editor-text-block">
  437. Readers can tell. They feel the difference between words that carry genuine experience and words assembled by algorithm. The goal isn't to write <em>more</em> — it's to write more of what only you can write.<span class="editor-cursor"></span>
  438. </div>
  439. <div class="editor-h2">Key Principles</div>
  440. <ol class="editor-list">
  441. <li>Write from personal experience first</li>
  442. <li>Use AI for refinement, not replacement</li>
  443. <li>Adapt tone for each platform</li>
  444. </ol>
  445. </div>
  446. <div class="ai-sidebar">
  447. <div class="sidebar-header">AI Assistant</div>
  448. <div class="sidebar-card">
  449. <div class="sidebar-card-label">Style Match</div>
  450. <div class="sidebar-card-value">92% Voice Fidelity</div>
  451. <div class="style-meter">
  452. <div class="meter-bar filled"></div>
  453. <div class="meter-bar filled"></div>
  454. <div class="meter-bar filled"></div>
  455. <div class="meter-bar filled"></div>
  456. <div class="meter-bar"></div>
  457. </div>
  458. </div>
  459. <div class="sidebar-card">
  460. <div class="sidebar-card-label">Target</div>
  461. <div class="sidebar-card-value">WeChat Article</div>
  462. <div class="tag-row">
  463. <span class="tag">WeChat</span>
  464. <span class="tag">XHS</span>
  465. <span class="tag">Script</span>
  466. </div>
  467. </div>
  468. <div class="sidebar-suggestion">
  469. <strong>Suggestion</strong>
  470. Consider opening with a specific anecdote to strengthen the personal connection.
  471. </div>
  472. <div class="sidebar-suggestion">
  473. <strong>Tone Check</strong>
  474. Paragraph 2 reads slightly formal. Soften with a conversational phrase.
  475. </div>
  476. <button class="sidebar-action">
  477. <svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"/></svg>
  478. Refine Selection
  479. </button>
  480. </div>
  481. </div>
  482. </div>
  483. </div>
  484. </body>
  485. </html>