/* ==========================================
   AI Future Hub
   Future Desk
   ========================================== */


.future-desk {

    min-height: 100vh;

    padding:

        150px 7% 100px;

    position: relative;

    z-index: 1;

}


/* ==========================================
   Hero
   ========================================== */

.future-desk-hero {

    max-width: 900px;

    margin: 0 auto;

    text-align: center;

}


/* ==========================================
   Badge
   ========================================== */

.future-badge {

    display: inline-block;

    padding: 8px 18px;

    border:

        1px solid rgba(0, 229, 255, .35);

    border-radius: 30px;

    color: #00e5ff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 25px;

    background:

        rgba(0, 229, 255, .05);

}


/* ==========================================
   Heading
   ========================================== */

.future-desk h1 {

    font-size: 64px;

    line-height: 1.08;

    font-weight: 800;

    color: white;

    margin: 0 0 25px;

}


.future-desk h1 span {

    display: block;

    background:

        linear-gradient(90deg,
            #00e5ff,
            #7b61ff,
            #ff4dff,
            #00e5ff);

    background-size: 300%;

    background-clip: text;

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    animation:

        futureGradient 8s linear infinite;

}


.future-desk-hero>p {

    max-width: 650px;

    margin:

        0 auto 45px;

    color: #c7d3f7;

    font-size: 18px;

    line-height: 1.8;

}


/* ==========================================
   Goal Box
   ========================================== */

.goal-box {

    max-width: 800px;

    margin: 0 auto;

    padding: 5px;

    border-radius: 20px;

    background:

        linear-gradient(135deg,
            rgba(0, 229, 255, .5),
            rgba(123, 97, 255, .4),
            rgba(255, 77, 255, .35));

    box-shadow:

        0 0 40px rgba(0, 229, 255, .08);

}


.goal-box textarea {

    display: block;

    width: 100%;

    min-height: 150px;

    resize: vertical;

    border: none;

    outline: none;

    border-radius: 16px 16px 10px 10px;

    padding: 25px;

    background:

        rgba(4, 8, 25, .96);

    color: white;

    font-family: inherit;

    font-size: 17px;

    line-height: 1.6;

}


.goal-box textarea::placeholder {

    color:

        rgba(199, 211, 247, .45);

}


/* ==========================================
   Goal Footer
   ========================================== */

.goal-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 12px 14px 12px 20px;

    background:

        rgba(4, 8, 25, .98);

    border-radius:

        10px 10px 16px 16px;

}


#characterCount {

    color:

        rgba(199, 211, 247, .55);

    font-size: 13px;

}


/* ==========================================
   Button
   ========================================== */

#findPathBtn {

    border: none;

    outline: none;

    cursor: pointer;

    padding:

        14px 24px;

    border-radius: 12px;

    color: white;

    font-weight: 700;

    letter-spacing: .5px;

    background:

        linear-gradient(135deg,
            #00a8ff,
            #6c4dff);

    box-shadow:

        0 0 20px rgba(0, 168, 255, .18);

    transition:

        transform .25s ease,
        box-shadow .25s ease;

}


#findPathBtn:hover {

    transform: translateY(-2px);

    box-shadow:

        0 0 30px rgba(0, 168, 255, .35);

}


#findPathBtn span {

    margin-left: 8px;

    font-size: 18px;

}


/* ==========================================
   Example Goals
   ========================================== */

.goal-examples1 {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 20px;

}


.goal-examples1>span {

    color:

        rgba(199, 211, 247, .5);

    font-size: 13px;

}


.example-goal {

    border:

        1px solid rgba(255, 255, 255, .1);

    background:

        rgba(255, 255, 255, .035);

    color: #c7d3f7;

    padding:

        8px 14px;

    border-radius: 20px;

    cursor: pointer;

    transition: .25s ease;

}


.example-goal:hover {

    border-color:

        rgba(0, 229, 255, .4);

    color: #00e5ff;

    background:

        rgba(0, 229, 255, .06);

}


/* ==========================================
   Results
   ========================================== */

.future-results {

    max-width: 1000px;

    margin:

        100px auto 0;

}


/* ==========================================
   Animation
   ========================================== */

