|
265 | 265 | min-height: 100vh; |
266 | 266 | display: flex; |
267 | 267 | flex-direction: column; |
| 268 | + background: radial-gradient(900px 520px at 16% 0%, rgba(37, 99, 235, 0.14), transparent 60%), |
| 269 | + radial-gradient(900px 520px at 86% 0%, rgba(239, 68, 68, 0.12), transparent 60%), |
| 270 | + #f8fafc; |
268 | 271 | } |
269 | 272 |
|
270 | 273 | .landingHeader { |
|
273 | 276 | justify-content: space-between; |
274 | 277 | padding: 14px 16px; |
275 | 278 | border-bottom: 1px solid #e2e8f0; |
276 | | - background: #ffffff; |
| 279 | + background: rgba(255, 255, 255, 0.75); |
| 280 | + backdrop-filter: blur(10px); |
| 281 | + position: sticky; |
| 282 | + top: 0; |
| 283 | + z-index: 10; |
277 | 284 | } |
278 | 285 |
|
279 | 286 | .landingBrand { |
280 | 287 | font-weight: 800; |
281 | 288 | letter-spacing: 0.2px; |
| 289 | + color: #0f172a; |
| 290 | + display: flex; |
| 291 | + align-items: center; |
| 292 | + gap: 10px; |
| 293 | +} |
| 294 | + |
| 295 | +.landingBrandTag { |
| 296 | + font-size: 11px; |
| 297 | + font-weight: 700; |
| 298 | + padding: 4px 8px; |
| 299 | + border-radius: 999px; |
| 300 | + color: #334155; |
| 301 | + background: rgba(226, 232, 240, 0.7); |
| 302 | + border: 1px solid rgba(226, 232, 240, 0.9); |
282 | 303 | } |
283 | 304 |
|
284 | 305 | .landingMain { |
| 306 | + flex: 1; |
285 | 307 | width: min(1040px, 100%); |
286 | 308 | margin: 0 auto; |
287 | 309 | padding: 24px 16px 40px 16px; |
288 | 310 | } |
289 | 311 |
|
| 312 | +.landingHero { |
| 313 | + border: 1px solid rgba(226, 232, 240, 0.9); |
| 314 | + border-radius: 18px; |
| 315 | + padding: 18px 18px; |
| 316 | + background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.72)); |
| 317 | + box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07); |
| 318 | +} |
| 319 | + |
| 320 | +.landingHeroGrid { |
| 321 | + display: grid; |
| 322 | + grid-template-columns: 1.25fr 0.75fr; |
| 323 | + gap: 18px; |
| 324 | + align-items: center; |
| 325 | +} |
| 326 | + |
| 327 | +.landingHeroLeft { |
| 328 | + min-width: 0; |
| 329 | +} |
| 330 | + |
| 331 | +.landingPills { |
| 332 | + display: flex; |
| 333 | + flex-wrap: wrap; |
| 334 | + gap: 8px; |
| 335 | + margin-bottom: 10px; |
| 336 | +} |
| 337 | + |
| 338 | +.pill { |
| 339 | + display: inline-flex; |
| 340 | + align-items: center; |
| 341 | + gap: 6px; |
| 342 | + padding: 6px 10px; |
| 343 | + border-radius: 999px; |
| 344 | + font-size: 12px; |
| 345 | + font-weight: 650; |
| 346 | + color: #0f172a; |
| 347 | + border: 1px solid rgba(226, 232, 240, 0.9); |
| 348 | + background: rgba(248, 250, 252, 0.85); |
| 349 | +} |
| 350 | + |
290 | 351 | .landingHero h1 { |
291 | 352 | margin: 0; |
292 | 353 | font-size: 34px; |
|
316 | 377 | color: #475569; |
317 | 378 | } |
318 | 379 |
|
| 380 | +.landingHeroRight { |
| 381 | + min-width: 0; |
| 382 | +} |
| 383 | + |
| 384 | +.landingMock { |
| 385 | + border: 1px solid rgba(226, 232, 240, 0.9); |
| 386 | + border-radius: 16px; |
| 387 | + overflow: hidden; |
| 388 | + background: rgba(255, 255, 255, 0.88); |
| 389 | + box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1); |
| 390 | +} |
| 391 | + |
| 392 | +.landingMockMap { |
| 393 | + height: 170px; |
| 394 | + position: relative; |
| 395 | + background: radial-gradient(260px 150px at 30% 30%, rgba(37, 99, 235, 0.22), transparent 70%), |
| 396 | + radial-gradient(240px 150px at 70% 70%, rgba(239, 68, 68, 0.18), transparent 70%), |
| 397 | + linear-gradient(180deg, rgba(241, 245, 249, 0.9), rgba(226, 232, 240, 0.65)); |
| 398 | +} |
| 399 | + |
| 400 | +.landingMockPin { |
| 401 | + position: absolute; |
| 402 | + width: 12px; |
| 403 | + height: 12px; |
| 404 | + border-radius: 999px; |
| 405 | + border: 2px solid rgba(255, 255, 255, 0.95); |
| 406 | + box-shadow: 0 8px 20px rgba(15, 23, 42, 0.22); |
| 407 | + transform: translate(-50%, -50%); |
| 408 | +} |
| 409 | + |
| 410 | +.landingMockPin.listing { |
| 411 | + background: #2563eb; |
| 412 | +} |
| 413 | + |
| 414 | +.landingMockPin.target { |
| 415 | + width: 14px; |
| 416 | + height: 14px; |
| 417 | + background: #ef4444; |
| 418 | + box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.22), 0 8px 20px rgba(15, 23, 42, 0.22); |
| 419 | +} |
| 420 | + |
| 421 | +.landingMockList { |
| 422 | + padding: 12px 12px 12px 12px; |
| 423 | + display: flex; |
| 424 | + flex-direction: column; |
| 425 | + gap: 10px; |
| 426 | +} |
| 427 | + |
| 428 | +.landingMockItem { |
| 429 | + display: flex; |
| 430 | + align-items: center; |
| 431 | + gap: 10px; |
| 432 | + padding: 8px 10px; |
| 433 | + border-radius: 12px; |
| 434 | + border: 1px solid rgba(226, 232, 240, 0.9); |
| 435 | + background: rgba(248, 250, 252, 0.88); |
| 436 | + font-size: 12px; |
| 437 | + color: #0f172a; |
| 438 | +} |
| 439 | + |
| 440 | +.landingMockDot { |
| 441 | + width: 10px; |
| 442 | + height: 10px; |
| 443 | + border-radius: 999px; |
| 444 | + flex: 0 0 auto; |
| 445 | +} |
| 446 | + |
| 447 | +.landingMockDot.listing { |
| 448 | + background: #2563eb; |
| 449 | +} |
| 450 | + |
| 451 | +.landingMockText { |
| 452 | + overflow: hidden; |
| 453 | + text-overflow: ellipsis; |
| 454 | + white-space: nowrap; |
| 455 | +} |
| 456 | + |
| 457 | +.landingMockMeta { |
| 458 | + margin-left: auto; |
| 459 | + color: #475569; |
| 460 | + font-variant-numeric: tabular-nums; |
| 461 | +} |
| 462 | + |
319 | 463 | .landingGrid { |
320 | 464 | margin-top: 24px; |
321 | 465 | display: grid; |
|
352 | 496 |
|
353 | 497 | .landingFooter { |
354 | 498 | border-top: 1px solid #e2e8f0; |
355 | | - background: #ffffff; |
| 499 | + background: rgba(255, 255, 255, 0.75); |
| 500 | + backdrop-filter: blur(10px); |
356 | 501 | padding: 14px 16px; |
357 | 502 | font-size: 12px; |
358 | 503 | color: #475569; |
| 504 | + display: flex; |
| 505 | + gap: 8px; |
| 506 | + flex-wrap: wrap; |
| 507 | + align-items: center; |
| 508 | + justify-content: center; |
| 509 | + text-align: center; |
| 510 | +} |
| 511 | + |
| 512 | +.landingFooter a { |
| 513 | + color: inherit; |
| 514 | + text-decoration: underline; |
| 515 | + text-underline-offset: 2px; |
| 516 | +} |
| 517 | + |
| 518 | +.landingFooter a:hover { |
| 519 | + color: #0f172a; |
359 | 520 | } |
360 | 521 |
|
361 | 522 | @media (max-width: 960px) { |
|
373 | 534 | grid-template-columns: 1fr; |
374 | 535 | } |
375 | 536 |
|
| 537 | + .landingHeroGrid { |
| 538 | + grid-template-columns: 1fr; |
| 539 | + } |
| 540 | + |
376 | 541 | .landingHero h1 { |
377 | 542 | font-size: 28px; |
378 | 543 | } |
|
0 commit comments