cover-pentagram.html 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=1200">
  6. <title>Agent Parallel — Pentagram Style Cover</title>
  7. <style>
  8. * { margin: 0; padding: 0; box-sizing: border-box; }
  9. body {
  10. width: 1200px;
  11. height: 510px;
  12. overflow: hidden;
  13. margin: 0;
  14. background: #FFFFFF;
  15. font-family: 'Helvetica Neue', 'Arial', sans-serif;
  16. position: relative;
  17. }
  18. /* Grid rules — Swiss grid visible structure */
  19. .rule-h {
  20. position: absolute;
  21. left: 64px;
  22. right: 64px;
  23. height: 1px;
  24. background: #000;
  25. opacity: 0.06;
  26. }
  27. .rule-v {
  28. position: absolute;
  29. top: 0;
  30. bottom: 0;
  31. width: 1px;
  32. background: #000;
  33. opacity: 0.04;
  34. }
  35. /* Giant typographic element — the "8" bleeds off right edge */
  36. .type-anchor {
  37. position: absolute;
  38. right: -60px;
  39. top: 50%;
  40. transform: translateY(-50%);
  41. font-family: 'Helvetica Neue', Arial, sans-serif;
  42. font-weight: 900;
  43. font-size: 640px;
  44. line-height: 0.82;
  45. color: #000;
  46. opacity: 0.07;
  47. z-index: 0;
  48. user-select: none;
  49. }
  50. /* Red geometric dot grid — 8 dots representing 8 agents */
  51. .dot-grid {
  52. position: absolute;
  53. right: 340px;
  54. top: 50%;
  55. transform: translateY(-50%);
  56. display: grid;
  57. grid-template-columns: repeat(4, 24px);
  58. grid-template-rows: repeat(2, 24px);
  59. gap: 16px;
  60. z-index: 1;
  61. }
  62. .dot {
  63. width: 8px;
  64. height: 8px;
  65. border-radius: 50%;
  66. background: #000;
  67. opacity: 0.12;
  68. align-self: center;
  69. justify-self: center;
  70. }
  71. .dot.active {
  72. background: #E63946;
  73. opacity: 0.8;
  74. width: 10px;
  75. height: 10px;
  76. }
  77. /* Primary content zone — left-aligned on Swiss grid */
  78. .content {
  79. position: absolute;
  80. left: 64px;
  81. top: 56px;
  82. z-index: 2;
  83. }
  84. .label {
  85. font-family: 'Helvetica Neue', Arial, sans-serif;
  86. font-size: 11px;
  87. font-weight: 700;
  88. letter-spacing: 4px;
  89. text-transform: uppercase;
  90. color: #E63946;
  91. margin-bottom: 16px;
  92. }
  93. .title {
  94. font-family: 'Helvetica Neue', Arial, sans-serif;
  95. font-weight: 900;
  96. font-size: 120px;
  97. line-height: 0.9;
  98. color: #000;
  99. letter-spacing: -5px;
  100. }
  101. .title .accent {
  102. color: #E63946;
  103. }
  104. /* Bottom information bar */
  105. .bottom-bar {
  106. position: absolute;
  107. bottom: 0;
  108. left: 0;
  109. right: 0;
  110. height: 48px;
  111. background: #000;
  112. z-index: 2;
  113. display: flex;
  114. align-items: center;
  115. justify-content: space-between;
  116. padding: 0 64px;
  117. }
  118. .bottom-left {
  119. display: flex;
  120. align-items: center;
  121. gap: 24px;
  122. }
  123. .bottom-stat {
  124. font-family: 'Helvetica Neue', Arial, sans-serif;
  125. font-size: 11px;
  126. font-weight: 700;
  127. letter-spacing: 2px;
  128. text-transform: uppercase;
  129. color: #fff;
  130. opacity: 0.6;
  131. }
  132. .bottom-stat strong {
  133. color: #E63946;
  134. opacity: 1;
  135. font-size: 16px;
  136. margin-right: 6px;
  137. }
  138. .bottom-right {
  139. font-family: 'Helvetica Neue', Arial, sans-serif;
  140. font-size: 10px;
  141. font-weight: 700;
  142. letter-spacing: 3px;
  143. text-transform: uppercase;
  144. color: #fff;
  145. opacity: 0.4;
  146. }
  147. /* Subtitle */
  148. .subtitle {
  149. font-family: 'Helvetica Neue', Arial, sans-serif;
  150. font-size: 14px;
  151. font-weight: 500;
  152. color: #999;
  153. letter-spacing: 0.5px;
  154. margin-top: 20px;
  155. }
  156. /* Horizontal red rule through center */
  157. .center-rule {
  158. position: absolute;
  159. left: 64px;
  160. width: 240px;
  161. height: 3px;
  162. background: #E63946;
  163. top: 306px;
  164. z-index: 2;
  165. }
  166. </style>
  167. </head>
  168. <body>
  169. <!-- Grid structure -->
  170. <div class="rule-h" style="top: 56px;"></div>
  171. <div class="rule-v" style="left: 64px;"></div>
  172. <div class="rule-v" style="left: 600px;"></div>
  173. <div class="rule-v" style="right: 64px;"></div>
  174. <!-- Typographic anchor — bleeds right -->
  175. <div class="type-anchor">8</div>
  176. <!-- 8-dot grid representing agents -->
  177. <div class="dot-grid">
  178. <div class="dot active"></div>
  179. <div class="dot"></div>
  180. <div class="dot active"></div>
  181. <div class="dot"></div>
  182. <div class="dot"></div>
  183. <div class="dot active"></div>
  184. <div class="dot"></div>
  185. <div class="dot active"></div>
  186. </div>
  187. <!-- Content -->
  188. <div class="content">
  189. <div class="label">Claude Code Architecture</div>
  190. <div class="title">Agent<br><span class="accent">Parallel</span></div>
  191. <div class="subtitle">8 autonomous agents running in unified workflow</div>
  192. </div>
  193. <!-- Red horizontal rule -->
  194. <div class="center-rule"></div>
  195. <!-- Black bottom bar with data -->
  196. <div class="bottom-bar">
  197. <div class="bottom-left">
  198. <div class="bottom-stat"><strong>8</strong>Agents</div>
  199. <div class="bottom-stat"><strong>3.2x</strong>Faster</div>
  200. <div class="bottom-stat"><strong>1</strong>Workflow</div>
  201. </div>
  202. <div class="bottom-right">Pentagram Design System</div>
  203. </div>
  204. </body>
  205. </html>