/* ==========================================================================
   FORWARD MOVES GLOBAL STYLING ENGINE (2026 LIGHTWEIGHT COMPACT STANDARD)
   ========================================================================== */

:root {
    --bg-glass: rgba(255, 255, 255, 0.95);
    --border-glass: rgba(241, 245, 249, 0.9);
    --shadow-subtle: 0 4px 16px -4px rgba(15, 23, 42, 0.03);
    --shadow-hover: 0 10px 20px -6px rgba(37, 99, 235, 0.06);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #fafafa;
    color: #0f172a;
    line-height: 1.5;
    padding-bottom: 80px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.disclaimer-bar {
    background-color: #fffbeb;
    border-bottom: 1px solid #fef3c7;
    padding: 8px 16px;
    text-align: center;
    font-size: 11px;
    color: #b45309;
}

/* --- NAVIGATION CORE STRUCTURAL LAYOUT --- */
nav, .navbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 20px 0;
    margin-bottom: 12px;
    position: relative !important;
    width: 100% !important;
}
.logo {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
    order: 1 !important;
    display: flex !important;
    align-items: center !important;
}
.logo a {
    text-decoration: none; 
    color: inherit; 
    display: flex; 
    align-items: center; 
    gap: 8px;
}
.logo-circle {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #ffffff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
}

/* --- BULLETPROOF DESKTOP SPECIFIC RULES (Wider than 820px viewports) --- */
@media (min-width: 821px) {
    /* Completely removes the hamburger icon block from layout rendering on desktop */
    .menu-toggle {
        display: none !important; 
    }
    
    .mobile-close {
        display: none !important;
    }
    
    .nav-links {
        display: flex !important;
        flex-direction: row !important;
        gap: 20px !important;
        order: 2 !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        margin-left: auto !important; /* Floats links row cleanly to the right edge */
    }
    
    .nav-links a {
        text-decoration: none;
        color: #475569;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .nav-links a.active {
        color: #2563eb;
    }
}

/* --- MOBILE SPECIFIC CANVAS RULES (820px or less viewports) --- */
@media (max-width: 820px) {
    .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        padding: 4px !important;
        order: 2 !important;
        margin-left: auto !important; /* Snaps icon safely onto mobile right edge */
    }
    
    .menu-toggle .bar {
        display: block !important;
        width: 20px !important;
        height: 2px !important;
        background-color: #0f172a !important;
        border-radius: 2px !important;
    }
    
    .mobile-close {
        display: block !important;
        position: absolute !important;
        top: 24px !important;
        right: 24px !important;
        font-size: 20px !important;
        color: #475569 !important;
        cursor: pointer !important;
        font-weight: bold !important;
    }
    
    /* Transforms text links list wrapper into an off-screen drawer panel layout */
    .nav-links {
        display: flex !important; 
        flex-direction: column !important; 
        align-items: flex-start !important; 
        position: fixed !important;
        top: 0 !important; 
        right: -100% !important; /* Hidden offscreen safely by default */
        width: 260px !important; 
        height: 100vh !important; 
        background: #ffffff !important;
        border-left: 1px solid #e2e8f0 !important; 
        padding: 100px 24px !important; 
        gap: 20px !important; 
        z-index: 99999 !important; /* Elevated above all local application frameworks */
        box-shadow: -10px 0 30px rgba(15, 23, 42, 0.15) !important; 
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Fluid system easing transition */
    }
    
    /* Smooth entrance state triggered via JavaScript element toggle */
    .nav-links.active {
        right: 0 !important;
    }
    
    .nav-links a {
        display: block !important;
        width: 100% !important; 
        padding: 4px 0 !important; 
        font-size: 14px !important;
        text-decoration: none !important;
        color: #475569 !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
    }

    .nav-links a.active {
        color: #2563eb !important;
    }
    
    /* Responsive Canvas Compressors */
    .vertical-card-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
    .pill-card { padding: 18px !important; }
    .hero-panel h1, .hero-banner h1 { font-size: 24px !important; }
    .hero-panel, .hero-banner { padding: 28px 16px !important; }
    .matrix-container, .content-block, .chat-container { padding: 18px; }
    .matrix-table { display: block !important; overflow-x: auto !important; }
}

