/* ─── MoveOn · Immersive App Redirect ────────────────── */

.moveon {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #08080f;
    overflow: hidden;
    padding: 60px 20px;
}

/* ─── Animated Background Orbs ───────────────────────── */

.moveon__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
    will-change: transform;
}

.moveon__orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #f97316 0%, transparent 70%);
    top: -10%;
    right: -8%;
    animation: orbFloat1 14s ease-in-out infinite;
}

.moveon__orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ea580c 0%, transparent 70%);
    bottom: -5%;
    left: -6%;
    animation: orbFloat2 18s ease-in-out infinite;
}

.moveon__orb--3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #c2410c 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.1); }
    66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -40px) scale(1.15); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.15; }
}

/* ─── Content Container ──────────────────────────────── */

.moveon__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ─── Hero ────────────────────────────────────────────── */

.moveon__hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.moveon__logo-glow {
    position: absolute;
    top: -20px;
    width: 200px;
    height: 80px;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.moveon__logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(249, 115, 22, 0.2));
}

.moveon__headline {
    margin: 0;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: #f0f0f5;
    letter-spacing: -0.02em;
}

.moveon__headline-accent {
    background: linear-gradient(135deg, #f97316, #fb923c, #fdba74);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.moveon__subline {
    margin: 0;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    color: #9a9ab0;
    max-width: 440px;
}

/* ─── Features ────────────────────────────────────────── */

.moveon__features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.moveon__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    animation: featureSlideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.moveon__feature:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(249, 115, 22, 0.2);
    transform: translateX(4px);
}

@keyframes featureSlideIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.moveon__feature-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 12px;
}

.moveon__feature-title {
    margin: 0 0 4px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #e8e8f0;
}

.moveon__feature-desc {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.5;
    color: #7a7a94;
}

/* ─── Store Buttons ───────────────────────────────────── */

.moveon__stores {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.moveon__store-link {
    display: block;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.3s ease;
}

.moveon__store-link:hover {
    transform: translateY(-3px) scale(1.03);
    filter: brightness(1.1);
}

.moveon__store-link:active {
    transform: translateY(0) scale(0.98);
}

.moveon__store-badge {
    height: 100px;
    width: auto;
    border-radius: 10px;
}

/* ─── Footer decoration ──────────────────────────────── */

.moveon__footer-line {
    width: 60px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), transparent);
}

/* ─── Responsive ──────────────────────────────────────── */

@media (max-width: 480px) {
    .moveon {
        padding: 40px 16px;
    }

    .moveon__content {
        gap: 36px;
    }

    .moveon__logo {
        max-width: 140px;
    }

    .moveon__feature {
        padding: 16px 18px;
    }

    .moveon__store-badge {
        height: 100px;
    }

    .moveon__orb--1 {
        width: 300px;
        height: 300px;
    }

    .moveon__orb--2 {
        width: 250px;
        height: 250px;
    }

    .moveon__orb--3 {
        width: 150px;
        height: 150px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .moveon__logo {
        max-width: 160px;
    }
}

/*body {*/
/*    background: rgb(36 40 43) !important;*/
/*}*/


/*.moveon-container {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/

/*.moveon-store-container {*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    margin-top: 20px;*/
/*}*/

/*.moveon-ul-container {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    width: 100vw;*/
/*    justify-content: space-evenly;*/
/*}*/

/*.moveon-title {*/
/*    color: #ffffff;*/
/*    width: 60vw;*/
/*    text-align: center;*/
/*}*/

/*.moveon-app-name {*/
/*    max-height: 300px;*/
/*}*/


/*!**/
/*###################################################*/
/*- Responsive design*/
/*###################################################*/
/**!*/
/*@media all and (min-width: 1024px) and (max-width: 1280px) {*/
/*    .moveon-title {*/
/*        color: #ffffff;*/
/*        width: 75vw;*/
/*        text-align: center;*/
/*    }*/
/*}*/

/*@media all and (min-width: 768px) and (max-width: 1024px) {*/
/*    .moveon-title {*/
/*        font-size: 1.5em;*/
/*        color: #ffffff;*/
/*        width: 75vw;*/
/*        text-align: center;*/
/*    }*/
/*}*/

/*@media all and (min-width: 480px) and (max-width: 768px) {*/
/*    .moveon-title {*/
/*        font-size: 1.5em;*/
/*        color: #ffffff;*/
/*        width: 70vw;*/
/*        text-align: center;*/
/*    }*/
/*}*/

/*@media all and (max-width: 480px) {*/
/*    .moveon-title {*/
/*        font-size: 1.5em;*/
/*        color: #ffffff;*/
/*        width: 80vw;*/
/*        text-align: center;*/
/*    }*/
/*}*/
