saas-build.html 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=1440">
  6. <title>Meridian — Business Intelligence for Modern Teams</title>
  7. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600&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. font-family: 'Inter', sans-serif;
  17. background: #FAFAF8;
  18. color: #1a1a1a;
  19. }
  20. /* NAV */
  21. nav {
  22. display: flex;
  23. align-items: center;
  24. justify-content: space-between;
  25. padding: 0 96px;
  26. height: 80px;
  27. }
  28. .nav-logo {
  29. font-size: 20px;
  30. font-weight: 500;
  31. letter-spacing: -0.3px;
  32. display: flex;
  33. align-items: center;
  34. gap: 8px;
  35. color: #1a1a1a;
  36. }
  37. .nav-logo-icon {
  38. width: 32px;
  39. height: 32px;
  40. background: #E8E4DF;
  41. border-radius: 2px;
  42. display: flex;
  43. align-items: center;
  44. justify-content: center;
  45. }
  46. .nav-logo-icon svg { width: 18px; height: 18px; color: #D4A574; }
  47. .nav-links {
  48. display: flex;
  49. gap: 40px;
  50. list-style: none;
  51. }
  52. .nav-links a {
  53. font-size: 14px;
  54. font-weight: 400;
  55. text-decoration: none;
  56. color: #777;
  57. transition: color 0.2s;
  58. }
  59. .nav-links a:hover { color: #1a1a1a; }
  60. .nav-right {
  61. display: flex;
  62. align-items: center;
  63. gap: 24px;
  64. }
  65. .nav-signin {
  66. font-size: 14px;
  67. font-weight: 400;
  68. text-decoration: none;
  69. color: #777;
  70. transition: color 0.2s;
  71. }
  72. .nav-signin:hover { color: #1a1a1a; }
  73. .nav-cta {
  74. font-size: 13px;
  75. font-weight: 400;
  76. padding: 10px 24px;
  77. background: #1a1a1a;
  78. color: #FAFAF8;
  79. border: none;
  80. border-radius: 2px;
  81. cursor: pointer;
  82. transition: background 0.2s;
  83. }
  84. .nav-cta:hover { background: #333; }
  85. /* HERO LAYOUT */
  86. .hero {
  87. padding: 24px 96px 0 96px;
  88. display: grid;
  89. grid-template-columns: 480px 1fr;
  90. gap: 64px;
  91. align-items: start;
  92. height: calc(900px - 80px);
  93. position: relative;
  94. }
  95. /* LEFT TEXT */
  96. .hero-text {
  97. padding-top: 48px;
  98. }
  99. .hero-badge {
  100. display: inline-flex;
  101. align-items: center;
  102. gap: 0;
  103. padding: 0;
  104. background: transparent;
  105. margin-bottom: 32px;
  106. }
  107. .hero-badge-dot {
  108. display: none;
  109. }
  110. .hero-badge span {
  111. font-size: 10px;
  112. font-weight: 400;
  113. color: #B0ACA4;
  114. letter-spacing: 4px;
  115. text-transform: uppercase;
  116. }
  117. .hero-headline {
  118. font-size: 48px;
  119. font-weight: 300;
  120. line-height: 1.15;
  121. letter-spacing: -1.5px;
  122. margin-bottom: 24px;
  123. color: #1a1a1a;
  124. }
  125. .hero-headline em {
  126. font-style: italic;
  127. font-weight: 300;
  128. color: #1a1a1a;
  129. }
  130. .hero-subtitle {
  131. font-size: 17px;
  132. font-weight: 300;
  133. line-height: 1.7;
  134. color: #888;
  135. margin-bottom: 48px;
  136. max-width: 400px;
  137. }
  138. .hero-ctas {
  139. display: flex;
  140. gap: 16px;
  141. margin-bottom: 64px;
  142. }
  143. .btn-primary {
  144. font-family: 'Inter', sans-serif;
  145. font-size: 14px;
  146. font-weight: 400;
  147. padding: 14px 32px;
  148. background: #1a1a1a;
  149. color: #FAFAF8;
  150. border: none;
  151. border-radius: 2px;
  152. cursor: pointer;
  153. transition: all 0.2s;
  154. }
  155. .btn-primary:hover { background: #333; }
  156. .btn-secondary {
  157. font-family: 'Inter', sans-serif;
  158. font-size: 14px;
  159. font-weight: 400;
  160. padding: 14px 32px;
  161. background: transparent;
  162. color: #777;
  163. border: 1px solid #ddd;
  164. border-radius: 2px;
  165. cursor: pointer;
  166. display: flex;
  167. align-items: center;
  168. gap: 8px;
  169. transition: all 0.2s;
  170. }
  171. .btn-secondary:hover { border-color: #aaa; color: #1a1a1a; }
  172. .btn-secondary svg { width: 15px; height: 15px; }
  173. /* METRICS ROW */
  174. .metrics {
  175. display: flex;
  176. gap: 48px;
  177. }
  178. .metric {
  179. display: flex;
  180. flex-direction: column;
  181. gap: 4px;
  182. }
  183. .metric-value {
  184. font-size: 36px;
  185. font-weight: 200;
  186. letter-spacing: -1px;
  187. color: #1a1a1a;
  188. }
  189. .metric-value span { color: #D4A574; }
  190. .metric-label {
  191. font-size: 12px;
  192. font-weight: 400;
  193. color: #aaa;
  194. letter-spacing: 0.3px;
  195. }
  196. /* RIGHT — DASHBOARD */
  197. .hero-dashboard {
  198. position: relative;
  199. padding-top: 16px;
  200. }
  201. .dashboard-card {
  202. background: #FFFFFF;
  203. border-radius: 2px;
  204. box-shadow:
  205. 0 1px 2px rgba(0,0,0,0.02),
  206. 0 4px 16px rgba(0,0,0,0.04);
  207. padding: 28px;
  208. width: 100%;
  209. }
  210. /* Dashboard header */
  211. .dash-header {
  212. display: flex;
  213. justify-content: space-between;
  214. align-items: center;
  215. margin-bottom: 24px;
  216. }
  217. .dash-title {
  218. font-size: 14px;
  219. font-weight: 500;
  220. color: #1a1a1a;
  221. }
  222. .dash-period {
  223. font-size: 12px;
  224. font-weight: 400;
  225. color: #aaa;
  226. padding: 4px 12px;
  227. border: 1px solid #eee;
  228. border-radius: 2px;
  229. }
  230. /* KPI strip */
  231. .kpi-strip {
  232. display: grid;
  233. grid-template-columns: repeat(4, 1fr);
  234. gap: 1px;
  235. background: #f0eeeb;
  236. border-radius: 2px;
  237. overflow: hidden;
  238. margin-bottom: 24px;
  239. }
  240. .kpi-item {
  241. background: #FAFAF8;
  242. padding: 18px 16px;
  243. text-align: center;
  244. }
  245. .kpi-item-value {
  246. font-size: 22px;
  247. font-weight: 300;
  248. color: #1a1a1a;
  249. letter-spacing: -0.5px;
  250. margin-bottom: 4px;
  251. }
  252. .kpi-item-label {
  253. font-size: 10px;
  254. font-weight: 500;
  255. color: #bbb;
  256. letter-spacing: 0.5px;
  257. text-transform: uppercase;
  258. }
  259. /* Chart */
  260. .chart-container {
  261. margin-bottom: 24px;
  262. position: relative;
  263. height: 200px;
  264. }
  265. .chart-svg {
  266. width: 100%;
  267. height: 100%;
  268. }
  269. /* Bottom section */
  270. .dash-bottom-row {
  271. display: grid;
  272. grid-template-columns: 1fr 1fr;
  273. gap: 16px;
  274. }
  275. .insight-card {
  276. background: #FAFAF8;
  277. border-radius: 2px;
  278. padding: 16px;
  279. }
  280. .insight-icon {
  281. width: 28px;
  282. height: 28px;
  283. background: #F0EBE3;
  284. border-radius: 2px;
  285. display: flex;
  286. align-items: center;
  287. justify-content: center;
  288. margin-bottom: 8px;
  289. }
  290. .insight-icon svg { width: 14px; height: 14px; color: #D4A574; }
  291. .insight-title {
  292. font-size: 12px;
  293. font-weight: 500;
  294. color: #1a1a1a;
  295. margin-bottom: 4px;
  296. }
  297. .insight-desc {
  298. font-size: 11px;
  299. font-weight: 300;
  300. color: #999;
  301. line-height: 1.5;
  302. }
  303. /* TRUST BAR */
  304. .trust-bar {
  305. position: absolute;
  306. bottom: 24px;
  307. left: 96px;
  308. display: flex;
  309. align-items: center;
  310. gap: 40px;
  311. }
  312. .trust-label {
  313. font-size: 11px;
  314. font-weight: 400;
  315. color: #ccc;
  316. white-space: nowrap;
  317. }
  318. .trust-logos {
  319. display: flex;
  320. gap: 40px;
  321. align-items: center;
  322. }
  323. .trust-logo {
  324. font-size: 14px;
  325. font-weight: 400;
  326. color: #ccc;
  327. letter-spacing: 0.3px;
  328. }
  329. </style>
  330. </head>
  331. <body>
  332. <!-- NAV -->
  333. <nav>
  334. <div class="nav-logo">
  335. <div class="nav-logo-icon">
  336. <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  337. <polygon points="12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"/>
  338. </svg>
  339. </div>
  340. Meridian
  341. </div>
  342. <ul class="nav-links">
  343. <li><a href="#">Product</a></li>
  344. <li><a href="#">Pricing</a></li>
  345. <li><a href="#">Docs</a></li>
  346. <li><a href="#">Blog</a></li>
  347. </ul>
  348. <div class="nav-right">
  349. <a href="#" class="nav-signin">Sign In</a>
  350. <button class="nav-cta">Get Started</button>
  351. </div>
  352. </nav>
  353. <!-- HERO -->
  354. <div class="hero">
  355. <!-- LEFT -->
  356. <div class="hero-text">
  357. <div class="hero-badge">
  358. <div class="hero-badge-dot"></div>
  359. <span>Business Intelligence for Modern Teams</span>
  360. </div>
  361. <h1 class="hero-headline">Turn data into <em>decisions,</em> not dashboards<span style="color:#D4A574;font-weight:300;">.</span></h1>
  362. <p class="hero-subtitle">AI-powered analytics that tells you what matters, when it matters. Less noise, more clarity.</p>
  363. <div class="hero-ctas">
  364. <button class="btn-primary">Start Free Trial</button>
  365. <button class="btn-secondary">
  366. <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="5 3 19 12 5 21 5 3"/></svg>
  367. Watch Demo
  368. </button>
  369. </div>
  370. <div class="metrics">
  371. <div class="metric">
  372. <div class="metric-value">3<span>x</span></div>
  373. <div class="metric-label">Faster insights</div>
  374. </div>
  375. <div class="metric">
  376. <div class="metric-value">50<span>%</span></div>
  377. <div class="metric-label">Less meeting time</div>
  378. </div>
  379. <div class="metric">
  380. <div class="metric-value">99.9<span>%</span></div>
  381. <div class="metric-label">Uptime SLA</div>
  382. </div>
  383. </div>
  384. </div>
  385. <!-- RIGHT — FLOATING DASHBOARD -->
  386. <div class="hero-dashboard">
  387. <div class="dashboard-card">
  388. <div class="dash-header">
  389. <div class="dash-title">Performance Overview</div>
  390. <div class="dash-period">Last 30 days</div>
  391. </div>
  392. <div class="kpi-strip">
  393. <div class="kpi-item">
  394. <div class="kpi-item-value">$2.4M</div>
  395. <div class="kpi-item-label">Revenue</div>
  396. </div>
  397. <div class="kpi-item">
  398. <div class="kpi-item-value">84.2K</div>
  399. <div class="kpi-item-label">Users</div>
  400. </div>
  401. <div class="kpi-item">
  402. <div class="kpi-item-value">1.2%</div>
  403. <div class="kpi-item-label">Churn</div>
  404. </div>
  405. <div class="kpi-item">
  406. <div class="kpi-item-value">$142</div>
  407. <div class="kpi-item-label">ARPU</div>
  408. </div>
  409. </div>
  410. <!-- SVG Chart -->
  411. <div class="chart-container">
  412. <svg class="chart-svg" viewBox="0 0 700 200" preserveAspectRatio="none">
  413. <!-- Grid lines -->
  414. <line x1="0" y1="50" x2="700" y2="50" stroke="#f0eeeb" stroke-width="1"/>
  415. <line x1="0" y1="100" x2="700" y2="100" stroke="#f0eeeb" stroke-width="1"/>
  416. <line x1="0" y1="150" x2="700" y2="150" stroke="#f0eeeb" stroke-width="1"/>
  417. <!-- Area fill -->
  418. <defs>
  419. <linearGradient id="areaGrad" x1="0" y1="0" x2="0" y2="1">
  420. <stop offset="0%" stop-color="#D4A574" stop-opacity="0.15"/>
  421. <stop offset="100%" stop-color="#D4A574" stop-opacity="0.01"/>
  422. </linearGradient>
  423. </defs>
  424. <path d="M0,160 C50,155 100,140 150,120 C200,100 250,110 300,85 C350,60 400,70 450,50 C500,30 550,45 600,35 C650,25 680,20 700,15 L700,200 L0,200 Z" fill="url(#areaGrad)"/>
  425. <!-- Main line -->
  426. <path d="M0,160 C50,155 100,140 150,120 C200,100 250,110 300,85 C350,60 400,70 450,50 C500,30 550,45 600,35 C650,25 680,20 700,15" fill="none" stroke="#D4A574" stroke-width="2.5" stroke-linecap="round"/>
  427. <!-- Secondary line -->
  428. <path d="M0,170 C50,165 100,158 150,150 C200,142 250,145 300,135 C350,125 400,128 450,118 C500,108 550,112 600,105 C650,98 680,95 700,90" fill="none" stroke="#e0d5c8" stroke-width="1.5" stroke-dasharray="4,4"/>
  429. <!-- Data point -->
  430. <circle cx="600" cy="35" r="5" fill="#D4A574"/>
  431. <circle cx="600" cy="35" r="8" fill="none" stroke="#D4A574" stroke-width="1" opacity="0.4"/>
  432. </svg>
  433. </div>
  434. <div class="dash-bottom-row">
  435. <div class="insight-card">
  436. <div class="insight-icon">
  437. <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 2L3 14h9l-1 8 10-12h-9l1-8z"/></svg>
  438. </div>
  439. <div class="insight-title">AI Insight: Revenue Acceleration</div>
  440. <div class="insight-desc">Enterprise segment grew 23% this quarter, driven by 4 new accounts. Recommend increasing sales capacity.</div>
  441. </div>
  442. <div class="insight-card">
  443. <div class="insight-icon">
  444. <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>
  445. </div>
  446. <div class="insight-title">Predicted: Q3 Target On Track</div>
  447. <div class="insight-desc">Based on current trajectory, 89% probability of hitting $3.2M quarterly target. Pipeline looks healthy.</div>
  448. </div>
  449. </div>
  450. </div>
  451. </div>
  452. <!-- TRUST BAR -->
  453. <div class="trust-bar">
  454. <span class="trust-label">Trusted by teams at</span>
  455. <div class="trust-logos">
  456. <span class="trust-logo">Stripe</span>
  457. <span class="trust-logo">Notion</span>
  458. <span class="trust-logo">Linear</span>
  459. <span class="trust-logo">Vercel</span>
  460. <span class="trust-logo">Figma</span>
  461. </div>
  462. </div>
  463. </div>
  464. <script>
  465. document.addEventListener('DOMContentLoaded', function() {
  466. lucide.createIcons();
  467. });
  468. </script>
  469. </body>
  470. </html>