Spaces:
Running
Running
File size: 48,529 Bytes
fd217de |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Access - Discover Your Next IRL Adventure</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* Global Styles */
:root {
--primary: #8A63FF;
--primary-dark: #6E4BD9;
--secondary: #00E5FF;
--dark: #121212;
--darker: #0A0A0A;
--light: #F5F6FA;
--gray: #2A2A2A;
--light-gray: #3D3D3D;
--accent: #FF6B9E;
--success: #00E676;
--warning: #FFD166;
--danger: #FF5252;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
@supports (font-variation-settings: normal) {
* { font-family: 'Inter var', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; }
}
body {
background-color: var(--dark);
color: rgba(255, 255, 255, 0.9);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
section {
padding: 80px 0;
}
h1, h2, h3, h4 {
margin-bottom: 20px;
line-height: 1.2;
color: white;
font-weight: 700;
}
h1 {
font-size: 3rem;
font-weight: 800;
}
h2 {
font-size: 2.5rem;
}
h3 {
font-size: 1.8rem;
}
p {
margin-bottom: 15px;
font-size: 1.1rem;
color: rgba(255, 255, 255, 0.7);
}
a {
text-decoration: none;
color: var(--primary);
transition: all 0.3s ease;
}
a:hover {
color: var(--secondary);
}
.btn {
display: inline-block;
padding: 12px 30px;
background: var(--primary);
color: white;
border: none;
border-radius: 8px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
text-align: center;
box-shadow: 0 2px 8px rgba(138, 99, 255, 0.3);
}
.btn:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(138, 99, 255, 0.4);
}
.btn-outline {
background: transparent;
border: 2px solid var(--primary);
color: var(--primary);
box-shadow: none;
}
.btn-outline:hover {
background: var(--primary);
color: white;
}
.btn-accent {
background: var(--accent);
box-shadow: 0 2px 8px rgba(255, 107, 158, 0.3);
}
.btn-accent:hover {
background: #FF5A8F;
box-shadow: 0 8px 20px rgba(255, 107, 158, 0.4);
}
.text-center {
text-align: center;
}
.text-primary {
color: var(--primary);
}
.text-secondary {
color: var(--secondary);
}
.mb-20 {
margin-bottom: 20px;
}
.mb-40 {
margin-bottom: 40px;
}
.mt-40 {
margin-top: 40px;
}
/* Header Styles */
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 20px 0;
background-color: rgba(18, 18, 18, 0.9);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
z-index: 1000;
transition: all 0.3s ease;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
header.scrolled {
padding: 15px 0;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
font-size: 1.8rem;
font-weight: 700;
color: white;
}
.logo i {
margin-right: 10px;
font-size: 2rem;
color: var(--primary);
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin-left: 30px;
}
nav ul li a {
font-weight: 500;
color: rgba(255, 255, 255, 0.8);
transition: all 0.3s ease;
}
nav ul li a:hover {
color: var(--primary);
}
.mobile-menu-btn {
display: none;
background: none;
border: none;
font-size: 1.5rem;
color: white;
cursor: pointer;
transition: all 0.3s ease;
}
.mobile-menu-btn:hover {
color: var(--primary);
}
/* Hero Section */
.hero {
padding-top: 150px;
padding-bottom: 100px;
background: linear-gradient(135deg, #121212 0%, #1A1A2E 100%);
color: white;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
opacity: 0.15;
z-index: 0;
}
.hero-content {
position: relative;
z-index: 1;
max-width: 800px;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
line-height: 1.1;
background: linear-gradient(to right, var(--primary), var(--secondary));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
display: inline-block;
}
.hero p {
font-size: 1.3rem;
margin-bottom: 30px;
opacity: 0.9;
color: rgba(255, 255, 255, 0.8);
}
.hero-btns {
display: flex;
gap: 20px;
}
.hero-btns .btn {
padding: 15px 35px;
font-size: 1.1rem;
}
.hero-btns .btn-outline {
color: white;
border-color: white;
background: transparent;
}
.hero-btns .btn-outline:hover {
background: white;
color: var(--primary);
}
/* Features Section */
.features {
background-color: var(--darker);
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 50px;
}
.feature-card {
background: var(--gray);
border-radius: 12px;
padding: 30px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
border-color: rgba(138, 99, 255, 0.3);
}
.feature-icon {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 20px;
transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
transform: scale(1.1);
color: var(--secondary);
}
.feature-card h3 {
color: white;
}
.feature-card p {
color: rgba(255, 255, 255, 0.6);
}
/* About Section */
.about {
background-color: var(--dark);
}
.about-content {
display: flex;
align-items: center;
gap: 50px;
}
.about-text {
flex: 1;
}
.about-image {
flex: 1;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
transition: all 0.4s ease;
border: 1px solid rgba(255, 255, 255, 0.05);
}
.about-image:hover {
transform: translateY(-5px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.about-image img {
width: 100%;
height: auto;
display: block;
transition: all 0.5s ease;
}
.about-image:hover img {
transform: scale(1.03);
}
/* Problem Solution Section */
.problem-solution {
background-color: var(--darker);
}
.ps-tabs {
display: flex;
margin-bottom: 30px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ps-tab {
padding: 15px 30px;
cursor: pointer;
font-weight: 600;
border-bottom: 3px solid transparent;
transition: all 0.3s ease;
color: rgba(255, 255, 255, 0.6);
}
.ps-tab.active {
border-bottom: 3px solid var(--primary);
color: white;
}
.ps-tab:hover {
color: white;
}
.ps-content {
display: none;
}
.ps-content.active {
display: block;
}
.ps-point {
display: flex;
align-items: flex-start;
margin-bottom: 20px;
padding: 20px;
border-radius: 8px;
transition: all 0.3s ease;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.ps-point:hover {
background: rgba(138, 99, 255, 0.05);
border-color: rgba(138, 99, 255, 0.2);
}
.ps-point-icon {
font-size: 1.5rem;
color: var(--primary);
margin-right: 15px;
margin-top: 5px;
transition: all 0.3s ease;
}
.ps-point:hover .ps-point-icon {
color: var(--secondary);
transform: scale(1.1);
}
/* Team Section */
.team {
background-color: var(--dark);
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 50px;
}
.team-card {
background: var(--gray);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.team-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
border-color: rgba(138, 99, 255, 0.3);
}
.team-image {
width: 100%;
height: 250px;
object-fit: cover;
transition: all 0.5s ease;
}
.team-card:hover .team-image {
transform: scale(1.05);
}
.team-info {
padding: 20px;
}
.team-info h4 {
margin-bottom: 5px;
color: white;
}
.team-info p {
color: rgba(255, 255, 255, 0.6);
font-size: 0.9rem;
margin-bottom: 15px;
}
.team-social {
display: flex;
justify-content: center;
gap: 15px;
}
.team-social a {
color: rgba(255, 255, 255, 0.6);
font-size: 1.1rem;
transition: all 0.3s ease;
}
.team-social a:hover {
color: var(--primary);
transform: translateY(-3px);
}
/* Roadmap Section */
.roadmap {
background-color: var(--darker);
}
.timeline {
position: relative;
max-width: 800px;
margin: 50px auto 0;
}
.timeline::after {
content: '';
position: absolute;
width: 3px;
background: linear-gradient(to bottom, var(--primary), var(--secondary));
top: 0;
bottom: 0;
left: 50%;
margin-left: -1.5px;
}
.timeline-item {
padding: 10px 40px;
position: relative;
width: 50%;
box-sizing: border-box;
}
.timeline-item::after {
content: '';
position: absolute;
width: 20px;
height: 20px;
background-color: var(--darker);
border: 3px solid var(--primary);
border-radius: 50%;
top: 15px;
z-index: 1;
transition: all 0.3s ease;
}
.timeline-item:hover::after {
background-color: var(--primary);
transform: scale(1.1);
}
.left {
left: 0;
}
.right {
left: 50%;
}
.left::after {
right: -10px;
}
.right::after {
left: -10px;
}
.timeline-content {
padding: 20px;
background-color: var(--gray);
border-radius: 12px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.05);
}
.timeline-item:hover .timeline-content {
background-color: rgba(138, 99, 255, 0.05);
border-color: rgba(138, 99, 255, 0.2);
}
.timeline-content h3 {
margin-bottom: 10px;
color: var(--primary);
}
.timeline-date {
font-weight: 600;
color: var(--secondary);
margin-bottom: 10px;
}
/* CTA Section */
.cta {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: white;
text-align: center;
padding: 100px 0;
position: relative;
overflow: hidden;
}
.cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('https://images.unsplash.com/photo-1514525253161-7a3d1d5d1c1a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
opacity: 0.1;
z-index: 0;
}
.cta-content {
position: relative;
z-index: 1;
}
.cta h2 {
font-size: 2.8rem;
margin-bottom: 20px;
}
.cta p {
max-width: 700px;
margin: 0 auto 40px;
font-size: 1.2rem;
opacity: 0.9;
color: rgba(255, 255, 255, 0.9);
}
.cta .btn {
font-size: 1.2rem;
padding: 15px 40px;
background: white;
color: var(--primary);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.cta .btn:hover {
background: rgba(255, 255, 255, 0.9);
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
/* Contact Section */
.contact {
background-color: var(--dark);
}
.contact-container {
display: flex;
gap: 50px;
}
.contact-form {
flex: 1;
background: var(--gray);
padding: 40px;
border-radius: 12px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: white;
}
.form-control {
width: 100%;
padding: 12px 15px;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
font-size: 1rem;
transition: all 0.3s ease;
background: rgba(255, 255, 255, 0.05);
color: white;
}
.form-control:focus {
border-color: var(--primary);
outline: none;
box-shadow: 0 0 0 3px rgba(138, 99, 255, 0.2);
background: rgba(255, 255, 255, 0.08);
}
textarea.form-control {
min-height: 150px;
resize: vertical;
}
.contact-info {
flex: 1;
}
.contact-info h3 {
margin-bottom: 30px;
}
.info-item {
display: flex;
align-items: flex-start;
margin-bottom: 25px;
padding: 15px;
border-radius: 8px;
transition: all 0.3s ease;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.info-item:hover {
background: rgba(138, 99, 255, 0.05);
border-color: rgba(138, 99, 255, 0.2);
}
.info-icon {
font-size: 1.5rem;
color: var(--primary);
margin-right: 15px;
margin-top: 5px;
transition: all 0.3s ease;
}
.info-item:hover .info-icon {
color: var(--secondary);
transform: scale(1.1);
}
.info-text h4 {
margin-bottom: 5px;
color: white;
}
.info-text p {
color: rgba(255, 255, 255, 0.6);
}
.social-links {
display: flex;
gap: 15px;
margin-top: 30px;
}
.social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 45px;
height: 45px;
background: var(--gray);
color: white;
border-radius: 50%;
font-size: 1.2rem;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-links a:hover {
background: var(--primary);
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(138, 99, 255, 0.3);
}
/* Footer */
footer {
background-color: var(--darker);
color: white;
padding: 80px 0 20px;
border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
margin-bottom: 40px;
}
.footer-logo {
font-size: 1.8rem;
font-weight: 700;
color: white;
margin-bottom: 20px;
display: inline-block;
}
.footer-logo i {
color: var(--primary);
margin-right: 10px;
}
.footer-about p {
opacity: 0.7;
margin-bottom: 20px;
color: rgba(255, 255, 255, 0.6);
}
.footer-links h3 {
color: white;
margin-bottom: 20px;
font-size: 1.2rem;
}
.footer-links ul {
list-style: none;
}
.footer-links li {
margin-bottom: 10px;
}
.footer-links a {
color: rgba(255, 255, 255, 0.6);
transition: all 0.3s ease;
}
.footer-links a:hover {
color: var(--primary);
padding-left: 5px;
}
.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.05);
color: rgba(255, 255, 255, 0.5);
font-size: 0.9rem;
}
/* Mobile Menu */
.mobile-menu {
position: fixed;
top: 0;
left: -100%;
width: 80%;
max-width: 300px;
height: 100vh;
background: var(--darker);
box-shadow: 5px 0 20px rgba(0, 0, 0, 0.5);
z-index: 1001;
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
padding: 20px;
overflow-y: auto;
border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-menu.active {
left: 0;
}
.mobile-menu-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
padding-bottom: 15px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu-close {
background: none;
border: none;
font-size: 1.5rem;
color: white;
cursor: pointer;
transition: all 0.3s ease;
}
.mobile-menu-close:hover {
color: var(--primary);
}
.mobile-menu-nav ul {
list-style: none;
}
.mobile-menu-nav li {
margin-bottom: 15px;
}
.mobile-menu-nav a {
display: block;
padding: 12px;
color: rgba(255, 255, 255, 0.8);
font-weight: 500;
border-radius: 8px;
transition: all 0.3s ease;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-menu-nav a:hover {
background: rgba(138, 99, 255, 0.1);
color: var(--primary);
border-color: rgba(138, 99, 255, 0.2);
}
.mobile-menu-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
z-index: 1000;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
opacity: 1;
visibility: visible;
}
/* Responsive Styles */
@media (max-width: 992px) {
h1 {
font-size: 2.8rem;
}
h2 {
font-size: 2.2rem;
}
.about-content {
flex-direction: column;
}
.contact-container {
flex-direction: column;
}
.timeline::after {
left: 31px;
}
.timeline-item {
width: 100%;
padding-left: 70px;
padding-right: 25px;
}
.timeline-item::after {
left: 21px;
}
.left::after, .right::after {
left: 21px;
}
.right {
left: 0;
}
}
@media (max-width: 768px) {
h1 {
font-size: 2.5rem;
}
h2 {
font-size: 2rem;
}
section {
padding: 60px 0;
}
nav ul {
display: none;
}
.mobile-menu-btn {
display: block;
}
.hero {
padding-top: 120px;
padding-bottom: 80px;
}
.hero h1 {
font-size: 2.8rem;
}
.hero-btns {
flex-direction: column;
}
.hero-btns .btn {
width: 100%;
}
.cta h2 {
font-size: 2.2rem;
}
}
@media (max-width: 576px) {
h1 {
font-size: 2.2rem;
}
h2 {
font-size: 1.8rem;
}
.container {
padding: 0 15px;
}
.hero h1 {
font-size: 2.2rem;
}
.hero p {
font-size: 1.1rem;
}
.feature-card {
padding: 20px;
}
.ps-tabs {
flex-direction: column;
border-bottom: none;
}
.ps-tab {
border-bottom: none;
border-left: 3px solid transparent;
padding: 10px 15px;
}
.ps-tab.active {
border-bottom: none;
border-left: 3px solid var(--primary);
}
}
/* Animation */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes float {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-10px);
}
100% {
transform: translateY(0px);
}
}
.animate-fade {
animation: fadeIn 0.8s ease forwards;
}
.animate-float {
animation: float 3s ease-in-out infinite;
}
.delay-1 {
animation-delay: 0.2s;
}
.delay-2 {
animation-delay: 0.4s;
}
.delay-3 {
animation-delay: 0.6s;
}
/* Particles Background */
.particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.particle {
position: absolute;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
pointer-events: none;
}
</style>
</head>
<body>
<!-- Header -->
<header id="header">
<div class="container header-container">
<a href="#" class="logo">
<i class="fas fa-ticket-alt"></i>
<span>Access</span>
</a>
<nav>
<ul>
<li><a href="#what-is-access">What is Access?</a></li>
<li><a href="#why-access">Why Access?</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#for-creators">For Creators</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#roadmap">Roadmap</a></li>
<li><a href="#contact" class="btn btn-outline">Get Early Access</a></li>
</ul>
</nav>
<button class="mobile-menu-btn" id="mobileMenuBtn">
<i class="fas fa-bars"></i>
</button>
</div>
</header>
<!-- Mobile Menu -->
<div class="mobile-menu" id="mobileMenu">
<div class="mobile-menu-header">
<a href="#" class="logo">
<i class="fas fa-ticket-alt"></i>
<span>Access</span>
</a>
<button class="mobile-menu-close" id="mobileMenuClose">
<i class="fas fa-times"></i>
</button>
</div>
<nav class="mobile-menu-nav">
<ul>
<li><a href="#what-is-access">What is Access?</a></li>
<li><a href="#why-access">Why Access?</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#for-creators">For Creators</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#roadmap">Roadmap</a></li>
<li><a href="#contact" class="btn">Get Early Access</a></li>
</ul>
</nav>
</div>
<div class="mobile-menu-overlay" id="mobileMenuOverlay"></div>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<div class="hero-content animate-fade">
<h1>Stop Scrolling, Start Experiencing.</h1>
<p>Discover Your Next IRL Adventure with Access. The AI-powered platform connecting you to personalized live events and empowering creators to engage their fans like never before.</p>
<div class="hero-btns">
<a href="#contact" class="btn">Get Early Access</a>
<a href="#what-is-access" class="btn btn-outline">Learn More</a>
</div>
</div>
</div>
</section>
<!-- What is Access Section -->
<section class="about" id="what-is-access">
<div class="container">
<h2 class="text-center animate-fade">Discover. Connect. Experience. All in One Place.</h2>
<p class="text-center mb-40 animate-fade delay-1">Access is the all-in-one platform designed to revolutionize how you discover and engage with live events. From concerts and festivals to pop-ups and more, our AI-powered engine learns your preferences to deliver personalized recommendations, while connecting you directly with your favorite creators.</p>
<div class="about-content">
<div class="about-text animate-fade delay-2">
<h3>Unlock a World of IRL Experiences with Access.</h3>
<p>Access is an AI-powered, all-in-one discovery platform built for the modern event-goer and forward-thinking creator. We're solving the frustration of fragmented event discovery by bringing together data from ticketing sites, artist pages, fan communities, and more.</p>
<p>Our intelligent engine learns your unique tastes and preferences to deliver hyper-personalized event recommendations, ensuring you never miss another unforgettable experience.</p>
<p>But Access is more than just discovery. We're building a connected ecosystem that empowers creators to engage directly with their fans through innovative tools and features.</p>
<a href="#features" class="btn mt-40">Explore Features</a>
</div>
<div class="about-image animate-fade delay-3">
<img src="https://images.unsplash.com/photo-1540575467063-178a50c2df87?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Concert crowd enjoying live music">
</div>
</div>
</div>
</section>
<!-- Why Access Section -->
<section class="problem-solution" id="why-access">
<div class="container">
<h2 class="text-center animate-fade">Solving the Chaos of IRL Event Discovery</h2>
<p class="text-center mb-40 animate-fade delay-1">Are you tired of juggling multiple apps, endlessly scrolling through social media, and sifting through countless emails just to find out what's happening?</p>
<div class="ps-tabs animate-fade delay-2">
<div class="ps-tab active" data-tab="problem">The Problem</div>
<div class="ps-tab" data-tab="solution">The Solution</div>
</div>
<div class="ps-content active" id="problemContent">
<div class="ps-point">
<div class="ps-point-icon">
<i class="fas fa-th-large"></i>
</div>
<div>
<h3>Multiple Platforms</h3>
<p>Users have to check numerous ticketing sites, social media feeds, artist websites, and local listings to find events.</p>
</div>
</div>
<div class="ps-point">
<div class="ps-point-icon">
<i class="fas fa-brain"></i>
</div>
<div>
<h3>Information Overload</h3>
<p>An overwhelming amount of irrelevant information makes it hard to find events you'll truly enjoy.</p>
</div>
</div>
<div class="ps-point">
<div class="ps-point-icon">
<i class="fas fa-calendar-times"></i>
</div>
<div>
<h3>Missed Opportunities</h3>
<p>Great events often fly under the radar due to poor targeting and lack of personalized recommendations.</p>
</div>
</div>
<div class="ps-point">
<div class="ps-point-icon">
<i class="fas fa-users"></i>
</div>
<div>
<h3>Friction in Planning</h3>
<p>Coordinating with friends, sharing event details, and managing payments can be a hassle.</p>
</div>
</div>
</div>
<div class="ps-content" id="solutionContent">
<div class="ps-point">
<div class="ps-point-icon">
<i class="fas fa-globe"></i>
</div>
<div>
<h3>Unified Platform</h3>
<p>We aggregate data from across the web into one centralized and easy-to-use platform.</p>
</div>
</div>
<div class="ps-point">
<div class="ps-point-icon">
<i class="fas fa-robot"></i>
</div>
<div>
<h3>Intelligent Curation</h3>
<p>Our AI algorithms learn your preferences to deliver highly personalized event recommendations.</p>
</div>
</div>
<div class="ps-point">
<div class="ps-point-icon">
<i class="fas fa-bolt"></i>
</div>
<div>
<h3>Seamless Experience</h3>
<p>From discovery to purchasing and even post-event engagement, Access streamlines the entire process.</p>
</div>
</div>
<div class="ps-point">
<div class="ps-point-icon">
<i class="fas fa-star"></i>
</div>
<div>
<h3>Empowering Creators</h3>
<p>We provide tools for artists and event organizers to connect directly with their fans.</p>
</div>
</div>
</div>
<h3 class="text-center mt-40 animate-fade delay-3">Imagine a World Where Finding Your Next Favorite Experience is Effortless. Welcome to Access.</h3>
</div>
</section>
<!-- Features Section -->
<section class="features" id="features">
<div class="container">
<h2 class="text-center animate-fade">Discover the Power of Access</h2>
<p class="text-center mb-40 animate-fade delay-1">Features Designed for You</p>
<div class="features-grid">
<div class="feature-card animate-fade delay-2">
<div class="feature-icon">
<i class="fas fa-robot"></i>
</div>
<h3>AI-Driven Curation</h3>
<p>Our intelligent algorithms analyze your music tastes, interests, location, and friend activity to surface personalized event recommendations.</p>
</div>
<div class="feature-card animate-fade delay-3">
<div class="feature-icon">
<i class="fas fa-users"></i>
</div>
<h3>Social & Group Coordination</h3>
<p>Easily invite friends to events, share details, see who's interested, and coordinate plans directly within the app.</p>
</div>
<div class="feature-card animate-fade delay-1">
<div class="feature-icon">
<i class="fas fa-wallet"></i>
</div>
<h3>Integrated Ticketing</h3>
<p>Purchase tickets directly within Access with our secure payment system and digital wallet integration.</p>
</div>
<div class="feature-card animate-fade delay-2">
<div class="feature-icon">
<i class="fas fa-bell"></i>
</div>
<h3>Smart Notifications</h3>
<p>Get alerts for events you'll love based on your preferences, without the spam of irrelevant notifications.</p>
</div>
<div class="feature-card animate-fade delay-3">
<div class="feature-icon">
<i class="fas fa-map-marked-alt"></i>
</div>
<h3>Interactive Maps</h3>
<p>Discover events near you with our intuitive map interface, complete with venue details and transportation options.</p>
</div>
<div class="feature-card animate-fade delay-1">
<div class="feature-icon">
<i class="fas fa-chart-line"></i>
</div>
<h3>Creator Analytics</h3>
<p>Artists and organizers gain valuable insights into their fanbase and event performance metrics.</p>
</div>
</div>
</div>
</section>
<!-- For Creators Section -->
<section class="about" id="for-creators">
<div class="container">
<h2 class="text-center animate-fade">Built for Creators, By Creators</h2>
<p class="text-center mb-40 animate-fade delay-1">Access isn't just for event-goers. We're building powerful tools to help artists, promoters, and venues connect with their audiences like never before.</p>
<div class="about-content">
<div class="about-image animate-fade delay-2">
<img src="https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Artist performing on stage">
</div>
<div class="about-text animate-fade delay-3">
<h3>Direct Fan Engagement</h3>
<p>Break through the noise of social media algorithms and connect directly with your most engaged fans. Our platform gives you the tools to share exclusive content, announce events, and build meaningful relationships with your audience.</p>
<h3 class="mt-40">Powerful Analytics</h3>
<p>Understand your audience like never before with our comprehensive analytics dashboard. Track engagement, discover your most active fans, and gain insights to help grow your following and sell more tickets.</p>
<h3 class="mt-40">Seamless Event Management</h3>
<p>From ticketing to promotion, Access provides everything you need to manage your events in one place. Focus on creating amazing experiences while we handle the logistics.</p>
<a href="#contact" class="btn mt-40">Join as a Creator</a>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<section class="team" id="team">
<div class="container">
<h2 class="text-center animate-fade">Meet The Team</h2>
<p class="text-center mb-40 animate-fade delay-1">Passionate creators building the future of live event discovery</p>
<div class="team-grid">
<div class="team-card animate-fade delay-2">
<img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Alex Johnson" class="team-image">
<div class="team-info">
<h4>Alex Johnson</h4>
<p>CEO & Founder</p>
<div class="team-social">
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fas fa-envelope"></i></a>
</div>
</div>
</div>
<div class="team-card animate-fade delay-3">
<img src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=688&q=80" alt="Sarah Chen" class="team-image">
<div class="team-info">
<h4>Sarah Chen</h4>
<p>CTO</p>
<div class="team-social">
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fas fa-envelope"></i></a>
</div>
</div>
</div>
<div class="team-card animate-fade delay-1">
<img src="https://images.unsplash.com/photo-1568602471122-7832951cc4c5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Michael Rodriguez" class="team-image">
<div class="team-info">
<h4>Michael Rodriguez</h4>
<p>Head of Product</p>
<div class="team-social">
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fas fa-envelope"></i></a>
</div>
</div>
</div>
<div class="team-card animate-fade delay-2">
<img src="https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Priya Patel" class="team-image">
<div class="team-info">
<h4>Priya Patel</h4>
<p>Head of Design</p>
<div class="team-social">
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fas fa-envelope"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Roadmap Section -->
<section class="roadmap" id="roadmap">
<div class="container">
<h2 class="text-center animate-fade">Our Roadmap</h2>
<p class="text-center mb-40 animate-fade delay-1">The journey ahead for Access</p>
<div class="timeline">
<div class="timeline-item left animate-fade delay-2">
<div class="timeline-content">
<div class="timeline-date">Q1 2023</div>
<h3>Concept & Research</h3>
<p>Initial concept development, market research, and validation with potential users and creators.</p>
</div>
</div>
<div class="timeline-item right animate-fade delay-3">
<div class="timeline-content">
<div class="timeline-date">Q2 2023</div>
<h3>Prototype Development</h3>
<p>Building the first functional prototype with core discovery and recommendation features.</p>
</div>
</div>
<div class="timeline-item left animate-fade delay-1">
<div class="timeline-content">
<div class="timeline-date">Q3 2023</div>
<h3>Beta Testing</h3>
<p>Closed beta launch with select users and creators to gather feedback and refine the platform.</p>
</div>
</div>
<div class="timeline-item right animate-fade delay-2">
<div class="timeline-content">
<div class="timeline-date">Q4 2023</div>
<h3>Public Beta Launch</h3>
<p>Open beta launch in select cities with expanded features and creator tools.</p>
</div>
</div>
<div class="timeline-item left animate-fade delay-3">
<div class="timeline-content">
<div class="timeline-date">Q1 2024</div>
<h3>Full Platform Launch</h3>
<p>Official launch of Access with complete feature set and nationwide availability.</p>
</div>
</div>
<div class="timeline-item right animate-fade delay-1">
<div class="timeline-content">
<div class="timeline-date">Q2 2024</div>
<h3>International Expansion</h3>
<p>Begin rollout to international markets with localized content and partnerships.</p>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="cta">
<div class="container">
<div class="cta-content">
<h2 class="animate-fade">Ready to Transform Your Event Experience?</h2>
<p class="animate-fade delay-1">Join our waitlist to be among the first to experience Access when we launch.</p>
<a href="#contact" class="btn animate-fade delay-2">Get Early Access</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="contact" id="contact">
<div class="container">
<h2 class="text-center animate-fade">Get In Touch</h2>
<p class="text-center mb-40 animate-fade delay-1">Have questions or want to join our beta program? Reach out to us.</p>
<div class="contact-container">
<div class="contact-form animate-fade delay-2">
<form id="contactForm">
<div
</html> |