* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    background: radial-gradient(ellipse at bottom, #1E0D31, #111);
    background-attachment: fixed;
    background-size: 100% 100%;
    -webkit-overflow-scrolling: touch;
}

main {
    width: 100%;
    max-width: 1200px;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto;
    padding: 20px;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #8A2BE2 #2c2c2c;
}

nav a {
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8A2BE2;
}

.night {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.meteor {
    position: absolute;
    height: 2px;
    background: linear-gradient(-45deg, #9D4EDD, rgba(0, 0, 255, 0));
    filter: drop-shadow(0 0 4px #9D4EDD);
    animation: meteorAnimation var(--duration) ease-out var(--delay) both;
    transform: rotate(var(--angle)) translateX(0) translateY(0);
    transform-origin: left center;
    will-change: transform, opacity;
    opacity: 0;
}

@keyframes meteorAnimation {
    0% {
        width: 0;
        opacity: 0;
        transform: rotate(var(--angle)) translateX(0) translateY(0);
    }
    10% {
        width: var(--tail-length);
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        width: 0;
        opacity: 0;
        transform: rotate(var(--angle)) translateX(var(--distance-x)) translateY(var(--distance-y));
    }
}

.meteor::before,
.meteor::after {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    height: 2px;
    background: linear-gradient(-45deg, rgba(0, 0, 255, 0), #8A2BE2, rgba(0, 0, 255, 0));
    border-radius: 100%;
    transform: translateX(50%) rotateZ(45deg);
    animation: shining var(--duration) ease-in var(--delay) both;
}

.meteor::after {
    transform: translateX(50%) rotateZ(-45deg);
}

@keyframes shining {
    0% {
        width: 0;
    }
    50% {
        width: var(--shine-width);
    }
    100% {
        width: 0;
    }
}

.background-star {
    position: absolute;
    width: 1px;
    height: 1px;
    background-color: white;
    border-radius: 50%;
    animation: twinkle var(--twinkle-duration) ease-in-out infinite;
    opacity: 0;
    will-change: transform, opacity;
}

@keyframes twinkle {
    0%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: var(--twinkle-opacity);
        transform: scale(1);
    }
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes floating2 {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes floating3 {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@font-face {
    font-family: "thin";
    src: url(fonts/-Thin.woff)
}

.thin {
    font-family: "thin", sans-serif;
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "semibold";
    src: url(fonts/SemiBold.woff)
}

.semibold {
    font-family: "semibold", sans-serif;
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "regular";
    src: url(../fonts/Regular.woff)
}

.regular {
    font-family: "regular", sans-serif;
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "medium";
    src: url(fonts/-Medium.woff)
}

.medium {
    font-family: "medium", sans-serif;
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "light";
    src: url(fonts/-Light.woff)
}

.light {
    font-family: "light", sans-serif;
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "extralight";
    src: url(fonts/-ExtraLight.woff)
}

.extralight {
    font-family: "extralight", sans-serif;
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "extrabold";
    src: url(fonts/-ExtraBold.woff)
}

.extrabold {
    font-family: "extrabold", sans-serif;
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "bold";
    src: url(fonts/-Bold.woff)
}

.bold {
    font-family: "bold", sans-serif;
    font-weight: 700;
    font-style: normal;
}

main {
    width: 1000px;
    height: 1000px;
    position: absolute;
    top: 0;
    left: calc(50% - 500px);
    padding: 20px 0;
}

nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 24px;
    border: solid 1px #262626;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease-in-out;
}

nav li {
    list-style-type: none;
    float: left;
    padding: 10px 20px;
}

nav li a {
    text-decoration: none;
    color: #c0c4ca;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.3s ease;
}

nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #9D4EDD;
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

nav li a:hover {
    color: white;
}

nav li a:hover::after {
    width: 100%;
}

nav li a:not(:hover)::after {
    width: 0;
    transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
}

nav .logo img {
    width: 32px;
    height: 32px;
    border-radius: 32px;
}

nav .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

nav .alogo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.getstarted {
    color: white;
    background-color: #9D4EDD;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 6px;
}

.getstarted:hover {
    transform: translateY(-2px);
    background-color: #7B2CBF;
    box-shadow: 0 4px 12px rgba(157, 78, 221, 0.4);
}

.getstarted:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.border {
    border-left: solid 1px #262626;
    padding-left: 18px;
}

.logo {
    color: white;
}

.grad {
    color: #9D4EDD;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 100;
}

.menu-toggle .bar {
    height: 2px;
    width: 100%;
    background-color: white;
    transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
    display: flex;
    align-items: center;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
}

.desktop-getstarted {
    display: block;
}

.mobile-getstarted {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding: 0;
        margin: 0;
        transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out 0.1s, padding 0.3s ease-in-out, margin 0.3s ease-in-out;
    }
    .nav-links.active {
        display: flex;
        max-height: 500px;
        opacity: 1;
        padding: 20px 0;
        margin-top: 20px;
    }
    nav li {
        width: 100%;
        padding: 10px 0;
        transform: translateY(-10px);
        opacity: 0;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }
    .nav-links.active li {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }
    .nav-links.active li:nth-child(2) {
        transition-delay: 0.15s;
    }
    .nav-links.active li:nth-child(3) {
        transition-delay: 0.2s;
    }
    .nav-links.active li:nth-child(4) {
        transition-delay: 0.25s;
    }
    .desktop-getstarted {
        display: none;
    }
    .mobile-getstarted {
        display: block;
        width: 100%;
        padding: 10px 0;
        transform: translateY(-10px);
        opacity: 0;
        transition: transform 0.3s ease-in-out 0.3s, opacity 0.3s ease-in-out 0.3s;
    }
    .nav-links.active .mobile-getstarted {
        transform: translateY(0);
        opacity: 1;
    }
    .mobile-getstarted .border {
        border-left: none;
        padding-left: 0;
    }
    .mobile-getstarted .getstarted {
        width: 100%;
    }
    main {
        width: 100%;
        left: 0;
        padding: 20px;
    }
    nav {
        flex-wrap: wrap;
        padding: 15px;
    }
}

.hero {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
    margin-top: 40px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero .container .title {
    text-align: center;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.2;
    color: white;
    cursor: context-menu;
}

.hero .container .under {
    color: #c0c4ca;
    font-size: clamp(16px, 2vw, 20px);
    margin: 20px 0;
    text-align: center;
    cursor: context-menu;
}

.hero .container .contacts {
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero .container .contacts .waitlistbutton {
    height: 46px;
    width: 200px;
    border: solid 1px #262626;
    backdrop-filter: blur(10px);
    background-color: #7B2CBF;
    border-radius: 20px;
    text-align: center;
    padding: 12px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 16px;
    margin-top: 25px;
}

.hero .container .contacts .waitlistbutton:hover {
    transform: translateY(-2px);
    background-color: #7B2CBF;
    box-shadow: 0 4px 12px rgba(157, 78, 221, 0.4);
}

.hero .container .contacts .waitlistbutton:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero .container .contacts .email:focus {
    border-color: #9D4EDD;
    box-shadow: 0 0 0 2px rgba(157, 78, 221, 0.2);
}

.display {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.display img {
    border-radius: 8px;
    box-shadow: 0 0 60px 0px rgba(157, 78, 221, 0.6);
    max-width: 100%;
    height: auto;
    margin-top: 40px;
}

@media (max-width: 768px) {
    nav {
        padding: 15px;
    }
    .hero {
        padding: 20px 10px;
    }
    .hero .container {
        width: 100%;
    }
    .hero .container .contacts {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .hero .container .contacts .email,
    .hero .container .contacts .waitlistbutton {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero .container .contacts {
        gap: 10px;
    }
    .hero .container .contacts .email,
    .hero .container .contacts .waitlistbutton {
        height: 40px;
    }
    nav li {
        padding: 8px 0;
    }
}

@media (max-width: 600px) {
    .logo {
        font-size: 18px;
    }
    nav li a {
        font-size: 14px;
    }
    .getstarted {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero .container .contacts .waitlistbutton {
        height: 66px;
        font-size: 19px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .hero .container .contacts .waitlistbutton {
        height: 70px;
        font-size: 20px;
        padding: 16px;
    }
}

.benefits {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 80px;
    padding-top: 55px;
}

.benefits .title {
    text-align: center;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.2;
    color: white;
    cursor: context-menu;
}

.benefits .under {
    color: #c0c4ca;
    font-size: clamp(16px, 2vw, 20px);
    margin: 10px 0;
    text-align: center;
    cursor: context-menu;
}

.benefits .box .name {
    color: White;
    font-size: 25px;
    margin: 15px 0;
}

.benefits .box .desc {
    color: #c0c4ca;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.benefits .boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.benefits .box {
    width: 250px;
    height: 390px;
    background: rgba(30, 13, 49, 0.7);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    padding: 10px;
    cursor: context-menu;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefits .box img {
    margin-top: 20px;
    width: 200px;
    border-radius: 8px;
}

.reviews {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews .stars {
    margin-bottom: 30px;
    display: Flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.reviews .title {
    text-align: center;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.2;
    color: white;
    cursor: context-menu;
}

.reviews .boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.reviews .box {
    padding: 30px;
    background: rgba(30, 13, 49, 0.7);
    border-radius: 16px;
    border-left: 3px solid #9D4EDD;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    width: 310px;
    height: 160px;
}

.reviews .box:hover {
    background: rgba(13, 30, 49, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(157, 78, 221, 0.2);
}

.reviews .box .profile {
    border-radius: 32px;
}

.reviews .box .profile img {
    width: 32px;
    height: 32px;
    border-radius: 32px;
    float: left;
}

.reviews .box .cred .name {
    font-size: 16px;
    margin-left: 10px;
}

.reviews .box .cred .work {
    font-size: 13px;
    color: #c0c4ca;
    margin-left: 10px;
}

.reviews .box .desc {
    font-size: 15px;
    color: #c0c4ca;
    margin-top: 15px;
}

.faq {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    padding: 40px 20px;
}

.faq .container {
    width: 100%;
    max-width: 800px;
}

.faq .title {
    text-align: center;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.2;
    color: white;
    cursor: context-menu;
}

.faq .under {
    color: #c0c4ca;
    font-size: clamp(16px, 2vw, 20px);
    margin: 10px 0 40px;
    text-align: center;
    cursor: context-menu;
}

.faq .questions {
    width: 100%;
}

.faq .question {
    width: 100%;
    margin-bottom: 15px;
    background: rgba(30, 13, 49, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq .question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
}

.faq .question-title {
    color: white;
    font-size: 18px;
    margin: 0;
    transition: color 0.3s ease;
}

.faq .question-toggle {
    color: #9D4EDD;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq .question-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    cursor: context-menu;
}

.faq .desc {
    color: #c0c4ca;
    font-size: 15px;
    line-height: 1.6;
    padding: 5px 0 20px;
    margin: 0;
}

.faq .question.active {
    background: rgba(13, 30, 49, 0.8);
    border-color: rgba(157, 78, 221, 0.4);
}

.faq .question.active .question-toggle {
    transform: rotate(45deg);
    color: white;
}

.faq .question.active .question-answer {
    max-height: 500px;
    padding: 0 25px 20px;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
}

.benefits .box:hover,
.reviews .box:hover,
.faq .question:hover {
    background: rgba(40, 20, 70, 0.85);
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.3), inset 0 0 10px rgba(157, 78, 221, 0.1);
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

footer {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 60px 5% 30px;
    background: rgba(30, 13, 49, 0.7);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(157, 78, 221, 0.1);
    position: relative;
    gap: 30px;
    row-gap: 40px;
    border-radius: 12px;
}

footer .box {
    width: 200px;
    min-height: 150px;
    padding: 15px;
    transition: all 0.3s ease;
}

footer .box .logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(157, 78, 221, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

footer .box:hover .logo {
    border-color: #9D4EDD;
    transform: scale(1.05);
}

footer .box .name {
    margin-top: 15px;
    line-height: 1.3;
    color: white;
    font-size: 18px;
    cursor: context-menu;
}

footer .box .under {
    line-height: 1.5;
    color: #c0c4ca;
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.8;
    cursor: context-menu;
}

footer .box .title {
    line-height: 1.2;
    font-size: 18px;
    margin-bottom: 20px;
    color: #9D4EDD;
    position: relative;
    display: inline-block;
    cursor: context-menu;
}

footer .box .title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #8A2BE2;
    opacity: 0.5;
}

footer .box li {
    list-style-type: none;
    line-height: 2;
    margin-left: -5px;
    padding: 2px 5px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

footer .box a {
    text-decoration: none;
    color: #c0c4ca;
    display: block;
    transition: all 0.3s ease;
}

footer .box a:hover {
    color: white;
    transform: translateX(5px);
}

footer .box a:hover li {
    background: rgba(157, 78, 221, 0.1);
}

footer .line {
    margin: 20px 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(157, 78, 221, 0.3), transparent);
}

footer .social-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0 20px;
}

footer .icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

footer .icons img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

footer .icons img:hover {
    opacity: 1;
    transform: translateY(-3px) scale(1.1);
    filter: drop-shadow(0 0 8px rgba(157, 78, 221, 0.4));
}

footer .cp {
    color: #c0c4ca;
    width: 100%;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    cursor: context-menu;
}

@media (max-width: 900px) {
    footer {
        gap: 20px;
        row-gap: 30px;
    }
    footer .box {
        width: calc(50% - 20px);
        text-align: center;
    }
    footer .box .title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    footer .box a:hover {
        transform: none;
    }
}

@media (max-width: 600px) {
    footer {
        gap: 0;
        row-gap: 30px;
    }
    footer .box {
        width: 100%;
        max-width: 300px;
    }
    footer .icons {
        gap: 15px;
    }
}

.scroll-animate {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up {
    transform: translateY(30px);
}

.animate-fade-left {
    transform: translateX(-30px);
}

.animate-fade-right {
    transform: translateX(30px);
}

.animate-scale {
    transform: scale(0.8);
}

.animate-fade-up.animate-active,
.animate-fade-left.animate-active,
.animate-fade-right.animate-active,
.animate-scale.animate-active {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

.delay-700 {
    transition-delay: 0.7s;
}

.float {
    display: flex;
    animation-name: floating;
    animation-duration: 2.2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.float2 {
    animation-name: floating2;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.float3 {
    animation-name: floating3;
    animation-duration: 2.2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.float img,
.float3 img,
.float2 img {
    width: 250px;
    border-radius: 10px;
}