
/*
======================================================================

CTM PATH™ Guided Journey v6.0

SCREEN 07 — YOUR LIFE NEEDS™

File:
css/screens/screen07.css

Purpose:
Premium Priority Mover™

Responsibility
• Screen Layout
• Typography
• Priority Board
• Premium Cards

======================================================================
*/


/*==================================================
Screen Base
==================================================*/

.screen07{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    position:relative;

    overflow:hidden;

    background:

        radial-gradient(

            circle at center,

            rgba(32,213,199,.08),

            transparent 55%

        ),

        #081C3A;

}





/*==================================================
Content Container
==================================================*/

.screen07 .screen-content{

    width:min(94%,760px);

    margin:auto;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    position:relative;

    z-index:2;

}





/*==================================================
Illustration
==================================================*/

.screen07 .screen-visual{

    margin-bottom:26px;

}





.screen07 .screen-image{

    width:170px;

    height:auto;

    display:block;

    user-select:none;

    pointer-events:none;

}





/*==================================================
Visitor Greeting
==================================================*/

.screen07 .personal-greeting{

    margin-bottom:14px;

    color:#E3C47A;

    font-family:

        "Playfair Display",

        serif;

    font-size:2rem;

    font-weight:600;

    letter-spacing:.05em;

    text-shadow:

        0 0 18px

        rgba(

            214,

            181,

            108,

            .35

        );

}





/*==================================================
Tamil Title
==================================================*/

.screen07 .screen-title{

    margin:0;

    color:#FFF8E7;

    font-family:

        "Noto Sans Tamil",

        sans-serif;

    font-size:2.45rem;

    font-weight:700;

    line-height:1.45;

}





/*==================================================
English Subtitle
==================================================*/

.screen07 .screen-subtitle{

    margin-top:16px;

    margin-bottom:34px;

    color:#D6B56C;

    font-family:

        "Inter",

        sans-serif;

    font-size:.82rem;

    font-weight:600;

    letter-spacing:.28em;

    text-transform:uppercase;

}





/*==================================================
Instructions
==================================================*/

.screen07 .screen-message{

    width:100%;

}





.screen07 .screen-message.tamil{

    margin-bottom:18px;

    color:#FFF8E7;

    font-family:

        "Noto Sans Tamil",

        sans-serif;

    font-size:1.08rem;

    font-weight:500;

    line-height:1.90;

}





.screen07 .screen-message.english{

    margin-bottom:38px;

    color:

        rgba(

            255,

            248,

            231,

            .72

        );

    font-family:

        "Inter",

        sans-serif;

    font-size:.92rem;

    line-height:1.75;

}





/*==================================================
Priority Board
==================================================*/

.life-needs-list{

    width:100%;

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-bottom:52px;

}





/*==================================================
Premium Card
==================================================*/

.need-card{

    position:relative;

    display:flex;

    align-items:center;

    gap:20px;

    padding:22px 24px;

    border-radius:22px;

    background:

        rgba(

            255,

            255,

            255,

            .045

        );

    border:

        1px solid

        rgba(

            214,

            181,

            108,

            .18

        );

    backdrop-filter:blur(16px);

    transition:

        transform .28s ease,

        border-color .28s ease,

        box-shadow .28s ease,

        background .28s ease;

}





.need-card:hover{

    transform:

        translateY(-2px);

    border-color:

        rgba(

            214,

            181,

            108,

            .55

        );

    box-shadow:

        0 16px 36px

        rgba(

            0,

            0,

            0,

            .28

        ),

        0 0 24px

        rgba(

            32,

            213,

            199,

            .16

        );

}





.need-card.updated{

    animation:

        cardPulse

        .35s ease;

}





.need-card.moving{

    transform:

        scale(1.02);

}





/*==================================================
Rank Badge

Colours assigned
by JavaScript

==================================================*/

.need-rank{

    width:58px;

    height:58px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-family:

        "Inter",

        sans-serif;

    font-size:1.05rem;

    font-weight:700;

    transition:

        all .30s ease;

}





/*==================================================
Need Content
==================================================*/

.need-content{

    flex:1;

    min-width:0;

    text-align:left;

}





.need-title{

    margin-bottom:6px;

    color:#FFF8E7;

    font-family:

        "Noto Sans Tamil",

        sans-serif;

    font-size:1.05rem;

    font-weight:600;

    line-height:1.70;

}