/* --- HERO BANNER LAYERS --- */
.hero-panel, .hero-banner {
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-glass);
    margin-bottom: 20px;
}

.hero-panel { background: linear-gradient(rgba(250, 250, 250, 0.95), rgba(250, 250, 250, 0.95)), url('https://images.unsplash.com/photo-1531538606174-0f90ff5dce83?auto=format&fit=crop&w=1200&q=80'); }
.page-scout { background: linear-gradient(rgba(250, 250, 250, 0.94), rgba(250, 250, 250, 0.94)), url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1200&q=80'); }
.page-resume { background: linear-gradient(rgba(250, 250, 250, 0.94), rgba(250, 250, 250, 0.94)), url('https://images.unsplash.com/photo-1586281380349-632531db7ed4?auto=format&fit=crop&w=1200&q=80'); }
.page-comparison { background: linear-gradient(rgba(250, 250, 250, 0.95), rgba(250, 250, 250, 0.95)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1200&q=80'); }
.page-reskilling { background: linear-gradient(rgba(250, 250, 250, 0.95), rgba(250, 250, 250, 0.95)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1200&q=80'); }
.page-careers { background: linear-gradient(rgba(250, 250, 250, 0.95), rgba(250, 250, 250, 0.95)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80'); }
.page-glossary { background: linear-gradient(rgba(250, 250, 250, 0.95), rgba(250, 250, 250, 0.95)), url('https://images.unsplash.com/photo-1506784983877-45594efa4cbe?auto=format&fit=crop&w=1200&q=80'); }

h1 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
h1 span {
    color: #4f46e5;
    background: linear-gradient(to right, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-panel p, .hero-banner p {
    font-size: 14px;
    color: #475569;
    max-width: 560px;
    line-height: 1.5;
    margin: 0 auto;
}

/* --- AUDIO INTERFACE DECK CONTROLLERS --- */
.interactive-flow-deck {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}
.audio-widget {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    padding: 8px 20px;
    gap: 16px;
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-subtle);
}
.play-btn {
    width: 32px;
    height: 32px;
    background: #2563eb;
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 10px;
}
.audio-track-bg {
    flex-grow: 1;
    height: 3px;
    background: #f1f5f9;
    border-radius: 100px;
    position: relative;
    cursor: pointer;
}
.audio-track-fill {
    height: 100%;
    width: 0%;
    background: #2563eb;
    border-radius: 100px;
    position: absolute;
}
.audio-track-fill::after {
    content: '';
    position: absolute;
    right: -3px; top: -3px;
    width: 9px; height: 9px;
    background: #2563eb;
    border-radius: 50%;
}
.time-stamp { font-size: 11px; color: #64748b; font-family: monospace; }
.speed-badge { font-size: 10px; font-weight: 700; color: #475569; border: 1px solid #e2e8f0; padding: 2px 6px; border-radius: 30px; cursor: pointer; }
.btn-action {
    background: #0f172a; color: #ffffff; padding: 12px 28px; border-radius: 10px; font-weight: 600; font-size: 13px; text-decoration: none; box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08); transition: all 0.2s ease;
}
.btn-action:hover { background: #2563eb; transform: translateY(-1px); }

/* --- BENTO CARD HUB INTERFACE --- */
.hub-interface { display: flex; flex-direction: column; align-items: center; text-align: center; }
.icon-banner-shield { font-size: 20px; margin-bottom: 12px; }
.hub-interface h2 { font-size: 26px; font-weight: 800; color: #0f172a; margin-bottom: 6px; letter-spacing: -0.02em; }
.hub-interface .subheading { font-size: 14px; color: #475569; margin-bottom: 36px; }

.vertical-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    width: 100%;
}

.pill-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    height: 100%;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow-subtle);
}
.pill-card:hover { transform: translateY(-2px); border-color: #2563eb; box-shadow: var(--shadow-hover); }
.pill-icon-box { width: 32px; height: 32px; background: #f8fafc; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; border: 1px solid #e2e8f0; margin-bottom: 12px; }
.pill-card h3 { font-size: 15px; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.pill-card p { font-size: 13px; color: #64748b; line-height: 1.4; }

/* --- CORE PORTAL FRAMEWORKS --- */
.matrix-container, .content-block, .chat-container {
    background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 24px; box-shadow: var(--shadow-subtle); margin-top: 20px; text-align: left; width: 100%;
}
.chat-heading, .section-title { font-size: 11px; font-weight: 700; color: #2563eb; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.main-heading { font-size: 22px; font-weight: 800; color: #0f172a; margin-bottom: 4px; }
.sub-heading { font-size: 14px; color: #475569; margin-bottom: 24px; }

/* Comparison Tables */
.matrix-table { width: 100%; border-collapse: collapse; text-align: left; }
.matrix-table th { padding: 12px; font-size: 13px; font-weight: 700; color: #475569; border-bottom: 2px solid #e2e8f0; }
.matrix-table td { padding: 14px 12px; font-size: 14px; color: #0f172a; border-bottom: 1px solid #f1f5f9; vertical-align: top; }
.tech-pill { display: inline-block; font-size: 11px; font-weight: 700; background: #f1f5f9; color: #475569; padding: 2px 8px; border-radius: 6px; margin-right: 4px; margin-bottom: 4px; text-transform: uppercase; }
.salary-range { font-weight: 700; color: #16a34a; }
.vector-btn { font-size: 13px; font-weight: 600; color: #4f46e5; text-decoration: none; }

/* Career Scout Interface modules */
.chat-output { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px; font-size: 14px; color: #334155; margin-bottom: 16px; line-height: 1.6; }
.chat-output p { margin-bottom: 10px; }
.chat-input-row { display: flex; gap: 12px; }
.chat-input { flex-grow: 1; padding: 12px 16px; border-radius: 10px; border: 1px solid #cbd5e1; font-size: 14px; outline: none; }
.chat-input:focus { border-color: #2563eb; }
.send-btn { background: #0f172a; color: #ffffff; font-weight: 600; padding: 0 20px; border: none; border-radius: 10px; cursor: pointer; font-size: 13px; }

/* Trajectory File Upload Boxes */
.upload-box { background: #f8fafc; border: 2px dashed #cbd5e1; border-radius: 12px; padding: 32px; text-align: center; margin-bottom: 24px; }
.upload-icon { font-size: 24px; margin-bottom: 12px; display: block; }
.upload-btn { background: #2563eb; color: #ffffff; border: none; padding: 10px 20px; border-radius: 8px; font-weight: 600; cursor: pointer; margin-top: 12px; font-size: 13px; }
.checklist-container { background: #ffffff; border-top: 1px solid #e2e8f0; padding-top: 20px; }
.checklist-title { font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 12px; }
.checklist-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; font-size: 13px; color: #475569; }

/* ==========================================================================
   2026 HIGH-END MINIMALIST INDICATORS (NO CAPSULES / BOXES / OCTAGONS)
   ========================================================================== */
.badge-tag, 
.status-tag, 
.hero-banner-tag, 
.micro-badge-trend,
.hero-banner-section .hero-banner-tag {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    color: #2563eb !important; 
    background: none !important;
    border: none !important;
    text-transform: uppercase !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.badge-tag::before, 
.status-tag::before, 
.hero-banner-tag::before, 
.micro-badge-trend::before {
    content: '' !important;
    display: inline-block !important;
    width: 6px !important;
    height: 6px !important;
    background: #2563eb !important;
    border-radius: 50% !important;
    box-shadow: 0 0 8px #2563eb !important;
}