/* ==========================================================
   SettleSmartAI Career Workspace V2
   Premium Design System
   Sprint 52
========================================================== */

/* ==========================================================
   ROOT
========================================================== */

:root{

    --primary:#2563EB;
    --primary-dark:#1D4ED8;

    --success:#16A34A;

    --warning:#F59E0B;

    --danger:#DC2626;

    --background:#F5F7FB;

    --card:#FFFFFF;

    --text:#0F172A;

    --muted:#64748B;

    --border:#E2E8F0;

    --shadow:

    0 10px 30px rgba(15,23,42,.08);

    --radius:22px;

}

/* ==========================================================
   BODY
========================================================== */

body{

    background:var(--background);

    color:var(--text);

    font-family:

    Inter,

    Segoe UI,

    sans-serif;

}

/* ==========================================================
   CONTAINER
========================================================== */

.dashboard-container{

    max-width:1500px;

    margin:auto;

    padding:40px;

}

/* ==========================================================
   WORKSPACE CARD
========================================================== */

.workspace-card{

    background:var(--card);

    border-radius:var(--radius);

    padding:36px;

    margin-bottom:28px;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    transition:.30s;

}

.workspace-card:hover{

    transform:translateY(-4px);

}

/* ==========================================================
   HERO
========================================================== */

.hero-card{

    background:

    linear-gradient(

    135deg,

    #ffffff,

    #F8FBFF);

}

.workspace-badge{

    display:inline-block;

    background:#DBEAFE;

    color:var(--primary);

    padding:8px 18px;

    border-radius:999px;

    font-weight:700;

    font-size:13px;

    letter-spacing:.5px;

}

/* ==========================================================
   TITLE
========================================================== */

.workspace-title{

    font-size:44px;

    font-weight:800;

    margin-top:20px;

    color:var(--text);

}

.workspace-subtitle{

    font-size:18px;

    line-height:1.9;

    color:var(--muted);

    max-width:820px;

}

/* ==========================================================
   HERO KPI
========================================================== */

.hero-stat{

    background:white;

    border-radius:18px;

    padding:22px;

    border:1px solid var(--border);

    text-align:center;

    margin-top:18px;

}

.hero-stat small{

    color:var(--muted);

    font-weight:600;

}

.hero-stat h2{

    margin-top:10px;

    font-size:34px;

    color:var(--primary);

    font-weight:800;

}

/* ==========================================================
   SCORE CARD
========================================================== */

.workspace-score-card{

    background:

    linear-gradient(

    135deg,

    var(--primary),

    var(--primary-dark));

    color:white;

    border-radius:24px;

    padding:36px;

    text-align:center;

}

.score-caption{

    font-size:15px;

    opacity:.9;

}

.score-value{

    font-size:72px;

    font-weight:900;

    margin-top:12px;

}

.score-status{

    font-size:20px;

    font-weight:700;

    margin-top:10px;

}

.workspace-score-card hr{

    border-color:

    rgba(255,255,255,.25);

}
/* ==========================================================
   SECTION HEADER
========================================================== */

.section-header{

    margin-bottom:30px;

}

.section-header h2{

    font-size:30px;

    font-weight:800;

    color:var(--text);

    margin-bottom:8px;

}

.section-header p{

    color:var(--muted);

    font-size:16px;

    margin:0;

}

/* ==========================================================
   CAPABILITY CARD
========================================================== */

.capability-card{

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:20px;

    padding:28px;

    height:100%;

    transition:all .30s ease;

    box-shadow:0 8px 24px rgba(15,23,42,.05);

}

.capability-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(15,23,42,.10);

}

.capability-score{

    width:72px;

    height:72px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark));

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    font-weight:800;

}

.capability-progress{

    height:10px;

    border-radius:20px;

    background:#EEF2F7;

    overflow:hidden;

}

.capability-progress .progress-bar{

    border-radius:20px;

}

/* ==========================================================
   EXECUTIVE DIAGNOSIS
========================================================== */

.diagnosis-card{

    background:#FFFFFF;

    border-radius:20px;

    padding:24px;

    border:1px solid var(--border);

    height:100%;

    box-shadow:0 8px 24px rgba(15,23,42,.05);

}

.diagnosis-card h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:20px;

}

.diagnosis-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.diagnosis-card li{

    padding:10px 0;

    border-bottom:1px solid #EEF2F7;

    font-size:15px;

    color:#475569;

}

.diagnosis-card li:last-child{

    border-bottom:none;

}

.strengths{

    border-top:5px solid #16A34A;

}

.opportunities{

    border-top:5px solid #2563EB;

}

.recommendations{

    border-top:5px solid #F59E0B;

}

.next-action{

    border-top:5px solid #7C3AED;

    text-align:center;

}

.next-action h2{

    font-size:42px;

    font-weight:800;

    color:#16A34A;

}