.need-subtitle{

    color:

        rgba(

            255,

            255,

            255,

            .66

        );

    font-family:

        "Inter",

        sans-serif;

    font-size:.88rem;

    font-weight:500;

    line-height:1.55;

}

/*==================================================
Rank Badges

Assigned dynamically by JavaScript

==================================================*/


/*------------------------------
Rank 1
------------------------------*/

.need-rank.rank-1{

    background:

        linear-gradient(

            135deg,

            #F8E8B5,

            #D6B56C

        );

    color:#081C3A;

    box-shadow:

        0 0 22px

        rgba(

            214,

            181,

            108,

            .45

        );

}





/*------------------------------
Rank 2
------------------------------*/

.need-rank.rank-2{

    background:

        linear-gradient(

            135deg,

            #F4F4F4,

            #BFBFBF

        );

    color:#081C3A;

}





/*------------------------------
Rank 3
------------------------------*/

.need-rank.rank-3{

    background:

        linear-gradient(

            135deg,

            #D9A46D,

            #A96A3C

        );

    color:#FFFFFF;

}





/*------------------------------
Ranks 4–10
------------------------------*/

.need-rank.rank-default{

    background:

        rgba(

            8,

            28,

            58,

            .95

        );

    border:

        2px solid

        rgba(

            214,

            181,

            108,

            .45

        );

    color:#FFF8E7;

}





/*==================================================
Priority Controls
==================================================*/

.need-actions{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:10px;

    margin-left:16px;

}





/*==================================================
Priority Button

Reusable CTM Component

==================================================*/

.priority-button{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    border:

        1px solid

        rgba(

            214,

            181,

            108,

            .42

        );

    background:

        rgba(

            255,

            255,

            255,

            .05

        );

    cursor:pointer;

    transition:

        all .25s ease;

}





.priority-button:hover{

    background:

        rgba(

            214,

            181,

            108,

            .16

        );

    border-color:#D6B56C;

    transform:

        scale(1.08);

    box-shadow:

        0 0 14px

        rgba(

            214,

            181,

            108,

            .30

        );

}





.priority-button:active{

    transform:

        scale(.94);

}





.priority-button:disabled{

    opacity:.28;

    cursor:default;

    pointer-events:none;

    transform:none;

    box-shadow:none;

}





/*==================================================
Priority Icon

SVG Ready

==================================================*/

.priority-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    color:#D6B56C;

    font-size:1rem;

    font-weight:700;

    line-height:1;

}





/*==================================================
Move Button Helpers

Reserved for future SVG icons

==================================================*/

.move-up-btn{

    order:1;

}





.move-down-btn{

    order:2;

}





/*==================================================
Card Animation
==================================================*/

.need-card.updated{

    animation:

        cardPulse

        .35s ease;

}





@keyframes cardPulse{

    0%{

        transform:scale(.98);

    }

    50%{

        transform:scale(1.02);

    }

    100%{

        transform:scale(1);

    }

}





/*==================================================
Premium Navigator
==================================================*/

.screen07 .journey-next{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    background:none;

    border:none;

    cursor:pointer;

    transition:

        opacity .30s ease,

        transform .30s ease;

}





.screen07 .journey-next:hover{

    transform:

        translateY(-2px);

}





.screen07 .nav-decoration{

    width:240px;

    display:flex;

    align-items:center;

}





.screen07 .nav-decoration::before,

.screen07 .nav-decoration::after{

    content:"";

    flex:1;

    height:1px;

    background:#D6B56C;

    opacity:.55;

}





.screen07 .nav-tamil{

    margin-top:18px;

    color:#D6B56C;

    font-family:

        "Noto Sans Tamil",

        sans-serif;

    font-size:1.35rem;

    font-weight:700;

}





.screen07 .nav-arrows{

    margin:12px 0;

    color:#D6B56C;

    font-size:1.1rem;

    letter-spacing:.45em;

}





.screen07 .nav-english{

    color:#D6B56C;

    font-family:

        "Inter",

        sans-serif;

    font-size:.84rem;

    font-weight:600;

    letter-spacing:.28em;

}





/*==================================================
Navigator States
==================================================*/

.screen07 .journey-next.disabled{

    opacity:.35;

    pointer-events:none;

}





.screen07 .journey-next.enabled{

    opacity:1;

    pointer-events:auto;

}





.screen07 .journey-next.enabled .nav-tamil,

.screen07 .journey-next.enabled .nav-arrows,

