cover-build.html 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=1200">
  6. <title>Claude Code Agent - Build Studio Style</title>
  7. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600&display=swap" rel="stylesheet">
  8. <style>
  9. * { margin: 0; padding: 0; box-sizing: border-box; }
  10. body {
  11. width: 1200px;
  12. height: 510px;
  13. overflow: hidden;
  14. margin: 0;
  15. background: #FAFAF8;
  16. font-family: 'Inter', sans-serif;
  17. position: relative;
  18. }
  19. /* Subtle top gradient wash */
  20. .wash {
  21. position: absolute;
  22. top: 0;
  23. left: 0;
  24. width: 1200px;
  25. height: 510px;
  26. background: radial-gradient(ellipse 800px 400px at 30% 40%, rgba(212, 165, 116, 0.06) 0%, transparent 70%);
  27. z-index: 0;
  28. }
  29. /* Main layout */
  30. .layout {
  31. position: absolute;
  32. top: 0;
  33. left: 0;
  34. width: 1200px;
  35. height: 510px;
  36. display: flex;
  37. align-items: center;
  38. justify-content: center;
  39. z-index: 1;
  40. }
  41. .center-block {
  42. text-align: center;
  43. max-width: 700px;
  44. margin-top: -24px; /* slight upward shift for golden ratio vertical center */
  45. }
  46. /* Floating "Agent" */
  47. .floating-agent {
  48. font-family: 'Inter', sans-serif;
  49. font-weight: 200;
  50. font-size: 128px;
  51. letter-spacing: -4px;
  52. color: #1A1A18;
  53. line-height: 1;
  54. margin-bottom: 16px;
  55. position: relative;
  56. }
  57. .floating-agent span {
  58. position: relative;
  59. display: inline-block;
  60. }
  61. /* Slight weight shift on first letter for visual interest */
  62. .floating-agent .accent-letter {
  63. font-weight: 300;
  64. color: #2A2A28;
  65. }
  66. /* Gold underline accent */
  67. .gold-line {
  68. width: 48px;
  69. height: 1px;
  70. background: #D4A574;
  71. margin: 0 auto 32px;
  72. opacity: 0.7;
  73. }
  74. /* Subtitle — label tier: smallest text, widest spacing */
  75. .subtitle {
  76. font-family: 'Inter', sans-serif;
  77. font-weight: 400;
  78. font-size: 10px;
  79. letter-spacing: 6px;
  80. text-transform: uppercase;
  81. color: #B0ACA4;
  82. margin-bottom: 24px;
  83. }
  84. /* Description line — body tier */
  85. .desc {
  86. font-family: 'Inter', sans-serif;
  87. font-weight: 300;
  88. font-size: 13px;
  89. color: #A8A4A0;
  90. letter-spacing: 0.3px;
  91. line-height: 2;
  92. max-width: 400px;
  93. margin: 0 auto;
  94. }
  95. /* Minimal agent indicators — 8 thin vertical lines */
  96. .agent-indicators {
  97. position: absolute;
  98. bottom: 48px;
  99. left: 50%;
  100. transform: translateX(-50%);
  101. display: flex;
  102. gap: 16px;
  103. align-items: flex-end;
  104. z-index: 2;
  105. }
  106. .indicator {
  107. width: 1px;
  108. background: #D8D4CE;
  109. border-radius: 0.5px;
  110. }
  111. .indicator.gold {
  112. background: #D4A574;
  113. width: 1.5px;
  114. opacity: 0.8;
  115. }
  116. /* Corner marks */
  117. .corner-mark {
  118. position: absolute;
  119. z-index: 2;
  120. }
  121. .corner-mark svg {
  122. display: block;
  123. }
  124. .corner-tl { top: 48px; left: 48px; }
  125. .corner-br { bottom: 48px; right: 48px; transform: rotate(180deg); }
  126. /* Side text */
  127. .side-label {
  128. position: absolute;
  129. font-family: 'Inter', sans-serif;
  130. font-weight: 400;
  131. font-size: 8px;
  132. letter-spacing: 4px;
  133. text-transform: uppercase;
  134. color: #CBC7C0;
  135. z-index: 2;
  136. }
  137. .side-left {
  138. left: 48px;
  139. top: 50%;
  140. transform: translateY(-50%) rotate(-90deg);
  141. transform-origin: center center;
  142. }
  143. .side-right {
  144. right: 48px;
  145. top: 50%;
  146. transform: translateY(-50%) rotate(90deg);
  147. transform-origin: center center;
  148. }
  149. /* Removed shadow-card — Build purity demands uninterrupted whitespace */
  150. /* Number 8 whisper */
  151. .number-whisper {
  152. position: absolute;
  153. top: 48px;
  154. right: 96px;
  155. font-family: 'Inter', sans-serif;
  156. font-weight: 200;
  157. font-size: 24px;
  158. color: #D4A574;
  159. opacity: 0.35;
  160. z-index: 2;
  161. }
  162. </style>
  163. </head>
  164. <body>
  165. <div class="wash"></div>
  166. <!-- Corner marks -->
  167. <div class="corner-mark corner-tl">
  168. <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
  169. <path d="M0 0L0 20" stroke="#D4A574" stroke-width="0.5" opacity="0.4"/>
  170. <path d="M0 0L20 0" stroke="#D4A574" stroke-width="0.5" opacity="0.4"/>
  171. </svg>
  172. </div>
  173. <div class="corner-mark corner-br">
  174. <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
  175. <path d="M0 0L0 20" stroke="#D4A574" stroke-width="0.5" opacity="0.4"/>
  176. <path d="M0 0L20 0" stroke="#D4A574" stroke-width="0.5" opacity="0.4"/>
  177. </svg>
  178. </div>
  179. <!-- Side labels -->
  180. <div class="side-label side-left">Claude Code</div>
  181. <div class="side-label side-right">Parallel Workflow</div>
  182. <!-- Number whisper -->
  183. <div class="number-whisper">8</div>
  184. <!-- Main content -->
  185. <div class="layout">
  186. <div class="center-block">
  187. <div class="subtitle">Parallel Architecture</div>
  188. <div class="floating-agent"><span><span class="accent-letter">A</span>gent</span></div>
  189. <div class="gold-line"></div>
  190. <div class="desc">
  191. Eight autonomous agents orchestrated in parallel,<br>
  192. each solving a distinct piece of the whole.
  193. </div>
  194. </div>
  195. </div>
  196. <!-- Agent indicators -->
  197. <div class="agent-indicators">
  198. <div class="indicator" style="height: 20px;"></div>
  199. <div class="indicator" style="height: 28px;"></div>
  200. <div class="indicator gold" style="height: 36px;"></div>
  201. <div class="indicator" style="height: 22px;"></div>
  202. <div class="indicator" style="height: 32px;"></div>
  203. <div class="indicator gold" style="height: 40px;"></div>
  204. <div class="indicator" style="height: 24px;"></div>
  205. <div class="indicator" style="height: 30px;"></div>
  206. </div>
  207. </body>
  208. </html>