/* ==========================================================
   COUNTRY CARDS
========================================================== */

.country-card{

    background:#FFFFFF;

    border-radius:18px;

    padding:24px;

    border:1px solid var(--border);

    height:100%;

    transition:.30s;

}

.country-card:hover{

    transform:translateY(-5px);

    box-shadow:0 16px 32px rgba(15,23,42,.08);

}

.country-score{

    font-size:26px;

    font-weight:800;

    color:var(--success);

}

.country-card .progress{

    height:8px;

    border-radius:20px;

}

/* ==========================================================
   ROLE CARD
========================================================== */

.role-card{

    background:white;

    border-radius:16px;

    padding:20px;

    border:1px solid var(--border);

    transition:.30s;

}

.role-card:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 28px rgba(15,23,42,.08);

}
/* ==========================================================
   TIMELINE
========================================================== */

.timeline{

    position:relative;

    margin-top:30px;

    padding-left:35px;

}

.timeline:before{

    content:"";

    position:absolute;

    left:10px;

    top:0;

    bottom:0;

    width:4px;

    background:#DBEAFE;

    border-radius:10px;

}

.timeline-item{

    position:relative;

    background:#FFFFFF;

    border:1px solid var(--border);

    border-radius:18px;

    padding:24px;

    margin-bottom:24px;

    box-shadow:0 8px 20px rgba(15,23,42,.05);

}

.timeline-item:before{

    content:"";

    position:absolute;

    left:-33px;

    top:28px;

    width:18px;

    height:18px;

    border-radius:50%;

    background:var(--primary);

    border:4px solid white;

    box-shadow:0 0 0 3px #DBEAFE;

}

.timeline-item h5{

    font-size:20px;

    font-weight:700;

    margin-bottom:10px;

}

.timeline-item p{

    margin:0;

    color:var(--muted);

    line-height:1.8;

}

/* ==========================================================
   SERVICE CARD
========================================================== */

.service-card{

    background:white;

    border:1px solid var(--border);

    border-radius:18px;

    padding:28px;

    height:100%;

    text-align:center;

    transition:.30s;

    box-shadow:0 8px 20px rgba(15,23,42,.05);

}

.service-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 36px rgba(15,23,42,.10);

}

.service-card h5{

    font-size:22px;

    font-weight:700;

    margin-bottom:12px;

}

.service-card p{

    color:var(--muted);

    min-height:48px;

}

/* ==========================================================
   BUTTONS
========================================================== */

.btn{

    border-radius:12px;

    font-weight:700;

    padding:12px 22px;

    transition:.25s;

}

.btn:hover{

    transform:translateY(-2px);

}

.btn-success{

    background:#16A34A;

    border:none;

}

.btn-primary{

    background:#2563EB;

    border:none;

}

/* ==========================================================
   BADGES
========================================================== */

.badge{

    border-radius:999px;

    padding:8px 14px;

    font-size:12px;

    font-weight:700;

}

/* ==========================================================
   FOOTER
========================================================== */

.workspace-footer{

    text-align:center;

    padding:40px 20px;

    color:var(--muted);

}

.workspace-footer hr{

    margin-bottom:25px;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1200px){

.workspace-title{

font-size:36px;

}

.score-value{

font-size:56px;

}

}

@media(max-width:991px){

.dashboard-container{

padding:20px;

}

.workspace-card{

padding:24px;

}

.workspace-title{

font-size:30px;

}

.workspace-subtitle{

font-size:16px;

}

.hero-stat{

margin-bottom:18px;

}

.workspace-score-card{

margin-top:30px;

}

.capability-card{

margin-bottom:20px;

}

.country-card{

margin-bottom:20px;

}

.role-card{

margin-bottom:20px;

}

.service-card{

margin-bottom:20px;

}

.timeline{

padding-left:24px;

}

.timeline:before{

left:6px;

}

.timeline-item:before{

left:-24px;

}

}

@media(max-width:576px){

.workspace-title{

font-size:26px;

}

.section-header h2{

font-size:24px;

}

.hero-stat h2{

font-size:28px;

}

.score-value{

font-size:46px;

}

.capability-score{

width:58px;

height:58px;

font-size:18px;

}

}
/* ==========================================================
   PDF / PRINT WATERMARK
========================================================== */

.dashboard-container{

    position:relative;

}

.dashboard-container::before{

    content:"SettleSmart Career";

    position:fixed;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%) rotate(-30deg);

    font-size:90px;

    font-weight:700;

    color:#0d6efd;

    opacity:0.035;

    letter-spacing:4px;

    z-index:0;

    pointer-events:none;

    white-space:nowrap;

}

.dashboard-container>*{

    position:relative;

    z-index:1;

}

/* ==========================================================
   PRINT
========================================================== */

@media print{

.dashboard-container::before{

    opacity:0.045;

}

}
/* ==========================================================
   END OF FILE
========================================================== */