styles.css 19 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066
  1. /* ===== CSS Variables ===== */
  2. :root {
  3. --bg-primary: #FFFFFF;
  4. --bg-secondary: #F8FAFC;
  5. --bg-tertiary: #F1F5F9;
  6. --text-primary: #0F172A;
  7. --text-secondary: #475569;
  8. --text-muted: #94A3B8;
  9. --accent-blue: #1890FF;
  10. --accent-purple: #7C3AED;
  11. --accent-cyan: #06B6D4;
  12. --accent-pink: #EC4899;
  13. --gradient-hero: linear-gradient(135deg, #667EEA 0%, #764BA2 50%, #F093FB 100%);
  14. --gradient-btn: linear-gradient(135deg, #1890FF 0%, #7C3AED 100%);
  15. --gradient-card: linear-gradient(180deg, rgba(24, 144, 255, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
  16. --border-color: #E2E8F0;
  17. --border-light: rgba(0, 0, 0, 0.06);
  18. --radius-sm: 8px;
  19. --radius-md: 16px;
  20. --radius-lg: 24px;
  21. --radius-xl: 32px;
  22. --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  23. --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  24. --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  25. --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  26. --shadow-glow: 0 0 60px rgba(24, 144, 255, 0.3);
  27. --shadow-purple: 0 20px 40px rgba(124, 58, 237, 0.15);
  28. }
  29. /* ===== Reset & Base ===== */
  30. *, *::before, *::after {
  31. box-sizing: border-box;
  32. margin: 0;
  33. padding: 0;
  34. }
  35. html {
  36. scroll-behavior: smooth;
  37. }
  38. body {
  39. font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  40. background: var(--bg-primary);
  41. color: var(--text-primary);
  42. line-height: 1.7;
  43. overflow-x: hidden;
  44. font-size: 16px;
  45. -webkit-font-smoothing: antialiased;
  46. }
  47. a {
  48. color: inherit;
  49. text-decoration: none;
  50. transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  51. }
  52. ul {
  53. list-style: none;
  54. }
  55. /* ===== Layout ===== */
  56. .container {
  57. max-width: 1280px;
  58. margin: 0 auto;
  59. padding: 0 32px;
  60. }
  61. /* ===== Navigation ===== */
  62. .nav {
  63. position: fixed;
  64. top: 0;
  65. left: 0;
  66. right: 0;
  67. z-index: 100;
  68. background: rgba(255, 255, 255, 0.8);
  69. backdrop-filter: blur(20px) saturate(180%);
  70. border-bottom: 1px solid var(--border-light);
  71. transition: all 0.3s ease;
  72. }
  73. .nav.scrolled {
  74. box-shadow: var(--shadow-md);
  75. }
  76. .nav-container {
  77. max-width: 1280px;
  78. margin: 0 auto;
  79. padding: 16px 32px;
  80. display: flex;
  81. align-items: center;
  82. justify-content: space-between;
  83. }
  84. .logo {
  85. display: flex;
  86. align-items: center;
  87. gap: 10px;
  88. font-size: 1.5rem;
  89. font-weight: 800;
  90. letter-spacing: -0.02em;
  91. }
  92. .logo-icon {
  93. width: 36px;
  94. height: 36px;
  95. transition: transform 0.3s ease;
  96. }
  97. .logo:hover .logo-icon {
  98. transform: rotate(-10deg) scale(1.1);
  99. }
  100. .nav-links {
  101. display: flex;
  102. gap: 40px;
  103. }
  104. .nav-links a {
  105. color: var(--text-secondary);
  106. font-size: 0.95rem;
  107. font-weight: 500;
  108. position: relative;
  109. }
  110. .nav-links a::after {
  111. content: '';
  112. position: absolute;
  113. bottom: -4px;
  114. left: 0;
  115. width: 0;
  116. height: 2px;
  117. background: var(--gradient-btn);
  118. border-radius: 2px;
  119. transition: width 0.3s ease;
  120. }
  121. .nav-links a:hover {
  122. color: var(--text-primary);
  123. }
  124. .nav-links a:hover::after {
  125. width: 100%;
  126. }
  127. .nav-actions {
  128. display: flex;
  129. align-items: center;
  130. gap: 16px;
  131. }
  132. .lang-switch {
  133. display: flex;
  134. align-items: center;
  135. justify-content: center;
  136. padding: 8px 14px;
  137. background: transparent;
  138. border: 1px solid var(--border-color);
  139. border-radius: var(--radius-sm);
  140. font-size: 0.875rem;
  141. font-weight: 500;
  142. color: var(--text-secondary);
  143. cursor: pointer;
  144. transition: all 0.3s ease;
  145. }
  146. .lang-switch:hover {
  147. border-color: var(--accent-blue);
  148. color: var(--accent-blue);
  149. background: rgba(24, 144, 255, 0.05);
  150. }
  151. /* ===== Buttons ===== */
  152. .btn {
  153. display: inline-flex;
  154. align-items: center;
  155. justify-content: center;
  156. gap: 8px;
  157. padding: 14px 28px;
  158. border-radius: var(--radius-sm);
  159. font-weight: 600;
  160. font-size: 0.95rem;
  161. transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  162. cursor: pointer;
  163. border: none;
  164. position: relative;
  165. overflow: hidden;
  166. }
  167. .btn-sm {
  168. padding: 10px 20px;
  169. font-size: 0.875rem;
  170. }
  171. .btn-lg {
  172. padding: 18px 36px;
  173. font-size: 1rem;
  174. border-radius: var(--radius-md);
  175. }
  176. .btn-primary {
  177. background: var(--gradient-btn);
  178. color: #FFFFFF;
  179. box-shadow: 0 4px 14px rgba(24, 144, 255, 0.4);
  180. }
  181. .btn-primary::before {
  182. content: '';
  183. position: absolute;
  184. top: 0;
  185. left: -100%;
  186. width: 100%;
  187. height: 100%;
  188. background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  189. transition: left 0.5s ease;
  190. }
  191. .btn-primary:hover {
  192. transform: translateY(-3px);
  193. box-shadow: 0 8px 25px rgba(24, 144, 255, 0.5);
  194. }
  195. .btn-primary:hover::before {
  196. left: 100%;
  197. }
  198. .btn-secondary {
  199. background: var(--bg-primary);
  200. color: var(--text-primary);
  201. border: 2px solid var(--border-color);
  202. }
  203. .btn-secondary:hover {
  204. background: var(--bg-secondary);
  205. border-color: var(--accent-blue);
  206. color: var(--accent-blue);
  207. }
  208. .btn-block {
  209. width: 100%;
  210. }
  211. .play-icon {
  212. font-size: 0.75rem;
  213. }
  214. /* ===== Hero Section ===== */
  215. .hero {
  216. position: relative;
  217. min-height: 100vh;
  218. display: flex;
  219. align-items: center;
  220. padding: 140px 0 100px;
  221. overflow: hidden;
  222. }
  223. .hero-bg {
  224. position: absolute;
  225. inset: 0;
  226. background:
  227. radial-gradient(ellipse 100% 80% at 50% -30%, rgba(124, 58, 237, 0.12), transparent 60%),
  228. radial-gradient(ellipse 80% 60% at 100% 50%, rgba(6, 182, 212, 0.08), transparent 50%),
  229. radial-gradient(ellipse 60% 50% at 0% 80%, rgba(236, 72, 153, 0.06), transparent 50%);
  230. pointer-events: none;
  231. }
  232. .hero-bg::before {
  233. content: '';
  234. position: absolute;
  235. top: 20%;
  236. left: 10%;
  237. width: 400px;
  238. height: 400px;
  239. background: radial-gradient(circle, rgba(24, 144, 255, 0.1) 0%, transparent 70%);
  240. border-radius: 50%;
  241. filter: blur(60px);
  242. animation: float 8s ease-in-out infinite;
  243. }
  244. .hero-bg::after {
  245. content: '';
  246. position: absolute;
  247. bottom: 20%;
  248. right: 10%;
  249. width: 300px;
  250. height: 300px;
  251. background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  252. border-radius: 50%;
  253. filter: blur(60px);
  254. animation: float 6s ease-in-out infinite reverse;
  255. }
  256. @keyframes float {
  257. 0%, 100% { transform: translateY(0) scale(1); }
  258. 50% { transform: translateY(-30px) scale(1.05); }
  259. }
  260. .hero .container {
  261. display: grid;
  262. grid-template-columns: 1fr 1fr;
  263. gap: 80px;
  264. align-items: center;
  265. }
  266. .hero-content {
  267. position: relative;
  268. z-index: 1;
  269. }
  270. .badge {
  271. display: inline-flex;
  272. align-items: center;
  273. gap: 8px;
  274. padding: 10px 20px;
  275. background: linear-gradient(135deg, rgba(24, 144, 255, 0.1), rgba(124, 58, 237, 0.1));
  276. border: 1px solid rgba(24, 144, 255, 0.2);
  277. border-radius: 100px;
  278. font-size: 0.875rem;
  279. font-weight: 500;
  280. color: var(--accent-blue);
  281. margin-bottom: 28px;
  282. animation: pulse 3s ease-in-out infinite;
  283. }
  284. @keyframes pulse {
  285. 0%, 100% { box-shadow: 0 0 0 0 rgba(24, 144, 255, 0.2); }
  286. 50% { box-shadow: 0 0 0 10px rgba(24, 144, 255, 0); }
  287. }
  288. .hero h1 {
  289. font-size: 4rem;
  290. font-weight: 800;
  291. line-height: 1.1;
  292. margin-bottom: 28px;
  293. letter-spacing: -0.03em;
  294. }
  295. .gradient-text {
  296. background: var(--gradient-hero);
  297. -webkit-background-clip: text;
  298. -webkit-text-fill-color: transparent;
  299. background-clip: text;
  300. background-size: 200% 200%;
  301. animation: gradient-shift 5s ease infinite;
  302. }
  303. @keyframes gradient-shift {
  304. 0%, 100% { background-position: 0% 50%; }
  305. 50% { background-position: 100% 50%; }
  306. }
  307. .hero-desc {
  308. font-size: 1.25rem;
  309. color: var(--text-secondary);
  310. margin-bottom: 40px;
  311. max-width: 520px;
  312. line-height: 1.8;
  313. }
  314. .hero-actions {
  315. display: flex;
  316. gap: 16px;
  317. margin-bottom: 60px;
  318. }
  319. .hero-stats {
  320. display: flex;
  321. gap: 48px;
  322. padding-top: 32px;
  323. border-top: 1px solid var(--border-color);
  324. }
  325. .stat {
  326. display: flex;
  327. flex-direction: column;
  328. }
  329. .stat-value {
  330. font-size: 2rem;
  331. font-weight: 800;
  332. background: var(--gradient-btn);
  333. -webkit-background-clip: text;
  334. -webkit-text-fill-color: transparent;
  335. background-clip: text;
  336. }
  337. .stat-label {
  338. font-size: 0.875rem;
  339. color: var(--text-muted);
  340. font-weight: 500;
  341. }
  342. /* Workflow Preview */
  343. .hero-visual {
  344. position: relative;
  345. perspective: 1000px;
  346. }
  347. .workflow-preview {
  348. display: flex;
  349. flex-direction: column;
  350. align-items: center;
  351. gap: 0;
  352. padding: 48px;
  353. background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  354. border: 1px solid var(--border-color);
  355. border-radius: var(--radius-lg);
  356. box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.02);
  357. transform: rotateY(-5deg) rotateX(5deg);
  358. transition: transform 0.5s ease;
  359. }
  360. .workflow-preview:hover {
  361. transform: rotateY(0) rotateX(0);
  362. }
  363. .workflow-node {
  364. display: flex;
  365. align-items: center;
  366. gap: 14px;
  367. padding: 18px 28px;
  368. background: var(--bg-primary);
  369. border: 1px solid var(--border-color);
  370. border-radius: var(--radius-md);
  371. font-size: 0.95rem;
  372. font-weight: 500;
  373. min-width: 220px;
  374. transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  375. box-shadow: var(--shadow-sm);
  376. }
  377. .workflow-node:hover {
  378. border-color: var(--accent-blue);
  379. box-shadow: var(--shadow-md), 0 0 0 4px rgba(24, 144, 255, 0.1);
  380. transform: translateX(8px);
  381. }
  382. .node-trigger {
  383. border-left: 4px solid var(--accent-purple);
  384. background: linear-gradient(90deg, rgba(124, 58, 237, 0.05), transparent);
  385. }
  386. .node-icon {
  387. font-size: 1.5rem;
  388. }
  389. .workflow-line {
  390. width: 3px;
  391. height: 28px;
  392. background: linear-gradient(180deg, var(--accent-blue), var(--accent-purple));
  393. border-radius: 3px;
  394. }
  395. /* ===== Section Styles ===== */
  396. section {
  397. padding: 120px 0;
  398. position: relative;
  399. }
  400. .section-header {
  401. text-align: center;
  402. margin-bottom: 80px;
  403. }
  404. .section-header h2 {
  405. font-size: 3rem;
  406. font-weight: 800;
  407. margin-bottom: 20px;
  408. letter-spacing: -0.02em;
  409. }
  410. .section-header p {
  411. font-size: 1.25rem;
  412. color: var(--text-secondary);
  413. max-width: 600px;
  414. margin: 0 auto;
  415. }
  416. /* ===== Features ===== */
  417. .features {
  418. background: var(--bg-secondary);
  419. position: relative;
  420. }
  421. .features::before {
  422. content: '';
  423. position: absolute;
  424. top: 0;
  425. left: 0;
  426. right: 0;
  427. height: 1px;
  428. background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  429. }
  430. .features-grid {
  431. display: grid;
  432. grid-template-columns: repeat(3, 1fr);
  433. gap: 32px;
  434. }
  435. .feature-card {
  436. padding: 40px;
  437. background: var(--bg-primary);
  438. border: 1px solid var(--border-color);
  439. border-radius: var(--radius-lg);
  440. transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  441. position: relative;
  442. overflow: hidden;
  443. }
  444. .feature-card::before {
  445. content: '';
  446. position: absolute;
  447. top: 0;
  448. left: 0;
  449. right: 0;
  450. height: 4px;
  451. background: var(--gradient-btn);
  452. transform: scaleX(0);
  453. transform-origin: left;
  454. transition: transform 0.4s ease;
  455. }
  456. .feature-card:hover {
  457. transform: translateY(-8px);
  458. box-shadow: var(--shadow-xl);
  459. border-color: transparent;
  460. }
  461. .feature-card:hover::before {
  462. transform: scaleX(1);
  463. }
  464. .feature-icon {
  465. font-size: 3rem;
  466. margin-bottom: 24px;
  467. display: block;
  468. }
  469. .feature-card h3 {
  470. font-size: 1.375rem;
  471. font-weight: 700;
  472. margin-bottom: 14px;
  473. letter-spacing: -0.01em;
  474. }
  475. .feature-card p {
  476. color: var(--text-secondary);
  477. font-size: 1rem;
  478. line-height: 1.7;
  479. }
  480. /* ===== How it Works ===== */
  481. .steps {
  482. display: flex;
  483. align-items: flex-start;
  484. justify-content: center;
  485. gap: 0;
  486. position: relative;
  487. }
  488. .step {
  489. display: flex;
  490. flex-direction: column;
  491. align-items: center;
  492. text-align: center;
  493. max-width: 320px;
  494. padding: 0 24px;
  495. }
  496. .step-number {
  497. width: 80px;
  498. height: 80px;
  499. display: flex;
  500. align-items: center;
  501. justify-content: center;
  502. background: var(--gradient-btn);
  503. color: #FFFFFF;
  504. font-size: 1.75rem;
  505. font-weight: 800;
  506. border-radius: 50%;
  507. margin-bottom: 32px;
  508. box-shadow: var(--shadow-purple);
  509. position: relative;
  510. }
  511. .step-number::after {
  512. content: '';
  513. position: absolute;
  514. inset: -6px;
  515. border: 2px dashed rgba(124, 58, 237, 0.3);
  516. border-radius: 50%;
  517. animation: spin 20s linear infinite;
  518. }
  519. @keyframes spin {
  520. from { transform: rotate(0deg); }
  521. to { transform: rotate(360deg); }
  522. }
  523. .step-content h3 {
  524. font-size: 1.5rem;
  525. font-weight: 700;
  526. margin-bottom: 14px;
  527. }
  528. .step-content p {
  529. color: var(--text-secondary);
  530. font-size: 1rem;
  531. line-height: 1.7;
  532. }
  533. .step-connector {
  534. width: 120px;
  535. height: 3px;
  536. background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  537. margin-top: 40px;
  538. border-radius: 3px;
  539. position: relative;
  540. }
  541. .step-connector::after {
  542. content: '';
  543. position: absolute;
  544. right: -6px;
  545. top: -4px;
  546. width: 10px;
  547. height: 10px;
  548. background: var(--accent-purple);
  549. border-radius: 50%;
  550. }
  551. /* ===== Architecture ===== */
  552. .architecture {
  553. background: var(--bg-secondary);
  554. }
  555. .arch-content {
  556. display: grid;
  557. grid-template-columns: 1fr 1fr;
  558. gap: 80px;
  559. align-items: center;
  560. }
  561. .arch-text h2 {
  562. font-size: 3rem;
  563. font-weight: 800;
  564. margin-bottom: 28px;
  565. letter-spacing: -0.02em;
  566. }
  567. .arch-text > p {
  568. color: var(--text-secondary);
  569. font-size: 1.25rem;
  570. margin-bottom: 40px;
  571. line-height: 1.8;
  572. }
  573. .arch-list {
  574. display: flex;
  575. flex-direction: column;
  576. gap: 20px;
  577. }
  578. .arch-list li {
  579. display: flex;
  580. align-items: center;
  581. gap: 16px;
  582. font-size: 1.1rem;
  583. font-weight: 500;
  584. }
  585. .check {
  586. display: flex;
  587. align-items: center;
  588. justify-content: center;
  589. width: 28px;
  590. height: 28px;
  591. background: linear-gradient(135deg, rgba(24, 144, 255, 0.1), rgba(124, 58, 237, 0.1));
  592. color: var(--accent-blue);
  593. font-weight: 700;
  594. border-radius: 50%;
  595. font-size: 0.875rem;
  596. }
  597. .arch-diagram {
  598. display: flex;
  599. flex-direction: column;
  600. align-items: center;
  601. gap: 20px;
  602. }
  603. .arch-box {
  604. width: 100%;
  605. max-width: 360px;
  606. padding: 28px;
  607. border-radius: var(--radius-lg);
  608. border: 1px solid var(--border-color);
  609. background: var(--bg-primary);
  610. box-shadow: var(--shadow-md);
  611. }
  612. .arch-cloud {
  613. background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(124, 58, 237, 0.02));
  614. border-color: rgba(124, 58, 237, 0.2);
  615. }
  616. .arch-local {
  617. background: linear-gradient(135deg, rgba(24, 144, 255, 0.05), rgba(24, 144, 255, 0.02));
  618. border-color: rgba(24, 144, 255, 0.2);
  619. }
  620. .arch-label {
  621. display: inline-block;
  622. font-size: 0.75rem;
  623. font-weight: 700;
  624. text-transform: uppercase;
  625. letter-spacing: 0.1em;
  626. color: var(--text-muted);
  627. margin-bottom: 20px;
  628. padding: 6px 12px;
  629. background: var(--bg-secondary);
  630. border-radius: 100px;
  631. }
  632. .arch-item {
  633. padding: 14px 18px;
  634. background: var(--bg-secondary);
  635. border-radius: var(--radius-sm);
  636. margin-bottom: 10px;
  637. font-size: 0.95rem;
  638. font-weight: 500;
  639. border: 1px solid var(--border-color);
  640. transition: all 0.3s ease;
  641. }
  642. .arch-item:hover {
  643. background: var(--bg-primary);
  644. border-color: var(--accent-blue);
  645. }
  646. .arch-item:last-child {
  647. margin-bottom: 0;
  648. }
  649. .arch-arrow {
  650. font-size: 2rem;
  651. color: var(--accent-purple);
  652. animation: bounce 2s ease-in-out infinite;
  653. }
  654. @keyframes bounce {
  655. 0%, 100% { transform: translateY(0); }
  656. 50% { transform: translateY(5px); }
  657. }
  658. /* ===== Pricing ===== */
  659. .pricing-cards {
  660. display: flex;
  661. justify-content: center;
  662. gap: 40px;
  663. }
  664. .pricing-card {
  665. position: relative;
  666. width: 100%;
  667. max-width: 400px;
  668. padding: 48px;
  669. background: var(--bg-primary);
  670. border: 1px solid var(--border-color);
  671. border-radius: var(--radius-xl);
  672. transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  673. }
  674. .pricing-card:hover {
  675. transform: translateY(-8px);
  676. box-shadow: var(--shadow-xl);
  677. }
  678. .pricing-card.featured {
  679. border: 2px solid transparent;
  680. background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
  681. var(--gradient-btn) border-box;
  682. box-shadow: var(--shadow-purple);
  683. }
  684. .pricing-badge {
  685. position: absolute;
  686. top: -14px;
  687. left: 50%;
  688. transform: translateX(-50%);
  689. padding: 8px 24px;
  690. background: var(--gradient-btn);
  691. color: #FFFFFF;
  692. font-size: 0.8rem;
  693. font-weight: 700;
  694. border-radius: 100px;
  695. text-transform: uppercase;
  696. letter-spacing: 0.05em;
  697. box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
  698. }
  699. .pricing-header {
  700. text-align: center;
  701. margin-bottom: 40px;
  702. }
  703. .pricing-header h3 {
  704. font-size: 1.5rem;
  705. font-weight: 700;
  706. margin-bottom: 12px;
  707. }
  708. .price {
  709. font-size: 4rem;
  710. font-weight: 800;
  711. letter-spacing: -0.03em;
  712. }
  713. .price span {
  714. font-size: 1.125rem;
  715. font-weight: 500;
  716. color: var(--text-muted);
  717. }
  718. .pricing-features {
  719. margin-bottom: 40px;
  720. }
  721. .pricing-features li {
  722. display: flex;
  723. align-items: center;
  724. gap: 14px;
  725. padding: 14px 0;
  726. border-bottom: 1px solid var(--border-color);
  727. font-size: 1rem;
  728. }
  729. .pricing-features li:last-child {
  730. border-bottom: none;
  731. }
  732. /* ===== CTA ===== */
  733. .cta {
  734. background: linear-gradient(135deg, var(--bg-secondary) 0%, #EEF2FF 100%);
  735. text-align: center;
  736. position: relative;
  737. overflow: hidden;
  738. }
  739. .cta::before {
  740. content: '';
  741. position: absolute;
  742. top: -50%;
  743. left: -50%;
  744. width: 200%;
  745. height: 200%;
  746. background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
  747. animation: rotate 30s linear infinite;
  748. }
  749. @keyframes rotate {
  750. from { transform: rotate(0deg); }
  751. to { transform: rotate(360deg); }
  752. }
  753. .cta-content {
  754. position: relative;
  755. z-index: 1;
  756. }
  757. .cta-content h2 {
  758. font-size: 3rem;
  759. font-weight: 800;
  760. margin-bottom: 20px;
  761. letter-spacing: -0.02em;
  762. }
  763. .cta-content p {
  764. font-size: 1.25rem;
  765. color: var(--text-secondary);
  766. margin-bottom: 40px;
  767. }
  768. /* ===== Footer ===== */
  769. .footer {
  770. padding: 80px 0 32px;
  771. background: var(--bg-primary);
  772. border-top: 1px solid var(--border-color);
  773. }
  774. .footer-content {
  775. display: grid;
  776. grid-template-columns: 1.5fr 2fr;
  777. gap: 80px;
  778. margin-bottom: 60px;
  779. }
  780. .footer-brand p {
  781. color: var(--text-secondary);
  782. margin-top: 20px;
  783. font-size: 1rem;
  784. line-height: 1.7;
  785. }
  786. .footer-links {
  787. display: grid;
  788. grid-template-columns: repeat(3, 1fr);
  789. gap: 40px;
  790. }
  791. .footer-col h4 {
  792. font-size: 0.875rem;
  793. font-weight: 700;
  794. text-transform: uppercase;
  795. letter-spacing: 0.08em;
  796. color: var(--text-primary);
  797. margin-bottom: 24px;
  798. }
  799. .footer-col a {
  800. display: block;
  801. color: var(--text-secondary);
  802. font-size: 0.95rem;
  803. padding: 8px 0;
  804. }
  805. .footer-col a:hover {
  806. color: var(--accent-blue);
  807. transform: translateX(4px);
  808. }
  809. .footer-bottom {
  810. text-align: center;
  811. padding-top: 32px;
  812. border-top: 1px solid var(--border-color);
  813. }
  814. .footer-bottom p {
  815. color: var(--text-muted);
  816. font-size: 0.875rem;
  817. }
  818. /* ===== Responsive ===== */
  819. @media (max-width: 1024px) {
  820. .hero .container {
  821. grid-template-columns: 1fr;
  822. text-align: center;
  823. }
  824. .hero-content {
  825. order: 1;
  826. }
  827. .hero-visual {
  828. order: 2;
  829. }
  830. .hero-desc {
  831. margin-left: auto;
  832. margin-right: auto;
  833. }
  834. .hero-actions {
  835. justify-content: center;
  836. }
  837. .hero-stats {
  838. justify-content: center;
  839. }
  840. .workflow-preview {
  841. transform: none;
  842. }
  843. .features-grid {
  844. grid-template-columns: repeat(2, 1fr);
  845. }
  846. .arch-content {
  847. grid-template-columns: 1fr;
  848. text-align: center;
  849. }
  850. .arch-list {
  851. align-items: center;
  852. }
  853. }
  854. @media (max-width: 768px) {
  855. .nav-links {
  856. display: none;
  857. }
  858. .hero h1 {
  859. font-size: 2.75rem;
  860. }
  861. .section-header h2 {
  862. font-size: 2.25rem;
  863. }
  864. .features-grid {
  865. grid-template-columns: 1fr;
  866. }
  867. .steps {
  868. flex-direction: column;
  869. gap: 48px;
  870. }
  871. .step-connector {
  872. width: 3px;
  873. height: 60px;
  874. margin: 0;
  875. }
  876. .step-connector::after {
  877. right: -4px;
  878. top: auto;
  879. bottom: -6px;
  880. }
  881. .pricing-cards {
  882. flex-direction: column;
  883. align-items: center;
  884. }
  885. .footer-content {
  886. grid-template-columns: 1fr;
  887. text-align: center;
  888. }
  889. .footer-links {
  890. grid-template-columns: 1fr;
  891. gap: 32px;
  892. }
  893. }
  894. @media (max-width: 480px) {
  895. .hero h1 {
  896. font-size: 2.25rem;
  897. }
  898. .hero-stats {
  899. flex-direction: column;
  900. gap: 24px;
  901. }
  902. .hero-actions {
  903. flex-direction: column;
  904. }
  905. .section-header h2 {
  906. font-size: 1.875rem;
  907. }
  908. .cta-content h2 {
  909. font-size: 2rem;
  910. }
  911. }