@keyframes futureGradient {

    from {

        background-position: 0%;

    }

    to {

        background-position: 300%;

    }

}


/* ==========================================
   Mobile
   ========================================== */

@media (max-width: 700px) {

    .future-desk {

        padding:

            120px 20px 70px;

    }


    .future-desk h1 {

        font-size: 42px;

    }


    .future-desk-hero>p {

        font-size: 16px;

    }


    .goal-footer {

        align-items: stretch;

        flex-direction: column;

    }


    #findPathBtn {

        width: 100%;

    }


    .goal-examples {

        flex-direction: column;

    }

}



/* ==========================================
   Result Card
   ========================================== */

.future-result-card {

    padding: 35px;

    border:

        1px solid rgba(0, 229, 255, .15);

    border-radius: 22px;

    background:

        rgba(7, 12, 35, .72);

    backdrop-filter: blur(18px);

    box-shadow:

        0 20px 60px rgba(0, 0, 0, .25);

    animation:

        resultAppear .6s ease;

}


.future-result-card h2 {

    color: #00e5ff;

    margin-top: 0;

}


.future-result-card p {

    color: #c7d3f7;

    line-height: 1.7;

}


@keyframes resultAppear {

    from {

        opacity: 0;

        transform:
            translateY(25px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}



/* ==========================================
   Future Desk
   Recognized Goal
   ========================================== */

.result-icon {

    font-size: 48px;

    margin-bottom: 15px;

}


.result-category {

    display: inline-block;

    color: #00e5ff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 12px;

}


.future-result-card h2 {

    font-size: 36px;

    color: white;

    margin-bottom: 15px;

}


.result-description {

    max-width: 700px;

    color: #c7d3f7;

    line-height: 1.8;

    font-size: 16px;

}


/* ==========================================
   Recognized Goal
   ========================================== */

.recognized-goal {

    margin:

        30px 0;

    padding:

        18px 20px;

    border-left:

        3px solid #00e5ff;

    border-radius: 10px;

    background:

        rgba(0, 229, 255, .04);

}


.recognized-goal span {

    display: block;

    margin-bottom: 7px;

    color:

        rgba(199, 211, 247, .45);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.recognized-goal strong {

    color: white;

    font-size: 17px;

    font-weight: 500;

}







/* ==========================================
   Goal Breakdown
   ========================================== */

.goal-breakdown {

    margin:

        25px 0 30px;

    padding: 20px;

    border:

        1px solid rgba(123, 97, 255, .18);

    border-radius: 15px;

    background:

        rgba(123, 97, 255, .035);

}


.goal-breakdown-label {

    margin-bottom: 15px;

    color:

        rgba(199, 211, 247, .45);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.goal-area-list {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}


.goal-area {

    display: flex;

    align-items: center;

    gap: 8px;

    padding:

        9px 12px;

    border:

        1px solid rgba(255, 255, 255, .08);

    border-radius: 9px;

    background:

        rgba(255, 255, 255, .025);

}


.goal-area span {

    font-size: 16px;

}


.goal-area strong {

    color:

        rgba(220, 230, 255, .8);

    font-size: 11px;

}


.goal-breakdown p {

    margin:

        15px 0 0;

    color:

        rgba(199, 211, 247, .5);

    font-size: 12px;

    line-height: 1.6;

}








/* ==========================================
   Recommended Path
   ========================================== */

.future-result-card h3 {

    color: white;

    font-size: 16px;

    letter-spacing: 1px;

    margin:

        35px 0 20px;

}


.path-container {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.path-step {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 16px 18px;

    border:

        1px solid rgba(255, 255, 255, .08);

    border-radius: 12px;

    background:

        rgba(255, 255, 255, .025);

    transition:

        transform .25s ease,
        border-color .25s ease;

}


.path-step:hover {

    transform:

        translateX(5px);

    border-color:

        rgba(0, 229, 255, .3);

}


.step-number {

    min-width: 34px;

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: white;

    font-weight: 700;

    background:

        linear-gradient(135deg,
            #00a8ff,
            #6c4dff);

}


.step-content {

    color: #d8e2ff;

    line-height: 1.5;

}


/* ==========================================
   Start Path
   ========================================== */

.start-path-btn {

    margin-top: 35px;

    padding:

        15px 25px;

    border: none;

    border-radius: 12px;

    cursor: pointer;

    color: white;

    font-weight: 700;

    background:

        linear-gradient(135deg,
            #00a8ff,
            #6c4dff);

    transition:

        transform .25s ease,
        box-shadow .25s ease;

}


.start-path-btn:hover {

    transform:

        translateY(-2px);

    box-shadow:

        0 0 30px rgba(0, 168, 255, .3);

}


.start-path-btn span {

    margin-left: 8px;

}






/* ==========================================
   Recommended Tools
   ========================================== */

.tools-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

}


.tool-card {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    position: relative;

    padding: 20px;

    text-decoration: none;

    border:

        1px solid rgba(255, 255, 255, .08);

    border-radius: 16px;

    background:

        rgba(255, 255, 255, .025);

    transition:

        transform .25s ease,
        border-color .25s ease,
        background .25s ease;

}


.tool-card:hover {

    transform:

        translateY(-4px);

    border-color:

        rgba(0, 229, 255, .35);

    background:

        rgba(0, 229, 255, .04);

}


.tool-icon {

    min-width: 46px;

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:

        rgba(0, 229, 255, .08);

    font-size: 23px;

}


.tool-info {

    padding-right: 20px;

}


.tool-info h4 {

    margin:

        0 0 5px;

    color: white;

    font-size: 17px;

}


.tool-info span {

    color: #00e5ff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.tool-info p {

    margin:

        9px 0 0;

    color:

        rgba(199, 211, 247, .65);

    font-size: 13px;

    line-height: 1.6;

}


.tool-arrow {

    position: absolute;

    right: 18px;

    top: 18px;

    color:

        rgba(255, 255, 255, .45);

    font-size: 18px;

}


@media (max-width: 700px) {

    .tools-grid {

        grid-template-columns: 1fr;

    }

}





/* ==========================================
   Step Tools
   ========================================== */

.step-content {

    flex: 1;

}


.step-content>strong {

    display: block;

    color: #dce6ff;

    font-size: 15px;

    margin-bottom: 10px;

}


.step-tools {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

}


.mini-tool {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:

        7px 11px;

    border:

        1px solid rgba(0, 229, 255, .15);

    border-radius: 8px;

    color: #b9c8ed;

    background:

        rgba(0, 229, 255, .035);

    font-size: 12px;

    text-decoration: none;

    transition:

        .25s ease;

}


.mini-tool:hover {

    color: #00e5ff;

    border-color:

        rgba(0, 229, 255, .4);

    background:

        rgba(0, 229, 255, .08);

    transform:

        translateY(-2px);

}


.mini-tool span {

    font-size: 15px;

}


.mini-tool b {

    font-size: 12px;

    font-weight: 400;

    opacity: .6;

}



/* ==========================================
   Interactive Action Plan
   ========================================== */

.progress-area {

    margin: 30px 0 35px;

}


.progress-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 10px;

}


.progress-top span {

    color:

        rgba(199, 211, 247, .5);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.progress-percent {

    color: #00e5ff;

    font-size: 14px;

}


.progress-track {

    width: 100%;

    height: 7px;

    overflow: hidden;

    border-radius: 20px;

    background:

        rgba(255, 255, 255, .07);

}


.progress-fill {

    width: 0%;

    height: 100%;

    border-radius: inherit;

    background:

        linear-gradient(90deg,
            #00e5ff,
            #7b61ff,
            #ff4dff);

    transition:

        width .5s ease;

}


/* ==========================================
   Action Steps
   ========================================== */

.action-plan {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.action-step {

    overflow: hidden;

    border:

        1px solid rgba(255, 255, 255, .08);

    border-radius: 15px;

    background:

        rgba(255, 255, 255, .025);

    transition:

        border-color .25s ease,
        background .25s ease;

}


.action-step:hover {

    border-color:

        rgba(0, 229, 255, .2);

}


.action-step.completed {

    border-color:

        rgba(0, 229, 255, .3);

    background:

        rgba(0, 229, 255, .035);

}


/* ==========================================
   Step Header
   ========================================== */

.step-header {

    width: 100%;

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 18px;

    border: none;

    background: transparent;

    color: white;

    text-align: left;

    cursor: pointer;

}


.step-header .step-number {

    flex-shrink: 0;

}


.action-step.completed .step-number {

    background:

        linear-gradient(135deg,
            #00e5ff,
            #00b894);

}


.step-title {

    flex: 1;

}


.step-title strong {

    display: block;

    color: #dce6ff;

    font-size: 15px;

    line-height: 1.5;

}


.step-title span {

    display: block;

    margin-top: 4px;

    color:

        rgba(199, 211, 247, .4);

    font-size: 11px;

}


.step-toggle {

    color:

        rgba(255, 255, 255, .5);

    font-size: 22px;

    transition:

        transform .3s ease;

}


.action-step.open .step-toggle {

    transform:

        rotate(45deg);

}


/* ==========================================
   Step Details
   ========================================== */

.step-details {

    display: grid;

    grid-template-rows: 0fr;

    transition:

        grid-template-rows .35s ease;

}


.action-step.open .step-details {

    grid-template-rows: 1fr;

}


.step-details-inner {

    overflow: hidden;

    padding:

        0 20px;

}


.action-step.open .step-details-inner {

    padding:

        0 20px 22px 68px;

}


.step-why {

    color:

        rgba(199, 211, 247, .7);

    font-size: 14px;

    line-height: 1.7;

    margin:

        0 0 15px;

}


.step-why strong {

    display: block;

    color: #00e5ff;

    margin-bottom: 5px;

}


/* ==========================================
   Complete Button
   ========================================== */

.complete-step-btn {

    margin-top: 15px;

    padding:

        10px 15px;

    border:

        1px solid rgba(0, 229, 255, .25);

    border-radius: 9px;

    color: #00e5ff;

    background:

        rgba(0, 229, 255, .05);

    cursor: pointer;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: .25s ease;

}


.complete-step-btn:hover {

    background:

        rgba(0, 229, 255, .12);

    border-color:

        rgba(0, 229, 255, .5);

}


/* ==========================================
   Reset
   ========================================== */

.reset-path-btn {

    margin-top: 30px;

    padding:

        11px 18px;

    border:

        1px solid rgba(255, 255, 255, .1);

    border-radius: 9px;

    color:

        rgba(255, 255, 255, .55);

    background:

        transparent;

    cursor: pointer;

    font-size: 11px;

    font-weight: 600;

    transition: .25s ease;

}


.reset-path-btn:hover {

    color: #ff6b8a;

    border-color:

        rgba(255, 107, 138, .3);

}


/* ==========================================
   Reset
   ========================================== */



.roadmap-progress-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.roadmap-reset-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.roadmap-reset-btn:hover {
    border-color: rgba(255, 77, 77, 0.5);
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.05);
}



/* ==========================================
   Combined Roadmap
   ========================================== */

.combined-roadmap {

    margin:

        30px 0;

    padding: 25px;

    border:

        1px solid rgba(0, 229, 255, .12);

    border-radius: 18px;

    background:

        linear-gradient(145deg,
            rgba(0, 229, 255, .035),
            rgba(123, 97, 255, .025));

}


.roadmap-heading {

    margin-bottom: 30px;

}


.roadmap-heading>span {

    color: #00e5ff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;

}





.roadmap-heading h3 {

    margin:

        8px 0;

    color: white;

    font-size: 25px;

}


.roadmap-heading p {

    margin: 0;

    max-width: 650px;

    color:

        rgba(199, 211, 247, .5);

    font-size: 13px;

    line-height: 1.7;

}


/* ==========================================
   Phase
   ========================================== */

.roadmap-phases {

    position: relative;

}


.roadmap-phase {

    position: relative;

    display: flex;

    gap: 20px;

    padding-bottom: 30px;

}


.roadmap-phase:not(:last-child)::after {

    content: "";

    position: absolute;

    left: 17px;

    top: 40px;

    bottom: 0;

    width: 1px;

    background:

        linear-gradient(to bottom,
            rgba(0, 229, 255, .4),
            rgba(123, 97, 255, .08));

}


.phase-number {

    position: relative;

    z-index: 2;

    flex-shrink: 0;

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:

        1px solid rgba(0, 229, 255, .25);

    border-radius: 50%;

    color: #00e5ff;

    background:

        #080d1f;

    font-size: 10px;

    font-weight: 800;

}


.phase-content {

    flex: 1;

}


.phase-category {

    color:

        rgba(0, 229, 255, .65);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.phase-content h4 {

    margin:

        6px 0 15px;

    color: white;

    font-size: 19px;

}









/* ==========================================
   MY FUTURE - VIEW PATH BUTTON
   Match Roadmap CONTINUE button
   ========================================== */

.continue-saved-roadmap-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    height: 36px;
    padding: 0 16px;

    border: 1px solid rgba(0, 220, 255, 0.45);
    border-radius: 8px;

    background: rgba(0, 20, 40, 0.35);

    color: #00e5ff;

    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}


/* Arrow */
.continue-saved-roadmap-btn span {
    color: #00e5ff;
    font-size: 14px;
    line-height: 1;
}


/* Hover */
.continue-saved-roadmap-btn:hover {
    background: rgba(0, 220, 255, 0.08);

    border-color: #00e5ff;

    box-shadow:
        0 0 12px rgba(0, 220, 255, 0.18);

    transform: translateY(-1px);
}


/* Click */
.continue-saved-roadmap-btn:active {
    transform: translateY(0);
}


/* Keyboard focus */
.continue-saved-roadmap-btn:focus-visible {
    outline: 2px solid #00e5ff;
    outline-offset: 3px;
}








/* ==========================================
   Roadmap Resources
   ========================================== */

.roadmap-resources {
    margin-top: 24px;
}


.roadmap-resources>span {
    display: block;

    margin-bottom: 10px;

    color:
        rgba(199, 211, 247, .55);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.roadmap-resource-list {
    display: flex;

    flex-direction: column;

    gap: 8px;
}


.roadmap-resource-card {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 10px 12px;

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, .035);

    text-decoration: none;

    transition:
        .25s ease;
}


.roadmap-resource-card:hover {
    transform:
        translateX(4px);

    border-color:
        rgba(0, 229, 255, .35);

    background:
        rgba(0, 229, 255, .08);
}


.resource-icon {
    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, .06);

    font-size: 18px;
}


.resource-info {
    flex: 1;

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.resource-info strong {
    color: white;

    font-size: 13px;
}


.resource-info small {
    color:
        rgba(199, 211, 247, .45);

    font-size: 10px;
}


.resource-arrow {
    color:
        #00e5ff;

    font-size: 18px;
}




/* ==========================================
   Loading State...
   ========================================== */


#findPathBtn:disabled {

    cursor: wait;

    opacity: .75;

}


.future-loading-dot {

    width: 10px;

    height: 10px;

    display: inline-block;

    margin-right: 8px;

    border-radius: 50%;

    background: currentColor;

    animation:
        futureLoadingPulse .8s ease-in-out infinite alternate;

}


@keyframes futureLoadingPulse {

    from {

        opacity: .3;

        transform:
            scale(.75);

    }

    to {

        opacity: 1;

        transform:
            scale(1);

    }

}



/* ==========================================
   Gemini Loading State...
   ========================================== */

/* ==========================================
   Gemini Loading State
   ========================================== */

.ai-loading-card {

    text-align: center;

}


.ai-loading-steps {

    max-width: 430px;

    margin:
        30px auto 0;

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.ai-loading-item {

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        13px 16px;

    border:
        1px solid rgba(255, 255, 255, .06);

    border-radius: 10px;

    color:
        rgba(199, 211, 247, .45);

    background:
        rgba(255, 255, 255, .02);

    font-size: 13px;

}


.ai-loading-item span {

    width: 9px;

    height: 9px;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .2);

}


.ai-loading-item.active {

    color: #00e5ff;

    border-color:
        rgba(0, 229, 255, .18);

}


.ai-loading-item.active span {

    background: #00e5ff;

    box-shadow:
        0 0 12px rgba(0, 229, 255, .65);

    animation:
        aiLoadingPulse .8s ease-in-out infinite alternate;

}


@keyframes aiLoadingPulse {

    from {

        opacity: .35;

        transform:
            scale(.75);

    }

    to {

        opacity: 1;

        transform:
            scale(1.15);

    }

}




/* ==========================================
   AI Error State
   ========================================== */

.ai-error-card {

    text-align: center;

}


.retry-ai-btn {

    margin-top: 20px;

    padding: 12px 22px;

    border:
        1px solid rgba(0, 229, 255, .3);

    border-radius: 10px;

    background:
        rgba(0, 229, 255, .07);

    color: #00e5ff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    cursor: pointer;

    transition: .25s ease;

}


.retry-ai-btn:hover {

    background:
        rgba(0, 229, 255, .14);

    border-color:
        rgba(0, 229, 255, .55);

    transform:
        translateY(-2px);

}




/* ==========================================
   Roadmap Steps
   ========================================== */

.phase-steps {

    display: flex;

    flex-direction: column;

    gap: 9px;

}


.roadmap-step {

    display: flex;

    gap: 12px;

    padding: 13px;

    border:

        1px solid rgba(255, 255, 255, .06);

    border-radius: 10px;

    background:

        rgba(255, 255, 255, .02);

}


.roadmap-step-number {

    flex-shrink: 0;

    width: 23px;

    height: 23px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    color:

        rgba(255, 255, 255, .55);

    background:

        rgba(255, 255, 255, .05);

    font-size: 9px;

    font-weight: 700;

}


.roadmap-step strong {

    display: block;

    color:

        rgba(220, 230, 255, .85);

    font-size: 13px;

}


.roadmap-step p {

    margin:

        4px 0 0;

    color:

        rgba(199, 211, 247, .45);

    font-size: 11px;

    line-height: 1.6;

}




/* ==========================================
   Interactive Roadmap
   ========================================== */

.roadmap-step {

    transition:
        border-color .25s ease,
        background .25s ease,
        transform .25s ease;

}


.roadmap-step:hover {

    border-color:
        rgba(0, 229, 255, .2);

    background:
        rgba(0, 229, 255, .025);

}


.roadmap-step.completed {

    border-color:
        rgba(0, 229, 255, .18);

    background:
        rgba(0, 229, 255, .035);

}


.roadmap-step.completed .roadmap-step-number {

    color: #00e5ff;

    border-color:
        rgba(0, 229, 255, .35);

}


.roadmap-step-content {

    flex: 1;

}


.roadmap-open-btn {

    margin-top: 10px;

    padding:
        7px 11px;

    border:
        1px solid rgba(0, 229, 255, .14);

    border-radius: 7px;

    background:
        rgba(0, 229, 255, .035);

    color:
        rgba(0, 229, 255, .7);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition: .2s ease;

}


.roadmap-open-btn:hover {

    border-color:
        rgba(0, 229, 255, .4);

    background:
        rgba(0, 229, 255, .08);

    color: #00e5ff;

}


/* ==========================================
   Modal
   ========================================== */

.roadmap-modal {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    opacity: 0;

    transition: opacity .25s ease;

}


.roadmap-modal.visible {

    opacity: 1;

}


.roadmap-modal-backdrop {

    position: absolute;

    inset: 0;

    background:
        rgba(2, 5, 15, .82);

    backdrop-filter:
        blur(12px);

}


.roadmap-modal-card {

    position: relative;

    z-index: 2;

    width: min(620px,
            100%);

    max-height: 85vh;

    overflow-y: auto;

    padding: 32px;

    border:
        1px solid rgba(0, 229, 255, .15);

    border-radius: 20px;

    background:

        linear-gradient(145deg,
            rgba(12, 20, 45, .97),
            rgba(5, 10, 25, .98));

    box-shadow:

        0 30px 100px rgba(0, 0, 0, .55);

    transform:
        translateY(20px) scale(.98);

    transition:
        transform .25s ease;

}


.roadmap-modal.visible .roadmap-modal-card {

    transform:
        translateY(0) scale(1);

}


.roadmap-modal-close {

    position: absolute;

    top: 15px;

    right: 17px;

    width: 34px;

    height: 34px;

    border: 0;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .05);

    color:
        rgba(255, 255, 255, .6);

    font-size: 22px;

    cursor: pointer;

}


.roadmap-modal-category {

    color: #00e5ff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.roadmap-modal-card h2 {

    margin:
        8px 40px 12px 0;

    color: white;

    font-size: 28px;

}


.roadmap-modal-description {

    color:
        rgba(199, 211, 247, .65);

    font-size: 14px;

    line-height: 1.8;

}


/* ==========================================
   Tasks
   ========================================== */

.roadmap-tasks {

    margin-top: 25px;

}


.roadmap-tasks h4 {

    margin-bottom: 12px;

    color:
        rgba(255, 255, 255, .45);

    font-size: 10px;

    letter-spacing: 2px;

}


.roadmap-task {

    display: flex;

    gap: 10px;

    padding: 10px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, .05);

    color:
        rgba(220, 230, 255, .7);

    font-size: 12px;

}


.roadmap-task span {

    color: #00e5ff;

}


/* ==========================================
   Complete Button
   ========================================== */

.roadmap-complete-btn {

    width: 100%;

    margin-top: 25px;

    padding: 14px;

    border:
        1px solid rgba(0, 229, 255, .3);

    border-radius: 10px;

    background:
        rgba(0, 229, 255, .07);

    color: #00e5ff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    cursor: pointer;

    transition: .25s ease;

}


.roadmap-complete-btn:hover {

    background:
        rgba(0, 229, 255, .14);

    border-color:
        rgba(0, 229, 255, .55);

}


/* ==========================================
   Unified Roadmap Progress
   ========================================== */

.roadmap-progress {

    margin-top: 25px;

    padding: 22px;

    border:
        1px solid rgba(0, 229, 255, .12);

    border-radius: 16px;

    background:
        rgba(0, 229, 255, .025);

}


.roadmap-progress-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

}


.roadmap-progress-header div {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.roadmap-progress-header span {

    color:
        rgba(199, 211, 247, .4);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.roadmap-progress-header strong {

    color: white;

    font-size: 25px;

}


.roadmap-progress-header small {

    color:
        rgba(199, 211, 247, .45);

    font-size: 11px;

}


.roadmap-progress-track {

    width: 100%;

    height: 5px;

    margin-top: 18px;

    overflow: hidden;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, .06);

}


.roadmap-progress-fill {

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(90deg,
            #00e5ff,
            #7b61ff);

    transition:
        width .5s ease;

}


.roadmap-next-step {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 22px;

    padding-top: 18px;

    border-top:
        1px solid rgba(255, 255, 255, .06);

}


.roadmap-next-step span {

    color:
        rgba(199, 211, 247, .4);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.roadmap-next-step strong {

    flex: 1;

    color:
        rgba(220, 230, 255, .85);

    font-size: 13px;

}


.roadmap-continue-btn {

    padding:
        9px 14px;

    border:
        1px solid rgba(0, 229, 255, .25);

    border-radius: 8px;

    background:
        rgba(0, 229, 255, .06);

    color: #00e5ff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    cursor: pointer;

}


.roadmap-continue-btn:hover {

    background:
        rgba(0, 229, 255, .12);

}


/* ==========================================
   MY FUTURE
   ========================================== */

.my-future-section {

    width: 100%;

    padding:
        100px 8%;

}


.my-future-container {

    max-width: 1100px;

    margin: auto;

}


.my-future-heading {

    margin-bottom: 45px;

}


.my-future-heading .section-label {

    display: block;

    margin-bottom: 12px;

    color: #00e5ff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 4px;

}


.my-future-heading h2 {

    margin: 0;

    color: white;

    font-size: 48px;

    font-weight: 800;

}


.my-future-heading h2 span {

    background:

        linear-gradient(90deg,
            #00e5ff,
            #7b61ff,
            #ff4dff);

    background-clip: text;

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}


.my-future-heading p {

    margin-top: 12px;

    color:

        rgba(199, 211, 247, .55);

    font-size: 15px;

}


/* ==========================================
   Cards
   ========================================== */

.my-future-content {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

}


.future-card {

    position: relative;

    padding: 25px;

    border:

        1px solid rgba(255, 255, 255, .08);

    border-radius: 20px;

    background:

        linear-gradient(145deg,
            rgba(255, 255, 255, .045),
            rgba(255, 255, 255, .015));

    backdrop-filter:
        blur(15px);

    transition:

        transform .3s ease,
        border-color .3s ease;

}


.future-card:hover {

    transform:
        translateY(-5px);

    border-color:

        rgba(0, 229, 255, .3);

}


/* ==========================================
   Card Header
   ========================================== */

.future-card-top {

    display: flex;

    align-items: center;

    gap: 15px;

}


.future-card-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background:

        rgba(0, 229, 255, .08);

    font-size: 25px;

}


.future-card-label {

    color: #00e5ff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.future-card-top h3 {

    margin: 4px 0 0;

    color: white;

    font-size: 19px;

}


.future-card-description {

    margin:

        20px 0;

    color:

        rgba(199, 211, 247, .6);

    font-size: 13px;

    line-height: 1.7;

}


/* ==========================================
   Progress
   ========================================== */

.future-progress {

    margin-bottom: 20px;

}


.future-progress-top {

    display: flex;

    justify-content: space-between;

    margin-bottom: 8px;

}


.future-progress-top span {

    color:

        rgba(255, 255, 255, .4);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.future-progress-top strong {

    color: #00e5ff;

    font-size: 12px;

}


.future-progress-track {

    width: 100%;

    height: 6px;

    overflow: hidden;

    border-radius: 20px;

    background:

        rgba(255, 255, 255, .07);

}


.future-progress-fill {

    height: 100%;

    border-radius: inherit;

    background:

        linear-gradient(90deg,
            #00e5ff,
            #7b61ff,
            #ff4dff);

    transition:

        width .5s ease;

}


/* ==========================================
   Card Bottom
   ========================================== */

.future-card-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

}


.future-card-bottom>span {

    color:

        rgba(255, 255, 255, .4);

    font-size: 11px;

}


.continue-future-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding:

        10px 14px;

    border:

        1px solid rgba(0, 229, 255, .2);

    border-radius: 9px;

    color: #00e5ff;

    background:

        rgba(0, 229, 255, .05);

    cursor: pointer;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: .25s ease;

}


.continue-future-btn:hover {

    background:

        rgba(0, 229, 255, .12);

    border-color:

        rgba(0, 229, 255, .45);

}


.continue-future-btn span {

    font-size: 15px;

}


/* ==========================================
   Empty State
   ========================================== */

.future-empty {

    padding: 60px 30px;

    text-align: center;

    border:

        1px solid rgba(255, 255, 255, .08);

    border-radius: 20px;

    background:

        rgba(255, 255, 255, .02);

}


.future-empty-icon {

    font-size: 40px;

    margin-bottom: 15px;

}


.future-empty h3 {

    margin: 0 0 10px;

    color: white;

    font-size: 22px;

}


.future-empty p {

    max-width: 450px;

    margin: 0 auto 25px;

    color:

        rgba(199, 211, 247, .55);

    line-height: 1.7;

}


.future-start-btn {

    padding:

        12px 20px;

    border: 0;

    border-radius: 10px;

    color: #001018;

    background: #00e5ff;

    cursor: pointer;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

}


.future-start-btn span {

    margin-left: 8px;

}


/* ==========================================
   Responsive
   ========================================== */

@media (max-width: 800px) {

    .my-future-content {

        grid-template-columns: 1fr;

    }


    .my-future-heading h2 {

        font-size: 38px;

    }

}


@media (max-width: 500px) {

    .my-future-section {

        padding:
            70px 5%;

    }


    .future-card-bottom {

        align-items: flex-start;

        flex-direction: column;

    }

}















/* ==========================================
   Goal Examples
   ========================================== */

.goal-examples {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    margin-top: 25px;

}


.goal-example {

    padding: 14px 16px;

    border:

        1px solid rgba(255, 255, 255, .08);

    border-radius: 10px;

    color:

        rgba(220, 230, 255, .75);

    background:

        rgba(255, 255, 255, .025);

    text-align: left;

    cursor: pointer;

    font-size: 12px;

    line-height: 1.5;

    transition: .25s ease;

}


.goal-example:hover {

    color: #00e5ff;

    border-color:

        rgba(0, 229, 255, .3);

    background:

        rgba(0, 229, 255, .06);

    transform:

        translateY(-2px);

}


@media (max-width: 650px) {

    .goal-examples {

        grid-template-columns: 1fr;

    }

}
