@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700&family=Playfair+Display:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ancizar+Sans:ital,wght@0,100..1000;1,100..1000&display=swap');

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overscroll-behavior-y: none;
    background-color: #0a0a0a;
    scrollbar-width: none;
}

.modal, .navbar, .FPTF, .AIFE, .square, .scroll-button {
    will-change: opacity, transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

body {
    font-family: 'Raleway', sans-serif;
    background:
        radial-gradient(
            60vmax 60vmax at 0% 0%,
            hsl(0 0% 98% / 0.2) 0%,
            hsl(0 0% 98% / 0) 95%
        ),
        radial-gradient(
            80vmax 50vmax at 110% -10%,
            hsl(0 0% 95% / 0.2) 0%,
            hsl(0 0% 90% / 0.1) 50%,
            hsl(0 0% 85% / 0) 95%
        ),
        radial-gradient(
            90vmax 50vmax at 50vmax 50vmax,
            hsl(0 0% 100% / 0.2) 0%,
            hsl(0 0% 98% / 0) 95%
        )
        #000000;
    color: #e0e0e0;
    overscroll-behavior: none;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::-webkit-scrollbar {
    display: none;
}

body.no-scroll {
    overflow: hidden;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.background-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(100, 150, 255, 0.3);
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(1);
        opacity: 0;
    }
}

.start {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 2vh;
    position: fixed;
    top: 2rem;
    z-index: 100;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5vh 5vh;
    border-radius: 5vh;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 5vh;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.navbar:hover {
    background: rgba(28, 28, 28, 0.7);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(0.9rem, 2.1vh, 1.1rem);
    font-weight: 300;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.5));
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.navbar a:hover {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.navbar a:hover::after {
    width: 100%;
}

.navbar-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.AIFE {
    margin-bottom: 2vh;
    text-align: center;
    color: #ffffff;
    letter-spacing: 1.5px;
    position: relative;
    animation: fadeInUp 1.5s ease-out;
    font-weight: 300;
    transform: translateX(-70%) translateY(170%);
}

.AIFE .IY {
    font-size: clamp(3rem, 7.5vh, 6rem);
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
}

.AIFE .WA {
    font-size: clamp(1.2rem, 4vh, 2.5rem);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1vh;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-70%) translateY(calc(170% + 20px));
    }
    to {
        opacity: 1;
        transform: translateX(-70%) translateY(170%);
    }
}

.rocket-image {
    flex: 1;
    max-width: 55vh;
    height: auto;
    border-radius: 16px;
    object-fit: contain;
    transform: translateX(80%) translateY(-20%) rotate(20deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
    z-index: 1;
    position: relative;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3)) brightness(1.3);
}

.rocket-image:hover {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3)) brightness(1.7);
}

