@lemonppt/themes 0.1.6 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15,12 +15,18 @@
15
15
  --lp-border: rgba(255, 255, 255, 0.12);
16
16
  --lp-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
17
17
  --lp-font: Inter, "Noto Sans SC", system-ui, sans-serif;
18
- --lp-font-mono: JetBrains Mono, "SF Mono", monospace;
18
+ --lp-font-mono: "Space Mono", "JetBrains Mono", ui-monospace, monospace;
19
19
  --lp-radius-small: 6px;
20
20
  --lp-radius-medium: 12px;
21
21
  --lp-radius-large: 16px;
22
22
  }
23
23
 
24
+ h1,
25
+ h2,
26
+ h3 {
27
+ font-family: 'Space Grotesk', Inter, 'Noto Sans SC', system-ui, sans-serif;
28
+ }
29
+
24
30
  * {
25
31
  box-sizing: border-box;
26
32
  }
@@ -1256,654 +1262,549 @@ body {
1256
1262
  line-height: 1.55;
1257
1263
  }
1258
1264
 
1259
- /* Pricing v1 */
1260
- .lp-pricing-v1 {
1261
- justify-content: center;
1265
+ /* Timeline v2 */
1266
+ .lp-timeline-v2 {
1267
+ justify-content: flex-start;
1268
+ padding: 64px 80px;
1262
1269
  }
1263
1270
 
1264
- .lp-pricing-header {
1265
- margin-bottom: 56px;
1271
+ .lp-timeline-v2-header {
1272
+ margin-bottom: 40px;
1266
1273
  }
1267
1274
 
1268
- .lp-pricing-grid {
1269
- display: grid;
1270
- grid-template-columns: repeat(3, 1fr);
1275
+ .lp-timeline-v2-list {
1276
+ display: flex;
1277
+ flex-direction: column;
1271
1278
  gap: 28px;
1272
1279
  width: 100%;
1273
- max-width: 1100px;
1274
- align-items: center;
1280
+ max-width: 1000px;
1281
+ margin: 0 auto;
1275
1282
  }
1276
1283
 
1277
- .lp-pricing-card {
1278
- background: var(--lp-surface-elevated);
1279
- border: 1px solid rgba(6, 182, 212, 0.15);
1280
- border-radius: 16px;
1281
- padding: 36px 28px;
1282
- text-align: center;
1284
+ .lp-timeline-v2-item {
1285
+ display: flex;
1286
+ gap: 20px;
1287
+ align-items: flex-start;
1283
1288
  }
1284
1289
 
1285
- .lp-pricing-card-highlight {
1286
- transform: scale(1.05);
1287
- border-color: var(--lp-accent);
1288
- box-shadow: 0 0 24px rgba(6, 182, 212, 0.25);
1290
+ .lp-timeline-v2-marker {
1291
+ position: relative;
1292
+ display: flex;
1293
+ flex-direction: column;
1294
+ align-items: center;
1295
+ width: 24px;
1296
+ min-height: 100%;
1289
1297
  }
1290
1298
 
1291
- .lp-pricing-name {
1292
- font-size: 22px;
1293
- font-weight: 700;
1294
- color: var(--lp-text);
1295
- margin-bottom: 16px;
1299
+ .lp-timeline-v2-dot {
1300
+ width: 16px;
1301
+ height: 16px;
1302
+ border-radius: 50%;
1303
+ background: var(--lp-accent);
1304
+ flex-shrink: 0;
1296
1305
  }
1297
1306
 
1298
- .lp-pricing-price-row {
1299
- margin-bottom: 24px;
1307
+ .lp-timeline-v2-line {
1308
+ position: absolute;
1309
+ top: 24px;
1310
+ left: 50%;
1311
+ transform: translateX(-50%);
1312
+ width: 2px;
1313
+ height: calc(100% + 12px);
1314
+ background: rgba(255, 255, 255, 0.1);
1300
1315
  }
1301
1316
 
1302
- .lp-pricing-price {
1303
- font-size: 48px;
1304
- font-weight: 800;
1305
- color: var(--lp-text);
1317
+ .lp-timeline-v2-body {
1318
+ flex: 1;
1319
+ padding-top: 0;
1306
1320
  }
1307
1321
 
1308
- .lp-pricing-period {
1309
- font-size: 16px;
1310
- color: var(--lp-secondary);
1311
- margin-left: 4px;
1322
+ .lp-timeline-v2-date {
1323
+ font-size: 14px;
1324
+ font-weight: 700;
1325
+ color: var(--lp-accent);
1326
+ margin-bottom: 4px;
1327
+ font-family: var(--lp-font-mono);
1312
1328
  }
1313
1329
 
1314
- .lp-pricing-features {
1315
- list-style: none;
1316
- padding: 0;
1317
- margin: 0 0 28px;
1330
+ .lp-timeline-v2-title {
1331
+ font-size: 20px;
1332
+ font-weight: 700;
1333
+ color: var(--lp-text);
1334
+ margin-bottom: 6px;
1318
1335
  }
1319
1336
 
1320
- .lp-pricing-features li {
1321
- font-size: 16px;
1337
+ .lp-timeline-v2-description {
1338
+ font-size: 15px;
1322
1339
  color: var(--lp-secondary);
1323
- padding: 10px 0;
1324
- border-bottom: 1px solid rgba(255, 255, 255, 0.08);
1340
+ line-height: 1.5;
1325
1341
  }
1326
1342
 
1327
- .lp-pricing-features li:last-child {
1328
- border-bottom: none;
1343
+ /* Roadmap v2 */
1344
+ .lp-roadmap-v2 {
1345
+ justify-content: flex-start;
1346
+ padding: 64px 80px;
1329
1347
  }
1330
1348
 
1331
- .lp-pricing-cta {
1332
- display: inline-block;
1333
- background: var(--lp-accent);
1334
- color: var(--lp-textInverse);
1335
- font-size: 16px;
1336
- font-weight: 600;
1337
- padding: 12px 28px;
1338
- border-radius: 100px;
1349
+ .lp-roadmap-v2-header {
1350
+ margin-bottom: 48px;
1339
1351
  }
1340
1352
 
1341
- /* Additional layouts */
1342
- .lp-split-v1 {
1353
+ .lp-roadmap-v2-track {
1343
1354
  display: flex;
1355
+ gap: 32px;
1344
1356
  width: 100%;
1345
- height: 100%;
1346
- background: var(--lp-surface);
1357
+ max-width: 1040px;
1358
+ margin: 0 auto;
1359
+ align-items: stretch;
1347
1360
  }
1348
1361
 
1349
- .lp-split-v1-content {
1362
+ .lp-roadmap-v2-phase {
1350
1363
  flex: 1;
1351
- display: flex;
1352
- flex-direction: column;
1353
- justify-content: center;
1354
- padding: 80px;
1364
+ background: var(--lp-surface);
1365
+ border: 1px solid var(--lp-border);
1366
+ border-radius: 16px;
1367
+ padding: 24px;
1368
+ position: relative;
1369
+ min-height: 360px;
1355
1370
  }
1356
1371
 
1357
- .lp-split-v1-title {
1358
- margin-bottom: 32px;
1372
+ .lp-roadmap-v2-phase:not(:last-child) .lp-roadmap-v2-connector {
1373
+ position: absolute;
1374
+ top: 50%;
1375
+ right: -26px;
1376
+ width: 24px;
1377
+ height: 2px;
1378
+ background: var(--lp-border);
1359
1379
  }
1360
1380
 
1361
- .lp-split-v1-points {
1381
+ .lp-roadmap-v2-phase-title {
1382
+ font-size: 20px;
1383
+ font-weight: 700;
1384
+ color: var(--lp-accent);
1385
+ margin-bottom: 16px;
1386
+ }
1387
+
1388
+ .lp-roadmap-v2-goals {
1362
1389
  list-style: none;
1363
1390
  padding: 0;
1364
1391
  margin: 0;
1365
1392
  }
1366
1393
 
1367
- .lp-split-v1-points li {
1368
- font-size: 20px;
1394
+ .lp-roadmap-v2-goal-item {
1395
+ font-size: 16px;
1369
1396
  color: var(--lp-secondary);
1370
- padding: 12px 0;
1371
- border-bottom: 1px solid var(--lp-border);
1397
+ padding: 6px 0 6px 14px;
1398
+ position: relative;
1372
1399
  }
1373
1400
 
1374
- .lp-split-v1-points li:last-child {
1375
- border-bottom: none;
1401
+ .lp-roadmap-v2-goal-item::before {
1402
+ content: '•';
1403
+ position: absolute;
1404
+ left: 0;
1405
+ color: var(--lp-accent);
1376
1406
  }
1377
1407
 
1378
- .lp-split-v1-media {
1379
- flex: 1;
1380
- position: relative;
1381
- background: var(--lp-bg);
1408
+ /* Pricing v2 */
1409
+ .lp-pricing-v2 {
1410
+ justify-content: flex-start;
1411
+ padding: 64px 80px;
1382
1412
  }
1383
1413
 
1384
- .lp-split-v1-media img {
1385
- width: 100%;
1386
- height: 100%;
1387
- object-fit: cover;
1414
+ .lp-pricing-v2-header {
1415
+ margin-bottom: 48px;
1388
1416
  }
1389
1417
 
1390
- .lp-split-v1-placeholder {
1418
+ .lp-pricing-v2-grid {
1419
+ display: grid;
1420
+ grid-template-columns: repeat(3, 1fr);
1421
+ gap: 28px;
1391
1422
  width: 100%;
1392
- height: 100%;
1393
- background: var(--lp-bg);
1394
- border: 2px dashed var(--lp-border);
1423
+ max-width: 1040px;
1424
+ margin: 0 auto;
1395
1425
  }
1396
1426
 
1397
- .lp-stats-v1 {
1398
- width: 100%;
1399
- height: 100%;
1400
- padding: 80px;
1427
+ .lp-pricing-v2-card {
1401
1428
  background: var(--lp-surface);
1429
+ border: 1px solid var(--lp-border);
1430
+ border-radius: 16px;
1431
+ padding: 32px;
1402
1432
  display: flex;
1403
1433
  flex-direction: column;
1404
1434
  }
1405
1435
 
1406
- .lp-stats-v1-header {
1407
- margin-bottom: 48px;
1436
+ .lp-pricing-v2-card-highlighted {
1437
+ border-color: var(--lp-accent);
1438
+ background: var(--lp-accent);
1408
1439
  }
1409
1440
 
1410
- .lp-stats-v1-grid {
1411
- display: grid;
1412
- grid-template-columns: repeat(2, 1fr);
1413
- gap: 24px;
1414
- flex: 1;
1441
+ .lp-pricing-v2-card-highlighted .lp-pricing-v2-name,
1442
+ .lp-pricing-v2-card-highlighted .lp-pricing-v2-price,
1443
+ .lp-pricing-v2-card-highlighted .lp-pricing-v2-feature-item,
1444
+ .lp-pricing-v2-card-highlighted .lp-pricing-v2-avatar-placeholder {
1445
+ color: #fff;
1415
1446
  }
1416
1447
 
1417
- .lp-stats-v1-card {
1418
- background: var(--lp-bg);
1419
- border-radius: 16px;
1420
- padding: 32px;
1421
- display: flex;
1422
- flex-direction: column;
1423
- justify-content: center;
1448
+ .lp-pricing-v2-card-highlighted .lp-pricing-v2-period,
1449
+ .lp-pricing-v2-card-highlighted .lp-pricing-v2-feature-item::before {
1450
+ color: rgba(255, 255, 255, 0.8);
1424
1451
  }
1425
1452
 
1426
- .lp-stats-v1-label {
1427
- font-size: 16px;
1428
- color: var(--lp-secondary);
1429
- margin-bottom: 12px;
1453
+ .lp-pricing-v2-name {
1454
+ font-size: 22px;
1455
+ font-weight: 700;
1456
+ margin-bottom: 16px;
1457
+ color: var(--lp-text);
1430
1458
  }
1431
1459
 
1432
- .lp-stats-v1-value-row {
1433
- margin-bottom: 8px;
1460
+ .lp-pricing-v2-price-row {
1461
+ margin-bottom: 20px;
1462
+ display: flex;
1463
+ align-items: baseline;
1464
+ gap: 4px;
1434
1465
  }
1435
1466
 
1436
- .lp-stats-v1-value {
1467
+ .lp-pricing-v2-price {
1437
1468
  font-size: 48px;
1438
1469
  font-weight: 800;
1439
- color: var(--lp-text);
1470
+ color: var(--lp-accent);
1440
1471
  }
1441
1472
 
1442
- .lp-stats-v1-unit {
1443
- font-size: 20px;
1473
+ .lp-pricing-v2-period {
1474
+ font-size: 16px;
1444
1475
  color: var(--lp-secondary);
1445
- margin-left: 4px;
1446
1476
  }
1447
1477
 
1448
- .lp-stats-v1-change {
1449
- font-size: 14px;
1450
- color: var(--lp-accent);
1451
- }
1452
-
1453
- .lp-gallery-v1 {
1454
- width: 100%;
1455
- height: 100%;
1456
- padding: 80px;
1457
- background: var(--lp-surface);
1478
+ .lp-pricing-v2-features {
1479
+ list-style: none;
1480
+ padding: 0;
1481
+ margin: 0;
1458
1482
  display: flex;
1459
1483
  flex-direction: column;
1484
+ gap: 10px;
1460
1485
  }
1461
1486
 
1462
- .lp-gallery-v1-header {
1463
- margin-bottom: 40px;
1487
+ .lp-pricing-v2-feature-item {
1488
+ font-size: 16px;
1489
+ color: var(--lp-secondary);
1490
+ padding-left: 18px;
1491
+ position: relative;
1464
1492
  }
1465
1493
 
1466
- .lp-gallery-v1-grid {
1467
- display: grid;
1468
- grid-template-columns: repeat(2, 1fr);
1469
- gap: 24px;
1470
- flex: 1;
1494
+ .lp-pricing-v2-feature-item::before {
1495
+ content: '✓';
1496
+ position: absolute;
1497
+ left: 0;
1498
+ color: var(--lp-accent);
1499
+ font-weight: 700;
1471
1500
  }
1472
1501
 
1473
- .lp-gallery-v1-item {
1474
- position: relative;
1475
- border-radius: 12px;
1476
- overflow: hidden;
1477
- background: var(--lp-bg);
1502
+ /* Feature v2 */
1503
+ .lp-feature-v2 {
1504
+ justify-content: flex-start;
1505
+ padding: 64px 80px;
1478
1506
  }
1479
1507
 
1480
- .lp-gallery-v1-item img {
1481
- width: 100%;
1482
- height: 100%;
1483
- object-fit: cover;
1508
+ .lp-feature-v2-header {
1509
+ margin-bottom: 48px;
1484
1510
  }
1485
1511
 
1486
- .lp-gallery-v1-placeholder {
1512
+ .lp-feature-v2-grid {
1513
+ display: grid;
1514
+ grid-template-columns: repeat(3, 1fr);
1515
+ gap: 32px;
1487
1516
  width: 100%;
1488
- height: 100%;
1489
- background: var(--lp-bg);
1490
- border: 2px dashed var(--lp-border);
1517
+ max-width: 1040px;
1518
+ margin: 0 auto;
1491
1519
  }
1492
1520
 
1493
- .lp-gallery-v1-caption {
1494
- position: absolute;
1495
- bottom: 0;
1496
- left: 0;
1497
- right: 0;
1498
- padding: 12px 16px;
1499
- background: rgba(0, 0, 0, 0.55);
1500
- color: #ffffff;
1501
- font-size: 14px;
1521
+ .lp-feature-v2-card {
1522
+ background: var(--lp-surface);
1523
+ border: 1px solid var(--lp-border);
1524
+ border-radius: 16px;
1525
+ padding: 32px;
1502
1526
  }
1503
1527
 
1504
- .lp-faq-v1 {
1505
- width: 100%;
1506
- height: 100%;
1507
- padding: 80px;
1508
- background: var(--lp-surface);
1509
- display: flex;
1510
- flex-direction: column;
1528
+ .lp-feature-v2-icon {
1529
+ font-size: 36px;
1530
+ color: var(--lp-accent);
1531
+ margin-bottom: 16px;
1511
1532
  }
1512
1533
 
1513
- .lp-faq-v1-header {
1514
- margin-bottom: 40px;
1534
+ .lp-feature-v2-title {
1535
+ font-size: 24px;
1536
+ font-weight: 700;
1537
+ margin-bottom: 12px;
1538
+ color: var(--lp-text);
1515
1539
  }
1516
1540
 
1517
- .lp-faq-v1-list {
1518
- display: flex;
1519
- flex-direction: column;
1520
- gap: 24px;
1541
+ .lp-feature-v2-description {
1542
+ font-size: 16px;
1543
+ color: var(--lp-secondary);
1544
+ line-height: 1.55;
1521
1545
  }
1522
1546
 
1523
- .lp-faq-v1-item {
1524
- background: var(--lp-bg);
1525
- border-radius: 12px;
1526
- padding: 24px;
1547
+ /* Team v2 */
1548
+ .lp-team-v2 {
1549
+ justify-content: flex-start;
1550
+ padding: 64px 80px;
1527
1551
  }
1528
1552
 
1529
- .lp-faq-v1-question,
1530
- .lp-faq-v1-answer {
1531
- display: flex;
1532
- gap: 12px;
1533
- align-items: flex-start;
1553
+ .lp-team-v2-header {
1554
+ margin-bottom: 48px;
1534
1555
  }
1535
1556
 
1536
- .lp-faq-v1-question {
1537
- font-size: 18px;
1538
- font-weight: 600;
1539
- color: var(--lp-text);
1540
- margin-bottom: 12px;
1557
+ .lp-team-v2-grid {
1558
+ display: grid;
1559
+ grid-template-columns: repeat(4, 1fr);
1560
+ gap: 24px;
1561
+ width: 100%;
1562
+ max-width: 1040px;
1563
+ margin: 0 auto;
1541
1564
  }
1542
1565
 
1543
- .lp-faq-v1-answer {
1544
- font-size: 16px;
1545
- color: var(--lp-secondary);
1546
- line-height: 1.6;
1566
+ .lp-team-v2-card {
1567
+ background: var(--lp-surface);
1568
+ border: 1px solid var(--lp-border);
1569
+ border-radius: 16px;
1570
+ padding: 24px;
1571
+ text-align: center;
1547
1572
  }
1548
1573
 
1549
- .lp-faq-v1-q,
1550
- .lp-faq-v1-a {
1551
- display: inline-flex;
1574
+ .lp-team-v2-avatar {
1575
+ width: 80px;
1576
+ height: 80px;
1577
+ border-radius: 50%;
1578
+ background: var(--lp-border);
1579
+ margin: 0 auto 16px;
1580
+ background-size: cover;
1581
+ background-position: center;
1582
+ display: flex;
1552
1583
  align-items: center;
1553
1584
  justify-content: center;
1554
- width: 24px;
1555
- height: 24px;
1556
- border-radius: 50%;
1557
- font-size: 12px;
1558
- font-weight: 700;
1559
- flex-shrink: 0;
1560
1585
  }
1561
1586
 
1562
- .lp-faq-v1-q {
1563
- background: var(--lp-accent);
1564
- color: var(--lp-textInverse);
1587
+ .lp-team-v2-avatar-placeholder {
1588
+ font-size: 28px;
1589
+ font-weight: 700;
1590
+ color: var(--lp-text);
1565
1591
  }
1566
1592
 
1567
- .lp-faq-v1-a {
1568
- background: var(--lp-border);
1593
+ .lp-team-v2-name {
1594
+ font-size: 20px;
1595
+ font-weight: 700;
1596
+ margin-bottom: 4px;
1569
1597
  color: var(--lp-text);
1570
1598
  }
1571
1599
 
1572
- .lp-partners-v1 {
1573
- width: 100%;
1574
- height: 100%;
1575
- padding: 80px;
1576
- background: var(--lp-surface);
1577
- display: flex;
1578
- flex-direction: column;
1600
+ .lp-team-v2-role {
1601
+ font-size: 14px;
1602
+ color: var(--lp-accent);
1603
+ margin-bottom: 12px;
1579
1604
  }
1580
1605
 
1581
- .lp-partners-v1-header {
1582
- margin-bottom: 48px;
1606
+ .lp-team-v2-bio {
1607
+ font-size: 14px;
1608
+ color: var(--lp-secondary);
1609
+ line-height: 1.5;
1583
1610
  }
1584
1611
 
1585
- .lp-partners-v1-grid {
1586
- display: grid;
1587
- grid-template-columns: repeat(4, 1fr);
1588
- gap: 24px;
1589
- flex: 1;
1590
- align-content: center;
1612
+ /* Metric v3 */
1613
+ .lp-metric-v3 {
1614
+ justify-content: flex-start;
1615
+ padding: 64px 80px;
1591
1616
  }
1592
1617
 
1593
- .lp-partners-v1-card {
1594
- background: var(--lp-bg);
1595
- border-radius: 12px;
1596
- padding: 24px;
1597
- display: flex;
1598
- flex-direction: column;
1599
- align-items: center;
1600
- justify-content: center;
1601
- gap: 12px;
1618
+ .lp-metric-v3-header {
1619
+ margin-bottom: 48px;
1602
1620
  }
1603
1621
 
1604
- .lp-partners-v1-card img {
1605
- max-width: 100%;
1606
- max-height: 48px;
1607
- object-fit: contain;
1622
+ .lp-metric-v3-grid {
1623
+ display: grid;
1624
+ grid-template-columns: repeat(2, 1fr);
1625
+ gap: 40px;
1626
+ width: 100%;
1627
+ max-width: 960px;
1628
+ margin: 0 auto;
1608
1629
  }
1609
1630
 
1610
- .lp-partners-v1-logo-placeholder {
1611
- width: 64px;
1612
- height: 64px;
1613
- border-radius: 50%;
1614
- background: var(--lp-bg);
1615
- border: 2px dashed var(--lp-border);
1631
+ .lp-metric-v3-card {
1632
+ background: var(--lp-surface);
1633
+ border: 1px solid var(--lp-border);
1634
+ border-radius: 16px;
1635
+ padding: 40px;
1616
1636
  }
1617
1637
 
1618
- .lp-partners-v1-name {
1619
- font-size: 14px;
1638
+ .lp-metric-v3-label {
1639
+ font-size: 16px;
1620
1640
  color: var(--lp-secondary);
1621
- text-align: center;
1641
+ margin-bottom: 12px;
1622
1642
  }
1623
1643
 
1624
- .lp-testimonial-v1 {
1625
- width: 100%;
1626
- height: 100%;
1627
- padding: 80px;
1628
- background: var(--lp-surface);
1644
+ .lp-metric-v3-value-row {
1629
1645
  display: flex;
1630
- align-items: center;
1631
- justify-content: center;
1646
+ align-items: baseline;
1647
+ gap: 8px;
1648
+ margin-bottom: 12px;
1632
1649
  }
1633
1650
 
1634
- .lp-testimonial-v1-content {
1635
- max-width: 900px;
1651
+ .lp-metric-v3-value {
1652
+ font-size: 80px;
1653
+ font-weight: 900;
1654
+ color: var(--lp-text);
1655
+ line-height: 1;
1636
1656
  }
1637
1657
 
1638
- .lp-testimonial-v1-quote {
1639
- position: relative;
1640
- margin-bottom: 40px;
1658
+ .lp-metric-v3-unit {
1659
+ font-size: 24px;
1660
+ color: var(--lp-secondary);
1641
1661
  }
1642
1662
 
1643
- .lp-testimonial-v1-mark {
1644
- position: absolute;
1645
- top: -24px;
1646
- left: -16px;
1647
- font-size: 120px;
1648
- line-height: 1;
1663
+ .lp-metric-v3-change {
1664
+ font-size: 18px;
1665
+ font-weight: 700;
1649
1666
  color: var(--lp-accent);
1650
- opacity: 0.2;
1651
- font-family: Georgia, serif;
1652
1667
  }
1653
1668
 
1654
- .lp-testimonial-v1-quote blockquote {
1655
- position: relative;
1656
- font-size: 36px;
1657
- font-weight: 500;
1658
- line-height: 1.4;
1659
- color: var(--lp-text);
1660
- margin: 0;
1661
- padding: 0;
1669
+ /* Pricing v1 */
1670
+ .lp-pricing-v1 {
1671
+ justify-content: center;
1662
1672
  }
1663
1673
 
1664
- .lp-testimonial-v1-author {
1665
- display: flex;
1674
+ .lp-pricing-header {
1675
+ margin-bottom: 56px;
1676
+ }
1677
+
1678
+ .lp-pricing-grid {
1679
+ display: grid;
1680
+ grid-template-columns: repeat(3, 1fr);
1681
+ gap: 28px;
1682
+ width: 100%;
1683
+ max-width: 1100px;
1666
1684
  align-items: center;
1667
- gap: 20px;
1668
1685
  }
1669
1686
 
1670
- .lp-testimonial-v1-author img,
1671
- .lp-testimonial-v1-avatar-placeholder {
1672
- width: 64px;
1673
- height: 64px;
1674
- border-radius: 50%;
1675
- object-fit: cover;
1687
+ .lp-pricing-card {
1688
+ background: var(--lp-surface-elevated);
1689
+ border: 1px solid rgba(6, 182, 212, 0.15);
1690
+ border-radius: 16px;
1691
+ padding: 36px 28px;
1692
+ text-align: center;
1676
1693
  }
1677
1694
 
1678
- .lp-testimonial-v1-avatar-placeholder {
1679
- background: var(--lp-bg);
1680
- border: 2px dashed var(--lp-border);
1695
+ .lp-pricing-card-highlight {
1696
+ transform: scale(1.05);
1697
+ border-color: var(--lp-accent);
1698
+ box-shadow: 0 0 24px rgba(6, 182, 212, 0.25);
1681
1699
  }
1682
1700
 
1683
- .lp-testimonial-v1-name {
1684
- font-size: 18px;
1685
- font-weight: 600;
1701
+ .lp-pricing-name {
1702
+ font-size: 22px;
1703
+ font-weight: 700;
1686
1704
  color: var(--lp-text);
1705
+ margin-bottom: 16px;
1687
1706
  }
1688
1707
 
1689
- .lp-testimonial-v1-role {
1690
- font-size: 14px;
1691
- color: var(--lp-secondary);
1708
+ .lp-pricing-price-row {
1709
+ margin-bottom: 24px;
1692
1710
  }
1693
1711
 
1694
- .lp-roadmap-v1 {
1695
- width: 100%;
1696
- height: 100%;
1697
- padding: 80px;
1698
- background: var(--lp-surface);
1699
- display: flex;
1700
- flex-direction: column;
1712
+ .lp-pricing-price {
1713
+ font-size: 48px;
1714
+ font-weight: 800;
1715
+ color: var(--lp-text);
1701
1716
  }
1702
1717
 
1703
- .lp-roadmap-v1-header {
1704
- margin-bottom: 48px;
1718
+ .lp-pricing-period {
1719
+ font-size: 16px;
1720
+ color: var(--lp-secondary);
1721
+ margin-left: 4px;
1705
1722
  }
1706
1723
 
1707
- .lp-roadmap-v1-track {
1708
- position: relative;
1709
- padding-left: 24px;
1710
- flex: 1;
1711
- overflow-y: auto;
1724
+ .lp-pricing-features {
1725
+ list-style: none;
1726
+ padding: 0;
1727
+ margin: 0 0 28px;
1712
1728
  }
1713
1729
 
1714
- .lp-roadmap-v1-track::before {
1715
- content: '';
1716
- position: absolute;
1717
- top: 12px;
1718
- bottom: 12px;
1719
- left: 7px;
1720
- width: 2px;
1721
- background: var(--lp-border);
1730
+ .lp-pricing-features li {
1731
+ font-size: 16px;
1732
+ color: var(--lp-secondary);
1733
+ padding: 10px 0;
1734
+ border-bottom: 1px solid rgba(255, 255, 255, 0.08);
1722
1735
  }
1723
1736
 
1724
- .lp-roadmap-v1-phase {
1725
- position: relative;
1726
- padding-left: 36px;
1727
- margin-bottom: 32px;
1737
+ .lp-pricing-features li:last-child {
1738
+ border-bottom: none;
1728
1739
  }
1729
1740
 
1730
- .lp-roadmap-v1-dot {
1731
- position: absolute;
1732
- top: 6px;
1733
- left: 0;
1734
- width: 16px;
1735
- height: 16px;
1736
- border-radius: 50%;
1741
+ .lp-pricing-cta {
1742
+ display: inline-block;
1737
1743
  background: var(--lp-accent);
1738
- border: 3px solid var(--lp-surface);
1739
- box-shadow: 0 0 0 2px var(--lp-accent);
1740
- }
1741
-
1742
- .lp-roadmap-v1-top {
1743
- display: flex;
1744
- align-items: center;
1745
- gap: 12px;
1746
- margin-bottom: 8px;
1747
- }
1748
-
1749
- .lp-roadmap-v1-title {
1750
- font-size: 20px;
1751
- font-weight: 700;
1752
- color: var(--lp-text);
1753
- }
1754
-
1755
- .lp-roadmap-v1-status {
1756
- font-size: 12px;
1744
+ color: var(--lp-textInverse);
1745
+ font-size: 16px;
1757
1746
  font-weight: 600;
1758
- color: var(--lp-accent);
1759
- background: rgba(6, 182, 212, 0.12);
1760
- padding: 4px 10px;
1747
+ padding: 12px 28px;
1761
1748
  border-radius: 100px;
1762
1749
  }
1763
1750
 
1764
- .lp-roadmap-v1-description {
1765
- font-size: 16px;
1766
- color: var(--lp-secondary);
1767
- line-height: 1.6;
1768
- }
1769
-
1770
- @media print {
1771
- html, body {
1772
- display: block;
1773
- background: var(--lp-bg) !important;
1774
- -webkit-print-color-adjust: exact;
1775
- print-color-adjust: exact;
1776
- }
1777
-
1778
- .lp-editor-bar,
1779
- .lp-nav,
1780
- .lp-page-counter,
1781
- .lp-hint {
1782
- display: none !important;
1783
- }
1784
-
1785
- .lp-deck {
1786
- box-shadow: none;
1787
- border-radius: 0;
1788
- width: 100% !important;
1789
- height: auto !important;
1790
- overflow: visible;
1791
- background: transparent !important;
1792
- }
1793
-
1794
- .lp-slide-wrapper {
1795
- position: relative;
1796
- transform: none !important;
1797
- opacity: 1 !important;
1798
- width: 100% !important;
1799
- height: 720px !important;
1800
- page-break-after: always;
1801
- break-after: page;
1802
- z-index: auto !important;
1803
- }
1804
-
1805
- .lp-slide {
1806
- border: none;
1807
- border-radius: 0;
1808
- box-shadow: none;
1809
- background: var(--lp-surface) !important;
1810
- }
1811
-
1812
- .lp-slide-wrapper:last-child {
1813
- page-break-after: auto;
1814
- break-after: auto;
1815
- }
1816
- }
1817
- .lp-testimonial-v2 {
1751
+ /* Additional layouts */
1752
+ .lp-split-v1 {
1753
+ display: flex;
1818
1754
  width: 100%;
1819
1755
  height: 100%;
1820
- padding: 80px;
1821
1756
  background: var(--lp-surface);
1822
- display: flex;
1823
- align-items: center;
1824
- justify-content: center;
1825
- }
1826
-
1827
- .lp-testimonial-v2-card {
1828
- width: 100%;
1829
- max-width: 900px;
1830
- background: var(--lp-bg);
1831
- border: 1px solid var(--lp-border);
1832
- border-radius: var(--lp-radius-large);
1833
- padding: 48px;
1834
- position: relative;
1835
- }
1836
-
1837
- .lp-testimonial-v2-logo {
1838
- position: absolute;
1839
- top: 32px;
1840
- right: 40px;
1841
- height: 32px;
1842
- max-width: 120px;
1843
- object-fit: contain;
1844
1757
  }
1845
1758
 
1846
- .lp-testimonial-v2-company {
1847
- position: absolute;
1848
- top: 32px;
1849
- right: 40px;
1850
- font-size: 14px;
1851
- font-weight: 600;
1852
- color: var(--lp-secondary);
1853
- text-transform: uppercase;
1854
- letter-spacing: 0.05em;
1759
+ .lp-split-v1-content {
1760
+ flex: 1;
1761
+ display: flex;
1762
+ flex-direction: column;
1763
+ justify-content: center;
1764
+ padding: 80px;
1855
1765
  }
1856
1766
 
1857
- .lp-testimonial-v2-quote {
1858
- margin: 32px 0 40px;
1767
+ .lp-split-v1-title {
1768
+ margin-bottom: 32px;
1859
1769
  }
1860
1770
 
1861
- .lp-testimonial-v2-quote blockquote {
1862
- font-size: 32px;
1863
- font-weight: 500;
1864
- line-height: 1.4;
1865
- color: var(--lp-text);
1866
- margin: 0;
1771
+ .lp-split-v1-points {
1772
+ list-style: none;
1867
1773
  padding: 0;
1774
+ margin: 0;
1868
1775
  }
1869
1776
 
1870
- .lp-testimonial-v2-footer {
1871
- display: flex;
1872
- align-items: flex-end;
1873
- justify-content: space-between;
1874
- gap: 24px;
1777
+ .lp-split-v1-points li {
1778
+ font-size: 20px;
1779
+ color: var(--lp-secondary);
1780
+ padding: 12px 0;
1781
+ border-bottom: 1px solid var(--lp-border);
1875
1782
  }
1876
1783
 
1877
- .lp-testimonial-v2-name {
1878
- font-size: 18px;
1879
- font-weight: 600;
1880
- color: var(--lp-text);
1784
+ .lp-split-v1-points li:last-child {
1785
+ border-bottom: none;
1881
1786
  }
1882
1787
 
1883
- .lp-testimonial-v2-role {
1884
- font-size: 14px;
1885
- color: var(--lp-secondary);
1886
- margin-top: 4px;
1788
+ .lp-split-v1-media {
1789
+ flex: 1;
1790
+ position: relative;
1791
+ background: var(--lp-bg);
1887
1792
  }
1888
1793
 
1889
- .lp-testimonial-v2-metric {
1890
- text-align: right;
1891
- flex-shrink: 0;
1794
+ .lp-split-v1-media img {
1795
+ width: 100%;
1796
+ height: 100%;
1797
+ object-fit: cover;
1892
1798
  }
1893
1799
 
1894
- .lp-testimonial-v2-metric-value {
1895
- font-size: 36px;
1896
- font-weight: 700;
1897
- color: var(--lp-accent);
1898
- line-height: 1;
1800
+ .lp-split-v1-placeholder {
1801
+ width: 100%;
1802
+ height: 100%;
1803
+ background: var(--lp-bg);
1804
+ border: 2px dashed var(--lp-border);
1899
1805
  }
1900
1806
 
1901
- .lp-testimonial-v2-metric-label {
1902
- font-size: 13px;
1903
- color: var(--lp-secondary);
1904
- margin-top: 4px;
1905
- }
1906
- .lp-chart-v2 {
1807
+ .lp-stats-v1 {
1907
1808
  width: 100%;
1908
1809
  height: 100%;
1909
1810
  padding: 80px;
@@ -1912,44 +1813,54 @@ body {
1912
1813
  flex-direction: column;
1913
1814
  }
1914
1815
 
1915
- .lp-chart-v2-header {
1916
- margin-bottom: 40px;
1816
+ .lp-stats-v1-header {
1817
+ margin-bottom: 48px;
1917
1818
  }
1918
1819
 
1919
- .lp-chart-v2-body {
1820
+ .lp-stats-v1-grid {
1821
+ display: grid;
1822
+ grid-template-columns: repeat(2, 1fr);
1823
+ gap: 24px;
1920
1824
  flex: 1;
1825
+ }
1826
+
1827
+ .lp-stats-v1-card {
1828
+ background: var(--lp-bg);
1829
+ border-radius: 16px;
1830
+ padding: 32px;
1921
1831
  display: flex;
1922
- align-items: center;
1832
+ flex-direction: column;
1923
1833
  justify-content: center;
1924
1834
  }
1925
1835
 
1926
- .lp-chart-v2-svg {
1927
- width: 100%;
1928
- max-width: 900px;
1929
- height: auto;
1836
+ .lp-stats-v1-label {
1837
+ font-size: 16px;
1838
+ color: var(--lp-secondary);
1839
+ margin-bottom: 12px;
1930
1840
  }
1931
1841
 
1932
- .lp-chart-v2-grid {
1933
- stroke: var(--lp-border);
1934
- stroke-width: 1;
1842
+ .lp-stats-v1-value-row {
1843
+ margin-bottom: 8px;
1935
1844
  }
1936
1845
 
1937
- .lp-chart-v2-axis-text {
1938
- fill: var(--lp-secondary);
1939
- font-size: 12px;
1940
- font-family: var(--lp-font-mono);
1846
+ .lp-stats-v1-value {
1847
+ font-size: 48px;
1848
+ font-weight: 800;
1849
+ color: var(--lp-text);
1941
1850
  }
1942
1851
 
1943
- .lp-chart-v2-bar {
1944
- opacity: 0.9;
1852
+ .lp-stats-v1-unit {
1853
+ font-size: 20px;
1854
+ color: var(--lp-secondary);
1855
+ margin-left: 4px;
1945
1856
  }
1946
1857
 
1947
- .lp-chart-v2-legend-text {
1948
- fill: var(--lp-secondary);
1949
- font-size: 12px;
1950
- font-family: var(--lp-font-body);
1858
+ .lp-stats-v1-change {
1859
+ font-size: 14px;
1860
+ color: var(--lp-accent);
1951
1861
  }
1952
- .lp-gallery-v2 {
1862
+
1863
+ .lp-gallery-v1 {
1953
1864
  width: 100%;
1954
1865
  height: 100%;
1955
1866
  padding: 80px;
@@ -1958,37 +1869,1101 @@ body {
1958
1869
  flex-direction: column;
1959
1870
  }
1960
1871
 
1961
- .lp-gallery-v2-header {
1872
+ .lp-gallery-v1-header {
1962
1873
  margin-bottom: 40px;
1963
1874
  }
1964
1875
 
1965
- .lp-gallery-v2-grid {
1876
+ .lp-gallery-v1-grid {
1966
1877
  display: grid;
1967
- grid-template-columns: repeat(3, 1fr);
1878
+ grid-template-columns: repeat(2, 1fr);
1968
1879
  gap: 24px;
1969
1880
  flex: 1;
1970
- align-content: start;
1971
1881
  }
1972
1882
 
1973
- .lp-gallery-v2-item {
1974
- display: flex;
1975
- flex-direction: column;
1976
- gap: 10px;
1883
+ .lp-gallery-v1-item {
1884
+ position: relative;
1885
+ border-radius: 12px;
1886
+ overflow: hidden;
1887
+ background: var(--lp-bg);
1977
1888
  }
1978
1889
 
1979
- .lp-gallery-v2-item img,
1980
- .lp-gallery-v2-placeholder {
1890
+ .lp-gallery-v1-item img {
1981
1891
  width: 100%;
1982
- aspect-ratio: 16 / 10;
1892
+ height: 100%;
1983
1893
  object-fit: cover;
1984
- border-radius: var(--lp-radius-medium);
1894
+ }
1895
+
1896
+ .lp-gallery-v1-placeholder {
1897
+ width: 100%;
1898
+ height: 100%;
1985
1899
  background: var(--lp-bg);
1986
- border: 1px solid var(--lp-border);
1900
+ border: 2px dashed var(--lp-border);
1987
1901
  }
1988
1902
 
1989
- .lp-gallery-v2-caption {
1903
+ .lp-gallery-v1-caption {
1904
+ position: absolute;
1905
+ bottom: 0;
1906
+ left: 0;
1907
+ right: 0;
1908
+ padding: 12px 16px;
1909
+ background: rgba(0, 0, 0, 0.55);
1910
+ color: #ffffff;
1911
+ font-size: 14px;
1912
+ }
1913
+
1914
+ .lp-faq-v1 {
1915
+ width: 100%;
1916
+ height: 100%;
1917
+ padding: 80px;
1918
+ background: var(--lp-surface);
1919
+ display: flex;
1920
+ flex-direction: column;
1921
+ }
1922
+
1923
+ .lp-faq-v1-header {
1924
+ margin-bottom: 40px;
1925
+ }
1926
+
1927
+ .lp-faq-v1-list {
1928
+ display: flex;
1929
+ flex-direction: column;
1930
+ gap: 24px;
1931
+ }
1932
+
1933
+ .lp-faq-v1-item {
1934
+ background: var(--lp-bg);
1935
+ border-radius: 12px;
1936
+ padding: 24px;
1937
+ }
1938
+
1939
+ .lp-faq-v1-question,
1940
+ .lp-faq-v1-answer {
1941
+ display: flex;
1942
+ gap: 12px;
1943
+ align-items: flex-start;
1944
+ }
1945
+
1946
+ .lp-faq-v1-question {
1947
+ font-size: 18px;
1948
+ font-weight: 600;
1949
+ color: var(--lp-text);
1950
+ margin-bottom: 12px;
1951
+ }
1952
+
1953
+ .lp-faq-v1-answer {
1954
+ font-size: 16px;
1955
+ color: var(--lp-secondary);
1956
+ line-height: 1.6;
1957
+ }
1958
+
1959
+ .lp-faq-v1-q,
1960
+ .lp-faq-v1-a {
1961
+ display: inline-flex;
1962
+ align-items: center;
1963
+ justify-content: center;
1964
+ width: 24px;
1965
+ height: 24px;
1966
+ border-radius: 50%;
1967
+ font-size: 12px;
1968
+ font-weight: 700;
1969
+ flex-shrink: 0;
1970
+ }
1971
+
1972
+ .lp-faq-v1-q {
1973
+ background: var(--lp-accent);
1974
+ color: var(--lp-textInverse);
1975
+ }
1976
+
1977
+ .lp-faq-v1-a {
1978
+ background: var(--lp-border);
1979
+ color: var(--lp-text);
1980
+ }
1981
+
1982
+ .lp-partners-v1 {
1983
+ width: 100%;
1984
+ height: 100%;
1985
+ padding: 80px;
1986
+ background: var(--lp-surface);
1987
+ display: flex;
1988
+ flex-direction: column;
1989
+ }
1990
+
1991
+ .lp-partners-v1-header {
1992
+ margin-bottom: 48px;
1993
+ }
1994
+
1995
+ .lp-partners-v1-grid {
1996
+ display: grid;
1997
+ grid-template-columns: repeat(4, 1fr);
1998
+ gap: 24px;
1999
+ flex: 1;
2000
+ align-content: center;
2001
+ }
2002
+
2003
+ .lp-partners-v1-card {
2004
+ background: var(--lp-bg);
2005
+ border-radius: 12px;
2006
+ padding: 24px;
2007
+ display: flex;
2008
+ flex-direction: column;
2009
+ align-items: center;
2010
+ justify-content: center;
2011
+ gap: 12px;
2012
+ }
2013
+
2014
+ .lp-partners-v1-card img {
2015
+ max-width: 100%;
2016
+ max-height: 48px;
2017
+ object-fit: contain;
2018
+ }
2019
+
2020
+ .lp-partners-v1-logo-placeholder {
2021
+ width: 64px;
2022
+ height: 64px;
2023
+ border-radius: 50%;
2024
+ background: var(--lp-bg);
2025
+ border: 2px dashed var(--lp-border);
2026
+ }
2027
+
2028
+ .lp-partners-v1-name {
1990
2029
  font-size: 14px;
1991
2030
  color: var(--lp-secondary);
1992
2031
  text-align: center;
2032
+ }
2033
+
2034
+ .lp-testimonial-v1 {
2035
+ width: 100%;
2036
+ height: 100%;
2037
+ padding: 80px;
2038
+ background: var(--lp-surface);
2039
+ display: flex;
2040
+ align-items: center;
2041
+ justify-content: center;
2042
+ }
2043
+
2044
+ .lp-testimonial-v1-content {
2045
+ max-width: 900px;
2046
+ }
2047
+
2048
+ .lp-testimonial-v1-quote {
2049
+ position: relative;
2050
+ margin-bottom: 40px;
2051
+ }
2052
+
2053
+ .lp-testimonial-v1-mark {
2054
+ position: absolute;
2055
+ top: -24px;
2056
+ left: -16px;
2057
+ font-size: 120px;
2058
+ line-height: 1;
2059
+ color: var(--lp-accent);
2060
+ opacity: 0.2;
2061
+ font-family: Georgia, serif;
2062
+ }
2063
+
2064
+ .lp-testimonial-v1-quote blockquote {
2065
+ position: relative;
2066
+ font-size: 36px;
2067
+ font-weight: 500;
1993
2068
  line-height: 1.4;
2069
+ color: var(--lp-text);
2070
+ margin: 0;
2071
+ padding: 0;
2072
+ }
2073
+
2074
+ .lp-testimonial-v1-author {
2075
+ display: flex;
2076
+ align-items: center;
2077
+ gap: 20px;
2078
+ }
2079
+
2080
+ .lp-testimonial-v1-author img,
2081
+ .lp-testimonial-v1-avatar-placeholder {
2082
+ width: 64px;
2083
+ height: 64px;
2084
+ border-radius: 50%;
2085
+ object-fit: cover;
2086
+ }
2087
+
2088
+ .lp-testimonial-v1-avatar-placeholder {
2089
+ background: var(--lp-bg);
2090
+ border: 2px dashed var(--lp-border);
2091
+ }
2092
+
2093
+ .lp-testimonial-v1-name {
2094
+ font-size: 18px;
2095
+ font-weight: 600;
2096
+ color: var(--lp-text);
2097
+ }
2098
+
2099
+ .lp-testimonial-v1-role {
2100
+ font-size: 14px;
2101
+ color: var(--lp-secondary);
2102
+ }
2103
+
2104
+ .lp-roadmap-v1 {
2105
+ width: 100%;
2106
+ height: 100%;
2107
+ padding: 80px;
2108
+ background: var(--lp-surface);
2109
+ display: flex;
2110
+ flex-direction: column;
2111
+ }
2112
+
2113
+ .lp-roadmap-v1-header {
2114
+ margin-bottom: 48px;
2115
+ }
2116
+
2117
+ .lp-roadmap-v1-track {
2118
+ position: relative;
2119
+ padding-left: 24px;
2120
+ flex: 1;
2121
+ overflow-y: auto;
2122
+ }
2123
+
2124
+ .lp-roadmap-v1-track::before {
2125
+ content: '';
2126
+ position: absolute;
2127
+ top: 12px;
2128
+ bottom: 12px;
2129
+ left: 7px;
2130
+ width: 2px;
2131
+ background: var(--lp-border);
2132
+ }
2133
+
2134
+ .lp-roadmap-v1-phase {
2135
+ position: relative;
2136
+ padding-left: 36px;
2137
+ margin-bottom: 32px;
2138
+ }
2139
+
2140
+ .lp-roadmap-v1-dot {
2141
+ position: absolute;
2142
+ top: 6px;
2143
+ left: 0;
2144
+ width: 16px;
2145
+ height: 16px;
2146
+ border-radius: 50%;
2147
+ background: var(--lp-accent);
2148
+ border: 3px solid var(--lp-surface);
2149
+ box-shadow: 0 0 0 2px var(--lp-accent);
2150
+ }
2151
+
2152
+ .lp-roadmap-v1-top {
2153
+ display: flex;
2154
+ align-items: center;
2155
+ gap: 12px;
2156
+ margin-bottom: 8px;
2157
+ }
2158
+
2159
+ .lp-roadmap-v1-title {
2160
+ font-size: 20px;
2161
+ font-weight: 700;
2162
+ color: var(--lp-text);
2163
+ }
2164
+
2165
+ .lp-roadmap-v1-status {
2166
+ font-size: 12px;
2167
+ font-weight: 600;
2168
+ color: var(--lp-accent);
2169
+ background: rgba(6, 182, 212, 0.12);
2170
+ padding: 4px 10px;
2171
+ border-radius: 100px;
2172
+ }
2173
+
2174
+ .lp-roadmap-v1-description {
2175
+ font-size: 16px;
2176
+ color: var(--lp-secondary);
2177
+ line-height: 1.6;
2178
+ }
2179
+
2180
+ @media print {
2181
+ html, body {
2182
+ display: block;
2183
+ background: var(--lp-bg) !important;
2184
+ -webkit-print-color-adjust: exact;
2185
+ print-color-adjust: exact;
2186
+ }
2187
+
2188
+ .lp-editor-bar,
2189
+ .lp-nav,
2190
+ .lp-page-counter,
2191
+ .lp-hint {
2192
+ display: none !important;
2193
+ }
2194
+
2195
+ .lp-deck {
2196
+ box-shadow: none;
2197
+ border-radius: 0;
2198
+ width: 100% !important;
2199
+ height: auto !important;
2200
+ overflow: visible;
2201
+ background: transparent !important;
2202
+ }
2203
+
2204
+ .lp-slide-wrapper {
2205
+ position: relative;
2206
+ transform: none !important;
2207
+ opacity: 1 !important;
2208
+ width: 100% !important;
2209
+ height: 720px !important;
2210
+ page-break-after: always;
2211
+ break-after: page;
2212
+ z-index: auto !important;
2213
+ }
2214
+
2215
+ .lp-slide {
2216
+ border: none;
2217
+ border-radius: 0;
2218
+ box-shadow: none;
2219
+ background: var(--lp-surface) !important;
2220
+ }
2221
+
2222
+ .lp-slide-wrapper:last-child {
2223
+ page-break-after: auto;
2224
+ break-after: auto;
2225
+ }
2226
+ }
2227
+ .lp-testimonial-v2 {
2228
+ width: 100%;
2229
+ height: 100%;
2230
+ padding: 80px;
2231
+ background: var(--lp-surface);
2232
+ display: flex;
2233
+ align-items: center;
2234
+ justify-content: center;
2235
+ }
2236
+
2237
+ .lp-testimonial-v2-card {
2238
+ width: 100%;
2239
+ max-width: 900px;
2240
+ background: var(--lp-bg);
2241
+ border: 1px solid var(--lp-border);
2242
+ border-radius: var(--lp-radius-large);
2243
+ padding: 48px;
2244
+ position: relative;
2245
+ }
2246
+
2247
+ .lp-testimonial-v2-logo {
2248
+ position: absolute;
2249
+ top: 32px;
2250
+ right: 40px;
2251
+ height: 32px;
2252
+ max-width: 120px;
2253
+ object-fit: contain;
2254
+ }
2255
+
2256
+ .lp-testimonial-v2-company {
2257
+ position: absolute;
2258
+ top: 32px;
2259
+ right: 40px;
2260
+ font-size: 14px;
2261
+ font-weight: 600;
2262
+ color: var(--lp-secondary);
2263
+ text-transform: uppercase;
2264
+ letter-spacing: 0.05em;
2265
+ }
2266
+
2267
+ .lp-testimonial-v2-quote {
2268
+ margin: 32px 0 40px;
2269
+ }
2270
+
2271
+ .lp-testimonial-v2-quote blockquote {
2272
+ font-size: 32px;
2273
+ font-weight: 500;
2274
+ line-height: 1.4;
2275
+ color: var(--lp-text);
2276
+ margin: 0;
2277
+ padding: 0;
2278
+ }
2279
+
2280
+ .lp-testimonial-v2-footer {
2281
+ display: flex;
2282
+ align-items: flex-end;
2283
+ justify-content: space-between;
2284
+ gap: 24px;
2285
+ }
2286
+
2287
+ .lp-testimonial-v2-name {
2288
+ font-size: 18px;
2289
+ font-weight: 600;
2290
+ color: var(--lp-text);
2291
+ }
2292
+
2293
+ .lp-testimonial-v2-role {
2294
+ font-size: 14px;
2295
+ color: var(--lp-secondary);
2296
+ margin-top: 4px;
2297
+ }
2298
+
2299
+ .lp-testimonial-v2-metric {
2300
+ text-align: right;
2301
+ flex-shrink: 0;
2302
+ }
2303
+
2304
+ .lp-testimonial-v2-metric-value {
2305
+ font-size: 36px;
2306
+ font-weight: 700;
2307
+ color: var(--lp-accent);
2308
+ line-height: 1;
2309
+ }
2310
+
2311
+ .lp-testimonial-v2-metric-label {
2312
+ font-size: 13px;
2313
+ color: var(--lp-secondary);
2314
+ margin-top: 4px;
2315
+ }
2316
+ .lp-chart-v2 {
2317
+ width: 100%;
2318
+ height: 100%;
2319
+ padding: 80px;
2320
+ background: var(--lp-surface);
2321
+ display: flex;
2322
+ flex-direction: column;
2323
+ }
2324
+
2325
+ .lp-chart-v2-header {
2326
+ margin-bottom: 40px;
2327
+ }
2328
+
2329
+ .lp-chart-v2-body {
2330
+ flex: 1;
2331
+ display: flex;
2332
+ align-items: center;
2333
+ justify-content: center;
2334
+ }
2335
+
2336
+ .lp-chart-v2-svg {
2337
+ width: 100%;
2338
+ max-width: 900px;
2339
+ height: auto;
2340
+ }
2341
+
2342
+ .lp-chart-v2-grid {
2343
+ stroke: var(--lp-border);
2344
+ stroke-width: 1;
2345
+ }
2346
+
2347
+ .lp-chart-v2-axis-text {
2348
+ fill: var(--lp-secondary);
2349
+ font-size: 12px;
2350
+ font-family: var(--lp-font-mono);
2351
+ }
2352
+
2353
+ .lp-chart-v2-bar {
2354
+ opacity: 0.9;
2355
+ }
2356
+
2357
+ .lp-chart-v2-legend-text {
2358
+ fill: var(--lp-secondary);
2359
+ font-size: 12px;
2360
+ font-family: var(--lp-font-body);
2361
+ }
2362
+ .lp-gallery-v2 {
2363
+ width: 100%;
2364
+ height: 100%;
2365
+ padding: 80px;
2366
+ background: var(--lp-surface);
2367
+ display: flex;
2368
+ flex-direction: column;
2369
+ }
2370
+
2371
+ .lp-gallery-v2-header {
2372
+ margin-bottom: 40px;
2373
+ }
2374
+
2375
+ .lp-gallery-v2-grid {
2376
+ display: grid;
2377
+ grid-template-columns: repeat(3, 1fr);
2378
+ gap: 24px;
2379
+ flex: 1;
2380
+ align-content: start;
2381
+ }
2382
+
2383
+ .lp-gallery-v2-item {
2384
+ display: flex;
2385
+ flex-direction: column;
2386
+ gap: 10px;
2387
+ }
2388
+
2389
+ .lp-gallery-v2-item img,
2390
+ .lp-gallery-v2-placeholder {
2391
+ width: 100%;
2392
+ aspect-ratio: 16 / 10;
2393
+ object-fit: cover;
2394
+ border-radius: var(--lp-radius-medium);
2395
+ background: var(--lp-bg);
2396
+ border: 1px solid var(--lp-border);
2397
+ }
2398
+
2399
+ .lp-gallery-v2-caption {
2400
+ font-size: 14px;
2401
+ color: var(--lp-secondary);
2402
+ text-align: center;
2403
+ line-height: 1.4;
2404
+ }
2405
+
2406
+ .lp-gallery-v3 {
2407
+ width: 100%;
2408
+ height: 100%;
2409
+ padding: 80px;
2410
+ background: var(--lp-surface);
2411
+ display: flex;
2412
+ flex-direction: column;
2413
+ }
2414
+
2415
+ .lp-gallery-v3-title {
2416
+ margin-bottom: 40px;
2417
+ }
2418
+
2419
+ .lp-gallery-v3-grid {
2420
+ display: grid;
2421
+ grid-template-columns: repeat(3, 1fr);
2422
+ gap: 32px;
2423
+ flex: 1;
2424
+ align-content: center;
2425
+ }
2426
+
2427
+ .lp-gallery-v3-item {
2428
+ display: flex;
2429
+ flex-direction: column;
2430
+ gap: 16px;
2431
+ }
2432
+
2433
+ .lp-gallery-v3-image,
2434
+ .lp-gallery-v3-placeholder {
2435
+ width: 100%;
2436
+ height: 280px;
2437
+ object-fit: cover;
2438
+ border-radius: var(--lp-radius-large);
2439
+ background: var(--lp-bg);
2440
+ border: 1px solid var(--lp-border);
2441
+ }
2442
+
2443
+ .lp-gallery-v3-caption {
2444
+ font-size: 16px;
2445
+ color: var(--lp-secondary);
2446
+ text-align: center;
2447
+ line-height: 1.5;
2448
+ }
2449
+
2450
+ .lp-testimonial-v3 {
2451
+ flex-direction: row;
2452
+ align-items: stretch;
2453
+ padding: 0;
2454
+ }
2455
+
2456
+ .lp-testimonial-v3-left {
2457
+ flex: 1.3;
2458
+ display: flex;
2459
+ flex-direction: column;
2460
+ justify-content: center;
2461
+ padding: 80px 64px;
2462
+ background: rgba(31, 41, 55, 0.6);
2463
+ position: relative;
2464
+ }
2465
+
2466
+ .lp-testimonial-v3-mark {
2467
+ position: absolute;
2468
+ top: 48px;
2469
+ left: 48px;
2470
+ font-size: 160px;
2471
+ font-weight: 800;
2472
+ line-height: 1;
2473
+ color: var(--lp-accent);
2474
+ opacity: 0.25;
2475
+ user-select: none;
2476
+ }
2477
+
2478
+ .lp-testimonial-v3-quote {
2479
+ position: relative;
2480
+ font-size: 34px;
2481
+ line-height: 1.5;
2482
+ color: var(--lp-text);
2483
+ margin: 0;
2484
+ padding: 0;
2485
+ }
2486
+
2487
+ .lp-testimonial-v3-quote blockquote {
2488
+ margin: 0;
2489
+ padding: 0;
2490
+ }
2491
+
2492
+ .lp-testimonial-v3-right {
2493
+ flex: 1;
2494
+ display: flex;
2495
+ align-items: center;
2496
+ justify-content: center;
2497
+ padding: 80px 64px;
2498
+ background: var(--lp-surface);
2499
+ }
2500
+
2501
+ .lp-testimonial-v3-card {
2502
+ width: 100%;
2503
+ max-width: 320px;
2504
+ text-align: center;
2505
+ }
2506
+
2507
+ .lp-testimonial-v3-avatar,
2508
+ .lp-testimonial-v3-avatar-placeholder {
2509
+ width: 96px;
2510
+ height: 96px;
2511
+ border-radius: 50%;
2512
+ object-fit: cover;
2513
+ margin: 0 auto 24px;
2514
+ background: rgba(17, 24, 39, 0.8);
2515
+ border: 2px dashed var(--lp-border);
2516
+ }
2517
+
2518
+ .lp-testimonial-v3-author {
2519
+ font-size: 22px;
2520
+ font-weight: 700;
2521
+ color: var(--lp-text);
2522
+ }
2523
+
2524
+ .lp-testimonial-v3-role {
2525
+ font-size: 15px;
2526
+ color: var(--lp-secondary);
2527
+ margin-top: 4px;
2528
+ }
2529
+
2530
+ .lp-testimonial-v3-company {
2531
+ font-size: 14px;
2532
+ color: var(--lp-secondary);
2533
+ margin-top: 4px;
2534
+ font-family: var(--lp-font-mono);
2535
+ }
2536
+
2537
+ .lp-testimonial-v3-metric {
2538
+ margin-top: 28px;
2539
+ padding-top: 24px;
2540
+ border-top: 1px solid var(--lp-border);
2541
+ }
2542
+
2543
+ .lp-testimonial-v3-metric-value {
2544
+ font-size: 42px;
2545
+ font-weight: 800;
2546
+ color: var(--lp-accent);
2547
+ line-height: 1;
2548
+ }
2549
+
2550
+ .lp-testimonial-v3-metric-label {
2551
+ font-size: 14px;
2552
+ color: var(--lp-secondary);
2553
+ margin-top: 6px;
2554
+ }
2555
+
2556
+ .lp-comparison-v3 {
2557
+ justify-content: flex-start;
2558
+ padding: 80px;
2559
+ }
2560
+
2561
+ .lp-comparison-v3-title {
2562
+ font-size: 48px;
2563
+ font-weight: 800;
2564
+ margin-bottom: 48px;
2565
+ }
2566
+
2567
+ .lp-comparison-v3-table {
2568
+ width: 100%;
2569
+ display: flex;
2570
+ flex-direction: column;
2571
+ gap: 2px;
2572
+ border: 1px solid var(--lp-border);
2573
+ border-radius: var(--lp-radius-medium);
2574
+ overflow: hidden;
2575
+ }
2576
+
2577
+ .lp-comparison-v3-header {
2578
+ display: grid;
2579
+ grid-template-columns: 1.4fr 1fr 1fr;
2580
+ gap: 2px;
2581
+ background: var(--lp-border);
2582
+ }
2583
+
2584
+ .lp-comparison-v3-header-cell {
2585
+ padding: 16px 20px;
2586
+ font-size: 15px;
2587
+ font-weight: 700;
2588
+ text-align: center;
2589
+ background: rgba(31, 41, 55, 0.6);
2590
+ color: var(--lp-text);
2591
+ }
2592
+
2593
+ .lp-comparison-v3-header-cell.lp-comparison-v3-left-title {
2594
+ background: var(--lp-accent);
2595
+ color: #fff;
2596
+ }
2597
+
2598
+ .lp-comparison-v3-row {
2599
+ display: grid;
2600
+ grid-template-columns: 1.4fr 1fr 1fr;
2601
+ gap: 2px;
2602
+ background: var(--lp-border);
2603
+ }
2604
+
2605
+ .lp-comparison-v3-cell {
2606
+ padding: 18px 20px;
2607
+ font-size: 16px;
2608
+ background: var(--lp-surface);
2609
+ color: var(--lp-text);
2610
+ display: flex;
2611
+ align-items: center;
2612
+ justify-content: center;
2613
+ }
2614
+
2615
+ .lp-comparison-v3-cell.lp-comparison-v3-feature {
2616
+ justify-content: flex-start;
2617
+ font-weight: 600;
2618
+ }
2619
+
2620
+ .lp-comparison-v3-row:nth-child(even) .lp-comparison-v3-cell {
2621
+ background: rgba(31, 41, 55, 0.4);
2622
+ }
2623
+
2624
+ .lp-timeline-v3 {
2625
+ justify-content: flex-start;
2626
+ padding: 80px;
2627
+ }
2628
+
2629
+ .lp-timeline-v3-title {
2630
+ font-size: 48px;
2631
+ font-weight: 800;
2632
+ margin-bottom: 48px;
2633
+ }
2634
+
2635
+ .lp-timeline-v3-list {
2636
+ display: flex;
2637
+ flex-direction: column;
2638
+ gap: 8px;
2639
+ }
2640
+
2641
+ .lp-timeline-v3-event {
2642
+ display: flex;
2643
+ gap: 24px;
2644
+ align-items: stretch;
2645
+ }
2646
+
2647
+ .lp-timeline-v3-node {
2648
+ position: relative;
2649
+ display: flex;
2650
+ flex-direction: column;
2651
+ align-items: center;
2652
+ width: 24px;
2653
+ flex-shrink: 0;
2654
+ padding-top: 8px;
2655
+ }
2656
+
2657
+ .lp-timeline-v3-dot {
2658
+ width: 18px;
2659
+ height: 18px;
2660
+ border-radius: 50%;
2661
+ background: var(--lp-accent);
2662
+ border: 3px solid var(--lp-surface);
2663
+ box-shadow: 0 0 12px rgba(6, 182, 212, 0.35);
2664
+ z-index: 1;
2665
+ }
2666
+
2667
+ .lp-timeline-v3-line {
2668
+ position: absolute;
2669
+ top: 22px;
2670
+ bottom: -16px;
2671
+ width: 2px;
2672
+ background: rgba(75, 85, 99, 0.6);
2673
+ }
2674
+
2675
+ .lp-timeline-v3-card {
2676
+ flex: 1;
2677
+ padding: 20px 24px;
2678
+ background: rgba(31, 41, 55, 0.6);
2679
+ border: 1px solid var(--lp-border);
2680
+ border-radius: var(--lp-radius-medium);
2681
+ margin-bottom: 16px;
2682
+ }
2683
+
2684
+ .lp-timeline-v3-date {
2685
+ font-size: 13px;
2686
+ font-weight: 700;
2687
+ color: var(--lp-accent);
2688
+ margin-bottom: 6px;
2689
+ font-family: var(--lp-font-mono);
2690
+ text-transform: uppercase;
2691
+ letter-spacing: 0.05em;
2692
+ }
2693
+
2694
+ .lp-timeline-v3-event-title {
2695
+ font-size: 20px;
2696
+ font-weight: 700;
2697
+ margin: 0 0 8px 0;
2698
+ color: var(--lp-text);
2699
+ }
2700
+
2701
+ .lp-timeline-v3-event-desc {
2702
+ font-size: 16px;
2703
+ line-height: 1.55;
2704
+ margin: 0;
2705
+ color: var(--lp-secondary);
2706
+ }
2707
+
2708
+ /* ---- Theme-specific variants (stage 3) -------------------------------- */
2709
+
2710
+ .lp-dark-tech-cover-v1 {
2711
+ flex-direction: column;
2712
+ align-items: center;
2713
+ justify-content: center;
2714
+ text-align: center;
2715
+ padding: 80px;
2716
+ overflow: hidden;
2717
+ }
2718
+
2719
+ .lp-dark-tech-cover-grid {
2720
+ position: absolute;
2721
+ inset: 0;
2722
+ background-image:
2723
+ linear-gradient(rgba(6, 182, 212, 0.12) 1px, transparent 1px),
2724
+ linear-gradient(90deg, rgba(6, 182, 212, 0.12) 1px, transparent 1px);
2725
+ background-size: 64px 64px;
2726
+ mask-image: radial-gradient(circle at center, black 0%, transparent 75%);
2727
+ -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 75%);
2728
+ pointer-events: none;
2729
+ z-index: 0;
2730
+ }
2731
+
2732
+ .lp-dark-tech-cover-glow {
2733
+ position: absolute;
2734
+ top: 50%;
2735
+ left: 50%;
2736
+ width: 600px;
2737
+ height: 600px;
2738
+ transform: translate(-50%, -50%);
2739
+ background: radial-gradient(circle, rgba(6, 182, 212, 0.18), transparent 60%);
2740
+ filter: blur(40px);
2741
+ pointer-events: none;
2742
+ z-index: 0;
2743
+ }
2744
+
2745
+ .lp-dark-tech-cover-image {
2746
+ position: absolute;
2747
+ inset: 0;
2748
+ width: 100%;
2749
+ height: 100%;
2750
+ object-fit: cover;
2751
+ opacity: 0.2;
2752
+ z-index: 0;
2753
+ }
2754
+
2755
+ .lp-dark-tech-cover-content {
2756
+ position: relative;
2757
+ z-index: 1;
2758
+ max-width: 900px;
2759
+ }
2760
+
2761
+ .lp-dark-tech-cover-kicker {
2762
+ display: inline-block;
2763
+ font-size: 14px;
2764
+ font-weight: 700;
2765
+ letter-spacing: 0.2em;
2766
+ text-transform: uppercase;
2767
+ color: var(--lp-accent);
2768
+ margin-bottom: 24px;
2769
+ padding: 8px 16px;
2770
+ border: 1px solid rgba(6, 182, 212, 0.4);
2771
+ border-radius: var(--lp-radius-small);
2772
+ background: rgba(6, 182, 212, 0.08);
2773
+ }
2774
+
2775
+ .lp-dark-tech-cover-title {
2776
+ font-size: 80px;
2777
+ font-weight: 900;
2778
+ line-height: 1.05;
2779
+ margin: 0 0 24px 0;
2780
+ color: #ffffff;
2781
+ text-shadow: 0 0 40px rgba(6, 182, 212, 0.35);
2782
+ }
2783
+
2784
+ .lp-dark-tech-cover-subtitle {
2785
+ font-size: 24px;
2786
+ color: var(--lp-secondary);
2787
+ margin: 0 0 40px 0;
2788
+ line-height: 1.5;
2789
+ }
2790
+
2791
+ .lp-dark-tech-cover-date {
2792
+ font-size: 15px;
2793
+ color: var(--lp-secondary);
2794
+ font-family: var(--lp-font-mono);
2795
+ }
2796
+
2797
+ .lp-dark-tech-feature-v1 {
2798
+ justify-content: flex-start;
2799
+ padding: 80px;
2800
+ overflow: hidden;
2801
+ }
2802
+
2803
+ .lp-dark-tech-feature-grid {
2804
+ position: absolute;
2805
+ inset: 0;
2806
+ background-image:
2807
+ linear-gradient(rgba(6, 182, 212, 0.08) 1px, transparent 1px),
2808
+ linear-gradient(90deg, rgba(6, 182, 212, 0.08) 1px, transparent 1px);
2809
+ background-size: 64px 64px;
2810
+ mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
2811
+ -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
2812
+ pointer-events: none;
2813
+ z-index: 0;
2814
+ }
2815
+
2816
+ .lp-dark-tech-feature-glow {
2817
+ position: absolute;
2818
+ top: 0;
2819
+ right: 0;
2820
+ width: 500px;
2821
+ height: 500px;
2822
+ background: radial-gradient(circle, rgba(6, 182, 212, 0.14), transparent 60%);
2823
+ filter: blur(50px);
2824
+ pointer-events: none;
2825
+ z-index: 0;
2826
+ }
2827
+
2828
+ .lp-dark-tech-feature-header {
2829
+ position: relative;
2830
+ z-index: 1;
2831
+ margin-bottom: 48px;
2832
+ }
2833
+
2834
+ .lp-dark-tech-feature-kicker {
2835
+ font-size: 14px;
2836
+ font-weight: 700;
2837
+ letter-spacing: 0.2em;
2838
+ text-transform: uppercase;
2839
+ color: var(--lp-accent);
2840
+ margin-bottom: 12px;
2841
+ }
2842
+
2843
+ .lp-dark-tech-feature-title {
2844
+ font-size: 48px;
2845
+ font-weight: 900;
2846
+ color: #ffffff;
2847
+ margin: 0;
2848
+ text-shadow: 0 0 30px rgba(6, 182, 212, 0.25);
2849
+ }
2850
+
2851
+ .lp-dark-tech-feature-grid-cards {
2852
+ position: relative;
2853
+ z-index: 1;
2854
+ display: grid;
2855
+ grid-template-columns: repeat(3, 1fr);
2856
+ gap: 28px;
2857
+ flex: 1;
2858
+ align-content: center;
2859
+ }
2860
+
2861
+ .lp-dark-tech-feature-card {
2862
+ display: flex;
2863
+ flex-direction: column;
2864
+ padding: 32px;
2865
+ background: rgba(17, 24, 39, 0.6);
2866
+ border: 1px solid rgba(6, 182, 212, 0.25);
2867
+ border-radius: var(--lp-radius-large);
2868
+ box-shadow: 0 0 30px rgba(6, 182, 212, 0.08);
2869
+ }
2870
+
2871
+ .lp-dark-tech-feature-number {
2872
+ font-size: 42px;
2873
+ font-weight: 900;
2874
+ color: rgba(6, 182, 212, 0.35);
2875
+ margin-bottom: 16px;
2876
+ font-family: var(--lp-font-mono);
2877
+ }
2878
+
2879
+ .lp-dark-tech-feature-card-title {
2880
+ font-size: 24px;
2881
+ font-weight: 800;
2882
+ color: #ffffff;
2883
+ margin: 0 0 12px 0;
2884
+ }
2885
+
2886
+ .lp-dark-tech-feature-card-description {
2887
+ font-size: 16px;
2888
+ line-height: 1.6;
2889
+ color: var(--lp-secondary);
2890
+ margin: 0;
2891
+ }
2892
+
2893
+ .lp-dark-tech-metric-v1 {
2894
+ flex-direction: column;
2895
+ align-items: center;
2896
+ justify-content: center;
2897
+ text-align: center;
2898
+ padding: 80px;
2899
+ overflow: hidden;
2900
+ }
2901
+
2902
+ .lp-dark-tech-metric-grid {
2903
+ position: absolute;
2904
+ inset: 0;
2905
+ background-image:
2906
+ linear-gradient(rgba(6, 182, 212, 0.08) 1px, transparent 1px),
2907
+ linear-gradient(90deg, rgba(6, 182, 212, 0.08) 1px, transparent 1px);
2908
+ background-size: 64px 64px;
2909
+ mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
2910
+ -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
2911
+ pointer-events: none;
2912
+ z-index: 0;
2913
+ }
2914
+
2915
+ .lp-dark-tech-metric-glow {
2916
+ position: absolute;
2917
+ top: 50%;
2918
+ left: 50%;
2919
+ width: 700px;
2920
+ height: 700px;
2921
+ transform: translate(-50%, -50%);
2922
+ background: radial-gradient(circle, rgba(6, 182, 212, 0.16), transparent 55%);
2923
+ filter: blur(50px);
2924
+ pointer-events: none;
2925
+ z-index: 0;
2926
+ }
2927
+
2928
+ .lp-dark-tech-metric-label {
2929
+ position: relative;
2930
+ z-index: 1;
2931
+ font-size: 14px;
2932
+ font-weight: 700;
2933
+ letter-spacing: 0.2em;
2934
+ text-transform: uppercase;
2935
+ color: var(--lp-accent);
2936
+ margin-bottom: 20px;
2937
+ }
2938
+
2939
+ .lp-dark-tech-metric-value {
2940
+ position: relative;
2941
+ z-index: 1;
2942
+ display: flex;
2943
+ align-items: baseline;
2944
+ justify-content: center;
2945
+ gap: 12px;
2946
+ margin-bottom: 24px;
2947
+ }
2948
+
2949
+ .lp-dark-tech-metric-text {
2950
+ font-size: 140px;
2951
+ font-weight: 900;
2952
+ line-height: 1;
2953
+ color: #ffffff;
2954
+ text-shadow: 0 0 60px rgba(6, 182, 212, 0.4);
2955
+ }
2956
+
2957
+ .lp-dark-tech-metric-unit {
2958
+ font-size: 36px;
2959
+ font-weight: 700;
2960
+ color: var(--lp-accent);
2961
+ }
2962
+
2963
+ .lp-dark-tech-metric-description {
2964
+ position: relative;
2965
+ z-index: 1;
2966
+ font-size: 20px;
2967
+ color: var(--lp-secondary);
2968
+ max-width: 600px;
1994
2969
  }