:root {
    --accent-mesh: radial-gradient(at 0% 0%, rgba(255, 59, 0, 0.08) 0, transparent 50%),
                   radial-gradient(at 100% 0%, rgba(0, 123, 255, 0.05) 0, transparent 50%),
                   radial-gradient(at 50% 100%, rgba(255, 255, 255, 0.8) 0, transparent 100%);
    --glass-border: 1px solid rgba(0, 0, 0, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --text-deep: #05091d;
    --theme-orange: #ff3b00;
}

.career-signature-hero {
    height: 600px;
    background: #05091d;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.career-signature-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 9, 29, 0.7);
    z-index: 1;
}

.career-signature-hero .container {
    position: relative;
    z-index: 2;
}

.hero-watermark {
    position: absolute;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    right: -5%;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    white-space: nowrap;
    pointer-events: none;
}

.career-main-card {
    background: #fff;
    border-radius: 50px;
    margin-top: -100px;
    position: relative;
    z-index: 10;
    box-shadow: 0 100px 200px -50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.editorial-section {
    padding: 80px 60px;
    background: var(--accent-mesh);
}

.neural-list-item {
    padding: 20px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 15px;
}

.neural-list-item:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 59, 0, 0.1);
    border-color: var(--theme-orange);
}

.neural-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 59, 0, 0.1);
    color: var(--theme-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.apply-card-premium {
    background: var(--text-deep);
    border-radius: 40px;
    padding: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.apply-card-premium::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 59, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.text-outline-career {
    -webkit-text-stroke: 1px rgba(255, 59, 0, 0.15);
    color: transparent;
    font-weight: 900;
    font-size: 8rem;
    line-height: 0.8;
    letter-spacing: -5px;
    position: absolute;
    opacity: 0.5;
    z-index: -1;
}

@media (max-width: 991px) {
    .editorial-section { padding: 40px 20px; }
    .hero-watermark { display: none; }
    .text-outline-career { font-size: 3.5rem; letter-spacing: -2px; }
    .career-main-card { border-radius: 30px; margin-top: -50px; }
    .apply-card-premium { 
        padding: 45px 25px; 
        border-radius: 35px; 
        background: linear-gradient(145deg, #05091d 0%, #0a1130 100%);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }
    .apply-card-premium p {
        word-break: break-word;
        line-height: 1.6;
    }
    .sticky-top { position: relative !important; top: 0 !important; }
    
    .career-signature-hero h1 {
        letter-spacing: -2px !important;
        line-height: 1.1 !important;
    }

    /* Responsive utility to fix the squashed p-5 container on mobile */
    .p-5.rounded-5 {
        padding: 30px 20px !important;
    }
}

@media (max-width: 480px) {
    .apply-card-premium {
        padding: 40px 20px;
    }
    .apply-card-premium h4 {
        font-size: 1.75rem;
    }
    .apply-card-premium p {
        font-size: 0.9rem;
    }
    .career-signature-hero {
        height: 500px;
    }
}
