/* ======================================
   WRAPPER
====================================== */

.kalblu-wrapper {
    max-width: 1150px;
    margin: 80px auto;
    padding: 70px;
    background: linear-gradient(145deg,#f6f7f9,#e9ebef);
    border-radius: 28px;
    box-shadow:
        20px 20px 60px rgba(0,0,0,0.08),
        -20px -20px 60px rgba(255,255,255,0.9);
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.main-title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 60px;
}

.main-title span {
    background: linear-gradient(90deg,#ff4d4d,#c62828);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ======================================
   ASSESSMENT SECTION
====================================== */

.assessment-grid {
    display: flex;
    gap: 50px;
}

.card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-left: 18px;
}

.card h3::before {
    content:"";
    position:absolute;
    left:0;
    top:6px;
    width:4px;
    height:22px;
    background:#e53935;
    border-radius:6px;
}

.card label {
    display:block;
    margin-top:18px;
    font-size:14px;
    font-weight:500;
}

.card select {
    width:100%;
    padding:14px;
    margin-top:8px;
    border-radius:12px;
    border:1px solid #ddd;
    background:#fff;
}

.run-btn {
    margin-top:30px;
    width:100%;
    padding:16px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#ff4d4d,#c62828);
    color:#fff;
    font-weight:600;
    cursor:pointer;
    box-shadow:0 12px 30px rgba(229,57,53,0.35);
    transition:0.3s ease;
}

.run-btn:hover {
    transform:translateY(-3px);
}

/* ======================================
   RESULTS SECTION
====================================== */

.results-section {
    display:none;
    margin-top:90px;
}

.recommendation-card {
    background:#ffffff;
    padding:60px;
    border-radius:26px;
    box-shadow:0 40px 80px rgba(0,0,0,0.06);
    position:relative;
    overflow:hidden;
}

/* ambient glow */
.recommendation-card::before {
    content:"";
    position:absolute;
    top:-120px;
    right:-100px;
    width:280px;
    height:280px;
    background:radial-gradient(circle,rgba(255,180,0,0.15),transparent);
    filter:blur(70px);
}

/* HEADER */

.recommendation-header {
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:45px;
}

.status-dots {
    display:flex;
    gap:8px;
}

.status-dots .dot {
    width:10px;
    height:10px;
    border-radius:50%;
    opacity:0.25;
}

.dot.green { background:#28c76f; }
.dot.amber { background:#ffb300; }
.dot.red   { background:#ea5455; }

.recommendation-header h3 {
    font-size:28px;
    font-weight:600;
}

/* ======================================
   TOP GRID
====================================== */

.recommendation-top {
    display:flex;
    gap:60px;
    align-items:flex-start;
    margin-bottom:60px;
}

/* SCORE TILE */

.score-tile {
    width:300px;
    background:#f8f9fb;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:inset 0 0 0 1px rgba(0,0,0,0.05);
}

.score-number-large {
    font-size:64px;
    font-weight:700;
    margin-bottom:8px;
}

.score-label-large {
    font-size:12px;
    letter-spacing:2px;
    color:#888;
    margin-bottom:14px;
}

.score-explanation-large {
    font-size:14px;
    color:#555;
}

/* META TILE */

.meta-tile {
    flex:1;
    display:flex;
    flex-direction:column;
    gap:40px;
    justify-content:center;
}

.meta-title {
    font-size:12px;
    letter-spacing:2px;
    color:#888;
    margin-bottom:6px;
}

.meta-value {
    font-size:20px;
    font-weight:600;
}

/* ======================================
   ROADMAP
====================================== */

.roadmap-section h4 {
    font-size:24px;
    margin-bottom:30px;
}

.roadmap-horizontal {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.roadmap-step {
    flex:1;
    text-align:center;
    position:relative;
}

.roadmap-step:not(:last-child)::after {
    content:"";
    position:absolute;
    top:14px;
    right:-15px;
    width:30px;
    height:1px;
    background:#ddd;
}

.step-number {
    font-size:12px;
    letter-spacing:2px;
    color:#999;
    margin-bottom:8px;
}

.step-role {
    font-weight:600;
    font-size:15px;
}

/* ======================================
   EMAIL MODAL
====================================== */

.kalblu-email-modal {
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.45);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.email-modal-card {
    background:#fff;
    padding:50px;
    border-radius:24px;
    width:420px;
    text-align:center;
    box-shadow:0 40px 80px rgba(0,0,0,0.2);
}

.email-modal-card h3 {
    margin-bottom:15px;
}

.email-modal-card p {
    font-size:14px;
    color:#666;
    margin-bottom:25px;
}

.email-modal-card input {
    width:100%;
    padding:14px;
    border-radius:12px;
    border:1px solid #ddd;
    margin-bottom:20px;
}

.unlock-btn {
    width:100%;
    padding:15px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#ff4d4d,#c62828);
    color:#fff;
    font-weight:600;
    cursor:pointer;
}