.screen07 .journey-next.enabled .nav-english{

    text-shadow:

        0 0 12px

        rgba(

            214,

            181,

            108,

            .32

        );

}





.screen07 .journey-next.enabled:hover{

    transform:

        translateY(-3px);

}

/*==================================================
Responsive
Large Tablet
==================================================*/

@media(max-width:992px){

    .screen07 .screen-content{

        width:min(95%,700px);

    }

    .screen07 .screen-title{

        font-size:2.15rem;

    }

    .need-card{

        padding:20px;

        gap:18px;

    }

}





/*==================================================
Responsive
Tablet
==================================================*/

@media(max-width:768px){

    .screen07 .screen-image{

        width:145px;

    }

    .screen07 .personal-greeting{

        font-size:1.75rem;

    }

    .screen07 .screen-title{

        font-size:1.90rem;

        line-height:1.55;

    }

    .screen07 .screen-subtitle{

        font-size:.76rem;

        letter-spacing:.22em;

    }

    .screen07 .screen-message.tamil{

        font-size:1rem;

    }

    .screen07 .screen-message.english{

        font-size:.84rem;

    }

    .need-card{

        padding:18px;

        gap:16px;

    }

    .need-rank{

        width:50px;

        height:50px;

        font-size:.95rem;

    }

    .need-title{

        font-size:.96rem;

    }

    .need-subtitle{

        font-size:.82rem;

    }

    .need-actions{

        margin-left:12px;

        gap:8px;

    }

    .priority-button{

        width:38px;

        height:38px;

    }

}





/*==================================================
Responsive
Mobile
==================================================*/

@media(max-width:540px){

    .screen07 .screen-content{

        width:95%;

    }

    .screen07 .screen-image{

        width:120px;

    }

    .screen07 .personal-greeting{

        font-size:1.55rem;

    }

    .screen07 .screen-title{

        font-size:1.65rem;

    }

    .screen07 .screen-message.tamil{

        line-height:1.8;

    }

    .need-card{

        padding:16px;

        border-radius:18px;

        gap:14px;

    }

    .need-rank{

        width:44px;

        height:44px;

        font-size:.90rem;

    }

    .need-title{

        font-size:.90rem;

        line-height:1.60;

    }

    .need-subtitle{

        font-size:.78rem;

    }

    .priority-button{

        width:34px;

        height:34px;

    }

    .priority-icon{

        font-size:.90rem;

    }

}





/*==================================================
Responsive
Ultra Small Devices
==================================================*/

@media(max-width:390px){

    .need-card{

        gap:12px;

    }

    .need-content{

        min-width:0;

    }

    .need-title{

        font-size:.84rem;

    }

    .need-subtitle{

        font-size:.72rem;

    }

}





/*==================================================
Keyboard Accessibility
==================================================*/

.priority-button:focus-visible,

.screen07 .journey-next:focus-visible{

    outline:2px solid #20D5C7;

    outline-offset:3px;

}





/*==================================================
Text Selection
==================================================*/

.screen07 ::selection{

    background:

        rgba(

            32,

            213,

            199,

            .28

        );

    color:#FFFFFF;

}





/*==================================================
Animation Utilities
==================================================*/

.fade-in{

    animation:

        fadeIn

        .40s ease;

}





@keyframes fadeIn{

    from{

        opacity:0;

        transform:

            translateY(8px);

    }

    to{

        opacity:1;

        transform:

            translateY(0);

    }

}





.slide-up{

    animation:

        slideUp

        .35s ease;

}





@keyframes slideUp{

    from{

        opacity:0;

        transform:

            translateY(18px);

    }

    to{

        opacity:1;

        transform:

            translateY(0);

    }

}





.glow{

    box-shadow:

        0 0 20px

        rgba(

            214,

            181,

            108,

            .30

        );

}





/*==================================================
Rendering Quality
==================================================*/

.screen07,

.need-card,

.need-rank,

.priority-button{

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}





/*==================================================
Utility Classes
==================================================*/

.hidden{

    display:none !important;

}





.invisible{

    visibility:hidden;

}





.disabled{

    pointer-events:none;

}





.enabled{

    pointer-events:auto;

}





/*==================================================
Reduced Motion Support
==================================================*/

@media(prefers-reduced-motion:reduce){

    .need-card,

    .priority-button,

    .screen07 .journey-next,

    .need-rank{

        transition:none;

        animation:none;

    }

}