.mnn-portal,
.mnn-portal-final {
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    border: none;
    color: #000000;
    padding: clamp(1rem, 1.4vh, 1.5rem) clamp(2rem, 3vh, 3.5rem);
    border-radius: 3rem;
    font-size: clamp(0.9rem, 1.2vh, 1.2rem);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.5px;
    margin-top: 2vh;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.mnn-portal::before,
.mnn-portal-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.mnn-portal:hover::before,
.mnn-portal-final:hover::before {
    left: 100%;
}

.mnn-portal:hover,
.mnn-portal-final:hover {
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.mnn-portal:active,
.mnn-portal-final:active {
    transform: translateY(-1px);
}

.scroll-button {
    background: rgba(255, 255, 255, 0.05);
    border: 0.3vh solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(1.5rem, 3.5vh, 3rem);
    width: clamp(3rem, 6vh, 5rem);
    height: clamp(3rem, 6vh, 5rem);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: absolute;
    bottom: 20vh;
    left: 50%;
    transform: translateX(-50%);
    animation: floatButton 2s infinite ease-in-out;
    backdrop-filter: blur(10px);
}

@keyframes floatButton {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(-50%) translateY(-5px);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 100;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    width: 90%;
    max-width: 450px;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.modal:not(.hidden) .modal-content {
    transform: translateY(0) scale(1);
}

.modal h2 {
    margin-bottom: 2rem;
    font-family: 'Manrope', serif;
    color: white;
    font-weight: 300;
    text-align: center;
    font-size: clamp(1.3rem, 1.8rem, 2rem);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.modal h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}

.close-modal {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #888;
    font-size: clamp(1.3rem, 1.8rem, 2rem);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: white;
    transform: rotate(90deg);
    background-color: rgba(255, 255, 255, 0.15);
}

.auth-button {
    width: 100%;
    padding: 1rem;
    margin: 1rem 0;
    border: none;
    border-radius: 0.8rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: clamp(0.95rem, 1.1rem, 1.2rem);
    position: relative;
    overflow: hidden;
}

.auth-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.auth-button:hover::before {
    left: 100%;
}

.auth-button:hover {
    transform: translateY(-3px);
}

.google-button {
    background: linear-gradient(135deg, #af1010 0%, #8b0000 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(175, 16, 16, 0.3);
}

.google-button:hover {
    box-shadow: 0 8px 25px rgba(175, 16, 16, 0.4);
}

.discord-button {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-button:hover {
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

.github-button {
    background: linear-gradient(135deg, #24292e 0%, #1a1e22 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.github-button:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.introduction {
    min-height: 100vh;
    width: 100%;
    padding: clamp(4rem, 8rem, 10rem) 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.text-left, .text-right, .pricing-text, .offer-text {
    font-family: 'Manrope', serif;
    font-size: clamp(1.5rem, 2.5rem, 3.5rem);
    text-align: center;
    font-weight: 300;
    line-height: 1.4;
}

.text-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.text-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.container, .pricingcontainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    max-width: 1400px;
}

.container {
    margin-top: 5rem;
}

.pricingcontainer {
    margin-top: 2rem;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    width: 100%;
}

.square, .pricingsquare {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 3rem;
    width: 100%;
    max-width: 22.6rem;
    height: auto;
    min-height: 23.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.square::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.square:hover::before {
    opacity: 1;
}

.square:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: rgba(30, 30, 30, 0.8);
}

.infrastructure, .security, .help, .ease {
    width: 100%;
    max-width: 35rem;
    height: auto;
    min-height: 15rem;
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: block;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.infrastructure::after,
.security::after,
.help::after,
.ease::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
    transition: opacity 0.5s ease;
}

.infrastructure:hover,
.security:hover,
.help:hover,
.ease:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.infrastructure:hover::after,
.security:hover::after,
.help:hover::after,
.ease:hover::after {
    opacity: 0.5;
}

.security { background-image: url("/files/image_security.png"); }
.infrastructure { background-image: url("/files/image_infrastructure.png"); }
.help { background-image: url("/files/image_help.png"); }
.ease { background-image: url("/files/image_ease.png"); }

.title, .final-text {
    font-family: 'Manrope', serif;
    color: white;
    font-weight: 300;
}

.title {
    font-size: clamp(1.3rem, 1.8rem, 2rem);
    margin-bottom: 1.5rem;
}

.final-text {
    font-size: clamp(2rem, 5vh, 4rem);
}

.price {
    font-family: 'Manrope', serif;
    font-size: clamp(1.8rem, 2.5rem, 3rem);
    margin-bottom: 1.5rem;
    color: white;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: clamp(0.9rem, 1.05rem, 1.1rem);
    letter-spacing: 0.3px;
}

.prinfo {
    color: #cbcbcb;
    line-height: 1.8;
    font-size: clamp(0.9rem, 1.05rem, 1.1rem);
    letter-spacing: 0.3px;
}

.intro {
    color: #c7c7c7;
    margin-bottom: 1.5vh;
    line-height: 1.8;
    font-size: clamp(0.8rem, 0.9rem, 1rem);
    letter-spacing: 0.3px;
}

.pricingtitle {
    font-family: 'Manrope', serif;
    font-size: clamp(1.8rem, 3.9vh, 3rem);
    margin-bottom: 0.05rem;
    color: white;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    background: rgba(31, 31, 31, 0.6);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-label {
    font-size: clamp(0.9rem, 1rem, 1.1rem);
    color: #aaa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.toggle-label.active {
    color: #fff;
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background-color: #333;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-switch:hover {
    background-color: #444;
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.toggle-slider.enterprise {
    transform: translateX(30px);
}

.pricing-button {
    width: 100%;
    padding: 0.8rem;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    border: none;
    color: #000;
    border-radius: 0.8rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 1rem, 1.1rem);
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.page-end {
    position: relative;
    width: 100%;
    height: 50vh;
    background-color: #000;
    overflow: hidden;
}

.page-end::before {
    content: "MNN";
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(15vh, 50vh, 60vh);
    font-weight: bold;
    white-space: nowrap;
    pointer-events: none;
    font-family: 'Ancizar Sans', sans-serif;
    background: linear-gradient(to bottom,
        #a1a1a1 0%,
        #181818 10%,
        #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final {
    background: #000000;
    z-index: 10;
    text-align: center;
}

.copyright {
    text-align: center;
    background: #000000;
    padding: 2rem 1rem;
    font-size: clamp(0.8rem, 0.9rem, 1rem);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    font-weight: 300;
    position: relative;
    margin: 0;
    transition: all 0.3s ease;
}

.copyright a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    position: relative;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 400;
}

.copyright a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

.copyright a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.copyright a:hover::after {
    width: 100%;
}

::selection {
    background: rgba(255, 0, 85, 0.3);
    color: white;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 200;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .AIFE {
        transform: translateX(0) translateY(0);
        margin-top: 10vh;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateX(0) translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0) translateY(0);
        }
    }

    .rocket-image {
        transform: translateX(0) translateY(0) rotate(0deg);
        max-width: 40vh;
        margin-top: 3rem;
    }

    .navbar {
        padding: 2vh 3vh;
        gap: 1.5vh;
    }

    .infrastructure, .security, .help, .ease {
        max-width: 30rem;
        min-height: 12rem;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        justify-content: flex-end;
        padding: 1rem 1.5rem;
        width: auto;
        right: 1rem;
        left: 1rem;
        top: 1rem;
    }

    .navbar-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 150;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }

    .navbar-links.active {
        right: 0;
    }

    .navbar a {
        font-size: 1.2rem;
    }

    .hamburger-menu {
        display: flex;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        backdrop-filter: blur(5px);
        z-index: 140;
    }

    .menu-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .AIFE {
        transform: translateX(0) translateY(0);
        margin-top: 8vh;
        margin-bottom: 3vh;
    }

    .rocket-image {
        display: none;
    }

    .start {
        padding: 1rem;
    }

    .introduction {
        padding: 5rem 1.5rem;
    }

    .container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 100%;
        margin-top: 3rem;
    }

    .square, .pricingsquare {
        width: 100%;
        max-width: 100%;
        padding: 2rem;
    }

    .infrastructure, .security, .help, .ease {
        width: 100%;
        max-width: 100%;
        min-height: 12rem;
        padding: 2rem;
    }

    .scroll-button {
        bottom: 10vh;
    }

    .modal-content {
        padding: 2rem;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .start {
        padding: 0.5rem;
    }

    .navbar {
        padding: 0.8rem 1rem;
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
    }

    .AIFE {
        margin-top: 6vh;
    }

    .AIFE .IY {
        font-size: clamp(2rem, 6vh, 3.5rem);
    }

    .AIFE .WA {
        font-size: clamp(1rem, 3vh, 1.5rem);
    }

    .mnn-portal,
    .mnn-portal-final {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .introduction {
        padding: 4rem 1rem;
    }

    .text-left, .text-right, .pricing-text, .offer-text {
        font-size: clamp(1.2rem, 1.8rem, 2rem);
        padding: 0 0.5rem;
    }

    .container {
        margin-top: 2rem;
        gap: 1.5rem;
    }

    .square, .pricingsquare {
        padding: 1.5rem;
        min-height: auto;
    }

    .infrastructure, .security, .help, .ease {
        min-height: 10rem;
        padding: 1.5rem;
    }

    .title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .price {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .info, .prinfo, .intro {
        font-size: 0.9rem;
    }

    .pricing-toggle {
        padding: 8px 15px;
        gap: 15px;
        flex-wrap: wrap;
    }

    .toggle-switch {
        width: 50px;
        height: 26px;
    }

    .toggle-slider {
        width: 20px;
        height: 20px;
    }

    .toggle-slider.enterprise {
        transform: translateX(24px);
    }

    .modal-content {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .modal h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .auth-button {
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    .close-modal {
        top: 0.8rem;
        right: 0.8rem;
        width: 2rem;
        height: 2rem;
        font-size: 1.3rem;
    }

    .scroll-button {
        bottom: 8vh;
    }

    .page-end {
        height: 30vh;
    }

    .copyright {
        padding: 1.5rem 0.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .navbar-links {
        width: 90%;
    }

    .AIFE .IY {
        font-size: 2rem;
    }

    .AIFE .WA {
        font-size: 1rem;
    }

    .text-left, .text-right, .pricing-text, .offer-text {
        font-size: 1.2rem;
    }

    .square, .pricingsquare {
        padding: 1.2rem;
    }

    .infrastructure, .security, .help, .ease {
        min-height: 8rem;
        padding: 1.2rem;
    }
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.5s ease;
}

.fade-enter-from,
.fade-leave-to {
    opacity: 0;
}

@media (max-width: 768px) {
    .navbar {
        justify-content: flex-end;
        padding: 1rem;
        width: auto;
        right: 1rem;
        left: 1rem;
    }
    .navbar-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: #000000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 150;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }
    .navbar-links.active {
        right: 0;
        background: #000000;
    }
    .hamburger-menu {
        display: flex;
    }
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: black;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        backdrop-filter: blur(5px);
    }
    .menu-overlay.active {
        opacity: 1;
        z-index: 1;
        background: black;
        pointer-events: all;
    }

    .navbar {
        gap: 1rem;
        padding: 1rem 1.8rem;
        top: 1rem;
        width: 90%;
    }

    .navbar a {
        font-size: 0.8rem;
    }

    .FPTF {
        font-size: 2.6rem;
        margin-top: -10rem;
    }

    .AIFE .IY {
        font-size: 5.5vh;
    }

    .AIFE .WA {
        font-size: 3vh;
    }

    .text-left, .text-right {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .infrastructure, .security, .help, .ease {
        width: 100%;
        background: transparent !important;
        height: 100%;
    }

    .container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 100%;
        margin-top: 3rem;
    }

    .square, .pricingsquare {
        width: 100%;
        padding: 2rem;
    }

    .mnn-portal {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .title {
        font-size: 1.6rem;
    }

    .info {
        font-size: 1rem;
        line-height: 1.6;
    }

    .scroll-button {
        bottom: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.4rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
        max-width: 350px;
        border-radius: 1.2rem;
    }

    .modal h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .close-modal {
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        width: 2rem;
        height: 2rem;
    }

    .auth-button {
        padding: 0.8rem;
        margin: 0.8rem 0;
        font-size: 1rem;
        border-radius: 0.6rem;
    }

    .auth-button:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
    }

    .auth-button:active {
        transform: scale(0.97);
        transition: transform 0.1s;
    }

    .modal {
        z-index: 2000;
    }

    body.modal-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .modal:not(.hidden) + body {
        overflow: hidden;
    }

    .auth-button {
        min-height: 3rem;
    }

    .modal h2::after {
        width: 40px;
    }

    .page-end::before {
        content: "MNN";
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 20vh;
        font-weight: bold;
        white-space: nowrap;
        pointer-events: none;
        font-family: 'Ancizar Sans', sans-serif;

        background: linear-gradient(to bottom,
            #a1a1a1 0%,
            #181818 10%,
            #000000 100%,
                rgba(0, 0, 0, 1) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
    }
}