saas-takram.html 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604
  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@300;400;500;600&family=Noto+Serif+SC:wght@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: #F5F0EB;
  18. color: #3a3a3a;
  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. }
  28. .nav-logo {
  29. font-family: 'Noto Serif SC', serif;
  30. font-size: 20px;
  31. font-weight: 500;
  32. letter-spacing: -0.3px;
  33. color: #3a3a3a;
  34. display: flex;
  35. align-items: center;
  36. gap: 10px;
  37. }
  38. .nav-logo-mark {
  39. width: 28px;
  40. height: 28px;
  41. border-radius: 50%;
  42. background: #6B8F71;
  43. display: flex;
  44. align-items: center;
  45. justify-content: center;
  46. }
  47. .nav-logo-mark svg { width: 14px; height: 14px; color: #F5F0EB; }
  48. .nav-center {
  49. display: flex;
  50. gap: 40px;
  51. list-style: none;
  52. }
  53. .nav-center a {
  54. font-size: 14px;
  55. font-weight: 400;
  56. text-decoration: none;
  57. color: #888;
  58. transition: color 0.2s;
  59. }
  60. .nav-center a:hover { color: #3a3a3a; }
  61. .nav-right {
  62. display: flex;
  63. align-items: center;
  64. gap: 20px;
  65. }
  66. .nav-signin {
  67. font-size: 14px;
  68. font-weight: 400;
  69. text-decoration: none;
  70. color: #888;
  71. }
  72. .nav-cta {
  73. font-family: 'Inter', sans-serif;
  74. font-size: 13px;
  75. font-weight: 500;
  76. padding: 9px 22px;
  77. background: #2D3436;
  78. color: #F5F0EB;
  79. border: none;
  80. border-radius: 100px;
  81. cursor: pointer;
  82. transition: background 0.2s;
  83. }
  84. .nav-cta:hover { background: #3D4547; }
  85. /* HERO */
  86. .hero {
  87. padding: 20px 80px 0 80px;
  88. height: calc(900px - 72px);
  89. display: flex;
  90. flex-direction: column;
  91. }
  92. /* TOP SECTION: text + dashboard side by side */
  93. .hero-top {
  94. display: grid;
  95. grid-template-columns: 500px 1fr;
  96. gap: 60px;
  97. flex: 1;
  98. }
  99. /* LEFT TEXT */
  100. .hero-text {
  101. padding-top: 32px;
  102. display: flex;
  103. flex-direction: column;
  104. }
  105. .hero-label {
  106. font-size: 12px;
  107. font-weight: 500;
  108. color: #6B8F71;
  109. letter-spacing: 1px;
  110. margin-bottom: 20px;
  111. }
  112. .hero-headline {
  113. font-family: 'Noto Serif SC', serif;
  114. font-size: 44px;
  115. font-weight: 400;
  116. line-height: 1.25;
  117. letter-spacing: -0.5px;
  118. color: #2a2a2a;
  119. margin-bottom: 16px;
  120. }
  121. .hero-headline em {
  122. font-style: italic;
  123. color: #7A8F71;
  124. }
  125. .hero-subtitle {
  126. font-size: 16px;
  127. font-weight: 300;
  128. line-height: 1.7;
  129. color: #999;
  130. margin-bottom: 32px;
  131. max-width: 400px;
  132. }
  133. .hero-ctas {
  134. display: flex;
  135. gap: 12px;
  136. margin-bottom: 36px;
  137. }
  138. .btn-primary {
  139. font-family: 'Inter', sans-serif;
  140. font-size: 14px;
  141. font-weight: 500;
  142. padding: 14px 28px;
  143. background: rgba(107, 143, 113, 0.12);
  144. color: #6B8F71;
  145. border: 1px solid rgba(107, 143, 113, 0.3);
  146. border-radius: 100px;
  147. cursor: pointer;
  148. transition: all 0.2s;
  149. }
  150. .btn-primary:hover { background: rgba(107, 143, 113, 0.18); }
  151. .btn-secondary {
  152. font-family: 'Inter', sans-serif;
  153. font-size: 14px;
  154. font-weight: 400;
  155. padding: 14px 28px;
  156. background: transparent;
  157. color: #888;
  158. border: 1px solid #d5cfc5;
  159. border-radius: 100px;
  160. cursor: pointer;
  161. display: flex;
  162. align-items: center;
  163. gap: 8px;
  164. transition: all 0.2s;
  165. }
  166. .btn-secondary:hover { border-color: #aaa; color: #555; }
  167. .btn-secondary svg { width: 14px; height: 14px; }
  168. /* FLOW DIAGRAM */
  169. .flow-diagram {
  170. display: flex;
  171. align-items: center;
  172. gap: 12px;
  173. margin-bottom: 32px;
  174. }
  175. .flow-step {
  176. display: flex;
  177. align-items: center;
  178. gap: 10px;
  179. background: rgba(107, 143, 113, 0.1);
  180. border: 1px solid rgba(107, 143, 113, 0.25);
  181. border-radius: 100px;
  182. padding: 8px 18px;
  183. }
  184. .flow-step-icon {
  185. width: 24px;
  186. height: 24px;
  187. background: #6B8F71;
  188. border-radius: 50%;
  189. display: flex;
  190. align-items: center;
  191. justify-content: center;
  192. }
  193. .flow-step-icon svg { width: 12px; height: 12px; color: #fff; }
  194. .flow-step span {
  195. font-size: 12px;
  196. font-weight: 500;
  197. color: #666;
  198. }
  199. .flow-arrow {
  200. width: 20px;
  201. display: flex;
  202. align-items: center;
  203. justify-content: center;
  204. color: #ccc;
  205. }
  206. .flow-arrow svg { width: 16px; height: 16px; }
  207. /* METRICS ROW */
  208. .metrics-row {
  209. display: flex;
  210. gap: 40px;
  211. }
  212. .metric-card {
  213. background: #fff;
  214. border-radius: 16px;
  215. padding: 20px 24px;
  216. min-width: 130px;
  217. box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  218. }
  219. .metric-card-value {
  220. font-family: 'Noto Serif SC', serif;
  221. font-size: 28px;
  222. font-weight: 400;
  223. color: #2a2a2a;
  224. letter-spacing: -0.5px;
  225. margin-bottom: 4px;
  226. }
  227. .metric-card-value span { color: #6B8F71; }
  228. .metric-card-label {
  229. font-size: 11px;
  230. font-weight: 400;
  231. color: #bbb;
  232. }
  233. /* RIGHT — DASHBOARD */
  234. .hero-dashboard {
  235. padding-top: 8px;
  236. }
  237. .dashboard-frame {
  238. background: #FFFFFF;
  239. border-radius: 24px;
  240. box-shadow:
  241. 0 1px 2px rgba(0,0,0,0.02),
  242. 0 4px 12px rgba(0,0,0,0.03),
  243. 0 16px 48px rgba(0,0,0,0.05);
  244. padding: 24px;
  245. height: 480px;
  246. display: flex;
  247. flex-direction: column;
  248. }
  249. /* Dash header */
  250. .dash-head {
  251. display: flex;
  252. justify-content: space-between;
  253. align-items: center;
  254. margin-bottom: 20px;
  255. }
  256. .dash-head-title {
  257. font-size: 14px;
  258. font-weight: 500;
  259. color: #3a3a3a;
  260. }
  261. .dash-head-tag {
  262. font-size: 11px;
  263. font-weight: 400;
  264. color: #6B8F71;
  265. background: rgba(107, 143, 113, 0.1);
  266. padding: 4px 12px;
  267. border-radius: 100px;
  268. }
  269. /* KPI row */
  270. .dash-kpis {
  271. display: grid;
  272. grid-template-columns: repeat(3, 1fr);
  273. gap: 12px;
  274. margin-bottom: 20px;
  275. }
  276. .dash-kpi {
  277. background: #FAFAF6;
  278. border-radius: 14px;
  279. padding: 16px;
  280. text-align: center;
  281. }
  282. .dash-kpi-value {
  283. font-size: 22px;
  284. font-weight: 500;
  285. color: #2a2a2a;
  286. margin-bottom: 2px;
  287. }
  288. .dash-kpi-label {
  289. font-size: 10px;
  290. font-weight: 400;
  291. color: #bbb;
  292. text-transform: uppercase;
  293. letter-spacing: 0.5px;
  294. }
  295. .dash-kpi-change {
  296. font-size: 11px;
  297. font-weight: 500;
  298. color: #6B8F71;
  299. margin-top: 4px;
  300. }
  301. /* Chart area */
  302. .dash-chart {
  303. flex: 1;
  304. display: grid;
  305. grid-template-columns: 2fr 1fr;
  306. gap: 12px;
  307. }
  308. .chart-main {
  309. background: #FAFAF6;
  310. border-radius: 16px;
  311. padding: 20px;
  312. display: flex;
  313. flex-direction: column;
  314. }
  315. .chart-main-label {
  316. font-size: 11px;
  317. font-weight: 500;
  318. color: #aaa;
  319. margin-bottom: 12px;
  320. }
  321. .chart-main-svg {
  322. flex: 1;
  323. }
  324. /* Side panel */
  325. .chart-side {
  326. display: flex;
  327. flex-direction: column;
  328. gap: 10px;
  329. }
  330. .insight-bubble {
  331. background: #FAFAF6;
  332. border-radius: 16px;
  333. padding: 14px 16px;
  334. flex: 1;
  335. }
  336. .insight-bubble-header {
  337. display: flex;
  338. align-items: center;
  339. gap: 6px;
  340. margin-bottom: 8px;
  341. }
  342. .insight-bubble-icon {
  343. width: 20px;
  344. height: 20px;
  345. background: rgba(107, 143, 113, 0.2);
  346. border-radius: 50%;
  347. display: flex;
  348. align-items: center;
  349. justify-content: center;
  350. }
  351. .insight-bubble-icon svg { width: 10px; height: 10px; color: #7A8F71; }
  352. .insight-bubble-tag {
  353. font-size: 10px;
  354. font-weight: 500;
  355. color: #6B8F71;
  356. }
  357. .insight-bubble-text {
  358. font-size: 11px;
  359. font-weight: 400;
  360. color: #888;
  361. line-height: 1.5;
  362. }
  363. /* TRUST BAR */
  364. .trust-bar {
  365. padding: 16px 0;
  366. display: flex;
  367. align-items: center;
  368. gap: 40px;
  369. border-top: 1px solid #e8e2d8;
  370. }
  371. .trust-label {
  372. font-size: 11px;
  373. font-weight: 400;
  374. color: #ccc;
  375. white-space: nowrap;
  376. }
  377. .trust-logos {
  378. display: flex;
  379. gap: 36px;
  380. align-items: center;
  381. }
  382. .trust-logo {
  383. font-size: 14px;
  384. font-weight: 400;
  385. color: #ccc;
  386. }
  387. </style>
  388. </head>
  389. <body>
  390. <!-- NAV -->
  391. <nav>
  392. <div class="nav-logo">
  393. <div class="nav-logo-mark">
  394. <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
  395. <polygon points="12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"/>
  396. </svg>
  397. </div>
  398. Meridian
  399. </div>
  400. <ul class="nav-center">
  401. <li><a href="#">Product</a></li>
  402. <li><a href="#">Pricing</a></li>
  403. <li><a href="#">Docs</a></li>
  404. <li><a href="#">Blog</a></li>
  405. </ul>
  406. <div class="nav-right">
  407. <a href="#" class="nav-signin">Sign In</a>
  408. <button class="nav-cta">Start Free Trial</button>
  409. </div>
  410. </nav>
  411. <!-- HERO -->
  412. <div class="hero">
  413. <div class="hero-top">
  414. <!-- LEFT TEXT -->
  415. <div class="hero-text">
  416. <div class="hero-label">Business Intelligence for Modern Teams</div>
  417. <h1 class="hero-headline">Turn data into <em>decisions,</em> not dashboards</h1>
  418. <p class="hero-subtitle">AI-powered analytics that tells you what matters, when it matters. Clarity over complexity.</p>
  419. <div class="hero-ctas">
  420. <button class="btn-primary">Start Free Trial</button>
  421. <button class="btn-secondary">
  422. <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>
  423. Watch Demo
  424. </button>
  425. </div>
  426. <!-- Flow diagram -->
  427. <div class="flow-diagram">
  428. <div class="flow-step">
  429. <div class="flow-step-icon">
  430. <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="17 8 12 3 7 8"/><line x1="12" y1="3" x2="12" y2="15"/></svg>
  431. </div>
  432. <span>Raw Data</span>
  433. </div>
  434. <div class="flow-arrow">
  435. <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"/></svg>
  436. </div>
  437. <div class="flow-step">
  438. <div class="flow-step-icon">
  439. <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M13 2L3 14h9l-1 8 10-12h-9l1-8z"/></svg>
  440. </div>
  441. <span>AI Analysis</span>
  442. </div>
  443. <div class="flow-arrow">
  444. <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"/></svg>
  445. </div>
  446. <div class="flow-step">
  447. <div class="flow-step-icon">
  448. <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>
  449. </div>
  450. <span>Actionable Insight</span>
  451. </div>
  452. </div>
  453. <!-- Metrics -->
  454. <div class="metrics-row">
  455. <div class="metric-card">
  456. <div class="metric-card-value">3<span>x</span></div>
  457. <div class="metric-card-label">Faster insights</div>
  458. </div>
  459. <div class="metric-card">
  460. <div class="metric-card-value">50<span>%</span></div>
  461. <div class="metric-card-label">Less meeting time</div>
  462. </div>
  463. <div class="metric-card">
  464. <div class="metric-card-value">99.9<span>%</span></div>
  465. <div class="metric-card-label">Uptime</div>
  466. </div>
  467. </div>
  468. </div>
  469. <!-- RIGHT — DASHBOARD -->
  470. <div class="hero-dashboard">
  471. <div class="dashboard-frame">
  472. <div class="dash-head">
  473. <div class="dash-head-title">Analytics Overview</div>
  474. <div class="dash-head-tag">AI-Enhanced</div>
  475. </div>
  476. <div class="dash-kpis">
  477. <div class="dash-kpi">
  478. <div class="dash-kpi-value">$2.4M</div>
  479. <div class="dash-kpi-label">Revenue</div>
  480. <div class="dash-kpi-change">+12.3%</div>
  481. </div>
  482. <div class="dash-kpi">
  483. <div class="dash-kpi-value">84.2K</div>
  484. <div class="dash-kpi-label">Active Users</div>
  485. <div class="dash-kpi-change">+8.7%</div>
  486. </div>
  487. <div class="dash-kpi">
  488. <div class="dash-kpi-value">1.2%</div>
  489. <div class="dash-kpi-label">Churn Rate</div>
  490. <div class="dash-kpi-change">-0.3pp</div>
  491. </div>
  492. </div>
  493. <div class="dash-chart">
  494. <!-- Main chart with organic shapes -->
  495. <div class="chart-main">
  496. <div class="chart-main-label">Revenue Trend</div>
  497. <svg class="chart-main-svg" viewBox="0 0 400 160" preserveAspectRatio="xMidYMid meet">
  498. <!-- Soft grid -->
  499. <line x1="0" y1="40" x2="400" y2="40" stroke="#ece7dd" stroke-width="1"/>
  500. <line x1="0" y1="80" x2="400" y2="80" stroke="#ece7dd" stroke-width="1"/>
  501. <line x1="0" y1="120" x2="400" y2="120" stroke="#ece7dd" stroke-width="1"/>
  502. <!-- Rounded bars -->
  503. <rect x="15" y="80" width="28" height="70" rx="8" ry="8" fill="#e2ddd4"/>
  504. <rect x="58" y="65" width="28" height="85" rx="8" ry="8" fill="#e2ddd4"/>
  505. <rect x="101" y="90" width="28" height="60" rx="8" ry="8" fill="#e2ddd4"/>
  506. <rect x="144" y="50" width="28" height="100" rx="8" ry="8" fill="#6B8F71" opacity="0.6"/>
  507. <rect x="187" y="60" width="28" height="90" rx="8" ry="8" fill="#e2ddd4"/>
  508. <rect x="230" y="35" width="28" height="115" rx="8" ry="8" fill="#6B8F71" opacity="0.8"/>
  509. <rect x="273" y="45" width="28" height="105" rx="8" ry="8" fill="#e2ddd4"/>
  510. <rect x="316" y="25" width="28" height="125" rx="8" ry="8" fill="#6B8F71"/>
  511. <rect x="359" y="40" width="28" height="110" rx="8" ry="8" fill="#e2ddd4"/>
  512. <!-- Smooth trend line overlay -->
  513. <path d="M29,75 C60,62 75,60 115,85 C140,70 155,47 172,45 C200,55 205,55 244,30 C270,40 280,40 330,20 C350,35 365,35 373,35" fill="none" stroke="#7A8F71" stroke-width="2" stroke-linecap="round" opacity="0.7"/>
  514. <!-- Labels -->
  515. <text x="22" y="158" font-size="9" fill="#bbb" font-family="Inter" text-anchor="middle">Jan</text>
  516. <text x="72" y="158" font-size="9" fill="#bbb" font-family="Inter" text-anchor="middle">Feb</text>
  517. <text x="115" y="158" font-size="9" fill="#bbb" font-family="Inter" text-anchor="middle">Mar</text>
  518. <text x="158" y="158" font-size="9" fill="#bbb" font-family="Inter" text-anchor="middle">Apr</text>
  519. <text x="201" y="158" font-size="9" fill="#bbb" font-family="Inter" text-anchor="middle">May</text>
  520. <text x="244" y="158" font-size="9" fill="#bbb" font-family="Inter" text-anchor="middle">Jun</text>
  521. <text x="287" y="158" font-size="9" fill="#bbb" font-family="Inter" text-anchor="middle">Jul</text>
  522. <text x="330" y="158" font-size="9" fill="#bbb" font-family="Inter" text-anchor="middle">Aug</text>
  523. <text x="373" y="158" font-size="9" fill="#bbb" font-family="Inter" text-anchor="middle">Sep</text>
  524. </svg>
  525. </div>
  526. <!-- Side insights -->
  527. <div class="chart-side">
  528. <div class="insight-bubble">
  529. <div class="insight-bubble-header">
  530. <div class="insight-bubble-icon">
  531. <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M13 2L3 14h9l-1 8 10-12h-9l1-8z"/></svg>
  532. </div>
  533. <span class="insight-bubble-tag">AI Insight</span>
  534. </div>
  535. <div class="insight-bubble-text">Enterprise segment grew 23% this quarter. Four new accounts are driving acceleration.</div>
  536. </div>
  537. <div class="insight-bubble">
  538. <div class="insight-bubble-header">
  539. <div class="insight-bubble-icon">
  540. <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>
  541. </div>
  542. <span class="insight-bubble-tag">Prediction</span>
  543. </div>
  544. <div class="insight-bubble-text">89% likelihood of hitting Q3 revenue target based on current pipeline velocity.</div>
  545. </div>
  546. <div class="insight-bubble">
  547. <div class="insight-bubble-header">
  548. <div class="insight-bubble-icon">
  549. <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"/><line x1="12" y1="9" x2="12" y2="13"/><line x1="12" y1="17" x2="12.01" y2="17"/></svg>
  550. </div>
  551. <span class="insight-bubble-tag">Alert</span>
  552. </div>
  553. <div class="insight-bubble-text">Churn risk detected for 2 mid-market accounts. Recommend outreach this week.</div>
  554. </div>
  555. </div>
  556. </div>
  557. </div>
  558. </div>
  559. </div>
  560. <!-- TRUST BAR -->
  561. <div class="trust-bar">
  562. <span class="trust-label">Trusted by teams at</span>
  563. <div class="trust-logos">
  564. <span class="trust-logo">Stripe</span>
  565. <span class="trust-logo">Notion</span>
  566. <span class="trust-logo">Linear</span>
  567. <span class="trust-logo">Vercel</span>
  568. <span class="trust-logo">Figma</span>
  569. </div>
  570. </div>
  571. </div>
  572. <script>
  573. document.addEventListener('DOMContentLoaded', function() {
  574. lucide.createIcons();
  575. });
  576. </script>
  577. </body>
  578. </html>