saas-pentagram.html 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556
  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@400;500;600;700;900&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. font-family: 'Helvetica Neue', Arial, sans-serif;
  17. background: #FFFFFF;
  18. color: #000000;
  19. }
  20. /* NAV */
  21. nav {
  22. display: flex;
  23. align-items: center;
  24. justify-content: space-between;
  25. padding: 0 80px;
  26. height: 72px;
  27. border-bottom: 1px solid #000;
  28. }
  29. .nav-logo {
  30. font-family: 'Helvetica Neue', Arial, sans-serif;
  31. font-weight: 700;
  32. font-size: 22px;
  33. letter-spacing: -0.5px;
  34. display: flex;
  35. align-items: center;
  36. gap: 8px;
  37. }
  38. .nav-logo svg { width: 24px; height: 24px; }
  39. .nav-links {
  40. display: flex;
  41. gap: 40px;
  42. list-style: none;
  43. }
  44. .nav-links a {
  45. font-family: 'Helvetica Neue', Arial, sans-serif;
  46. font-size: 13px;
  47. font-weight: 500;
  48. text-transform: uppercase;
  49. letter-spacing: 1.5px;
  50. text-decoration: none;
  51. color: #000;
  52. transition: color 0.2s;
  53. }
  54. .nav-links a:hover { color: #E63946; }
  55. .nav-signin {
  56. font-family: 'Helvetica Neue', Arial, sans-serif;
  57. font-size: 13px;
  58. font-weight: 600;
  59. text-transform: uppercase;
  60. letter-spacing: 1.5px;
  61. text-decoration: none;
  62. color: #000;
  63. padding: 8px 20px;
  64. border: 2px solid #000;
  65. transition: all 0.2s;
  66. }
  67. .nav-signin:hover { background: #000; color: #fff; }
  68. /* HERO */
  69. .hero {
  70. display: grid;
  71. grid-template-columns: 1fr 1fr;
  72. height: calc(900px - 72px);
  73. }
  74. /* LEFT PANEL */
  75. .hero-left {
  76. padding: 64px 80px 48px 80px;
  77. display: flex;
  78. flex-direction: column;
  79. justify-content: center;
  80. position: relative;
  81. }
  82. .hero-label {
  83. font-family: 'Helvetica Neue', Arial, sans-serif;
  84. font-size: 12px;
  85. font-weight: 600;
  86. text-transform: uppercase;
  87. letter-spacing: 3px;
  88. color: #E63946;
  89. margin-bottom: 24px;
  90. }
  91. .hero-headline {
  92. font-family: 'Helvetica Neue', Arial, sans-serif;
  93. font-size: 52px;
  94. font-weight: 900;
  95. line-height: 1.05;
  96. letter-spacing: -2px;
  97. margin-bottom: 20px;
  98. max-width: 520px;
  99. }
  100. .hero-headline span { color: #E63946; }
  101. .hero-subtitle {
  102. font-size: 17px;
  103. font-weight: 400;
  104. line-height: 1.6;
  105. color: #444;
  106. max-width: 440px;
  107. margin-bottom: 36px;
  108. }
  109. .hero-ctas {
  110. display: flex;
  111. gap: 16px;
  112. margin-bottom: 48px;
  113. }
  114. .btn-primary {
  115. font-family: 'Helvetica Neue', Arial, sans-serif;
  116. font-size: 14px;
  117. font-weight: 600;
  118. text-transform: uppercase;
  119. letter-spacing: 1px;
  120. padding: 16px 36px;
  121. background: #E63946;
  122. color: #fff;
  123. border: none;
  124. cursor: pointer;
  125. transition: background 0.2s;
  126. }
  127. .btn-primary:hover { background: #c4303c; }
  128. .btn-secondary {
  129. font-family: 'Helvetica Neue', Arial, sans-serif;
  130. font-size: 14px;
  131. font-weight: 600;
  132. text-transform: uppercase;
  133. letter-spacing: 1px;
  134. padding: 16px 36px;
  135. background: transparent;
  136. color: #000;
  137. border: 2px solid #000;
  138. cursor: pointer;
  139. display: flex;
  140. align-items: center;
  141. gap: 8px;
  142. transition: all 0.2s;
  143. }
  144. .btn-secondary:hover { background: #000; color: #fff; }
  145. .btn-secondary svg { width: 16px; height: 16px; }
  146. /* BIG NUMBER */
  147. .big-number {
  148. position: absolute;
  149. bottom: 64px;
  150. left: 80px;
  151. display: flex;
  152. align-items: baseline;
  153. gap: 40px;
  154. }
  155. .big-number-main {
  156. font-family: 'Helvetica Neue', Arial, sans-serif;
  157. font-size: 140px;
  158. font-weight: 700;
  159. line-height: 1;
  160. letter-spacing: -6px;
  161. color: #E63946;
  162. }
  163. .big-number-label {
  164. font-family: 'Helvetica Neue', Arial, sans-serif;
  165. font-size: 13px;
  166. font-weight: 500;
  167. text-transform: uppercase;
  168. letter-spacing: 2px;
  169. color: #666;
  170. max-width: 100px;
  171. line-height: 1.5;
  172. }
  173. .big-number-divider {
  174. width: 1px;
  175. height: 48px;
  176. background: #ccc;
  177. }
  178. .metric-small {
  179. display: flex;
  180. flex-direction: column;
  181. gap: 4px;
  182. }
  183. .metric-small-value {
  184. font-family: 'Helvetica Neue', Arial, sans-serif;
  185. font-size: 32px;
  186. font-weight: 700;
  187. letter-spacing: -1px;
  188. }
  189. .metric-small-label {
  190. font-family: 'Helvetica Neue', Arial, sans-serif;
  191. font-size: 11px;
  192. font-weight: 500;
  193. text-transform: uppercase;
  194. letter-spacing: 2px;
  195. color: #888;
  196. }
  197. /* RIGHT PANEL — DASHBOARD */
  198. .hero-right {
  199. background: #000;
  200. padding: 32px;
  201. display: flex;
  202. flex-direction: column;
  203. gap: 16px;
  204. position: relative;
  205. }
  206. /* Dashboard grid */
  207. .dash-header {
  208. display: flex;
  209. justify-content: space-between;
  210. align-items: center;
  211. margin-bottom: 4px;
  212. }
  213. .dash-title {
  214. font-family: 'Helvetica Neue', Arial, sans-serif;
  215. font-size: 13px;
  216. font-weight: 500;
  217. text-transform: uppercase;
  218. letter-spacing: 2px;
  219. color: #666;
  220. }
  221. .dash-live {
  222. display: flex;
  223. align-items: center;
  224. gap: 6px;
  225. font-size: 11px;
  226. font-weight: 500;
  227. color: #E63946;
  228. text-transform: uppercase;
  229. letter-spacing: 1px;
  230. }
  231. .dash-live-dot {
  232. width: 6px;
  233. height: 6px;
  234. background: #E63946;
  235. border-radius: 50%;
  236. }
  237. /* KPI Row */
  238. .kpi-row {
  239. display: grid;
  240. grid-template-columns: repeat(3, 1fr);
  241. gap: 12px;
  242. }
  243. .kpi-card {
  244. background: #111;
  245. border: 1px solid #222;
  246. padding: 20px;
  247. }
  248. .kpi-label {
  249. font-size: 10px;
  250. font-weight: 500;
  251. text-transform: uppercase;
  252. letter-spacing: 1.5px;
  253. color: #555;
  254. margin-bottom: 8px;
  255. }
  256. .kpi-value {
  257. font-family: 'Helvetica Neue', Arial, sans-serif;
  258. font-size: 28px;
  259. font-weight: 700;
  260. color: #fff;
  261. letter-spacing: -1px;
  262. }
  263. .kpi-change {
  264. font-size: 12px;
  265. font-weight: 500;
  266. color: #E63946;
  267. margin-top: 4px;
  268. }
  269. .kpi-change.positive { color: #fff; opacity: 0.7; }
  270. /* Chart area */
  271. .chart-area {
  272. flex: 1;
  273. background: #111;
  274. border: 1px solid #222;
  275. padding: 24px;
  276. display: flex;
  277. flex-direction: column;
  278. }
  279. .chart-top {
  280. display: flex;
  281. justify-content: space-between;
  282. align-items: center;
  283. margin-bottom: 20px;
  284. }
  285. .chart-label {
  286. font-size: 11px;
  287. font-weight: 500;
  288. text-transform: uppercase;
  289. letter-spacing: 1.5px;
  290. color: #555;
  291. }
  292. .chart-tabs {
  293. display: flex;
  294. gap: 2px;
  295. }
  296. .chart-tab {
  297. font-size: 10px;
  298. font-weight: 500;
  299. text-transform: uppercase;
  300. letter-spacing: 1px;
  301. color: #444;
  302. padding: 4px 12px;
  303. background: transparent;
  304. border: 1px solid #333;
  305. }
  306. .chart-tab.active {
  307. color: #fff;
  308. background: #E63946;
  309. border-color: #E63946;
  310. }
  311. .chart-bars {
  312. display: flex;
  313. align-items: flex-end;
  314. gap: 6px;
  315. flex: 1;
  316. padding-top: 12px;
  317. }
  318. .chart-bar-group {
  319. flex: 1;
  320. display: flex;
  321. flex-direction: column;
  322. align-items: center;
  323. gap: 8px;
  324. }
  325. .chart-bar {
  326. width: 100%;
  327. background: #222;
  328. position: relative;
  329. }
  330. .chart-bar.accent { background: #E63946; }
  331. .chart-bar-label {
  332. font-size: 9px;
  333. color: #444;
  334. font-weight: 500;
  335. letter-spacing: 0.5px;
  336. }
  337. /* Bottom row */
  338. .dash-bottom {
  339. display: grid;
  340. grid-template-columns: 1fr 1fr;
  341. gap: 12px;
  342. }
  343. .data-table {
  344. background: #111;
  345. border: 1px solid #222;
  346. padding: 16px;
  347. }
  348. .data-table-title {
  349. font-size: 10px;
  350. font-weight: 500;
  351. text-transform: uppercase;
  352. letter-spacing: 1.5px;
  353. color: #555;
  354. margin-bottom: 12px;
  355. }
  356. .data-row {
  357. display: flex;
  358. justify-content: space-between;
  359. padding: 6px 0;
  360. border-bottom: 1px solid #1a1a1a;
  361. }
  362. .data-row:last-child { border-bottom: none; }
  363. .data-row-label {
  364. font-size: 12px;
  365. color: #888;
  366. }
  367. .data-row-value {
  368. font-family: 'Helvetica Neue', Arial, sans-serif;
  369. font-size: 12px;
  370. font-weight: 600;
  371. color: #fff;
  372. }
  373. .data-row-value.red { color: #E63946; }
  374. /* TRUST BAR */
  375. .trust-bar {
  376. position: absolute;
  377. bottom: 0;
  378. left: 0;
  379. right: 0;
  380. border-top: 1px solid #e0e0e0;
  381. padding: 0 80px;
  382. height: 56px;
  383. display: flex;
  384. align-items: center;
  385. gap: 48px;
  386. background: #fff;
  387. }
  388. .trust-label {
  389. font-size: 11px;
  390. font-weight: 500;
  391. text-transform: uppercase;
  392. letter-spacing: 2px;
  393. color: #aaa;
  394. white-space: nowrap;
  395. }
  396. .trust-logos {
  397. display: flex;
  398. gap: 48px;
  399. align-items: center;
  400. }
  401. .trust-logo {
  402. font-family: 'Helvetica Neue', Arial, sans-serif;
  403. font-size: 15px;
  404. font-weight: 600;
  405. color: #bbb;
  406. letter-spacing: 1px;
  407. }
  408. </style>
  409. </head>
  410. <body>
  411. <!-- NAVIGATION -->
  412. <nav>
  413. <div class="nav-logo">
  414. <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
  415. <polygon points="12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"/>
  416. <line x1="12" y1="22" x2="12" y2="15.5"/>
  417. <polyline points="22 8.5 12 15.5 2 8.5"/>
  418. </svg>
  419. Meridian
  420. </div>
  421. <ul class="nav-links">
  422. <li><a href="#">Product</a></li>
  423. <li><a href="#">Pricing</a></li>
  424. <li><a href="#">Docs</a></li>
  425. <li><a href="#">Blog</a></li>
  426. </ul>
  427. <a href="#" class="nav-signin">Sign In</a>
  428. </nav>
  429. <!-- HERO -->
  430. <div class="hero">
  431. <!-- LEFT -->
  432. <div class="hero-left">
  433. <div class="hero-label">Business Intelligence for Modern Teams</div>
  434. <h1 class="hero-headline">Turn data into <span>decisions,</span> not dashboards</h1>
  435. <p class="hero-subtitle">AI-powered analytics that tells you what matters, when it matters. Stop drowning in charts and start acting on real insights.</p>
  436. <div class="hero-ctas">
  437. <button class="btn-primary">Start Free Trial</button>
  438. <button class="btn-secondary">
  439. <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>
  440. Watch Demo
  441. </button>
  442. </div>
  443. <div class="big-number">
  444. <div class="big-number-main">3x</div>
  445. <div class="big-number-label">Faster Insights</div>
  446. <div class="big-number-divider"></div>
  447. <div class="metric-small">
  448. <div class="metric-small-value">50%</div>
  449. <div class="metric-small-label">Less Meeting Time</div>
  450. </div>
  451. <div class="big-number-divider"></div>
  452. <div class="metric-small">
  453. <div class="metric-small-value">99.9%</div>
  454. <div class="metric-small-label">Uptime</div>
  455. </div>
  456. </div>
  457. </div>
  458. <!-- RIGHT — DASHBOARD MOCKUP -->
  459. <div class="hero-right">
  460. <div class="dash-header">
  461. <div class="dash-title">Analytics Overview</div>
  462. <div class="dash-live"><div class="dash-live-dot"></div> Live</div>
  463. </div>
  464. <div class="kpi-row">
  465. <div class="kpi-card">
  466. <div class="kpi-label">Revenue</div>
  467. <div class="kpi-value">$2.4M</div>
  468. <div class="kpi-change positive">+12.3%</div>
  469. </div>
  470. <div class="kpi-card">
  471. <div class="kpi-label">Active Users</div>
  472. <div class="kpi-value">84.2K</div>
  473. <div class="kpi-change positive">+8.7%</div>
  474. </div>
  475. <div class="kpi-card">
  476. <div class="kpi-label">Churn Rate</div>
  477. <div class="kpi-value">1.2%</div>
  478. <div class="kpi-change red">-0.3pp</div>
  479. </div>
  480. </div>
  481. <div class="chart-area">
  482. <div class="chart-top">
  483. <div class="chart-label">Monthly Performance</div>
  484. <div class="chart-tabs">
  485. <div class="chart-tab">7D</div>
  486. <div class="chart-tab active">30D</div>
  487. <div class="chart-tab">90D</div>
  488. </div>
  489. </div>
  490. <div class="chart-bars">
  491. <div class="chart-bar-group"><div class="chart-bar" style="height:60px"></div><div class="chart-bar-label">Jan</div></div>
  492. <div class="chart-bar-group"><div class="chart-bar" style="height:80px"></div><div class="chart-bar-label">Feb</div></div>
  493. <div class="chart-bar-group"><div class="chart-bar" style="height:55px"></div><div class="chart-bar-label">Mar</div></div>
  494. <div class="chart-bar-group"><div class="chart-bar accent" style="height:110px"></div><div class="chart-bar-label">Apr</div></div>
  495. <div class="chart-bar-group"><div class="chart-bar" style="height:95px"></div><div class="chart-bar-label">May</div></div>
  496. <div class="chart-bar-group"><div class="chart-bar accent" style="height:130px"></div><div class="chart-bar-label">Jun</div></div>
  497. <div class="chart-bar-group"><div class="chart-bar" style="height:105px"></div><div class="chart-bar-label">Jul</div></div>
  498. <div class="chart-bar-group"><div class="chart-bar accent" style="height:145px"></div><div class="chart-bar-label">Aug</div></div>
  499. <div class="chart-bar-group"><div class="chart-bar" style="height:120px"></div><div class="chart-bar-label">Sep</div></div>
  500. <div class="chart-bar-group"><div class="chart-bar" style="height:100px"></div><div class="chart-bar-label">Oct</div></div>
  501. </div>
  502. </div>
  503. <div class="dash-bottom">
  504. <div class="data-table">
  505. <div class="data-table-title">Top Segments</div>
  506. <div class="data-row"><span class="data-row-label">Enterprise</span><span class="data-row-value">$1.1M</span></div>
  507. <div class="data-row"><span class="data-row-label">Mid-Market</span><span class="data-row-value">$820K</span></div>
  508. <div class="data-row"><span class="data-row-label">SMB</span><span class="data-row-value">$480K</span></div>
  509. </div>
  510. <div class="data-table">
  511. <div class="data-table-title">AI Alerts Today</div>
  512. <div class="data-row"><span class="data-row-label">Revenue spike detected</span><span class="data-row-value red">High</span></div>
  513. <div class="data-row"><span class="data-row-label">Churn risk: Acme Corp</span><span class="data-row-value red">Med</span></div>
  514. <div class="data-row"><span class="data-row-label">Expansion signal: Bolt</span><span class="data-row-value" style="color:#888">Low</span></div>
  515. </div>
  516. </div>
  517. </div>
  518. </div>
  519. <!-- TRUST BAR (absolutely positioned at bottom-left) -->
  520. <div class="trust-bar" style="position:fixed; bottom:0; left:0; width:720px; z-index:10;">
  521. <span class="trust-label">Trusted by</span>
  522. <div class="trust-logos">
  523. <span class="trust-logo">Stripe</span>
  524. <span class="trust-logo">Notion</span>
  525. <span class="trust-logo">Linear</span>
  526. <span class="trust-logo">Vercel</span>
  527. <span class="trust-logo">Figma</span>
  528. </div>
  529. </div>
  530. <script>
  531. document.addEventListener('DOMContentLoaded', function() {
  532. lucide.createIcons();
  533. });
  534. </script>
  535. </body>
  536. </html>